/* ============================================================
   shared.css — navbar canónico (Solutions) + footer canónico (Impact)
   Cargado en CADA página DESPUÉS de su <style> interno → sobrescribe
   limpio cualquier diferencia de diseño entre páginas.
   ============================================================ */

/* Alto global del navbar (2026-07-20): más compacto — el recuadro blanco
   no debe dominar la pantalla. */
:root {
  --nav-height: 66px;
  /* Tipografía unificada de soporte (la misma que usan los párrafos del
     Impact case detail). Los títulos (h1, h2 en .hero__title, .impact-index__title,
     .ev-hero__title, etc.) MANTIENEN Helvetica Neue Bold por su rule-set propio. */
  --font-body: -apple-system, BlinkMacSystemFont, system-ui, "SF Pro Text",
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* ============================================================
     SISTEMA TIPOGRÁFICO (2026-07-16, desktop-first)
     Escala derivada de la landing aprobada. Al crear o retocar
     páginas, usar SIEMPRE estos tokens en vez de tamaños sueltos.
       H1 portada  → --t-hero-*    (título hero de página interior)
       H2 sección  → --t-title-*   (título de sección)
       H3 bloque   → --t-title2-*  (título menor / listados)
       Entradilla  → --t-sub-*     (subtítulo/copy bajo un título)
       Eyebrow     → --t-eyebrow-* (kicker pequeño sobre el título)
       Body        → --t-body-*    (texto de tarjetas y componentes)
       Card title  → --t-cardtitle-* (título de tarjeta/tile, 16.5px w600)
       Small       → --t-small-*   (metadatos, fechas, notas)
     ============================================================ */
  /* Valores tomados 1:1 de la homepage (la referencia canónica):
     hero/secciones grandes = .sol4__title | h2 estándar = .hero__title/.cases h2
     entradilla = .sol4__subtitle | body = labels de Features */
  --t-hero-size: clamp(31px, 3.7vw, 40px); /* = .hero__title de la landing, la referencia canónica (subido 2026-07-28) */
  --t-hero-ls: -0.015em;
  --t-hero-lh: 1.15;
  --t-lead-size: clamp(17px, 1.55vw, 18.5px); /* entradilla del hero de la landing */
  --t-lead-lh: 1.55;
  --t-title-size: clamp(28px, 3.2vw, 34px);
  --t-title-ls: -0.015em;
  --t-title-lh: 1.15;
  --t-title2-size: clamp(22px, 2.4vw, 26px);
  --t-title2-ls: -0.01em;
  --t-title2-lh: 1.25;
  --t-sub-size: 16.5px;
  --t-sub-lh: 1.6;
  --t-sub-color: #6b7280;
  --t-eyebrow-size: 15px;
  --t-eyebrow-ls: -0.005em;
  --t-body-size: 15.5px;
  --t-body-lh: 1.55;
  --t-small-size: 13.5px;
  --t-cardtitle-size: 16.5px;
  --t-cardtitle-ls: -0.008em;
}

/* Aplicar tipografía system a TODO body + navbar + footer (no a los
   elementos con su propia regla de font-family). */
body, .navbar, .footer {
  font-family: var(--font-body);
}

/* Tracking global tipo footer (2026-07-13): los textos de cuerpo de TODA la
   web usan el mismo letter-spacing sutilmente negativo que el footer. Los
   títulos conservan sus letter-spacing propios (más negativos), y el footer
   sus reglas específicas. */
body {
  letter-spacing: -0.003em;
}

/* Navbar links y CTA: misma tipografía, peso medio */
.navbar__links a,
.navbar__cta,
.navbar__lang-current,
.navbar__lang-option,
.mobile-dropdown a {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: -0.003em; /* = links del footer: navbar y footer respiran igual */
}
.navbar__logo { font-family: var(--font-body); }

/* Footer: títulos columnas en peso semibold, links en regular */
.footer__brand-desc,
.footer__email,
.footer__col a,
.footer__bottom {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -0.003em;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.005em;
}

/* ===== NAVBAR (estilo Solutions) ===== */
.navbar {
  position: fixed;
  top: 0; /* sellado al borde: sin hueco por encima (Judith 2026-07-28) */
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  /* 2026-07-28 (Judith): translúcido SIEMPRE, nunca blanco opaco. Ojo: si
     reaparece lag de scroll en Safari con vídeo bajo el navbar, bajar el
     blur o subir la opacidad. */
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: none;
  box-shadow: none;
  transition:
    box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    background  0.2s cubic-bezier(0.4, 0, 0.2, 1),
    top         0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform   0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.nav-hidden { transform: translateY(-100%); }

.navbar.scrolled {
  /* Translúcido "frosted glass": se ve (difuminado) lo que pasa por debajo. */
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: none;
}
.navbar .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar__logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 22px; font-weight: 700;
  text-decoration: none; height: 100%;
}
.navbar__logo img { height: 27px; width: auto; }
.navbar__right {
  flex: 1;
  margin-left: 26px;
  display: flex; align-items: center; gap: 24px;
  /* SIN position: el menú centrado (absolute) debe anclarse al .container,
     no a este bloque. El .mobile-dropdown pasa a anclarse al container
     (mismo resultado visual: cae bajo la barra, alineado a la derecha). */
}
.navbar__links {
  /* Menú pegado al logo; idioma + CTA quedan a la derecha (margin-right: auto) */
  display: flex; align-items: center; gap: 26px; list-style: none;
  margin-right: auto;
}
/* Enlaces planos con separación uniforme (el gap del UL manda). El antiguo
   display:contents de los grupos causaba hit-testing raro del cursor en
   Safari — eliminado junto con los grupos. */
.navbar__links a {
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.012em; /* más recogido que el body (-0.003em): a 14px las letras se veían sueltas */
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap; /* "AI Translation" y "About us" jamás en dos líneas */
  transition: color 0.2s;
}
/* Hover = el mismo del footer: el texto pasa a azul, sin más artificio. */
/* pagina actual: "donde estoy" en la navbar (tambien lo anuncia aria-current) */
.navbar__links a[aria-current="page"],
.navbar__links .navbar__item--drop.is-section > a { color: var(--color-primary); font-weight: 600; }
.mobile-dropdown a[aria-current="page"] { color: var(--color-primary); font-weight: 600; }
.navbar__links a:hover { color: var(--color-primary); }
.navbar__lang {
  position: relative; display: flex; align-items: center; cursor: pointer;
}
.navbar__lang-current {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 4px; cursor: pointer;
  transition: transform 0.2s;
}
.navbar__lang-current:hover { transform: scale(1.05); }
.navbar__lang-current img { width: 24px; height: auto; object-fit: contain; display: block; }
.navbar__lang-arrow {
  width: 10px; height: 10px;
  fill: none; stroke: #555; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s;
}
.navbar__lang.open .navbar__lang-arrow { transform: rotate(180deg); }
.navbar__lang-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(10, 10, 25, 0.06);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(10, 10, 25, 0.14);
  padding: 8px; min-width: 168px;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
}
.navbar__lang.open .navbar__lang-dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.navbar__lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 9px 12px; border-radius: 10px;
  font-family: inherit; font-size: 14.5px; font-weight: 450; letter-spacing: -0.003em; color: #333;
  transition: background 0.15s, color 0.15s;
}
.navbar__lang-option:hover { background: #eef5fd; }
.navbar__lang-option.active { font-weight: 600; color: var(--color-primary); }
.navbar__lang-option img { width: 22px; height: auto; object-fit: contain; display: block; }
.navbar__cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 5px 19px;
  background: var(--color-primary);
  color: white;
  font-size: 15px; font-weight: 500;
  line-height: 1.4;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.navbar__cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 150, 255, 0.3);
}
.navbar__menu-toggle {
  display: none; flex-direction: column;
  gap: 5px; padding: 4px; cursor: pointer;
  border: none; background: none;
}
.navbar__menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-text); border-radius: 2px;
}

/* Mobile dropdown */
.mobile-dropdown {
  position: absolute; top: calc(100% + 4px); right: 0;
  background: #fff; border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  padding: 4px 0; min-width: 180px;
  opacity: 0; transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 999;
}
.mobile-dropdown.open {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: all;
}
.mobile-dropdown a {
  display: block; padding: 10px 18px;
  font-size: 15px; font-weight: 500;
  color: #1d1d1f; text-decoration: none;
  transition: background 0.12s ease;
}
.mobile-dropdown a:active { background: #f5f5f7; }
.mobile-dropdown__divider {
  height: 1px; background: #e8e8e8; margin: 2px 0;
}
.mobile-dropdown .navbar__cta {
  display: block; margin: 2px 10px 4px;
  text-align: center; border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px; font-weight: 600;
  color: #fff; background: var(--color-primary);
}
/* Banderas dentro del menú móvil — fila compacta de 3 banderas pequeñas */
.mobile-dropdown__lang {
  display: flex;
  gap: 2px;
  padding: 2px 14px;
  justify-content: center;
}
.mobile-dropdown__lang-option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 36px;
  background: none;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s ease;
}
.mobile-dropdown__lang-option:active { background: #f0f0f0; }
.mobile-dropdown__lang-option.active { background: #f0f0f5; }
.mobile-dropdown__lang-option img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}


/* ══ Formulario de contacto compacto (sección "Get in touch") ══ */
.cfx { max-width: 560px; margin: 0; }   /* alineado a la izquierda, como el titular de la sección */
.cfx__form { display: grid; gap: 10px; }
.cfx__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cfx__in {
  width: 100%;
  padding: 13px 16px;
  border: 1.4px solid #e2e5ea;
  border-radius: 13px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: -0.003em;
  color: var(--color-text);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.cfx__in::placeholder { color: #b3b9c4; }
.cfx__in:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(0, 150, 255, 0.12); }
textarea.cfx__in { min-height: 96px; resize: vertical; line-height: 1.55; }
/* el mensaje y el botón entran cuando ya hay nombre y correo */
.cfx__more { display: grid; gap: 10px; overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease; }
.cfx.is-open .cfx__more { max-height: 220px; opacity: 1; }
.cfx__send {
  justify-self: start;
  padding: 13px 34px;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.22s, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.24s, opacity 0.2s;
}
.cfx__send:hover:not(:disabled) { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(0, 150, 255, 0.6); }
.cfx__send:active:not(:disabled) { transform: translateY(0) scale(0.98); }
.cfx__send:disabled { opacity: 0.45; cursor: default; }
.cfx__state { text-align: left; font-size: var(--t-small-size); line-height: 1.5; color: #0f9d6e; margin: 4px 0 0; }
.cfx__state.is-err { color: #b91c1c; }
.cfx.is-sent .cfx__in, .cfx.is-sent .cfx__send, .cfx.is-sent .cfx__row { display: none; }
@media (max-width: 560px) { .cfx__row { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .cfx__more { transition: none; } }

/* Mobile breakpoint para navbar */
@media (max-width: 1180px) {
  /* Con 7 enlaces centrados, el menú colapsa antes para no chocar con logo/CTA */
  .navbar__links,
  .navbar__cta,
  .navbar__lang { display: none; }
  .navbar__menu-toggle { display: flex; }
}

/* ============================================================
   FOOTER — rediseño julio 2026
   4 columnas: brand · Solutions · Impact+About · Resources+Legal
   Solutions se subdivide en Products y Learn.
   Bloque CTA "Planning an event? Contact us" bajo iconos sociales.
   ============================================================ */
.footer {
  padding: 80px 0 0;
  border-top: 1px solid #e5e7eb;
  background: #fff;
  color: #1a1a1a;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
}

/* ---- Columna 1: brand ---- */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__brand-logo img { height: 32px; width: auto; }
.footer__brand-desc {
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.55;
  letter-spacing: -0.005em;
  max-width: 320px;
  margin: 0;
}
.footer__email {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 0.2s;
}
.footer__email:hover { color: var(--color-primary); }
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.footer__socials a:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}
.footer__socials svg { width: 18px; height: 18px; fill: #1a1a1a; }

/* ---- CTA "Planning an event? Contact us" ---- */
.footer__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.footer__cta-label {
  font-size: 14px;
  font-weight: 500;
  color: #525252;
  letter-spacing: -0.005em;
  margin: 0;
}
.footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 10px 20px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.footer__cta-btn:hover {
  background: var(--color-primary);
  transform: translateY(-1px);
}

/* ---- Columnas 2-4 ---- */
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer__col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  line-height: 1.2;
}
.footer__col h5 {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  line-height: 1.2;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--color-primary); }
.footer__subgroup + .footer__subgroup {
  margin-top: 6px;
}

/* ---- Bottom bar ---- */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 24px;
  padding: 16px 32px;
  background: #f0f0f0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 400;
  color: #525252;
  letter-spacing: -0.005em;
}
.footer__clock {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #8a8f98;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.footer__clock i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c2c7cf;
}
@media (max-width: 760px) {
  .footer__clock { display: none; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer { padding: 48px 0 0; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
  .footer__brand-desc { font-size: 14px; }
  .footer__col h4 { font-size: 14px; margin-bottom: 10px; }
  .footer__col h5 { font-size: 11px; }
  .footer__col a { font-size: 14px; }
  .footer__cta-btn { font-size: 13px; padding: 10px 18px; }
  .footer__bottom {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 14px 20px;
    font-size: 13px;
    border-radius: 20px;
    margin: 0 0 16px;
  }
}

/* ============================================================
   Utilidades responsive globales
   .desktop-only → visible solo en escritorio (≥769px)
   .mobile-only  → visible solo en móvil (≤768px)

   Aplicamos `display: none` SOLO dentro del media query opuesto, así
   en la otra resolución el elemento conserva su layout original (block,
   flex, grid…) sin necesidad de "reactivar" nada.
   ============================================================ */
@media (min-width: 769px) {
  .mobile-only { display: none !important; }
}

@media (max-width: 768px) {
  .desktop-only { display: none !important; }
}

/* ============================================================
   Navegación a la IZQUIERDA, junto al logo (definitivo 2026-07-12).
   Patrón de lectura en F: logo → apartados → (espacio) → idioma + CTA.
   ============================================================ */
.navbar .container { justify-content: flex-start; gap: 48px; }
.navbar__right { flex: 1; }
.navbar__lang { margin-left: auto; }
@media (max-width: 768px) {
  .navbar__menu-toggle { margin-left: auto; }
}

/* ── Desplegable de Live en el navbar (inner pages del producto) ── */
.navbar__links .navbar__item--drop { position: relative; }
.navbar__drop-trigger { display: inline-flex; align-items: center; gap: 5px; }
.navbar__caret {
  width: 9px;
  height: 6px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.55;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s;
}
.navbar__item--drop:hover .navbar__caret,
.navbar__item--drop:focus-within .navbar__caret { transform: rotate(180deg); opacity: 1; }
.navbar__drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px; /* puente invisible: el cursor no "cae" entre link y panel */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
  z-index: 60;
}
.navbar__item--drop:hover .navbar__drop,
.navbar__item--drop:focus-within .navbar__drop { opacity: 1; visibility: visible; pointer-events: auto; }
.navbar__drop-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 216px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(10, 10, 25, 0.06);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(10, 10, 25, 0.14);
  transform: translateY(-8px) scale(0.97);
  transform-origin: top center;
  opacity: 0;
  transition: transform 0.34s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.22s ease;
}
.navbar__item--drop:hover .navbar__drop-inner,
.navbar__item--drop:focus-within .navbar__drop-inner { transform: none; opacity: 1; }
.navbar__drop-inner a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 14px; /* = .navbar__links a */
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.24s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s, color 0.2s;
}
.navbar__item--drop:hover .navbar__drop-inner a,
.navbar__item--drop:focus-within .navbar__drop-inner a { opacity: 1; transform: none; }
.navbar__item--drop:hover .navbar__drop-inner a:nth-child(2) { transition-delay: 0.04s; }
.navbar__item--drop:hover .navbar__drop-inner a:nth-child(3) { transition-delay: 0.08s; }
.navbar__item--drop:hover .navbar__drop-inner a:nth-child(4) { transition-delay: 0.12s; }
.navbar__drop-inner a:hover { background: #eef5fd; color: var(--color-primary); }
.navbar__drop-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 9px;
  background: #E8F4FF;
  color: #0084E8;
}
.navbar__drop-ic svg { display: block; width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
/* ── Dropdown rico de la navbar (grid titulo + descripcion) ── */
.navbar__drop-inner.navbar__drop-inner--rich {
  display: grid;
  grid-template-columns: repeat(2, 238px);
  gap: 4px;
  padding: 12px;
}
.navbar__drop-inner.navbar__drop-inner--rich a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 14px;
  white-space: normal; /* la navbar hereda nowrap; aqui las descripciones deben envolver */
}
.navbar__drop-inner.navbar__drop-inner--rich a b { font-weight: 600; }
.navbar__drop-inner.navbar__drop-inner--rich a span {
  font-size: var(--t-small-size);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.003em;
  color: var(--t-sub-color);
}
@media (prefers-reduced-motion: reduce) {
  .navbar__caret, .navbar__drop, .navbar__drop-inner, .navbar__drop-inner a { transition: none; }
}
/* inner pages en el menú móvil */
.mobile-dropdown a.mobile-dropdown__sub { padding-left: 34px; color: #6b7280; }

/* ── Newsletter: MorphingButton junto a los sociales del footer ── */
.ftm {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 100px;
  background: #f0f0f0;
  border: 1.1px solid rgba(231, 230, 230, 0.65);
  overflow: hidden;
  transition:
    width 0.55s cubic-bezier(0.34, 1.25, 0.45, 1),
    padding 0.55s cubic-bezier(0.34, 1.25, 0.45, 1),
    background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.ftm:not(.is-open):hover { background: #e0e0e0; transform: translateY(-2px); cursor: pointer; }
.ftm.is-open { padding: 3px; box-shadow: 0 1px 4px rgba(10, 10, 25, 0.08); }
.ftm.is-err { animation: ftmShake 0.4s ease; border-color: rgba(185, 28, 28, 0.55); }
@keyframes ftmShake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 55% { transform: translateX(4px); } 80% { transform: translateX(-2px); } }
.ftm__field {
  display: flex;
  align-items: center;
  flex: 0 1 0%;
  min-width: 0;
  overflow: hidden;
  padding-left: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    flex-grow 0.55s cubic-bezier(0.34, 1.25, 0.45, 1),
    opacity 0.3s ease 0.08s,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}
.ftm.is-open .ftm__field { flex-grow: 1; opacity: 1; transform: none; }
.ftm__input {
  width: 100%;
  border: 0;
  outline: none;
  background: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #18181B;
}
.ftm__input::placeholder { color: #A1A1AA; }
.ftm__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  min-width: 40px;
  padding: 0;
  border-radius: 100px;
  background: transparent;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background 0.3s, box-shadow 0.3s, padding 0.45s cubic-bezier(0.34, 1.25, 0.45, 1), min-width 0.45s cubic-bezier(0.34, 1.25, 0.45, 1);
}
.ftm.is-open .ftm__btn { background: #fefefe; box-shadow: 0 1px 3px rgba(10, 10, 25, 0.12); padding: 0 16px; min-width: 0; }
.ftm__label {
  display: inline-block;
  max-width: 0;
  margin-left: -8px; /* anula el gap mientras está plegado */
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.45s cubic-bezier(0.34, 1.25, 0.45, 1), opacity 0.3s ease, margin-left 0.45s cubic-bezier(0.34, 1.25, 0.45, 1);
}
.ftm.is-open .ftm__label { max-width: 150px; margin-left: 0; opacity: 1; }
.ftm.is-open .ftm__btn:hover { background: #fafafa; }
.ftm__bell {
  display: inline-flex;
  width: 16px;
  transform-origin: right center;
  transition:
    opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.34, 1.45, 0.55, 1),
    filter 0.4s ease,
    width 0.45s cubic-bezier(0.34, 1.25, 0.45, 1),
    margin-right 0.45s cubic-bezier(0.34, 1.25, 0.45, 1);
}
.ftm__bell svg { width: 16px; height: 16px; }
.ftm.is-open .ftm__bell { opacity: 0; transform: scale(0); filter: blur(4px); width: 0; margin-right: -8px; }
@media (prefers-reduced-motion: reduce) {
  .ftm, .ftm__field, .ftm__btn, .ftm__bell { transition: none; animation: none; }
}
