/* ==========================================================================
   BROLEAD SEGUROS — STYLES
   Mobile-first. Variables de marca arriba. Cambia aquí los hex de la marca.
   ========================================================================== */

:root {
  /* ——— PALETA DE MARCA (ajusta a tus hex exactos cuando los tengas) ——— */
  --brand-navy: #0B2A4A;          /* Azul profundo Brolead (primary) */
  --brand-navy-2: #143A66;        /* Hover / gradientes */
  --brand-navy-deep: #061A2E;     /* Contraste extremo / footer */
  --brand-sky: #3FA9FF;           /* Azul claro acento */
  --brand-lime: #C8F24B;          /* Acento de conversión (CTAs secundarios, stickers) */
  --brand-sun: #FFD84D;           /* Amarillo cálido para destacar ofertas */

  /* ——— Neutros ——— */
  --cream: #FAF7F2;               /* Fondo cálido */
  --ivory: #FFFFFF;
  --ink: #0B1320;                 /* Texto principal */
  --ink-soft: #334155;            /* Texto secundario */
  --muted: #6B7280;               /* Placeholder / metadata */
  --line: #E7E2D9;                /* Divisores */
  --line-strong: #D4CDBF;

  /* ——— Señales ——— */
  --success: #10B981;
  --success-ink: #064E3B;
  --warm: #FF6B35;                /* Urgencia / descuentos */

  /* ——— Tipografía ——— */
  --f-display: 'Instrument Serif', 'Times New Roman', serif;
  --f-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* ——— Sombras & radios ——— */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
  --sh-sm: 0 2px 8px rgba(11, 42, 74, 0.06);
  --sh-md: 0 10px 30px rgba(11, 42, 74, 0.10);
  --sh-lg: 0 20px 60px rgba(11, 42, 74, 0.16);

  /* ——— Layout ——— */
  --maxw: 1200px;
  --gutter: 20px;
}

/* ========================================================================== */
/* RESET + BASE                                                                */
/* ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden; /* contiene desbordes laterales sin romper sticky en body */
}
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* IMPORTANTE: NO usar overflow-x aquí — rompe position:sticky del header */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 16px; /* evita zoom iOS */ }

/* Tipografía display */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 10vw, 5.2rem); }
h2 { font-size: clamp(2rem, 7vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 5vw, 2rem); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--brand-navy);
  display: inline-block;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ========================================================================== */
/* TOP BAR (info bar) + HEADER                                                 */
/* ========================================================================== */
.topbar {
  background: var(--brand-navy-deep);
  color: var(--ivory);
  font-size: 0.78rem;
  padding: 8px 0;
  position: relative;
  z-index: 1;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
}
.topbar-tagline {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--f-body);
  letter-spacing: 0.01em;
}
.topbar-tagline::before {
  content: "✦";
  color: var(--brand-lime);
  flex-shrink: 0;
  font-size: 0.7rem;
}
.topbar-rotator {
  font-family: var(--f-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--brand-lime);
  font-weight: 400;
  padding: 0 2px;
  display: inline-block;
  transition: opacity .3s ease, transform .3s ease;
}
.topbar-rotator.swap-out {
  opacity: 0;
  transform: translateY(-6px);
}
.topbar-rotator.swap-in {
  opacity: 1;
  transform: translateY(0);
}

/* Country selector */
.country-selector-wrap {
  position: relative;
  flex-shrink: 0;
}
.country-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  color: var(--ivory);
  font-size: 0.76rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.country-selector:hover { background: rgba(255,255,255,0.15); }
.country-selector .flag { font-size: 0.95rem; line-height: 1; }
.country-selector .chev {
  width: 12px; height: 12px; opacity: 0.7;
  transition: transform .2s;
}
.country-selector.open .chev { transform: rotate(180deg); }
.country-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  min-width: 180px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .25s ease;
  z-index: 60;
}
.country-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.country-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.country-dropdown a:last-child { border-bottom: none; }
.country-dropdown a:hover { background: var(--cream); }
.country-dropdown a .flag { font-size: 1.15rem; }
.country-dropdown a.active {
  background: var(--cream);
  font-weight: 600;
  color: var(--brand-navy);
}
.country-dropdown a .check {
  margin-left: auto;
  color: var(--brand-navy);
  opacity: 0;
}
.country-dropdown a.active .check { opacity: 1; }

/* Profile switcher en topbar (persona/empresa) */
.profile-toggle {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  flex-shrink: 0;
}
.profile-toggle a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: all .2s;
  white-space: nowrap;
}
.profile-toggle a:hover { color: var(--ivory); }
.profile-toggle a.active {
  background: var(--ivory);
  color: var(--brand-navy-deep);
}
.profile-toggle a.active.empresa {
  background: var(--brand-lime);
}
.profile-toggle a .emoji {
  font-size: 0.82rem;
  line-height: 1;
}

/* Topbar right: wrapper que agrupa profile-toggle + country-selector */
.topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Notification bell */
.notif-bell-wrap {
  position: relative;
  flex-shrink: 0;
}
.notif-bell {
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: var(--ivory);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  color: var(--brand-navy);
  transition: all .2s;
}
.notif-bell:hover { border-color: var(--brand-navy); }
.notif-bell svg { width: 18px; height: 18px; }
.notif-bell .bell-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  border-radius: var(--r-pill);
  background: var(--warm);
  color: var(--ivory);
  font-size: 0.66rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--ivory);
  padding: 0 4px;
  animation: bellPulse 2.5s infinite;
}
@keyframes bellPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(255, 107, 53, 0); }
}
.notif-bell.ringing svg {
  animation: bellRing 0.8s ease;
  transform-origin: top center;
}
@keyframes bellRing {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(15deg); }
  40% { transform: rotate(-12deg); }
  60% { transform: rotate(8deg); }
  80% { transform: rotate(-5deg); }
}

/* Panel de notificaciones */
.notif-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  z-index: 60;
  overflow: hidden;
}
.notif-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.notif-panel-head {
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.notif-panel-head h4 {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-navy-deep);
  margin: 0;
}
.notif-panel-head .mark-read {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--brand-navy);
  background: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--r-pill);
}
.notif-panel-head .mark-read:hover { background: var(--cream); }
.notif-list {
  max-height: 420px;
  overflow-y: auto;
}
.notif-item {
  display: flex;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background .15s;
  position: relative;
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: var(--cream); }
.notif-item.unread::before {
  content: "";
  position: absolute;
  left: 8px; top: 22px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--warm);
}
.notif-item-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.notif-item.promo .notif-item-icon { background: rgba(200, 242, 75, 0.25); }
.notif-item.info .notif-item-icon { background: rgba(63, 169, 255, 0.15); }
.notif-item.urgent .notif-item-icon { background: rgba(255, 107, 53, 0.15); }
.notif-item.success .notif-item-icon { background: rgba(16, 185, 129, 0.15); }
.notif-item-content { flex: 1; min-width: 0; }
.notif-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-navy-deep);
  margin-bottom: 2px;
  line-height: 1.25;
}
.notif-item-body {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.4;
  margin-bottom: 4px;
}
.notif-item-time {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
}
.notif-panel-foot {
  padding: 12px 20px;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.notif-panel-foot a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 34px; width: auto; }

.nav-desktop { display: none; }
.nav-desktop > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-desktop > ul > li {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-desktop > ul > li > a,
.nav-popover-trigger {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  transition: color .2s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
}
.nav-popover-trigger {
  background: transparent;
  cursor: pointer;
  font-family: var(--f-body);
}
.nav-popover-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}
.nav-popover-trigger.open svg { transform: rotate(180deg); }
.nav-desktop > ul > li > a:hover,
.nav-popover-trigger:hover,
.nav-popover-trigger.open { color: var(--brand-navy); }
.nav-desktop > ul > li > a::after,
.nav-popover-trigger::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--brand-navy); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-desktop > ul > li > a:hover::after,
.nav-popover-trigger:hover::after,
.nav-popover-trigger.open::after { transform: scaleX(1); }

.nav-popover {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(760px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(250, 247, 242, 0.98);
  box-shadow: var(--sh-lg);
  transform: translate(-50%, -8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 130;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-popover.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-popover::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: inherit;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}
.nav-products-panel { width: min(780px, calc(100vw - 48px)); }
.nav-tasks-panel { width: min(560px, calc(100vw - 48px)); }
.nav-popover-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 2px 2px 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.nav-popover-head strong {
  display: block;
  margin-top: 3px;
  color: var(--brand-navy-deep);
  font-size: 1rem;
  line-height: 1.25;
}
.nav-panel-eyebrow {
  color: var(--brand-navy);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-profile-tabs {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  flex-shrink: 0;
}
.nav-profile-tabs button {
  padding: 7px 12px;
  border-radius: var(--r-pill);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
}
.nav-profile-tabs button.active {
  background: var(--brand-navy);
  color: var(--ivory);
}
.nav-product-group {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.nav-product-group.active { display: grid; }
.nav-product-card,
.nav-task-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--ivory);
  color: var(--brand-navy-deep);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.nav-product-card { grid-template-columns: 42px minmax(0, 1fr) auto; }
.nav-product-card:hover,
.nav-task-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-navy);
  box-shadow: var(--sh-sm);
  background: #fff;
}
.nav-product-card::after,
.nav-task-card::after,
.nav-panel-link::after { display: none; }
.nav-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--brand-navy);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.nav-product-card .nav-card-icon {
  font-size: 1.15rem;
  letter-spacing: 0;
}
.nav-product-card:nth-child(1) .nav-card-icon,
.nav-task-card.urgent .nav-card-icon {
  background: var(--brand-lime);
  color: var(--brand-navy-deep);
}
.nav-card-copy,
.nav-task-card span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.nav-card-copy strong,
.nav-task-card strong {
  font-size: .88rem;
  line-height: 1.2;
  color: var(--brand-navy-deep);
  margin-bottom: 3px;
}
.nav-card-copy small,
.nav-task-card small {
  color: var(--ink-soft);
  font-size: .76rem;
  line-height: 1.35;
}
.nav-card-tag {
  align-self: start;
  padding: 4px 7px;
  border-radius: var(--r-pill);
  background: var(--brand-lime);
  color: var(--brand-navy-deep);
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.nav-popover-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}
.nav-panel-link {
  color: var(--brand-navy);
  font-size: .82rem;
  font-weight: 700;
}
.nav-panel-link.is-muted {
  color: var(--muted);
  font-weight: 600;
}
.nav-task-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.header-cta { display: flex; align-items: center; gap: 8px; }

/* Botón "Ingresar" / Mi cuenta */
.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-navy);
  background: transparent;
  border: 1.5px solid var(--line-strong);
  transition: all .2s;
  min-height: 40px;
  white-space: nowrap;
}
.btn-login:hover {
  border-color: var(--brand-navy);
  background: var(--ivory);
}
.btn-login svg { width: 16px; height: 16px; }

/* Hamburguesa con badge de notificación */
.burger {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  background: var(--ivory);
  border: 1px solid var(--line);
}
.burger svg { width: 20px; height: 20px; }
.burger .notif-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--warm);
  border: 2px solid var(--ivory);
  animation: notifPulse 2s infinite;
}
@keyframes notifPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(255, 107, 53, 0); }
}

/* Promo banner dentro del menú móvil */
.menu-promo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--brand-lime) 0%, #B8E03F 100%);
  color: var(--brand-navy-deep);
  border-radius: var(--r-md);
  margin-bottom: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform .2s;
}
.menu-promo:hover { transform: translateY(-2px); }
.menu-promo-icon {
  width: 32px; height: 32px;
  background: var(--brand-navy-deep);
  color: var(--brand-lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.menu-promo-text { line-height: 1.3; }
.menu-promo-text small {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  opacity: 0.75;
}
.menu-promo-arrow { margin-left: auto; font-size: 1.2rem; opacity: 0.6; }

/* Menú móvil off-canvas */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--brand-navy-deep);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.7,.0,.2,1);
  display: flex; flex-direction: column;
  padding: 28px 24px 40px;
  color: var(--ivory);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-menu-top img { height: 30px; }
.mobile-menu-close {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
}
.mobile-menu nav ul { list-style: none; display: flex; flex-direction: column; }
.mobile-menu nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu nav li.mobile-menu-kicker {
  border-bottom: none;
  padding: 20px 0 4px;
}
.mobile-menu nav li.mobile-menu-kicker:first-child { padding-top: 0; }
.mobile-menu nav li.mobile-menu-kicker span {
  color: var(--brand-lime);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mobile-menu nav a {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 400;
}
.mobile-menu nav a small { font-family: var(--f-body); font-size: 0.85rem; color: var(--brand-lime); opacity: 0.7; }
.mobile-menu-footer { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ========================================================================== */
/* BUTTONS                                                                     */
/* ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.95rem;
  line-height: 1;
  transition: transform .15s ease, box-shadow .25s ease, background .25s, color .25s;
  white-space: nowrap;
  min-height: 48px;  /* tap target */
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--brand-navy); color: var(--ivory); }
.btn-primary:hover { background: var(--brand-navy-2); box-shadow: var(--sh-md); }

.btn-accent { background: var(--brand-lime); color: var(--brand-navy-deep); }
.btn-accent:hover { box-shadow: 0 10px 30px rgba(200, 242, 75, 0.5); }

.btn-whatsapp { background: #25D366; color: var(--ivory); }
.btn-whatsapp:hover { background: #1ebe5a; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35); }

.btn-outline {
  background: transparent; color: var(--brand-navy);
  border: 1.5px solid var(--brand-navy);
}
.btn-outline:hover { background: var(--brand-navy); color: var(--ivory); }

.btn-ghost-light { color: var(--ivory); background: rgba(255,255,255,0.1); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); }

.btn-sm { padding: 10px 16px; font-size: 0.85rem; min-height: 40px; }
.btn-lg { padding: 18px 28px; font-size: 1.05rem; min-height: 56px; }
.btn-block { width: 100%; }

/* ========================================================================== */
/* HERO SLIDER                                                                 */
/* ========================================================================== */
.hero {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 80vw; height: 80vw;
  background: radial-gradient(circle, rgba(63, 169, 255, 0.18) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  transition: background 1s ease;
}
.hero.theme-soap::before { background: radial-gradient(circle, rgba(255, 216, 77, 0.25) 0%, transparent 60%); }
.hero.theme-travel::before { background: radial-gradient(circle, rgba(200, 242, 75, 0.25) 0%, transparent 60%); }
.hero.theme-health::before { background: radial-gradient(circle, rgba(255, 180, 180, 0.25) 0%, transparent 60%); }
.hero.theme-business::before { background: radial-gradient(circle, rgba(11, 42, 74, 0.15) 0%, transparent 60%); }

.hero-inner { position: relative; z-index: 1; }

.hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity .6s ease, transform .6s ease, visibility 0s linear .6s;
  pointer-events: none;
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity .6s ease .15s, transform .6s ease .15s, visibility 0s;
  pointer-events: auto;
}

.hero .trust-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ivory);
  padding: 8px 14px 8px 8px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.hero .trust-badge .dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--success);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.hero .trust-badge strong { color: var(--ink); font-weight: 700; }

.hero h1 { margin-bottom: 18px; color: var(--brand-navy-deep); }
.hero h1 em { font-style: italic; color: var(--brand-navy); }
.hero h1 .chip {
  display: inline-block;
  background: var(--brand-lime);
  color: var(--brand-navy-deep);
  font-family: var(--f-body);
  font-size: 0.45em;
  font-weight: 700;
  padding: 0.25em 0.7em;
  border-radius: var(--r-pill);
  transform: rotate(-3deg) translateY(-0.2em);
  vertical-align: middle;
  letter-spacing: 0.02em;
}
.hero h1 .chip.sun { background: var(--brand-sun); }
.hero h1 .chip.sky { background: var(--brand-sky); color: var(--ivory); }

.hero .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 44ch;
  margin-bottom: 28px;
}
.hero .hero-ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.hero .hero-meta {
  display: flex; gap: 24px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.hero .hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero .hero-meta svg { width: 16px; height: 16px; color: var(--success); }

.hero-visual { margin-top: 32px; position: relative; }
.hero-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.hero-visual .card-float {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--ivory);
  padding: 12px 14px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 32px);
  width: fit-content;
  min-width: min(280px, calc(100% - 32px));
  z-index: 2;
}
.hero-visual .card-float .emoji {
  flex: 0 0 auto;
  font-size: 1.45rem;
  line-height: 1;
}
.hero-visual .card-float .txt {
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.25;
  min-width: 0;
}
.hero-visual .card-float .txt strong {
  color: var(--brand-navy);
  display: block;
  font-size: 0.92rem;
  line-height: 1.12;
  margin-bottom: 2px;
}

/* Slider pills con progress bar */
.hero-pills {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px;
  -webkit-overflow-scrolling: touch;
}
.hero-pills::-webkit-scrollbar { display: none; }
.hero-pill {
  flex: 1 0 auto;
  min-width: 140px;
  padding: 10px 14px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: left;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
}
.hero-pill:hover { border-color: var(--brand-navy); transform: translateY(-2px); }
.hero-pill.active {
  background: var(--brand-navy-deep);
  color: var(--ivory);
  border-color: var(--brand-navy-deep);
}
.hero-pill-emoji {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-pill-text {
  flex: 1;
  min-width: 0;
}
.hero-pill-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-navy-deep);
  line-height: 1.2;
}
.hero-pill.active .hero-pill-label { color: var(--ivory); }
.hero-pill-sub {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.1;
}
.hero-pill.active .hero-pill-sub { color: rgba(255,255,255,0.6); }
.hero-pill-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--brand-lime);
  transition: none;
}
.hero-pill.active .hero-pill-progress {
  animation: pillProgress var(--slide-duration, 7s) linear forwards;
}
.hero-pill.paused .hero-pill-progress { animation-play-state: paused; }
@keyframes pillProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* Botones de navegación del slider */
.hero-nav {
  display: none;
  gap: 8px;
  margin-top: 16px;
  justify-content: flex-end;
}
.hero-nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--brand-navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.hero-nav button:hover { background: var(--brand-navy); color: var(--ivory); border-color: var(--brand-navy); }
.hero-nav button svg { width: 18px; height: 18px; }

/* ========================================================================== */
/* PRODUCTS GRID — rediseño bento uniforme                                     */
/* ========================================================================== */
.products {
  padding: 60px 0 40px;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.products-head { text-align: center; margin-bottom: 36px; }
.products-head h2 { margin-top: 8px; color: var(--brand-navy-deep); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.product-card {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  min-height: 180px;
  text-decoration: none;
  color: inherit;
}
.product-card::before {
  content: "";
  position: absolute; inset: auto -30% -50% auto;
  width: 140px; height: 140px;
  background: var(--brand-sky);
  opacity: 0.08;
  border-radius: 50%;
  transition: transform .4s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--brand-navy); box-shadow: var(--sh-md); }
.product-card:hover::before { transform: scale(1.3); }

.product-card .icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--brand-navy);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  position: relative; z-index: 1;
}

.product-card h3 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-navy-deep);
  letter-spacing: -0.01em;
  position: relative; z-index: 1;
}
.product-card p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  position: relative; z-index: 1;
  line-height: 1.45;
}

.product-card .card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  position: relative; z-index: 1;
}
.product-card .card-foot .price-from {
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.product-card .card-foot .price-from strong {
  display: block;
  font-size: 0.92rem;
  color: var(--brand-navy-deep);
  font-weight: 700;
  font-family: var(--f-body);
}
.product-card .card-foot-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line-strong);
  color: var(--brand-navy);
  transition: all .25s;
  font-weight: 700;
  flex-shrink: 0;
}
.product-card:hover .card-foot-cta {
  background: var(--brand-lime);
  border-color: var(--brand-lime);
  color: var(--brand-navy-deep);
  transform: translateX(3px);
}

.product-card .tag-pill {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  background: var(--brand-lime);
  color: var(--brand-navy-deep);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.product-card .tag-pill.hot {
  background: var(--warm);
  color: var(--ivory);
}
.product-card .tag-pill.new {
  background: var(--success);
  color: var(--ivory);
}

/* Destacado — tarjeta AUTO ocupa 2 col en mobile (la primera fila completa) */
.product-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(140deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
  color: var(--ivory);
  border-color: var(--brand-navy);
  min-height: auto;
  padding: 26px 22px;
}
.product-card.featured h3 { color: var(--ivory); font-size: 1.35rem; }
.product-card.featured p { color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.product-card.featured .icon { background: var(--brand-lime); color: var(--brand-navy-deep); }
.product-card.featured::before { background: var(--brand-lime); opacity: 0.12; }
.product-card.featured .card-foot .price-from { color: rgba(255,255,255,0.7); }
.product-card.featured .card-foot .price-from strong { color: var(--brand-lime); }
.product-card.featured .card-foot-cta {
  background: var(--brand-lime);
  color: var(--brand-navy-deep);
  border-color: var(--brand-lime);
  width: auto;
  height: auto;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  gap: 6px;
}
.product-card.featured:hover .card-foot-cta {
  background: var(--ivory);
  border-color: var(--ivory);
}

/* Mini bullets de coverage dentro de la featured card */
.product-card.featured .coverage-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  position: relative; z-index: 1;
}
.product-card.featured .coverage-chips span {
  font-size: 0.72rem;
  padding: 4px 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.85);
}

/* ========================================================================== */
/* ASEGURADORAS                                                                */
/* ========================================================================== */
.insurers { padding: 40px 0 20px; background: var(--cream); }
.insurers .wrap { text-align: center; }
.insurers p {
  color: var(--muted); font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 24px;
}
.insurers-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 12px;
  align-items: center;
  justify-items: center;
}
.insurers-strip img {
  max-height: 40px;
  width: auto;
  filter: grayscale(100%) opacity(0.7);
  transition: filter .25s;
}
.insurers-strip img:hover { filter: grayscale(0) opacity(1); }

/* ========================================================================== */
/* WHY US                                                                      */
/* ========================================================================== */
.why { padding: 80px 0; }
.why-head { max-width: 620px; margin-bottom: 40px; }
.why-head h2 { color: var(--brand-navy-deep); margin-top: 8px; }
.why-head p { color: var(--ink-soft); margin-top: 16px; font-size: 1.05rem; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.why-card {
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.why-card .num {
  font-family: var(--f-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--brand-lime);
  position: absolute;
  top: 12px; right: 20px;
  opacity: 0.6;
}
.why-card h3 {
  font-family: var(--f-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-navy-deep);
  margin-bottom: 8px;
}
.why-card p { color: var(--ink-soft); font-size: 0.95rem; }
.why-card .why-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand-navy);
  color: var(--brand-lime);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

/* ========================================================================== */
/* STEPS (proceso 3 clics)                                                     */
/* ========================================================================== */
.steps {
  background: var(--brand-navy-deep);
  color: var(--ivory);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.steps > .wrap {
  position: relative;
  z-index: 1;
}
.steps::before {
  content: "";
  position: absolute; inset: -50% -10% auto auto;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(63, 169, 255, 0.2) 0%, transparent 65%);
}
.steps-head { text-align: center; margin: 0 auto 48px; max-width: 720px; position: relative; z-index: 1; }
.steps-head .eyebrow { color: var(--brand-lime); }
.steps-head .eyebrow::before { background: var(--brand-lime); }
.steps-head h2 { color: var(--ivory); margin-top: 8px; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 0 auto;
  position: relative; z-index: 1;
  width: 100%;
}
.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
}
.step-card .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-lime);
  color: var(--brand-navy-deep);
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: var(--f-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }

/* ========================================================================== */
/* TESTIMONIALS                                                                */
/* ========================================================================== */
.testimonials { padding: 80px 0; background: var(--cream); }
.testimonials-head {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 36px;
  text-align: center; align-items: center;
}
.testimonials-head h2 { color: var(--brand-navy-deep); }
.rating-summary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ivory);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
  font-size: 0.9rem;
}
.rating-summary .stars { color: #FFC107; letter-spacing: 2px; }
.rating-summary strong { color: var(--brand-navy-deep); }
.testimonials-scroll {
  display: flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 20px 16px;
  margin: 0 -20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonial {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.testimonial .stars { color: #FFC107; font-size: 0.95rem; letter-spacing: 2px; }
.testimonial blockquote {
  font-family: var(--f-display);
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--brand-navy-deep);
}
.testimonial .author {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px; border-top: 1px solid var(--line);
}
.testimonial .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand-navy); color: var(--brand-lime);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.92rem;
}
.testimonial .meta { font-size: 0.78rem; color: var(--ink-soft); }
.testimonial .meta strong { display: block; color: var(--ink); font-size: 0.88rem; font-weight: 600; }

/* ========================================================================== */
/* LEAD FORM CTA                                                               */
/* ========================================================================== */
.lead-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.lead-cta::before {
  content: "";
  position: absolute;
  inset: auto auto -40% -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 242, 75, 0.18) 0%, transparent 65%);
}
.lead-cta-inner { position: relative; z-index: 1; }
.lead-cta h2 { color: var(--ivory); margin-bottom: 10px; }
.lead-cta h2 em { color: var(--brand-lime); font-style: italic; }
.lead-cta p { color: rgba(255,255,255,0.8); margin-bottom: 24px; font-size: 1rem; }
.lead-form {
  background: var(--ivory);
  padding: 20px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  color: var(--ink);
  display: flex; flex-direction: column; gap: 12px;
}
.lead-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.lead-form .field {
  display: flex; flex-direction: column; gap: 6px;
}
.lead-form input, .lead-form select {
  padding: 14px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--cream);
  transition: border-color .2s, background .2s;
  min-height: 50px;
}
.lead-form input:focus, .lead-form select:focus {
  outline: none;
  border-color: var(--brand-navy);
  background: var(--ivory);
}
.lead-form .legal {
  font-size: 0.72rem; color: var(--muted); line-height: 1.4;
}

/* ========================================================================== */
/* FAQ                                                                         */
/* ========================================================================== */
.faq { padding: 80px 0; }
.faq-head { margin-bottom: 32px; max-width: 620px; }
.faq-head h2 { color: var(--brand-navy-deep); margin-top: 8px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600;
  color: var(--brand-navy-deep);
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--brand-navy);
  transition: transform .25s ease;
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================================================== */
/* ABOUT COMPACT (sección de home)                                             */
/* ========================================================================== */
.about-compact {
  padding: 80px 0;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-compact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-compact-text h2 {
  color: var(--brand-navy-deep);
  margin-top: 8px;
  margin-bottom: 20px;
}
.about-compact-text h2 em {
  font-style: italic;
  color: var(--brand-navy);
}
.about-compact-lead {
  font-family: var(--f-display);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--brand-navy-deep);
  margin-bottom: 16px;
}
.about-compact-body {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.about-compact-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-compact-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .25s ease, border-color .25s;
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-navy);
}
.stat-card .stat-num {
  font-family: var(--f-display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  line-height: 1;
  color: var(--brand-navy);
}
.stat-card .stat-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.3;
}

@media (min-width: 960px) {
  .about-compact-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
  .about-compact-ctas {
    flex-direction: row;
  }
}

/* ========================================================================== */
/* PERFIL PICKER — Persona vs Empresa                                          */
/* ========================================================================== */
.profile-picker {
  padding: 60px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.profile-picker-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}
.profile-picker-head h2 {
  color: var(--brand-navy-deep);
  margin-top: 8px;
}
.profile-picker-head h2 em {
  font-style: italic;
  color: var(--brand-navy);
}
.profile-picker-head p {
  color: var(--ink-soft);
  margin-top: 12px;
  font-size: 1.05rem;
}
.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.profile-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s, box-shadow .3s;
  text-decoration: none;
  color: inherit;
}
.profile-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -50% auto;
  width: 220px; height: 220px;
  border-radius: 50%;
  opacity: 0.15;
  transition: transform .4s ease, opacity .4s;
}
.profile-card.persona::before { background: var(--brand-sky); }
.profile-card.empresa::before { background: var(--brand-lime); }
.profile-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-navy);
  box-shadow: var(--sh-lg);
}
.profile-card:hover::before {
  transform: scale(1.4);
  opacity: 0.2;
}
.profile-emoji {
  font-size: 2.8rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.profile-card h3 {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--brand-navy-deep);
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.profile-card .profile-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.profile-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.profile-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.profile-card ul li::before {
  content: "→";
  color: var(--brand-navy);
  font-weight: 700;
  flex-shrink: 0;
}
.profile-card .profile-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--brand-navy);
  color: var(--ivory);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.92rem;
  align-self: flex-start;
  transition: background .25s;
  position: relative;
  z-index: 1;
}
.profile-card.empresa .profile-cta {
  background: var(--brand-lime);
  color: var(--brand-navy-deep);
}
.profile-card:hover .profile-cta { background: var(--brand-navy-2); }
.profile-card.empresa:hover .profile-cta { background: var(--brand-navy-deep); color: var(--brand-lime); }

/* ========================================================================== */
/* ACCESOS RÁPIDOS (trámites)                                                  */
/* ========================================================================== */
.quick-access {
  padding: 60px 0;
}
.quick-access-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.quick-access-head h2 {
  color: var(--brand-navy-deep);
  margin-top: 6px;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
}
.quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.quick-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-decoration: none;
  color: inherit;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.quick-card:hover {
  transform: translateX(4px);
  border-color: var(--brand-navy);
  box-shadow: var(--sh-sm);
}
.quick-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--brand-navy-deep);
  color: var(--brand-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.quick-card.urgent .quick-icon { background: var(--warm); color: var(--ivory); }
.quick-card.success .quick-icon { background: var(--success); color: var(--ivory); }
.quick-text h4 {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-navy-deep);
  margin-bottom: 2px;
}
.quick-text p {
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.quick-arrow {
  margin-left: auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.quick-card:hover .quick-arrow { background: var(--brand-lime); color: var(--brand-navy-deep); }

/* ========================================================================== */
/* APP PROMO                                                                   */
/* ========================================================================== */
.app-promo {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.app-promo::before {
  content: "";
  position: absolute;
  top: -30%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 242, 75, 0.22) 0%, transparent 65%);
}
.app-promo > .wrap {
  max-width: 1280px;
}
.app-promo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.app-promo-text .eyebrow {
  color: var(--brand-lime);
}
.app-promo-text .eyebrow::before {
  background: var(--brand-lime);
}
.app-promo-text h2 {
  color: var(--ivory);
  margin-top: 8px;
  margin-bottom: 18px;
}
.app-promo-text h2 em {
  font-style: italic;
  color: var(--brand-lime);
}
.app-promo-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.app-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.app-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}
.app-features li::before {
  content: "✓";
  width: 24px; height: 24px;
  background: var(--brand-lime);
  color: var(--brand-navy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.app-stores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: rgba(0,0,0,.86);
  color: var(--ivory);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: transform .2s;
  border: 1px solid rgba(255,255,255,0.15);
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn svg {
  fill: none;
  flex-shrink: 0;
  height: 28px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 28px;
}
.store-btn .store-text { line-height: 1.15; }
.store-btn small {
  display: block;
  font-size: 0.68rem;
  opacity: 0.75;
  letter-spacing: 0.02em;
}
.store-btn strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
}

/* Mockup del phone */
.phone-mockup {
  position: relative;
  max-width: none;
  height: clamp(400px, 60vh, 600px);
  width: clamp(200px, 30vh, 300px);
  margin: 0 auto;
  aspect-ratio: 9 / 18;
  background: linear-gradient(145deg, #1A2B42, #0B1A2E);
  border-radius: 42px;
  padding: 14px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.05),
    0 30px 80px rgba(0,0,0,0.5),
    0 10px 20px rgba(0,0,0,0.3);
}
.phone-mockup::before {
  content: "";
  position: absolute;
  top: 26px; left: 50%;
  transform: translateX(-50%);
  width: 36%; height: 30px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}
.phone-mockup .phone-screen {
  width: 100%;
  height: 100%;
  background: var(--ivory);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 78px clamp(16px, 5%, 24px) 102px;
  position: relative;
}
.phone-app-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.phone-screen .phone-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-display);
  font-size: clamp(.98rem, 1.8vw, 1.14rem);
  color: var(--brand-navy-deep);
  font-weight: 600;
}
.phone-screen .phone-logo::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--brand-lime);
  border-radius: 50%;
}
.phone-alert {
  align-items: center;
  background: var(--brand-lime);
  border-radius: 50%;
  color: var(--brand-navy-deep);
  display: flex;
  font-size: .68rem;
  font-weight: 800;
  height: 24px;
  justify-content: center;
  width: 24px;
}
.phone-screen-stack {
  flex: 1;
  min-height: 0;
  position: relative;
}
.phone-app-screen {
  display: flex;
  flex-direction: column;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 8px;
  pointer-events: none;
  position: absolute;
  transform: translateX(18px);
  transition: opacity .35s ease, transform .35s ease;
}
.phone-app-screen.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.phone-kicker {
  color: var(--brand-sky);
  display: block;
  font-size: clamp(.58rem, 1vw, .68rem);
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.phone-screen h4 {
  font-family: var(--f-display);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: var(--brand-navy-deep);
  margin-bottom: 12px;
  line-height: 1.2;
}
.phone-policy {
  background: var(--cream);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  font-size: clamp(.68rem, 1vw, .78rem);
  color: var(--ink-soft);
}
.phone-policy .policy-title {
  font-weight: 700;
  color: var(--brand-navy-deep);
  margin-bottom: 4px;
  font-size: clamp(.76rem, 1.2vw, .88rem);
}
.phone-policy .policy-status {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  background: var(--success);
  color: var(--ivory);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.phone-payment-ring {
  align-items: center;
  align-self: center;
  background:
    radial-gradient(circle at center, var(--ivory) 58%, transparent 59%),
    conic-gradient(var(--brand-lime) 0 92%, var(--line) 92% 100%);
  border-radius: 50%;
  color: var(--brand-navy-deep);
  display: flex;
  flex-direction: column;
  height: clamp(104px, 16vh, 128px);
  justify-content: center;
  margin: 4px 0 18px;
  width: clamp(104px, 16vh, 128px);
}
.phone-payment-ring strong {
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  line-height: 1;
}
.phone-payment-ring span {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  margin-top: 4px;
}
.phone-mini-row {
  align-items: center;
  background: var(--cream);
  border-radius: 12px;
  color: var(--ink-soft);
  display: flex;
  font-size: clamp(.64rem, 1vw, .76rem);
  justify-content: space-between;
  margin-bottom: 9px;
  padding: 12px;
}
.phone-mini-row strong {
  color: var(--brand-navy-deep);
}
.phone-claim-card {
  background: var(--cream);
  border-radius: 16px;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  font-size: clamp(.66rem, 1vw, .78rem);
  gap: 8px;
  margin-bottom: 12px;
  min-height: clamp(112px, 18vh, 140px);
  padding: 16px;
}
.phone-claim-card strong {
  color: var(--brand-navy-deep);
  font-size: clamp(.78rem, 1.2vw, .9rem);
}
.phone-claim-card small {
  font-size: clamp(.62rem, 1vw, .74rem);
  line-height: 1.45;
}
.claim-pin {
  background:
    linear-gradient(135deg, rgba(63,169,255,.2), rgba(200,242,75,.35)),
    var(--ivory);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: block;
  height: clamp(54px, 10vh, 72px);
  position: relative;
}
.claim-pin::after {
  background: var(--warm);
  border: 3px solid var(--ivory);
  border-radius: 50%;
  box-shadow: var(--sh-sm);
  content: "";
  height: 18px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
}
.phone-chat {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.phone-chat span,
.phone-chat strong {
  border-radius: 14px;
  font-size: clamp(.64rem, 1vw, .76rem);
  line-height: 1.35;
  padding: 10px 12px;
  width: 86%;
}
.phone-chat span {
  background: var(--cream);
  color: var(--ink-soft);
}
.phone-chat strong {
  align-self: flex-end;
  background: var(--brand-navy);
  color: var(--ivory);
  font-weight: 700;
}
.phone-cta {
  margin-top: auto;
  padding: 12px;
  background: var(--brand-navy);
  color: var(--ivory);
  border-radius: 10px;
  text-align: center;
  font-size: clamp(.72rem, 1.1vw, .86rem);
  font-weight: 600;
}
.phone-bottom-nav {
  align-items: center;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(4, 1fr);
  left: 0;
  padding: 10px 12px 14px;
  position: absolute;
  right: 0;
  z-index: 4;
}
.phone-bottom-nav button {
  align-items: center;
  border-radius: 12px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  font-size: clamp(.5rem, .85vw, .62rem);
  font-weight: 800;
  gap: 4px;
  min-width: 0;
  padding: 7px 2px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.phone-bottom-nav button svg {
  fill: none;
  height: clamp(18px, 2.8vh, 22px);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
  width: clamp(18px, 2.8vh, 22px);
}
.phone-bottom-nav button.active {
  background: rgba(200,242,75,.28);
  color: var(--brand-navy-deep);
  transform: translateY(-2px);
}

/* ========================================================================== */
/* PROFILE PAGE HEROS (persona.html / empresa.html)                            */
/* ========================================================================== */
.profile-hero {
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.profile-hero.persona-bg::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 80vw; height: 80vw;
  background: radial-gradient(circle, rgba(63, 169, 255, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.profile-hero.empresa-bg::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 80vw; height: 80vw;
  background: radial-gradient(circle, rgba(200, 242, 75, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.profile-hero .profile-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.profile-hero h1 {
  color: var(--brand-navy-deep);
  margin: 18px 0;
  font-size: clamp(2.4rem, 9vw, 4.4rem);
}
.profile-hero h1 em {
  font-style: italic;
  color: var(--brand-navy);
}
.profile-hero .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 60ch;
  margin-bottom: 24px;
}
.profile-hero .switcher {
  display: inline-flex;
  padding: 4px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.profile-hero .switcher a {
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all .2s;
}
.profile-hero .switcher a.active {
  background: var(--brand-navy);
  color: var(--ivory);
}
.profile-hero .switcher a.active.empresa { background: var(--brand-lime); color: var(--brand-navy-deep); }

/* ========================================================================== */
/* ABOUT PAGE                                                                  */
/* ========================================================================== */
.about-hero {
  background:
    radial-gradient(circle at 85% 18%, rgba(63,169,255,.16), transparent 34%),
    linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 74px 0 64px;
}
.about-hero-inner {
  max-width: 980px;
}
.about-hero h1 {
  color: var(--brand-navy-deep);
  font-size: clamp(3rem, 8vw, 5.8rem);
  margin: 18px 0 24px;
  max-width: 11ch;
}
.about-hero h1 em {
  color: var(--brand-navy);
  font-style: italic;
}
.about-hero .lead {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  max-width: 720px;
}

.manifesto {
  background: var(--ivory);
  padding: 58px 0;
}
.manifesto-inner {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: clamp(26px, 5vw, 48px);
}
.manifesto-text {
  column-gap: 34px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}
.manifesto-text p + p {
  margin-top: 14px;
}
.manifesto-text em {
  color: var(--brand-navy);
  font-style: italic;
}

.pillars {
  background: var(--cream);
  padding: 78px 0;
}
.pillars-head,
.journey-head {
  margin-bottom: 34px;
  max-width: 760px;
}
.pillars-head h2,
.journey-head h2 {
  color: var(--brand-navy-deep);
  margin: 10px 0 14px;
}
.pillars-head p,
.journey-head p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.6;
}
.pillars-grid {
  display: grid;
  gap: 16px;
}
.pillar {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: 26px;
}
.pillar-icon {
  align-items: center;
  background: var(--brand-navy);
  border-radius: var(--r-sm);
  color: var(--brand-lime);
  display: flex;
  font-size: 1.35rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 20px;
  width: 48px;
}
.pillar h3 {
  color: var(--brand-navy-deep);
  font-family: var(--f-body);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.pillar p {
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.6;
}

.journey {
  background: var(--ivory);
  padding: 78px 0;
}
.journey-list {
  display: grid;
  gap: 14px;
}
.journey-item {
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: grid;
  gap: 18px;
  grid-template-columns: 44px 1fr;
  padding: 22px;
}
.journey-item.accent {
  background: linear-gradient(140deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
  border-color: transparent;
  color: var(--ivory);
}
.journey-dot {
  align-items: center;
  background: var(--brand-lime);
  border-radius: 50%;
  color: var(--brand-navy-deep);
  display: flex;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.journey-content h3 {
  color: var(--brand-navy-deep);
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.journey-content p {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.65;
}
.journey-item.accent .journey-content h3,
.journey-item.accent .journey-content p {
  color: var(--ivory);
}
.journey-item.accent .journey-content p {
  opacity: .78;
}
.journey-content .tag {
  background: var(--brand-lime);
  border-radius: var(--r-pill);
  color: var(--brand-navy-deep);
  display: inline-flex;
  font-size: .72rem;
  font-weight: 800;
  margin-top: 12px;
  padding: 6px 12px;
  text-transform: uppercase;
}

.jv {
  background: var(--brand-navy-deep);
  color: var(--ivory);
  overflow: hidden;
  padding: 78px 0;
  position: relative;
}
.jv::before {
  background: radial-gradient(circle, rgba(200,242,75,.18) 0%, transparent 64%);
  content: "";
  height: 560px;
  position: absolute;
  right: -180px;
  top: -240px;
  width: 560px;
}
.jv-inner {
  position: relative;
  z-index: 1;
}
.jv h2 {
  color: var(--ivory);
  margin: 12px 0 18px;
  max-width: 760px;
}
.jv h2 em {
  color: var(--brand-lime);
  font-style: italic;
}
.jv > .wrap > p,
.jv-inner > p {
  color: rgba(255,255,255,.76);
  line-height: 1.7;
  max-width: 780px;
}
.jv-partners {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}
.jv-partner {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 24px;
}
.jv-partner h4 {
  color: var(--brand-lime);
  font-family: var(--f-body);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.jv-partner p {
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

.numbers {
  background: var(--cream);
  padding: 64px 0;
}
.numbers-grid {
  display: grid;
  gap: 14px;
}
.number-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
}
.number-card .num {
  color: var(--brand-navy-deep);
  font-family: var(--f-display);
  font-size: 3rem;
  line-height: 1;
}
.number-card .num em {
  color: var(--brand-lime);
  font-style: normal;
}
.number-card .label {
  color: var(--ink-soft);
  font-size: .9rem;
  margin: 10px auto 0;
  max-width: 18ch;
}

.about-cta {
  background: var(--ivory);
  padding: 78px 0;
  text-align: center;
}
.about-cta .wrap {
  max-width: 760px;
}
.about-cta h2 {
  color: var(--brand-navy-deep);
}
.about-cta h2 em {
  color: var(--brand-navy);
  font-style: italic;
}
.about-cta p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.6;
  margin: 14px auto 26px;
  max-width: 54ch;
}
.about-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

/* ========================================================================== */
/* FORM PAGES (contacto, siniestros, pago)                                     */
/* ========================================================================== */
.form-page {
  padding: 60px 0;
}
.form-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.form-page-intro h1 {
  color: var(--brand-navy-deep);
  margin: 12px 0 16px;
  font-size: clamp(2.2rem, 8vw, 3.4rem);
}
.form-page-intro h1 em { font-style: italic; color: var(--brand-navy); }
.form-page-intro .lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 24px;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-decoration: none;
  color: inherit;
  transition: transform .2s, border-color .2s;
}
.contact-channel:hover { transform: translateY(-2px); border-color: var(--brand-navy); }
.contact-channel .ch-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ivory);
  font-size: 1.2rem;
}
.contact-channel.wa .ch-icon { background: #25D366; }
.contact-channel.phone .ch-icon { background: var(--brand-navy); }
.contact-channel.email .ch-icon { background: var(--warm); }
.contact-channel h4 {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-navy-deep);
  margin-bottom: 2px;
}
.contact-channel p { font-size: 0.82rem; color: var(--ink-soft); }
.contact-channel .ch-arrow {
  margin-left: auto;
  color: var(--muted);
}

.big-form {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.big-form h2 {
  font-family: var(--f-display);
  font-size: 1.7rem;
  color: var(--brand-navy-deep);
  margin-bottom: 4px;
}
.big-form .form-sub {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.big-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.big-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.big-form input,
.big-form select,
.big-form textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--cream);
  transition: border-color .2s, background .2s;
  min-height: 50px;
  resize: vertical;
  font-family: inherit;
}
.big-form textarea {
  min-height: 110px;
}
.big-form input:focus,
.big-form select:focus,
.big-form textarea:focus {
  outline: none;
  border-color: var(--brand-navy);
  background: var(--ivory);
}

@media (min-width: 720px) {
  .profile-grid { grid-template-columns: 1fr 1fr; }
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .app-promo-grid {
    gap: clamp(42px, 6vw, 76px);
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 400px);
  }
  .phone-mockup {
    justify-self: center;
    height: clamp(430px, 60vh, 600px);
    width: clamp(215px, 30vh, 300px);
  }
  .manifesto-text {
    columns: 2;
  }
  .manifesto-text p {
    break-inside: avoid;
  }
  .pillars-grid,
  .numbers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .numbers-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .jv-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-cta-buttons {
    flex-direction: row;
  }
  .form-page-grid { grid-template-columns: 1fr 1.2fr; gap: 48px; }
}

/* ========================================================================== */
/* FOOTER                                                                      */
/* ========================================================================== */
footer {
  background: var(--brand-navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 100px; /* extra bottom for sticky CTA en mobile */
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; max-width: 320px; line-height: 1.5; }
.footer-col h4 {
  font-family: var(--f-body); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand-lime);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--ivory); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
  transition: background .2s;
}
.footer-social a:hover { background: var(--brand-lime); color: var(--brand-navy-deep); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .regs {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-pill);
  width: fit-content;
}

/* Crédito Novelty8 */
.footer-credit {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}
.footer-credit a {
  color: var(--brand-lime);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.footer-credit a:hover { color: var(--ivory); }

/* ========================================================================== */
/* STICKY CTA (mobile)                                                         */
/* ========================================================================== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0));
  background: var(--ivory);
  border-top: 1px solid var(--line);
  display: flex; gap: 8px;
  box-shadow: 0 -10px 30px rgba(11, 42, 74, 0.08);
  z-index: 40;
}
.sticky-cta .btn { flex: 1; }

/* Floating WhatsApp con bubble contextual */
.fab-whatsapp {
  position: fixed;
  right: 16px; bottom: 80px;
  z-index: 41;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.fab-whatsapp-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--ivory);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s;
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
}
.fab-whatsapp-btn:hover { transform: scale(1.08); }
.fab-whatsapp-btn svg { width: 28px; height: 28px; }
.fab-whatsapp-btn .fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.35;
  animation: fabPulse 2s infinite;
  z-index: -1;
}
@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.35; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Bubble contextual */
.fab-bubble {
  position: relative;
  background: var(--ivory);
  color: var(--ink);
  padding: 14px 16px;
  padding-right: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(11, 42, 74, 0.15);
  max-width: 240px;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 4px;
  opacity: 0;
  transform: translateX(20px) scale(0.9);
  transform-origin: bottom right;
  transition: all .35s cubic-bezier(.3, .7, .3, 1);
  pointer-events: none;
}
.fab-bubble.show {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.fab-bubble::after {
  content: "";
  position: absolute;
  bottom: 12px; right: -6px;
  width: 12px; height: 12px;
  background: var(--ivory);
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(11, 42, 74, 0.06);
}
.fab-bubble strong {
  display: block;
  color: var(--brand-navy);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.88rem;
}
.fab-bubble .fab-bubble-close {
  position: absolute;
  top: 6px; right: 8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--line);
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  border: none;
}
.fab-bubble .fab-bubble-close:hover { background: var(--line-strong); }
.fab-whatsapp-btn .fab-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--warm);
  color: var(--ivory);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--ivory);
  opacity: 0;
  transform: scale(0);
  transition: all .3s;
}
.fab-whatsapp-btn.has-new .fab-badge {
  opacity: 1;
  transform: scale(1);
}

/* ========================================================================== */
/* UGC / INFLUENCER VIDEOS                                                    */
/* ========================================================================== */
.ugc-videos {
  padding: 72px 0;
  background: var(--ivory);
  overflow: hidden;
}
.ugc-videos-head {
  margin-bottom: 28px;
  max-width: 660px;
}
.ugc-videos-head h2 {
  color: var(--brand-navy-deep);
  margin-top: 8px;
}
.ugc-videos-head p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-top: 10px;
}
.ugc-video-rail {
  display: grid;
  grid-auto-columns: minmax(230px, 78vw);
  grid-auto-flow: column;
  gap: 14px;
  margin: 0 calc(var(--gutter) * -1);
  overflow-x: auto;
  padding: 0 var(--gutter) 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.ugc-video-rail::-webkit-scrollbar { display: none; }
.ugc-video-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  scroll-snap-align: start;
}
.ugc-video-thumb {
  aspect-ratio: 9 / 14;
  background: var(--brand-navy-deep);
  border: 0;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.ugc-video-thumb video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.ugc-video-thumb::after {
  background: linear-gradient(180deg, transparent 42%, rgba(6,26,46,.48) 100%);
  content: "";
  inset: 0;
  opacity: 1;
  position: absolute;
  transition: opacity .22s ease;
}
.ugc-play {
  align-items: center;
  background: var(--brand-lime);
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 50%;
  bottom: 14px;
  color: var(--brand-navy-deep);
  display: flex;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 14px;
  width: 42px;
  z-index: 1;
  transition: opacity .22s ease, transform .22s ease;
}
.ugc-play::before {
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--brand-navy-deep);
  border-top: 8px solid transparent;
  content: "";
  display: block;
  margin-left: 3px;
}
.ugc-video-card.is-playing .ugc-video-thumb::after,
.ugc-video-card.is-playing .ugc-play {
  opacity: 0;
  transform: scale(.92);
}
.ugc-video-copy {
  padding: 16px;
}
.ugc-badge {
  color: var(--brand-navy);
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ugc-video-copy h3 {
  color: var(--brand-navy-deep);
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 6px;
}
.ugc-video-copy p {
  color: var(--ink-soft);
  font-size: .86rem;
  line-height: 1.45;
}
.ugc-creator {
  color: var(--muted) !important;
  font-size: .78rem !important;
  font-weight: 700;
  margin-bottom: 8px;
}

.ugc-floaters {
  bottom: 94px;
  display: none;
  left: 14px;
  position: fixed;
  width: min(300px, calc(100vw - 28px));
  z-index: 70;
}
.ugc-floaters.show {
  display: block;
}
.ugc-floating-card {
  align-items: center;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  color: var(--ink);
  cursor: pointer;
  display: none;
  gap: 10px;
  grid-template-columns: 54px 1fr 28px;
  padding: 8px;
  text-align: left;
  width: 100%;
}
.ugc-floating-card.active {
  display: grid;
  animation: fadeUp .32s ease both;
}
.ugc-floating-media {
  aspect-ratio: 9 / 12;
  background: var(--brand-navy-deep);
  border-radius: 10px;
  display: block;
  overflow: hidden;
}
.ugc-floating-media video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.ugc-floating-copy strong,
.ugc-floating-copy span {
  display: block;
}
.ugc-floating-copy strong {
  color: var(--brand-navy-deep);
  font-size: .86rem;
  line-height: 1.18;
}
.ugc-floating-copy span {
  color: var(--muted);
  font-size: .72rem;
  margin-top: 3px;
}
.ugc-floating-play {
  align-items: center;
  background: var(--brand-lime);
  border-radius: 50%;
  color: var(--brand-navy-deep);
  display: flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}
.ugc-floating-play::before {
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--brand-navy-deep);
  border-top: 6px solid transparent;
  content: "";
  display: block;
  margin-left: 2px;
}
.ugc-floating-close {
  align-items: center;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--sh-sm);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  font-size: 1.05rem;
  height: 28px;
  justify-content: center;
  position: absolute;
  right: -8px;
  top: -10px;
  width: 28px;
}
.ugc-modal {
  align-items: center;
  display: none;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 100;
}
.ugc-modal.open {
  display: flex;
}
.ugc-modal-backdrop {
  background: rgba(6,26,46,.72);
  inset: 0;
  position: absolute;
}
.ugc-modal-dialog {
  background: var(--ivory);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  display: grid;
  max-height: min(760px, 92vh);
  max-width: 860px;
  overflow: hidden;
  position: relative;
  width: min(100%, 860px);
  z-index: 1;
}
.ugc-modal-close {
  align-items: center;
  background: rgba(255,255,255,.92);
  border: 0;
  border-radius: 50%;
  color: var(--brand-navy);
  cursor: pointer;
  display: flex;
  font-size: 1.4rem;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 38px;
  z-index: 3;
}
.ugc-modal-video {
  background: var(--brand-navy-deep);
  min-height: 0;
}
.ugc-modal-video video {
  display: block;
  height: min(68vh, 620px);
  object-fit: contain;
  width: 100%;
}
.ugc-modal-copy {
  padding: 20px;
}
.ugc-modal-copy span {
  color: var(--brand-navy);
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ugc-modal-copy h3 {
  color: var(--brand-navy-deep);
  font-family: var(--f-body);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.ugc-modal-copy p {
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ========================================================================== */
/* PRODUCT LANDING ESPECIFICS (seguro-auto.html)                               */
/* ========================================================================== */
.landing-hero {
  padding: 32px 0 40px;
  position: relative;
  overflow: hidden;
}
.landing-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.landing-hero h1 em { font-style: italic; color: var(--brand-navy); }
.landing-hero .price {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: var(--brand-lime);
  color: var(--brand-navy-deep);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.landing-hero .price strong { font-size: 1.1rem; }

.landing-benefits {
  display: flex; flex-direction: column; gap: 10px;
  margin: 24px 0;
}
.landing-benefits li {
  list-style: none;
  padding-left: 34px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.landing-benefits li::before {
  content: "✓";
  position: absolute; left: 0; top: -2px;
  width: 24px; height: 24px;
  background: var(--brand-lime);
  color: var(--brand-navy-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.side-form {
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--line);
}
.side-form .form-title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--brand-navy-deep);
  margin-bottom: 4px;
}
.side-form .form-sub {
  font-size: 0.88rem; color: var(--ink-soft);
  margin-bottom: 18px;
}

.coverages {
  padding: 60px 0;
}
.coverages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
}
.coverage-card {
  padding: 24px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex; gap: 16px; align-items: flex-start;
}
.coverage-card .icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--brand-sky);
  color: var(--brand-navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.coverage-card h4 {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-navy-deep);
  margin-bottom: 4px;
}
.coverage-card p { font-size: 0.88rem; color: var(--ink-soft); }

/* ========================================================================== */
/* RESPONSIVE                                                                  */
/* ========================================================================== */
@media (min-width: 640px) {
  :root { --gutter: 32px; }
  .hero { padding: 60px 0 80px; }
  .hero-visual img { height: 400px; }
  .hero-visual .card-float {
    bottom: 22px;
    left: 22px;
    right: auto;
    max-width: min(420px, calc(100% - 44px));
    min-width: 300px;
    padding: 14px 18px;
  }
  .hero-visual .card-float .emoji { font-size: 1.6rem; }
  .hero-visual .card-float .txt { font-size: .86rem; }
  .hero-visual .card-float .txt strong { font-size: 1rem; }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .product-card { min-height: 200px; }
  .product-card.featured { grid-column: 1 / -1; }
  .insurers-strip { grid-template-columns: repeat(6, 1fr); gap: 24px; }
  .ugc-video-rail {
    grid-auto-columns: minmax(240px, 32vw);
  }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .coverages-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-nav { display: flex; }
}

@media (min-width: 960px) and (max-width: 1100px) {
  .nav-popover {
    left: 0;
    transform: translate(0, -8px);
  }
  .nav-popover.open {
    transform: translate(0, 0);
  }
  .nav-popover::before {
    left: 28px;
  }
  .nav-products-panel {
    width: min(660px, calc(100vw - 48px));
  }
  .nav-product-group {
    grid-template-columns: 1fr;
    max-height: min(520px, calc(100vh - 220px));
    overflow: auto;
    padding-right: 4px;
  }
}

@media (min-width: 960px) {
  .header-inner { height: 76px; }
  .logo img { height: 40px; }
  .nav-desktop { display: block; }
  .burger { display: none; }

  .hero { padding: 80px 0 100px; }
  .hero-slide .hero-inner-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .hero-visual { margin-top: 0; }
  .hero-visual img { height: 520px; }
  .hero-visual .card-float {
    bottom: 28px;
    left: 28px;
    max-width: min(430px, calc(100% - 56px));
  }
  .hero .hero-ctas { flex-direction: row; }
  .phone-mockup {
    margin-top: 10px;
    height: clamp(430px, 60vh, 600px);
    width: clamp(215px, 30vh, 300px);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 16px;
  }
  .product-card.featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 420px;
  }
  .products-home .products-grid {
    align-items: stretch;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(220px, auto);
  }
  .products-home .product-card {
    min-height: 220px;
  }
  .products-home .product-card.featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 456px;
  }
  .products-home .product-card:nth-child(6),
  .products-home .product-card:nth-child(7) {
    grid-column: span 2;
    min-height: 220px;
  }
  .products-profile .product-card:nth-child(6) {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: row; justify-content: space-between; align-items: center;
  }

  .sticky-cta { display: none; }
  .fab-whatsapp { right: 24px; bottom: 24px; }
  .fab-whatsapp-btn { width: 64px; height: 64px; }
  .ugc-video-rail {
    grid-auto-flow: initial;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    overflow: visible;
    padding: 0;
  }
  .ugc-floaters {
    bottom: 24px;
    left: 24px;
    width: 320px;
  }
  .ugc-modal-dialog {
    grid-template-columns: minmax(320px, 420px) 1fr;
  }
  .ugc-modal-copy {
    align-self: center;
    padding: 32px;
  }

  /* Landing producto */
  .landing-hero-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
  }
  .coverages-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .hero h1 { font-size: 5rem; }
}

/* ========================================================================== */
/* ANIMATIONS                                                                  */
/* ========================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { animation: fadeUp .7s cubic-bezier(.2,.7,.2,1) backwards; }
.reveal.d1 { animation-delay: .1s; }
.reveal.d2 { animation-delay: .2s; }
.reveal.d3 { animation-delay: .35s; }
.reveal.d4 { animation-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
