/* ==========================================================================
   Crisser Corporación — Sistema de diseño "Rebranding" (claudedesign)
   Reproduce la Propuesta de Rebranding: hero centrado, banda de contexto,
   emisión en violeta, catálogo con buscador, marquee de aseguradoras,
   reseñas en tarjetas claras y footer oscuro. Solo cambio VISUAL.
   Tipografía de marca: Poppins (títulos) / Raleway (cuerpo) / Arial (datos).
   Conserva las clases/IDs que usa header.js. Depende de tokens.css.
   ========================================================================== */

/* Acentos propios de la propuesta */
:root {
  --emis-purple: #6d3fa3;
  --emis-purple-soft: #ede9f7;
  --icon-blue-soft: #eaf0fb;
  --band-dark: #0e2233;
  --gold: #f5b301;
  --carriers-bg: #eef3f9;
  --emis-bg: #f6f5fb;
  --section-alt: #f4f7fb;
}

/* Alternancia de fondo para dar contraste entre secciones */
.section.section--alt { background: var(--section-alt); }

/* Bloque de impacto (fondo oscuro navy) */
.section.section--dark { background: #0a2740; color: #fff; }
.section--dark { color: #fff; }
.section--dark h2, .section--dark h3, .section--dark h4, .section--dark .section-title { color: #fff; }
.section--dark .section-sub, .section--dark > .container > p { color: #cdd8e2; }
.section--dark .eyebrow { color: var(--color-light-grey); }
.section--dark .pill-badge { background: rgba(255,255,255,.14); color: var(--color-light-grey); }
.section--dark .review-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); box-shadow: none; }
.section--dark .review-card p { color: #dce6ec; }
.section--dark .review-card .author { color: #8fa6b4; }
.section--dark .benefit h4 { color: #fff; }
.section--dark .benefit p { color: #cdd8e2; }
.section--dark .benefit .icon { background: rgba(255,255,255,.1); color: #fff; }

/* ------------------------------------------------------------------ Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font-body); color: var(--color-dark);
  background: #fff; -webkit-font-smoothing: antialiased; line-height: 1.55; overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-dark); }
::selection { background: var(--color-light-grey); color: var(--color-dark); }
.container { max-width: var(--container-max); margin: 0 auto; padding-inline: 32px; width: 100%; }
[data-lucide] { width: 20px; height: 20px; stroke-width: 2; vertical-align: middle; }

/* --------------------------------------------------------------- Botones */
.btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body);
  font-weight: 700; font-size: 14.5px; border-radius: var(--radius-md); padding: 11px 22px;
  cursor: pointer; border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: #0a466f; }
.btn--outline { background: #fff; color: var(--color-secondary); border-color: var(--color-secondary); }
.btn--outline:hover { background: var(--color-secondary); color: #fff; }
.btn [data-lucide] { width: 16px; height: 16px; }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; color: var(--color-secondary); font-weight: 700; font-size: 15px; transition: gap .18s ease; }
.link-arrow:hover { gap: 11px; }
.link-arrow [data-lucide] { width: 16px; height: 16px; }

/* Píldora / eyebrow */
.pill-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: var(--radius-pill); background: var(--color-secondary-soft); color: var(--color-secondary); font-weight: 700; font-size: 13px; }
.pill-badge [data-lucide] { width: 15px; height: 15px; }
.pill-badge--purple { background: var(--emis-purple-soft); color: var(--emis-purple); }
.eyebrow { color: var(--color-secondary); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }

/* --------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-border); transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(10,27,42,.08); }
.header-inner { display: flex; align-items: center; gap: 30px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; }
.brand img { height: 46px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-body);
  font-weight: 600; font-size: 15px; color: #1f3a4d; background: none; border: 0; cursor: pointer;
  padding: 8px 12px; border-radius: 10px;
}
.nav-link [data-lucide] { width: 15px; height: 15px; opacity: .7; }
.nav-link:hover { color: var(--color-secondary); }
.nav-item--featured .nav-link { color: var(--emis-purple); border: 0; background: none; padding: 8px 12px; box-shadow: none; }
.nav-item--featured .nav-link [data-lucide] { opacity: 1; }

.megamenu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px; background: #fff;
  border: 1px solid var(--color-border); border-radius: 16px; box-shadow: 0 20px 44px rgba(10,27,42,.12);
  padding: 14px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav-item.has-mega:hover > .megamenu, .nav-item.has-mega:focus-within > .megamenu, .nav-item.is-open > .megamenu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.mega-list a { display: block; padding: 9px 12px; border-radius: 10px; font-size: 14.5px; font-weight: 600; color: #1f3a4d; }
.mega-list a:hover { background: var(--color-secondary-soft); color: var(--color-secondary); }
.megamenu--featured { min-width: 320px; }
.mega-list--cards a { display: flex; align-items: center; gap: 11px; }
.mega-card-ic { width: 38px; height: 24px; object-fit: cover; border-radius: 5px; box-shadow: 0 2px 6px rgba(10,27,42,.18); flex: none; }
.mega-card-ic--lucide { display: flex; align-items: center; justify-content: center; background: var(--emis-purple-soft); box-shadow: none; }
.mega-card-ic--lucide [data-lucide] { width: 18px; height: 18px; color: var(--emis-purple); }
.megamenu--featured .mega-list a:hover { background: var(--emis-purple-soft); color: var(--emis-purple); }
.mega-title { font-family: var(--font-heading); font-weight: 700; font-size: 15px; margin: 2px 4px 4px; color: var(--emis-purple); }
.mega-subtitle { font-size: 12.5px; color: var(--color-grey); margin: 0 4px 10px; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.search-trigger { background: none; border: 0; cursor: pointer; color: #1f3a4d; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; }
.search-trigger svg { width: 20px; height: 20px; fill: currentColor; }
.search-trigger:hover { background: var(--color-secondary-soft); color: var(--color-secondary); }

/* Selector de idioma (dropdown al clic) */
.lang-picker { position: relative; }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer; color: #1f3a4d; font-family: var(--font-body); font-weight: 700; font-size: 14px; padding: 7px 9px; border-radius: 10px; line-height: 1; }
.lang-switch:hover { color: var(--color-secondary); background: var(--color-secondary-soft); }
.lang-switch .ic-globe, .lang-switch .ic-caret { background: currentColor; flex: none; display: block; }
.lang-switch .ic-globe { width: 17px; height: 17px; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='12' cy='12' r='10'/><path d='M2 12h20M12 2a15 15 0 0 1 0 20 15 15 0 0 1 0-20'/></svg>") center/contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><circle cx='12' cy='12' r='10'/><path d='M2 12h20M12 2a15 15 0 0 1 0 20 15 15 0 0 1 0-20'/></svg>") center/contain no-repeat; }
.lang-switch .ic-caret { width: 12px; height: 12px; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>") center/contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>") center/contain no-repeat; transition: transform .18s ease; }
.lang-picker.is-open .lang-switch .ic-caret { transform: rotate(180deg); }
.lang-menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 152px; background: #fff; border: 1px solid var(--color-border); border-radius: 12px; box-shadow: 0 20px 44px rgba(10,27,42,.12); padding: 6px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .16s ease, transform .16s ease, visibility .16s; z-index: 60; list-style: none; margin: 0; }
.lang-picker.is-open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button { display: flex; width: 100%; align-items: center; gap: 9px; padding: 9px 12px; border: 0; background: none; border-radius: 8px; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: #1f3a4d; cursor: pointer; text-align: left; }
.lang-menu button:hover, .lang-menu button[aria-selected="true"] { background: var(--color-secondary-soft); color: var(--color-secondary); }
.btn--login { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: var(--radius-md); border: 1.5px solid var(--color-secondary); color: var(--color-secondary); font-weight: 700; font-size: 14.5px; background: #fff; }
.btn--login::before { content: ""; width: 17px; height: 17px; background: currentColor; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='8' r='4'/><path d='M4 21c0-4 4-6 8-6s8 2 8 6'/></svg>") center/contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='8' r='4'/><path d='M4 21c0-4 4-6 8-6s8 2 8 6'/></svg>") center/contain no-repeat; }
.btn--login:hover { background: var(--color-secondary); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; font-size: 24px; cursor: pointer; color: var(--color-dark); }
.nav-login-mobile { display: none; }

.search-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; border-bottom: 1px solid transparent; }
.search-panel.is-open { max-height: 120px; border-bottom-color: var(--color-border); background: #fff; }
.search-panel .smart-search { padding: 16px 0; }

/* ---------------------------------------------- Banda de contexto (dark) */
.page-band { background: var(--band-dark); color: #fff; }
.page-band .container { display: flex; align-items: center; gap: 12px; padding-block: 11px; }
.page-band .badge { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex: none; }
.page-band .badge svg { width: 16px; height: 16px; }
.page-band .crumb { font-family: var(--font-heading); font-weight: 600; font-size: 14.5px; letter-spacing: .2px; }
.page-band .crumb span { color: #8fb2cc; }

/* -------------------------------------------------------- Buscador smart */
.smart-search { display: flex; align-items: center; gap: 0; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-pill); box-shadow: 0 10px 30px rgba(10,27,42,.07); padding: 8px 8px 8px 22px; max-width: 720px; margin: 0 auto; position: relative; }
.smart-search::before { content: ""; width: 20px; height: 20px; flex: none; background: var(--color-grey); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><circle cx='11' cy='11' r='7'/><path d='m21 21-4.3-4.3'/></svg>") center/contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><circle cx='11' cy='11' r='7'/><path d='m21 21-4.3-4.3'/></svg>") center/contain no-repeat; margin-right: 12px; }
.smart-search input { flex: 1; border: 0; background: none; font-family: var(--font-body); font-size: 15.5px; color: var(--color-dark); padding: 12px 8px; }
.smart-search input::placeholder { color: var(--color-grey); }
.smart-search input:focus { outline: none; }
.smart-search .btn { flex: none; }

/* --------------------------------------------------------------- Secciones */
.section { padding-block: 76px; }
.section--tight { padding-block: 52px; }
.section > .container > h2 { text-align: center; }
.section-title { text-align: center; font-weight: 800; font-size: clamp(30px, 4.4vw, 44px); letter-spacing: -1.3px; margin: 0 0 12px; line-height: 1.08; }
.section-sub { text-align: center; color: var(--color-grey); font-size: 17px; max-width: 680px; margin: 0 auto 40px; line-height: 1.6; }
.section-eyebrow { text-align: center; margin-bottom: 8px; }

/* -------------------------------------------------------------- Hero centrado */
.hero { background: #fff; text-align: center; }
.hero .container { padding-block: 66px 74px; }
.hero h1 { font-weight: 800; font-size: clamp(38px, 6vw, 66px); line-height: 1.03; letter-spacing: -2px; margin: 0 0 22px; }
.hero__subheading { color: var(--color-primary); font-weight: 600; font-size: clamp(19px, 2.3vw, 25px); max-width: 760px; margin: 0 auto 16px; line-height: 1.35; }
.hero__micro { color: var(--color-grey); font-size: 16px; margin: 0 0 34px; }

.ramo-actions { display: flex; justify-content: center; align-items: stretch; gap: 20px; flex-wrap: wrap; }
.ramo-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 14px;
  width: 172px; min-height: 168px; padding: 26px 18px;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ramo-btn:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(10,27,42,.10); border-color: #cfe0e0; }
.ramo-btn .icon { width: 56px; height: 56px; border-radius: 16px; background: var(--icon-blue-soft); display: flex; align-items: center; justify-content: center; color: var(--color-primary); font-size: 26px; flex: none; }
.ramo-btn .icon [data-lucide] { width: 26px; height: 26px; }
.ramo-btn .label { font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--color-dark); text-align: center; line-height: 1.25; }
.ramo-btn--all { background: linear-gradient(135deg, #0e5688, #123f66); border: 0; color: #fff; box-shadow: 0 16px 34px rgba(14,86,136,.28); }
.ramo-btn--all .icon { background: rgba(255,255,255,.15); color: #fff; }
.ramo-btn--all .label { color: #fff; }
.ramo-btn--all:hover { border-color: transparent; }

/* -------------------------------------------------------- Banda financiamiento */
.financing { background: #34618c; color: #fff; }
.financing .container { display: flex; align-items: center; justify-content: center; gap: 12px; padding-block: 30px; text-align: center; }
.financing .container::before { content: ""; width: 20px; height: 20px; flex: none; background: #fff; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='5' width='20' height='14' rx='3'/><path d='M2 10h20'/></svg>") center/contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='5' width='20' height='14' rx='3'/><path d='M2 10h20'/></svg>") center/contain no-repeat; }
.financing p { margin: 0; font-size: 16px; font-weight: 600; }
.financing .container::before { width: 22px; height: 22px; }

/* -------------------------------------------------------- Emisión inmediata */
.emision-band { background: var(--emis-bg); text-align: center; }
.emision-band .container { padding-block: 72px; }
.emision-band__badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: var(--radius-pill); background: var(--emis-purple-soft); color: var(--emis-purple); font-weight: 700; font-size: 13.5px; margin-bottom: 18px; }
.emision-band__badge [data-lucide] { width: 15px; height: 15px; }
.emision-band > .container > h2 { font-weight: 800; font-size: clamp(30px, 4.4vw, 44px); letter-spacing: -1.3px; line-height: 1.08; margin: 0 0 14px; }
.emision-band > .container > p { color: var(--color-grey); font-size: 17px; max-width: 700px; margin: 0 auto 40px; line-height: 1.6; }
.emision-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.emision-card { display: flex; flex-direction: column; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 34px 20px; box-shadow: var(--shadow-card); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.emision-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(10,27,42,.10); border-color: #dcd2ef; }
.emision-card .icon { width: 56px; height: 56px; border-radius: 16px; background: var(--emis-purple-soft); display: flex; align-items: center; justify-content: center; color: var(--emis-purple); font-size: 26px; margin-bottom: 10px; }
.emision-card .icon [data-lucide] { width: 26px; height: 26px; }
.emision-card strong { font-family: var(--font-heading); font-weight: 700; font-size: 17.5px; color: var(--color-dark); }
.emision-card small { color: var(--emis-purple); font-weight: 600; font-size: 14px; }

/* ---------------------------------------------------------- Catálogo grid */
.catalog-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 44px; }
.catalog-card { flex: 0 1 calc(25% - 15px); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 34px 24px; box-shadow: var(--shadow-card); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.catalog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(10,27,42,.10); border-color: #cfe0e0; }
.catalog-card .icon { width: 60px; height: 60px; border-radius: 16px; background: var(--icon-blue-soft); display: flex; align-items: center; justify-content: center; color: var(--color-primary); font-size: 28px; margin-bottom: 6px; }
.catalog-card .icon [data-lucide] { width: 28px; height: 28px; }
.catalog-card h3 { font-weight: 700; font-size: 18.5px; margin: 0; color: var(--color-dark); }
.catalog-card p { font-size: 14px; line-height: 1.5; color: var(--color-grey); margin: 0; }
.catalog-card--wildcard { background: linear-gradient(135deg, #0e5688, #123f66); border: 0; }
.catalog-card--wildcard .icon { background: rgba(255,255,255,.15); color: #fff; }
.catalog-card--wildcard h3 { color: #fff; }
.catalog-card--wildcard p { color: #cfe0ee; }

/* ---------------------------------------------------------- Aseguradoras */
.carriers { background: var(--carriers-bg); text-align: center; padding-block: 66px; overflow: hidden; }
.carriers h2 { font-weight: 800; font-size: clamp(26px, 3.6vw, 40px); letter-spacing: -1px; line-height: 1.12; margin: 0 auto 40px; max-width: 900px; }
.carrier-track { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee { display: flex; gap: 64px; width: max-content; animation: crisser-marquee 32s linear infinite; }
.carrier-item { font-family: var(--font-heading); font-weight: 700; font-size: clamp(18px, 2vw, 24px); color: #9aa7b3; white-space: nowrap; }
@keyframes crisser-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; flex-wrap: wrap; justify-content: center; width: auto; } }

/* -------------------------------------------------------------- Reseñas */
.reviews { background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 28px; box-shadow: var(--shadow-card); margin: 0; }
.review-card .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { font-size: 15.5px; line-height: 1.6; color: #384049; margin: 0 0 18px; }
.review-card .author { font-weight: 600; font-size: 14px; color: var(--color-grey); margin: 0; }

/* --------------------------------------------------------------- Blog */
.posts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.post-card { display: block; border: 1px solid var(--color-border); border-radius: var(--radius-card); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(10,27,42,.10); border-color: #cfe0e0; }
.post-card .thumb { height: 158px; background: linear-gradient(135deg, #eaf3f3, #dcebeb); }
.post-card .body { padding: 20px 22px 24px; }
.post-card time { font-family: var(--font-data); font-size: 12.5px; color: var(--color-grey); display: block; margin-bottom: 8px; }
.post-card h3 { font-weight: 700; font-size: 17px; line-height: 1.3; margin: 0 0 12px; }
.post-card a[href], .post-card .body > a { color: var(--color-secondary); font-weight: 700; font-size: 14px; }

/* --------------------------------------------------------------- Footer */
.site-footer { background: #081826; color: #b9c8d2; }
.site-footer .container { padding-block: 62px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 14.5px; margin: 0 0 16px; letter-spacing: .3px; }
.footer-col h4.footer-col__sub { margin-top: 26px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: #b9c8d2; }
.footer-col a:hover { color: #fff; }

/* Columna de marca */
.footer-brand .brand { display: inline-flex; margin-bottom: 20px; }
.footer-brand .brand img { height: 82px; width: auto; }
.footer-brand .footer-contact { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-brand .footer-contact a { display: inline-flex; align-items: center; gap: 11px; color: #b9c8d2; font-size: 14.5px; }
.footer-brand .footer-contact a:hover { color: #fff; }
.footer-brand .footer-contact svg { width: 17px; height: 17px; fill: var(--color-secondary); flex: none; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #b9c8d2; transition: background .18s ease; }
.footer-socials a:hover { background: rgba(255,255,255,.16); color: #fff; }
.footer-socials svg { width: 18px; height: 18px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 46px; padding-top: 26px; font-size: 13px; color: #8397a5; }
.footer-bottom p { margin: 0 0 8px; }
.footer-bottom .footer-legal { line-height: 1.65; text-align: justify; }
.footer-bottom .data { font-family: var(--font-data); }
.footer-meta { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; margin-top: 8px; }
.footer-policies { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-meta a { color: #8397a5; }
.footer-meta a:hover { color: #fff; }
@media (max-width: 767px) { .footer-meta { flex-direction: column; align-items: flex-start; } }

/* --------------------------------------------------------- WhatsApp FAB */
.whatsapp-fab { position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(37,211,102,.4); transition: transform .18s ease; }
.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-fab:hover { transform: translateY(-2px); }

/* ============================================================ LANDINGS */
/* Breadcrumb claro */
.breadcrumb { padding-block: 16px 0; font-size: 13.5px; color: var(--color-grey); font-weight: 600; }
.breadcrumb a { color: var(--color-grey); }
.breadcrumb a:hover { color: var(--color-secondary); }
.breadcrumb span { margin-inline: 5px; opacity: .55; }

/* Hero de ramo (centrado) */
.ramo-hero { background: #fff; text-align: center; }
.ramo-hero .container { padding-block: 40px 58px; }
.ramo-hero .pill-badge { margin-bottom: 22px; }
.ramo-hero h1 { font-weight: 800; font-size: clamp(34px, 5.4vw, 58px); letter-spacing: -1.6px; line-height: 1.04; margin: 0 0 18px; }
.ramo-hero > .container > p { color: var(--color-grey); font-size: clamp(17px, 2vw, 20px); max-width: 720px; margin: 0 auto; line-height: 1.5; }

/* Secciones centradas de landing */
.section--center { text-align: center; }
.section--center > .container > h2 { font-weight: 800; font-size: clamp(28px, 4vw, 42px); letter-spacing: -1.2px; margin: 0 0 12px; line-height: 1.1; }
.section-sub { color: var(--color-grey); font-size: 17px; max-width: 640px; margin: 0 auto 44px; line-height: 1.5; }

/* Grid de beneficios */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 22px; text-align: center; }
.benefit { text-align: center; }
.benefit .icon { width: 64px; height: 64px; border-radius: 18px; background: var(--icon-blue-soft); color: var(--color-primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 28px; }
.benefit .icon [data-lucide] { width: 28px; height: 28px; }
.benefit h4 { font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin: 0 0 8px; color: var(--color-dark); }
.benefit p { font-size: 14px; line-height: 1.5; color: var(--color-grey); margin: 0 auto; max-width: 260px; }

/* Cajas de producto */
.product-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.product-card { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 30px 28px; box-shadow: var(--shadow-card); cursor: pointer; text-align: left; font-family: inherit; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(10,27,42,.10); border-color: #cfe0e0; }
.product-card h3 { font-weight: 700; font-size: 19px; margin: 0; color: var(--color-dark); }
.product-card p { font-size: 14.5px; line-height: 1.55; color: var(--color-grey); margin: 0; flex: 1; }
.product-card .btn { margin-top: 6px; }
.product-cards--detailed .product-card { align-items: stretch; }

/* Panel de captación / formulario */
.funnel-panel { background: var(--color-secondary-soft); }
.funnel-panel .container { max-width: 840px; }
.funnel-panel .eyebrow { display: block; text-align: center; margin-bottom: 10px; }
.funnel-panel > .container > h2 { text-align: center; font-weight: 800; font-size: clamp(26px, 3.6vw, 38px); letter-spacing: -1px; margin: 0 0 10px; }
.funnel-panel > .container > p { text-align: center; color: var(--color-grey); max-width: 600px; margin: 0 auto 28px; }
.segment-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.segment-tabs button { font-family: var(--font-body); font-weight: 700; font-size: 14.5px; padding: 10px 20px; border-radius: var(--radius-pill); border: 1.5px solid var(--color-border); background: #fff; color: var(--color-body); cursor: pointer; transition: background var(--transition), color var(--transition), border-color var(--transition); }
.segment-tabs button[aria-selected="true"] { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.lead-form { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); }
.lead-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.field.col-span-2 { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 13.5px; color: var(--color-body); }
.field .req { color: #d11216; }
.field input, .field select { border: 1px solid var(--color-input-border); border-radius: 12px; padding: 12px 14px; font-family: var(--font-data); font-variant-numeric: tabular-nums; font-size: 15px; background: #fff; color: var(--color-dark); }
.field input:focus, .field select:focus { outline: 2px solid var(--color-secondary); border-color: var(--color-secondary); }
.btn--block { width: 100%; justify-content: center; }

@media (max-width: 1000px) {
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .product-cards { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}
@media (max-width: 767px) {
  .benefits { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .lead-fields { grid-template-columns: 1fr; }
}
@media (max-width: 420px) { .benefits { grid-template-columns: 1fr; } }

/* Compromiso (Sobre Crisser): 4 en línea o 2×2 centradas */
.benefits--4 { grid-template-columns: repeat(4, 1fr); }
.container--narrow { max-width: 860px; }
.ramo-hero .section-sub, .section--center .section-sub { text-align: center; }
.commitment-sub { max-width: 820px; }

/* Línea de tiempo (Nuestra Historia) */
.timeline { list-style: none; margin: 0 auto; padding: 0; max-width: 760px; text-align: left; position: relative; }
.timeline::before { content: ""; position: absolute; left: 70px; top: 8px; bottom: 8px; width: 2px; background: var(--color-border); }
.timeline__item { display: grid; grid-template-columns: 70px 1fr; gap: 24px; align-items: start; margin-bottom: 20px; position: relative; }
.timeline__era { font-family: var(--font-data); font-weight: 800; font-size: 18px; color: var(--color-secondary); padding-top: 18px; padding-right: 22px; text-align: right; }
.timeline__card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 20px 24px; box-shadow: var(--shadow-card); position: relative; }
.timeline__card::before { content: ""; position: absolute; left: -30px; top: 24px; width: 12px; height: 12px; border-radius: 50%; background: var(--color-secondary); box-shadow: 0 0 0 4px var(--color-secondary-soft); }
.timeline__card h4 { font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin: 0 0 6px; }
.timeline__card p { font-size: 14.5px; line-height: 1.55; color: var(--color-grey); margin: 0; }
@media (max-width: 900px) { .benefits--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .timeline::before { left: 7px; } .timeline__item { grid-template-columns: 1fr; gap: 8px; } .timeline__era { text-align: left; padding-top: 0; padding-left: 26px; } .timeline__card::before { display: none; } }
@media (max-width: 480px) { .benefits--4 { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- Blog (CrisserNews) */
.blog-toolbar { max-width: 720px; margin: 0 auto 20px; }
.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.blog-chip { font-family: var(--font-body); font-weight: 600; font-size: 13.5px; padding: 8px 16px; border-radius: var(--radius-pill); border: 1.5px solid var(--color-border); background: #fff; color: var(--color-body); cursor: pointer; transition: background var(--transition), color var(--transition), border-color var(--transition); }
.blog-chip:hover { border-color: var(--color-secondary); color: var(--color-secondary); }
.blog-chip[aria-pressed="true"] { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.post-card.is-hidden { display: none; }
.blog-empty { text-align: center; color: var(--color-grey); font-size: 16px; padding: 30px 0; display: none; }
.blog-empty.is-visible { display: block; }

/* ---------------------------------------------------- Documentos legales */
.legal-updated { font-family: var(--font-data); font-size: 14px; color: var(--color-grey); margin: 8px 0 0; }
.legal-content { text-align: left; }
.legal-content > p, .legal-content li { text-align: justify; }
.legal-content > p { font-size: 15.5px; line-height: 1.75; color: var(--color-body); margin: 0 0 18px; }
.legal-content h2 { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: var(--color-dark); margin: 34px 0 12px; letter-spacing: -.3px; }
.legal-content ul, .legal-content ol { margin: 0 0 18px; padding-left: 22px; }
.legal-content li { font-size: 15.5px; line-height: 1.7; color: var(--color-body); margin-bottom: 8px; }
.legal-content a { color: var(--color-secondary); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }
/* Números, RIF, fechas, artículos y leyes en los legales → Arial */
.legal-content .data, .legal-updated .data { font-family: var(--font-data); }

/* Datos numéricos → Arial */
.data, .numeric { font-family: var(--font-data); font-variant-numeric: tabular-nums; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1000px) {
  .emision-grid, .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-card { flex-basis: calc(50% - 10px); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}
@media (max-width: 767px) {
  .container { padding-inline: 20px; }
  .section { padding-block: 54px; }
  .nav-toggle { display: inline-flex; order: 3; }
  .header-actions { gap: 10px; }
  .lang-switch, .btn--login { display: none; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0 auto; width: min(320px, 86vw); background: #fff;
    border-left: 1px solid var(--color-border); box-shadow: -10px 0 40px rgba(10,27,42,.14);
    flex-direction: column; align-items: stretch; gap: 4px; padding: 20px; transform: translateX(100%);
    transition: transform .24s ease; overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; justify-content: space-between; }
  .megamenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 4px 0 8px 12px; min-width: 0; max-height: 0; overflow: hidden; transition: max-height .2s ease; }
  .nav-item.is-open > .megamenu { max-height: 520px; }
  .nav-item.has-mega:hover > .megamenu:not(.is-open) { max-height: 0; }
  .nav-login-mobile { display: inline-flex; justify-content: center; margin-top: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .emision-grid, .posts-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .catalog-card { flex-basis: calc(50% - 7px); }
  .ramo-btn { width: calc(50% - 10px); }
}
@media (max-width: 480px) {
  .emision-grid, .posts-grid, .footer-grid { grid-template-columns: 1fr; }
  .catalog-card { flex-basis: 100%; }
  .smart-search { flex-wrap: wrap; border-radius: 18px; }
  .smart-search .btn { width: 100%; justify-content: center; margin-top: 8px; }
}

/* Beneficios en 3 columnas (p. ej. Salud: 3×3) */
.benefits--3 { grid-template-columns: repeat(3, 1fr); max-width: 1000px; margin-inline: auto; }
@media (max-width: 860px) { .benefits--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .benefits--3 { grid-template-columns: 1fr; } }

/* ============================ Salud: cajas de producto + formulario */
#productos .product-cards { margin-top: 44px; align-items: stretch; }
#productos .product-card { align-items: center; text-align: center; }
#productos .product-card p { flex: 1 1 auto; }
#productos .product-card .btn { align-self: center; margin-top: auto; }

/* Formulario oculto hasta seleccionar un plan */
#lead-flow { display: none; }
#lead-flow.is-active { display: block; }

/* Espacio antes del botón de envío */
.lead-submit { margin-top: 26px; }

/* Dependientes dinámicos */
.lead-deps { grid-column: 1 / -1; text-align: left; }
.deps-title { font-family: var(--font-heading); font-weight: 700; font-size: 14.5px; color: var(--color-primary); margin: 6px 0 12px; }
.dependent-row { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 14px; align-items: end; padding: 16px; border: 1px solid var(--color-border); border-radius: 12px; background: #fbfdff; margin-bottom: 12px; }
.dependent-row .dep-head { grid-column: 1 / -1; margin: 0; font-weight: 700; font-size: 13px; color: var(--color-body); }
@media (max-width: 620px) { .dependent-row { grid-template-columns: 1fr; } }

/* Plantilla + carga de archivo (colectivos) */
.btn--sm { padding: 8px 16px; font-size: 13.5px; }
.field-hint { font-size: 13px; color: var(--color-grey); line-height: 1.5; margin: 0; }
.upload-block { gap: 10px; }
.upload-block .btn { align-self: flex-start; }
.field input[type="file"] { padding: 11px 12px; background: #fbfdff; border: 1px dashed var(--color-input-border); cursor: pointer; font-family: var(--font-body); }
