/* Seguros San Vicente — estilo compartido */

:root {
  --navy: #0B2545;
  --navy-soft: #13315C;
  --accent: #3D8BFD;      /* azul editorial para links (legibilidad web) */
  --warm: #C9A961;         /* acento dorado del Brand Guide — filetes, divisores */
  --bone: #F5F3EE;         /* fondo neutro cálido del Brand Guide */
  --red: #C92B45;
  --red-soft: #D9365E;
  --white: #FFFFFF;
  --gray-50: #F5F7FA;
  --gray-100: #E9EDF2;
  --gray-300: #C9D1DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --ink: #0E1729;
  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(11,37,69,.06), 0 1px 1px rgba(11,37,69,.04);
  --shadow-md: 0 8px 24px rgba(11,37,69,.08);
  --max: 1160px;
  --font-serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.08rem; font-family: var(--font-sans); font-weight: 600; }
p { margin: 0 0 1em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray-100);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; max-width: var(--max); margin: 0 auto; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--navy); font-family: var(--font-serif); font-weight: 600; font-size: 1.12rem; min-width: 0; }
.brand .shield { width: 34px; height: 40px; display: inline-flex; flex-shrink: 0; }
.brand .shield svg { width: 100%; height: 100%; display: block; }
.brand-text { line-height: 1.2; white-space: nowrap; }
.brand-text small { display: block; margin-top: 5px; font-family: var(--font-sans); font-size: 0.68rem; color: var(--gray-500); font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; line-height: 1.2; }

.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--gray-700); font-size: 0.95rem; font-weight: 500; white-space: nowrap; }
.nav-links a.current { color: var(--navy); }
.nav-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nav-cta .btn { white-space: nowrap; }

.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px auto; transition: .2s; }

/* Laptop chica / tablet landscape: ajustes antes de colapsar */
@media (max-width: 1200px) {
  .nav { gap: 10px; padding: 12px 18px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.88rem; }
  .brand { font-size: 1rem; }
  .nav-cta .btn { padding: 10px 14px; font-size: 0.88rem; }
}

/* Tablet / mobile: colapsar a hamburger agresivo para evitar apretuje */
@media (max-width: 1100px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px 20px; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-md); align-items: stretch; z-index: 60; }
  .nav.open .nav-links a { padding: 10px 0; font-size: 1rem; border-bottom: 1px solid var(--gray-100); white-space: normal; }
  .nav.open .nav-links a:last-child { border-bottom: 0; }
}

/* Mobile: shrink logo + hide subtítulo para dar aire */
@media (max-width: 640px) {
  .nav { padding: 10px 14px; gap: 10px; }
  .brand { font-size: 1rem; gap: 8px; }
  .brand .shield { width: 28px; height: 33px; }
  .brand-text small { display: none; }
  .nav-cta .btn-primary { padding: 9px 14px; font-size: 0.85rem; white-space: nowrap; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: var(--radius); font-weight: 600; font-size: 0.97rem; border: 1px solid transparent; cursor: pointer; transition: transform .1s ease, box-shadow .2s ease, background .15s ease; font-family: var(--font-sans); }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--red-soft); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--navy); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1EBE5B; }
.btn-ghost { background: transparent; color: var(--navy); }

/* Hero */
.hero { background: linear-gradient(180deg, #F6F9FD 0%, #FFFFFF 100%); padding: 80px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero .eyebrow { color: var(--accent); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.hero p.lede { font-size: 1.15rem; color: var(--gray-700); margin-bottom: 28px; max-width: 54ch; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { margin-top: 36px; display: flex; gap: 22px; flex-wrap: wrap; align-items: center; color: var(--gray-500); font-size: 0.88rem; }
.hero-trust strong { color: var(--navy); font-weight: 600; }
.hero-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-md); }
.hero-card h3 { margin-top: 0; }
.route-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.route-list a { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--gray-50); border-radius: 8px; color: var(--navy); font-weight: 500; border: 1px solid transparent; }
.route-list a:hover { border-color: var(--accent); background: var(--white); text-decoration: none; }
.route-list a::after { content: "→"; color: var(--accent); }

@media (max-width: 900px) {
  .hero { padding: 48px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Sections */
section { padding: 72px 0; }
section.alt { background: var(--gray-50); }
.section-intro { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-intro .eyebrow { color: var(--accent); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 36px; }
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 28px; }
}

.card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 14px; padding: 28px; transition: box-shadow .2s ease, transform .1s ease; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card h3 { margin-top: 0; }
.card .card-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(61,139,253,.1); color: var(--accent); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px; }

/* List styled */
.checklist { list-style: none; padding: 0; margin: 0 0 24px; }
.checklist li { padding: 8px 0 8px 30px; position: relative; color: var(--gray-700); }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--accent); font-weight: 700; }

.xlist { list-style: none; padding: 0; margin: 0 0 24px; }
.xlist li { padding: 6px 0 6px 28px; position: relative; color: var(--gray-700); }
.xlist li::before { content: "—"; position: absolute; left: 0; color: var(--gray-500); }

/* Table */
.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius); border: 1px solid var(--gray-100); }
table { width: 100%; border-collapse: collapse; font-size: 0.94rem; min-width: 600px; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--gray-100); vertical-align: top; }
th { background: var(--gray-50); color: var(--navy); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
tr:last-child td { border-bottom: 0; }
td strong { color: var(--navy); }

/* Process steps */
.steps { counter-reset: step; display: grid; gap: 24px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; padding-bottom: 24px; border-bottom: 1px solid var(--gray-100); }
.step:last-child { border-bottom: 0; }
.step .num { counter-increment: step; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white); display: grid; place-items: center; font-family: var(--font-serif); font-weight: 600; font-size: 1.1rem; }
.step .num::before { content: counter(step); }
.step h3 { margin-top: 0; margin-bottom: 8px; }
.step p { margin: 0; color: var(--gray-700); }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--gray-100); border-radius: var(--radius); margin-bottom: 12px; background: var(--white); overflow: hidden; }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 22px 20px; color: var(--gray-700); }

/* CTA band */
.cta-band { background: var(--navy); color: var(--white); padding: 64px 0; text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 28px; }
.cta-band .btn-outline { color: var(--white); border-color: rgba(255,255,255,.4); }
.cta-band .btn-outline:hover { border-color: var(--white); }

/* Form */
.form-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-md); max-width: 620px; margin: 0 auto; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 500; font-size: 0.9rem; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--gray-300); border-radius: 8px; font-family: inherit; font-size: 1rem; transition: border-color .15s ease; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(61,139,253,.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.85rem; color: var(--gray-500); margin-top: 12px; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding: 48px 0 24px; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.site-footer h4 { color: var(--white); font-family: var(--font-sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; font-size: 0.82rem; color: rgba(255,255,255,.55); }
.footer-copy { display: flex; flex-direction: column; gap: 6px; flex: 1 1 420px; }
.footer-copy .fine-print { color: rgba(255,255,255,.4); }

/* Credito UnEjemplo.com */
.unejemplo-credit { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: rgba(255,255,255,.92); font-size: 0.82rem; transition: background .15s ease, color .15s ease; flex: 0 0 auto; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(201,169,97,.22); }
.unejemplo-credit:hover { background: rgba(201,169,97,.12); color: var(--white); }
.unejemplo-credit .credit-tag { color: rgba(255,255,255,.75); font-style: italic; font-family: var(--font-serif); font-size: 0.88rem; letter-spacing: 0.01em; }
.unejemplo-credit .credit-mark { display: inline-flex; flex-shrink: 0; }
.unejemplo-credit .credit-mark svg { display: block; width: 22px; height: 22px; }
.unejemplo-credit .credit-name { font-family: var(--font-serif); font-weight: 600; letter-spacing: 0.015em; white-space: nowrap; font-size: 0.95rem; }
.unejemplo-credit .credit-name em { font-style: normal; color: var(--warm); font-weight: 600; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { align-items: flex-start; }
  .unejemplo-credit { flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .unejemplo-credit { padding: 8px 14px; gap: 10px; }
  .unejemplo-credit .credit-tag { display: none; }
}

/* Photo placeholder — para fotos pendientes de Mario */
.photo-placeholder { position: relative; width: 100%; background: var(--bone); border: 1px dashed rgba(11,37,69,.18); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 28px 24px; color: var(--gray-500); background-image: repeating-linear-gradient(45deg, transparent 0 14px, rgba(201,169,97,.06) 14px 15px); }
.photo-placeholder--4-5 { aspect-ratio: 4 / 5; }
.photo-placeholder--3-2 { aspect-ratio: 3 / 2; }
.photo-placeholder--16-9 { aspect-ratio: 16 / 9; }
.photo-placeholder .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--white); border: 1px solid rgba(11,37,69,.08); display: grid; place-items: center; margin-bottom: 14px; color: var(--warm); }
.photo-placeholder .icon svg { width: 24px; height: 24px; }
.photo-placeholder .label { font-family: var(--font-serif); font-weight: 600; color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.photo-placeholder .meta { font-size: 0.82rem; color: var(--gray-500); max-width: 26ch; line-height: 1.4; }
.photo-placeholder .badge { position: absolute; top: 12px; left: 12px; background: var(--navy); color: var(--white); font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; font-weight: 600; }

/* Floating WhatsApp */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.35); transition: transform .15s ease; }
.wa-float:hover { transform: scale(1.05); text-decoration: none; }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ===== Mobile polish — reducir aire excesivo y prevenir overflow horizontal ===== */
html, body { overflow-x: hidden; }

@media (max-width: 760px) {
  section { padding: 52px 0; }
  .page-header { padding: 36px 0 24px; }
  .cta-band { padding: 48px 0; }
  .page-header-grid { gap: 18px; }
  .page-header-grid .hero-illus { max-width: 220px; }
  .page-header-grid .hero-illus img { max-width: 220px; }
  .section-intro { margin: 0 auto 32px; }
}

@media (max-width: 560px) {
  section { padding: 40px 0; }
  .page-header { padding: 28px 0 20px; }
  .cta-band { padding: 40px 0; }
  .grid-2 { gap: 22px; }
  .grid-3 { gap: 16px; }
  .card { padding: 22px; }
  .steps { gap: 18px; }
  .step { grid-template-columns: 44px 1fr; gap: 14px; padding-bottom: 18px; }
  .step .num { width: 36px; height: 36px; font-size: 1rem; }
  .faq summary { padding: 14px 16px; font-size: 0.95rem; }
  .faq details > div { padding: 0 16px 16px; }
  .page-header-grid .hero-illus { max-width: 180px; }
  .page-header-grid .hero-illus img { max-width: 180px; }
  h1 { font-size: 1.85rem; line-height: 1.2; }
  h2 { font-size: 1.5rem; line-height: 1.25; }
  .page-header p, .hero p.lede { font-size: 1rem; }
}

@media (max-width: 420px) {
  .nav { padding: 10px 12px; gap: 8px; }
  .brand { font-size: 0.95rem; gap: 6px; }
  .brand .shield { width: 24px; height: 28px; }
  .nav-cta .btn-primary { padding: 8px 12px; font-size: 0.8rem; }
  .container { padding: 0 16px; }
}

/* Misc */
.kbd { font-family: ui-monospace, Menlo, monospace; background: var(--gray-50); padding: 2px 6px; border-radius: 4px; font-size: 0.88em; border: 1px solid var(--gray-100); }
.tag { display: inline-block; font-size: 0.78rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: rgba(61,139,253,.1); color: var(--accent); letter-spacing: 0.02em; }
.tag-navy { background: rgba(11,37,69,.08); color: var(--navy); }
.tag-warn { background: rgba(201,43,69,.1); color: var(--red); }
.notice { padding: 16px 18px; background: #FFFBEB; border: 1px solid #FDE68A; border-radius: var(--radius); color: #7C5E10; font-size: 0.92rem; }
.fine-print { font-size: 0.82rem; color: var(--gray-500); }
.fine-print a { color: var(--gray-500); text-decoration: underline; }

/* Page header (non-home) */
.page-header { background: linear-gradient(180deg, #F6F9FD 0%, #FFFFFF 100%); padding: 60px 0 36px; border-bottom: 1px solid var(--gray-100); }
.page-header .eyebrow { color: var(--accent); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.page-header h1 { margin: 0 0 12px; }
.page-header p { color: var(--gray-700); max-width: 72ch; margin: 0; font-size: 1.15rem; line-height: 1.6; }
/* Paginas SIN hero-illus (comparador, contacto, gmm-cotiza, empresas-diagnostico): parrafo se puede extender mas */
.page-header > .container > p { max-width: 95ch; }
/* Paginas CON grid: el parrafo se constrine por la columna, no por max-width */
.page-header-grid p { max-width: none; }

/* Breadcrumb */
.breadcrumb { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 18px; }
.breadcrumb a { color: var(--gray-500); }

/* Landing specific */
.landing-hero { background: var(--navy); color: var(--white); padding: 72px 0; }
.landing-hero h1 { color: var(--white); }
.landing-hero p.lede { color: rgba(255,255,255,.85); }
.landing-hero .eyebrow { color: var(--accent); }
.landing-hero .hero-trust strong { color: var(--white); }
.landing-hero .hero-card { color: var(--ink); }

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-lg { margin-bottom: 32px; }

/* ---- Imágenes + ilustraciones ---- */
.hero-illus { display: flex; align-items: center; justify-content: center; }
.hero-illus img { width: 100%; height: auto; max-width: 520px; display: block; }

.page-header-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 40px; align-items: center; }
.page-header-grid > div { min-width: 0; }
.page-header-grid .hero-illus { justify-self: end; max-width: 100%; }
.page-header-grid .hero-illus img { max-width: 360px; width: 100%; height: auto; display: block; }

/* Tablet angosta — aun 2-col pero ilustracion mas compacta */
@media (max-width: 1000px) {
  .page-header-grid { grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: 28px; }
  .page-header-grid .hero-illus img { max-width: 260px; }
}

/* Mobile / tablet portrait — colapsa a 1-col, ilustracion ARRIBA */
@media (max-width: 760px) {
  .page-header-grid { display: flex; flex-direction: column; gap: 24px; }
  .page-header-grid .hero-illus { order: -1; align-self: center; max-width: 280px; margin: 0 auto; }
  .page-header-grid .hero-illus img { max-width: 280px; }
}

/* Trust bar */
.trust-bar { background: var(--white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); padding: 28px 0; }
.trust-bar-lead { text-align: center; font-size: 0.82rem; color: var(--gray-500); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
.trust-bar-marks { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.trust-bar-marks span { font-family: var(--font-serif); font-weight: 700; font-size: 1.05rem; color: var(--gray-500); letter-spacing: 0.12em; }
.trust-bar-marks span:not(:last-child)::after { content: "·"; margin-left: 44px; color: var(--gray-300); }
@media (max-width: 640px) {
  .trust-bar-marks { gap: 16px; }
  .trust-bar-marks span { font-size: 0.85rem; letter-spacing: 0.08em; }
  .trust-bar-marks span:not(:last-child)::after { display: none; }
}

/* Proceso timeline hero */
.process-hero { background: var(--bone); padding: 40px 0 20px; }
.process-hero img { width: 100%; max-width: 720px; margin: 0 auto; display: block; }

/* Card icon con SVG */
.card-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(201,169,97,.14); display: grid; place-items: center; margin-bottom: 16px; overflow: hidden; }
.card-icon img, .card-icon svg { width: 32px; height: 32px; display: block; }

/* Feature row horizontal con iconos */
.feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 32px 0; }
.feature-row .feature { text-align: center; padding: 20px 12px; background: var(--white); border: 1px solid var(--gray-100); border-radius: 12px; }
.feature-row .feature img { width: 40px; height: 40px; margin: 0 auto 12px; display: block; }
.feature-row .feature strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.feature-row .feature small { color: var(--gray-500); font-size: 0.82rem; }
@media (max-width: 720px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
}

/* Route selector (movido desde hero-card) */
.route-selector { padding: 60px 0 20px; background: var(--bone); }
.route-selector h2 { text-align: center; margin-bottom: 8px; }
.route-selector .section-lede { text-align: center; color: var(--gray-700); max-width: 56ch; margin: 0 auto 36px; }
