:root {
  --bg: #05070b;
  --bg-2: #0b1220;
  --bg-3: #111a2a;
  --gold: #c79a3a;
  --gold-light: #e3c16f;
  --gold-dark: #8b6423;
  --text: #f5f3ed;
  --muted: #a8adb8;
  --glass: rgba(8, 12, 20, 0.72);
  --glass-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(199, 154, 58, 0.28);
  --line-soft: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
  --radius: 26px;
  --max: 1180px;
  --header: 82px;
  --section: 82px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a, a:visited, a:hover, a:active { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
main p, main li { text-align: justify; }

body::before,
body::after,
.page-bg,
.gold-line { content: ""; position: fixed; pointer-events: none; }
body::before {
  inset: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(227, 193, 111, 0.13), transparent 26%),
    radial-gradient(circle at 78% 20%, rgba(22, 55, 90, 0.36), transparent 34%),
    radial-gradient(circle at 52% 92%, rgba(199, 154, 58, 0.10), transparent 28%),
    linear-gradient(135deg, #030509 0%, var(--bg-2) 48%, var(--bg) 100%);
  z-index: -4;
}
body::after {
  inset: 0;
  background-image:
    linear-gradient(rgba(199,154,58,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,154,58,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
  z-index: -3;
  opacity: 0.5;
}
.page-bg {
  inset: 0;
  background:
    linear-gradient(115deg, rgba(5,7,11,0.92), rgba(11,18,32,0.78)),
    radial-gradient(circle at top right, rgba(227,193,111,0.12), transparent 22%);
  z-index: -2;
}
.gold-line {
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  opacity: 0.65;
  z-index: -1;
}
.top-line { top: 0; }
.bottom-line { bottom: 0; }

.container { width: min(92%, var(--max)); margin-inline: auto; }
.section { padding-block: var(--section); scroll-margin-top: calc(var(--header) + 24px); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(5, 7, 11, 0.74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: 0.25s ease;
}
.header-scrolled { background: rgba(5,7,11,0.94); box-shadow: 0 12px 32px rgba(0,0,0,0.38); }
.header-content { min-height: var(--header); display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand-logo { height: 77px; width: auto; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(199,154,58,0.16)); }
.nav-menu, .header-actions, .hero-actions { display: flex; align-items: center; gap: 18px; }
.nav-menu { gap: 26px; }
.nav-menu a { color: var(--muted); font-size: 0.95rem; letter-spacing: 0.3px; transition: 0.25s ease; }
.nav-menu a:hover { color: var(--gold-light); }

.header-btn,
.primary-btn,
.secondary-btn,
.language-btn {
  border: 0;
  cursor: pointer;
  transition: 0.25s ease;
}
.header-btn,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #08090d;
  font-weight: 700;
  box-shadow: 0 16px 35px rgba(199,154,58,0.22);
}
.secondary-btn,
.language-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--text);
}
.secondary-btn { display: inline-flex; padding: 13px 22px; border-radius: 999px; }
.language-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--gold-light);
  font-weight: 800;
}
.header-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.language-btn:hover,
.whatsapp-float:hover { transform: translateY(-2px); filter: brightness(1.06); }

.hero {
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header) + 48px) 0 62px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,154,58,0.18), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}
.hero-content,
.two-columns,
.abogado-container,
.contact-box { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; }
.hero-content { grid-template-columns: 1.12fr 0.88fr; }
.two-columns, .abogado-container, .contact-box { grid-template-columns: 0.95fr 1.05fr; }

.section-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(199,154,58,0.35);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(199,154,58,0.08);
  font-size: 0.82rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.two-columns h2,
.abogado-content h2,
.contact-box h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.hero h1 { max-width: 900px; margin-bottom: 20px; font-size: clamp(2.5rem, 5.6vw, 5.4rem); line-height: 0.98; }
.hero-text > p { max-width: 740px; margin-bottom: 14px; color: var(--text); font-size: clamp(1.08rem, 1.7vw, 1.35rem); }
.hero-description, .two-columns p, .section-heading p, .abogado-text, .service-card p, .process-item p, .contact-box > div > p, .contact-info p, .abogado-list li { color: var(--muted); }
.hero-description { max-width: 690px !important; margin-bottom: 26px !important; font-size: 1rem !important; }

.hero-card,
.service-card,
.process-item,
.contact-box,
.img-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.022)), var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-card { padding: 34px; }
.hero-card::before,
.img-wrapper::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(227,193,111,0.24);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}
.hero-card::after,
.service-card::before,
.process-item::before,
.img-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(199,154,58,0.14), transparent 42%);
  pointer-events: none;
}
.hero-card h2 { position: relative; z-index: 1; margin-bottom: 20px; color: var(--gold-light); font-size: 1.5rem; line-height: 1.25; }
.hero-card ul, .abogado-list ul { position: relative; z-index: 1; display: grid; gap: 12px; list-style: none; }
.hero-card li { padding-block: 12px; color: var(--muted); border-bottom: 1px solid var(--line-soft); }
.hero-card li:last-child { border-bottom: 0; }

.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading h2, .two-columns h2, .contact-box h2 { font-size: clamp(1.95rem, 3.6vw, 3.2rem); }
.section-heading p { margin-top: 12px; font-size: 1.04rem; }
.two-columns p { margin-bottom: 16px; font-size: 1.02rem; }

.cards-grid, .process-grid { display: grid; gap: 20px; }
.cards-grid { grid-template-columns: repeat(3, 1fr); }
.process-grid { grid-template-columns: repeat(4, 1fr); }
.service-card, .process-item { min-height: 240px; padding: 26px; transition: 0.28s ease; }
.process-item { min-height: 210px; }
.service-card::after,
.process-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(199,154,58,0.15), transparent 60%);
  opacity: 0;
  transition: 0.3s ease;
}
.service-card:hover,
.process-item:hover { transform: translateY(-7px) scale(1.01); border-color: rgba(227,193,111,0.5); box-shadow: 0 30px 70px rgba(199,154,58,0.16); }
.service-card:hover::after,
.process-item:hover::after { opacity: 1; }
.icon-code,
.process-item span { display: inline-flex; margin-bottom: 18px; color: var(--gold-light); font-weight: 800; letter-spacing: 1px; }
.service-card h3,
.process-item h3 { position: relative; z-index: 1; margin-bottom: 12px; color: var(--text); font-size: 1.28rem; }
.service-card p,
.process-item p { position: relative; z-index: 1; margin-bottom: 10px; }

.img-wrapper img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.abogado-content h2 { margin-bottom: 16px; font-size: clamp(2rem, 3.4vw, 3.2rem); }
.abogado-text { margin-bottom: 15px; }
.abogado-list { margin-top: 22px; }
.abogado-list h4 { margin-bottom: 12px; color: var(--gold-light); }
.abogado-list li { position: relative; padding-left: 16px; }
.abogado-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); }

.contact-section { padding-bottom: calc(var(--section) + 22px); }
.contact-box { padding: clamp(24px, 4vw, 40px); align-items: start; }
.contact-box > div > p { margin: 14px 0 22px; }
.contact-info { display: grid; gap: 10px; }
.contact-info strong { color: var(--gold-light); }
.contact-info p, .contact-info span, .contact-info a, .contact-info a:visited, a[href^="tel"], a[href^="mailto"] {
  color: var(--muted) !important;
  -webkit-text-fill-color: var(--muted);
}
.contact-info strong, .contact-info strong * { color: var(--gold-light) !important; -webkit-text-fill-color: var(--gold-light); }
.contact-form { display: grid; gap: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(199,154,58,0.22);
  border-radius: 16px;
  outline: none;
  color: var(--text);
  background: rgba(255,255,255,0.055);
  -webkit-text-fill-color: var(--text);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(168,173,184,0.74); -webkit-text-fill-color: rgba(168,173,184,0.74); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(227,193,111,0.62); box-shadow: 0 0 0 4px rgba(199,154,58,0.08); }
.input-error { border-color: rgba(255, 90, 90, 0.8) !important; box-shadow: 0 0 0 4px rgba(255,90,90,0.08) !important; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 20px 45px rgba(37,211,102,0.35);
  transition: 0.25s ease;
}
.whatsapp-float img { width: 32px; height: 32px; }
.site-footer { padding: 32px 0; border-top: 1px solid var(--line); background: rgba(5,7,11,0.75); }
.footer-content { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 0.94rem; }
.footer-content p { text-align: left; }

.hero-text,
.hero-card { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: all 0.9s ease; }
.hero-loaded .hero-text,
.hero-loaded .hero-card { opacity: 1; transform: translateY(0); filter: blur(0); }
.hero-loaded .hero-card { transition-delay: 0.18s; }
.section-fade { opacity: 0; transform: translateY(30px); filter: blur(7px); transition: opacity 0.85s ease, transform 0.85s ease, filter 0.85s ease; }
.section-fade.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

@media (max-width: 1080px) {
  :root { --section: 68px; }
  .nav-menu { display: none; }
  .hero-content,
  .two-columns,
  .abogado-container,
  .contact-box { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: auto; }
}

@media (max-width: 680px) {
  :root { --header: 74px; --section: 54px; }
  body { line-height: 1.58; }
  .container { width: min(90%, var(--max)); }
 

  .header-actions { gap: 8px; }
  .language-btn { width: 42px; height: 42px; font-size: 0.82rem; }
  .header-btn { padding: 11px 16px; font-size: 0.9rem; }
  .hero { padding-top: calc(var(--header) + 36px); padding-bottom: 44px; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 3.35rem); }
  .hero-actions { align-items: stretch; }
  .hero-actions a, .primary-btn, .secondary-btn { width: 100%; justify-content: center; }
  .cards-grid, .process-grid { grid-template-columns: 1fr; }
  .hero-card, .service-card, .process-item, .contact-box { padding: 22px; border-radius: 22px; }
  .img-wrapper img { min-height: 360px; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-content p { text-align: center; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  
  .brand-logo {
    height: 85px !important;
    max-width: 184px !important;
    width: auto !important;
    object-fit: contain;
  }

  .site-header {
    min-height: 105px;
  }

  .header-content {
    min-height: 105px;
    align-items: center;
  }
}


/* =========================================================
   FINAL RESPONSIVE / OVERFLOW CONTROL
   ========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
}

body {
  position: relative;
  min-width: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.site-header,
main,
section,
footer,
.container,
.header-content,
.hero,
.hero-content,
.hero-text,
.hero-card,
.two-columns,
.abogado-container,
.abogado-content,
.cards-grid,
.process-grid,
.contact-box,
.contact-form,
.service-card,
.process-item,
.img-wrapper {
  max-width: 100%;
  min-width: 0;
}

.hero,
.section,
.contact-section,
.site-header {
  overflow-x: clip;
}

.gold-line {
  width: 100vw;
  max-width: 100vw;
}

.hero::before {
  max-width: 100vw;
  right: 0;
  transform: translateX(45%);
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  body {
    line-height: 1.55;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 22px;
    padding-right: 22px;
    margin-left: auto;
    margin-right: auto;
  }

  .site-header {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .header-content {
    min-height: 72px;
    width: 100%;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    flex: 0 1 auto;
  }

  .brand-logo {
    height: 44px;
    max-width: 72px;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 8px;
    max-width: calc(100vw - 120px);
  }

  .language-btn {
    width: 40px;
    height: 40px;
    font-size: 0.82rem;
    flex: 0 0 40px;
  }

  .header-btn {
    display: inline-flex;
    max-width: 142px;
    padding: 10px 14px;
    font-size: 0.88rem;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header) + 34px);
    padding-bottom: 42px;
    overflow: hidden;
  }

  .section {
    padding-block: 54px;
    overflow: hidden;
  }

  .hero-content,
  .two-columns,
  .abogado-container,
  .cards-grid,
  .process-grid,
  .contact-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 28px;
  }

  .section-label {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
    letter-spacing: 1.1px;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.05rem, 10.3vw, 2.75rem);
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .section-heading h2,
  .two-columns h2,
  .abogado-content h2,
  .contact-box h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    overflow-wrap: break-word;
  }

  main p,
  main li {
    text-align: left !important;
    word-spacing: normal !important;
    letter-spacing: normal !important;
    overflow-wrap: break-word;
  }

  .hero-text,
  .hero-card,
  .service-card,
  .process-item,
  .contact-box,
  .img-wrapper,
  .abogado-content,
  .contact-form,
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions a,
  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .hero-card,
  .service-card,
  .process-item,
  .contact-box {
    padding: 22px;
    border-radius: 22px;
  }

  .img-wrapper img {
    min-height: 320px;
  }

  .hero::before {
    width: 240px !important;
    height: 240px !important;
    right: 0 !important;
    top: 120px;
    transform: translateX(35%);
  }

  body::before,
  body::after,
  .page-bg {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .service-card:hover,
  .process-item:hover,
  .header-btn:hover,
  .primary-btn:hover,
  .secondary-btn:hover,
  .language-btn:hover,
  .whatsapp-float:hover {
    transform: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content p {
    text-align: center !important;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-btn {
    max-width: 126px;
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 9.8vw, 2.48rem);
  }
}

/* FIX INPUT DATE & TIME MOBILE */

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(199,154,58,0.3);
  color: #e6e6e6;
  padding: 16px 18px;
  border-radius: 16px;
  font-size: 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

/* Forzar consistencia en date y time */
.contact-form input[type="date"],
.contact-form input[type="time"] {
  color: #e6e6e6;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(199,154,58,0.3);
}

/* Iconos internos (iOS/Android) */
.contact-form input[type="date"]::-webkit-calendar-picker-indicator,
.contact-form input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
  opacity: 0.7;
  cursor: pointer;
}

/* FIX MOBILE */
@media (max-width: 768px) {

  .contact-form input[type="date"],
  .contact-form input[type="time"] {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    box-sizing: border-box;
  }

  /* evitar overflow */
  .contact-form {
    width: 100%;
    overflow: hidden;
  }

}
.form-label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(227,193,111,0.7);
}

.contact-form input[type="date"],
.contact-form input[type="time"] {
  -webkit-appearance: auto;
  appearance: auto;
  color-scheme: dark;
  color: var(--white-soft);
  background-color: rgba(255,255,255,0.045);
  min-height: 58px;
  line-height: 58px;
}

.contact-form input[type="date"]::-webkit-date-and-time-value,
.contact-form input[type="time"]::-webkit-date-and-time-value {
  color: var(--white-soft);
  text-align: left;
  min-height: 58px;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator,
.contact-form input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.75;
}

/* FIX iOS DATE/TIME */
.native-input-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.native-input-wrap input[type="date"],
.native-input-wrap input[type="time"] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: block;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
  background: rgba(255,255,255,0.045);
  color: var(--white-soft);
  border: 1px solid rgba(199,154,58,0.35);
  border-radius: 16px;
  min-height: 58px;
  padding: 0 18px;
  font-size: 16px;
}

.native-input-wrap input[type="date"]::-webkit-date-and-time-value,
.native-input-wrap input[type="time"]::-webkit-date-and-time-value {
  text-align: left;
  color: var(--white-soft);
}

.native-input-wrap input[type="date"]::-webkit-calendar-picker-indicator,
.native-input-wrap input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.75;
}

/* HEADER MOBILE AJUSTADO */
@media (max-width: 768px) {
  .site-header {
    min-height: 92px !important;
  }

  .header-content {
    min-height: 92px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
  }

  .brand {
    flex: 0 1 auto;
    max-width: 210px;
  }

  .brand-logo {
    height: auto !important;
    max-height: 62px !important;
    width: auto !important;
    max-width: 210px !important;
    object-fit: contain;
  }

  .header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0 !important;
    max-width: none !important;
  }

  .language-btn {
    width: 52px !important;
    height: 52px !important;
    flex: 0 0 52px;
    font-size: 0.9rem;
  }

  .header-btn {
    max-width: 150px !important;
    padding: 12px 16px !important;
    font-size: 0.92rem !important;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .header-content {
    gap: 8px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand {
    max-width: 180px;
  }

  .brand-logo {
    max-width: 180px !important;
    max-height: 58px !important;
  }

  .language-btn {
    width: 48px !important;
    height: 48px !important;
    flex-basis: 48px;
  }

  .header-btn {
    max-width: 132px !important;
    padding: 11px 13px !important;
    font-size: 0.88rem !important;
  }
}