:root {
    --navy-950: #061126;
    --navy-900: #07162e;
    --navy-800: #0b2144;
    --navy-700: #12386f;
    --blue-600: #1f5eff;
    --blue-500: #2e6dff;
    --blue-100: #eaf0ff;
    --yellow-500: #ffd21c;
    --yellow-100: #fff7cc;
    --red-500: #e83b48;
    --red-100: #fff0f2;
    --green-600: #16a34a;
    --green-500: #25d366;
    --green-100: #eafbf0;
    --ink-900: #101828;
    --ink-700: #344054;
    --ink-600: #475467;
    --ink-500: #667085;
    --ink-400: #98a2b3;
    --surface: #ffffff;
    --surface-soft: #f5f7fb;
    --surface-blue: #f0f5ff;
    --border: #e4e9f2;
    --shadow-sm: 0 8px 24px rgba(15, 31, 61, .08);
    --shadow-md: 0 20px 55px rgba(15, 31, 61, .14);
    --shadow-lg: 0 32px 90px rgba(0, 11, 36, .25);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1180px;
    --header-height: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    margin: 0;
    color: var(--ink-900);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.35rem; }
p { color: var(--ink-600); }
ul, ol { padding-left: 1.25rem; }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 105px 0; }
.section--compact { padding: 70px 0; }
.section--soft { background: var(--surface-soft); }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; top: 10px; left: 10px; z-index: 9999;
    background: #fff; color: var(--navy-900); padding: 12px 18px;
    border-radius: 10px; transform: translateY(-150%); box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
    display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px;
    color: var(--blue-600); font-size: .76rem; font-weight: 850;
    letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow--hero, .eyebrow--light { color: #dfe9ff; }
.status-dot {
    width: 9px; height: 9px; border-radius: 50%; background: var(--green-500);
    box-shadow: 0 0 0 6px rgba(37, 211, 102, .13);
}

.button {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 48px; padding: 12px 20px; border: 1px solid transparent;
    border-radius: 13px; font-weight: 800; line-height: 1.2; cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .icon-button:focus-visible, .nav-toggle:focus-visible,
.amount-chips button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible {
    outline: 3px solid rgba(46, 109, 255, .35); outline-offset: 3px;
}


.button svg {
    display: block;
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
}

/* Iconos normales dibujados con líneas */
.button svg:not(.whatsapp-icon) {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Logo de WhatsApp */
.button .whatsapp-icon {
    width: 21px;
    height: 21px;
    fill: currentColor;
    stroke: none !important;
}


.button--small { min-height: 42px; padding: 10px 16px; font-size: .92rem; }
.button--large { min-height: 56px; padding: 15px 23px; }
.button--block { width: 100%; }
.button--primary { background: var(--blue-600); color: #fff; box-shadow: 0 12px 26px rgba(31, 94, 255, .23); }
.button--primary:hover { background: #154ee2; }
.button--whatsapp { background: var(--green-500); color: #063e1b; box-shadow: 0 12px 28px rgba(37, 211, 102, .22); }
.button--whatsapp:hover { background: #20c85f; }
.button--ghost { color: #fff; border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.button--ghost:hover { background: rgba(255,255,255,.14); }
.button--outline { color: var(--navy-900); border-color: var(--border); background: #fff; }
.button--outline:hover { border-color: var(--blue-500); color: var(--blue-600); }
.button--light { color: var(--navy-900); background: #fff; }
.text-link { display: inline-flex; gap: 8px; color: var(--blue-600); font-weight: 850; }
.text-link:hover span { transform: translateX(4px); }
.text-link span { transition: transform .18s ease; }

.topbar { background: var(--navy-950); color: #c7d2e8; font-size: .78rem; }
.topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar strong { color: var(--yellow-500); }
.topbar a { color: #fff; }
.site-header {
    position: sticky; top: 0; z-index: 1000; height: var(--header-height);
    background: rgba(255,255,255,.92); border-bottom: 1px solid rgba(228,233,242,.8);
    backdrop-filter: blur(16px); transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(6, 17, 38, .08); background: rgba(255,255,255,.98); }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 62px; height: 62px; object-fit: contain; }
.brand__text { display: grid; }
.brand__text strong { color: var(--navy-900); font-size: 1.08rem; letter-spacing: -.02em; }
.brand__text small { color: var(--ink-500); font-size: .75rem; }
.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav > a:not(.button) {
    padding: 10px 11px; border-radius: 10px; color: var(--ink-700);
    font-size: .9rem; font-weight: 720; transition: color .18s ease, background .18s ease;
}
.main-nav > a:not(.button):hover, .main-nav > a.is-active { color: var(--blue-600); background: var(--blue-100); }
.main-nav .nav-link-portal { border: 1px solid var(--border); margin-left: 4px; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 12px; background: #fff; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy-900); border-radius: 5px; transition: transform .2s ease, opacity .2s ease; }

.hero {
    position: relative; overflow: hidden; isolation: isolate;
    min-height: 690px; padding: 84px 0 92px;
    color: #fff; background:
        radial-gradient(circle at 8% 10%, rgba(46,109,255,.28), transparent 32%),
        radial-gradient(circle at 90% 80%, rgba(255,210,28,.13), transparent 28%),
        linear-gradient(125deg, var(--navy-950) 0%, #071b3b 54%, #0b2f69 100%);
}
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: -1; opacity: .27;
    background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 48px 48px; mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .75; z-index: -1; }
.hero__glow--one { width: 280px; height: 280px; right: -80px; top: 60px; border: 1px solid rgba(255,255,255,.15); }
.hero__glow--two { width: 150px; height: 150px; left: 46%; bottom: -60px; background: rgba(232,59,72,.15); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .78fr); align-items: center; gap: 70px; }
.hero h1 { max-width: 760px; margin-bottom: 24px; color: #fff; }
.hero__lead { max-width: 690px; margin-bottom: 32px; color: #cbd7ee; font-size: clamp(1.05rem, 2vw, 1.23rem); line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 16px 24px; margin: 0; padding: 0; list-style: none; color: #dce5f5; font-size: .9rem; }
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.check-icon { display: grid; place-items: center; width: 22px; height: 22px; color: #063e1b; background: var(--green-500); border-radius: 50%; font-size: .75rem; font-weight: 900; }

.quote-card {
    position: relative; background: #fff; color: var(--ink-900); border: 1px solid rgba(255,255,255,.48);
    border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg);
}
.quote-card::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--yellow-500) 0 33%, var(--blue-500) 33% 66%, var(--red-500) 66%); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.quote-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; margin-bottom: 22px; }
.quote-card__label { display: block; margin-bottom: 6px; color: var(--blue-600); font-size: .75rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.quote-card h2 { margin-bottom: 0; font-size: 1.7rem; }
.secure-pill { display: inline-flex; align-items: center; gap: 6px; min-width: max-content; padding: 7px 10px; color: var(--green-600); background: var(--green-100); border-radius: 999px; font-size: .7rem; font-weight: 800; }
.secure-pill svg { width: 15px; height: 15px; fill: currentColor; }
.quote-form { display: grid; gap: 11px; }
.quote-form label { color: var(--ink-700); font-size: .84rem; font-weight: 800; }
.select-wrap { position: relative; }
.select-wrap::after { content: "⌄"; position: absolute; right: 15px; top: 50%; transform: translateY(-58%); color: var(--ink-500); pointer-events: none; font-size: 1.2rem; }
.quote-form select, .quote-form input {
    width: 100%; min-height: 54px; border: 1px solid #d8deea; border-radius: 13px;
    background: #fff; color: var(--ink-900); outline: none; transition: border-color .18s ease, box-shadow .18s ease;
}
.quote-form select { appearance: none; padding: 0 42px 0 15px; }
.quote-form input { padding: 0 15px; }
.quote-form select:focus, .quote-form input:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(46,109,255,.11); }
.money-input { display: grid; grid-template-columns: 72px 1fr; border: 1px solid #d8deea; border-radius: 13px; overflow: hidden; transition: border-color .18s ease, box-shadow .18s ease; }
.money-input:focus-within { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(46,109,255,.11); }
.money-input span { display: grid; place-items: center; color: var(--navy-900); background: var(--surface-soft); border-right: 1px solid #d8deea; font-size: .85rem; font-weight: 900; }
.money-input input { border: 0; border-radius: 0; box-shadow: none !important; font-size: 1.08rem; font-weight: 750; }
.amount-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin: 2px 0 7px; }
.amount-chips button { min-height: 34px; border: 1px solid var(--border); border-radius: 9px; color: var(--ink-700); background: #fff; font-size: .72rem; font-weight: 800; cursor: pointer; }
.amount-chips button:hover { color: var(--blue-600); border-color: #b9c9ff; background: var(--blue-100); }
.form-note, .form-error { margin: 2px 0 0; font-size: .76rem; line-height: 1.5; text-align: center; }
.form-error { color: #b42318; background: #fef3f2; padding: 8px 10px; border-radius: 9px; }

.confidence-strip { position: relative; z-index: 2; margin-top: -1px; background: #fff; border-bottom: 1px solid var(--border); }
.confidence-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.confidence-strip article { display: flex; align-items: center; gap: 13px; min-height: 115px; padding: 20px; border-right: 1px solid var(--border); }
.confidence-strip article:last-child { border-right: 0; }
.confidence-strip strong, .confidence-strip small { display: block; }
.confidence-strip strong { margin-bottom: 3px; color: var(--ink-900); font-size: .94rem; }
.confidence-strip small { color: var(--ink-500); font-size: .77rem; line-height: 1.45; }
.feature-icon { display: grid; place-items: center; flex: 0 0 auto; width: 46px; height: 46px; border-radius: 14px; }
.feature-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-icon--yellow { color: #9f7200; background: var(--yellow-100); }
.feature-icon--blue { color: var(--blue-600); background: var(--blue-100); }
.feature-icon--red { color: var(--red-500); background: var(--red-100); }
.feature-icon--green { color: var(--green-600); background: var(--green-100); }

.section-heading { margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 18px; max-width: 780px; }
.section-heading p { max-width: 650px; font-size: 1.04rem; }
.section-heading--split { display: grid; grid-template-columns: 1.15fr .75fr; align-items: end; gap: 70px; }
.section-heading--split p { margin-bottom: 7px; }
.section-heading--center { max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading--center h2, .section-heading--center p { margin-inline: auto; }

.rate-section { background: #fff; }
.rate-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 30px; align-items: stretch; }
.rate-panel, .rate-explainer, .quick-quote-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.rate-panel { overflow: hidden; }
.rate-panel__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 25px 26px 18px; }
.rate-panel__header h2, .rate-panel__header h3 { margin: 8px 0 0; font-size: 1.35rem; }
.live-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--green-600); font-size: .76rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.live-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 5px rgba(37,211,102,.14); }
.icon-button { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 12px; color: var(--ink-600); background: #fff; cursor: pointer; }
.icon-button:hover { color: var(--blue-600); border-color: #c5d2ff; }
.icon-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.rate-image-wrap { display: grid; place-items: center; min-height: 220px; padding: 22px 28px; background: linear-gradient(135deg, #f8faff, #eef3ff); border-block: 1px solid var(--border); }
.rate-image-wrap img { width: min(100%, 500px); object-fit: contain; }
.rate-panel__footer { display: flex; justify-content: space-between; gap: 20px; padding: 16px 26px; color: var(--ink-500); font-size: .78rem; }
.rate-panel__footer a { color: var(--blue-600); font-weight: 850; }
.rate-explainer { padding: 31px; }
.rate-explainer h3 { margin-bottom: 24px; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.number-list { display: grid; gap: 21px; margin: 0 0 27px; padding: 0; list-style: none; }
.number-list li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: start; }
.number-list > li > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: var(--blue-600); background: var(--blue-100); font-weight: 900; }
.number-list strong { display: block; margin-bottom: 3px; }
.number-list p { margin: 0; font-size: .9rem; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { position: relative; overflow: hidden; min-height: 320px; padding: 30px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.step-card::after { content: ""; position: absolute; right: -55px; bottom: -70px; width: 170px; height: 170px; border: 26px solid var(--blue-100); border-radius: 50%; opacity: .7; }
.step-number { position: absolute; top: 23px; right: 25px; color: #d6deec; font-size: 2.5rem; font-weight: 950; letter-spacing: -.06em; }
.step-card__icon { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 40px; color: var(--blue-600); background: var(--blue-100); border-radius: 18px; }
.step-card__icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.step-card h3 { margin-bottom: 12px; font-size: 1.55rem; }
.step-card p { position: relative; z-index: 1; margin: 0; }

.experience-section { background: #fff; }
.experience-grid { display: grid; grid-template-columns: 1.08fr .72fr; gap: 70px; align-items: center; }
.experience-copy > p { max-width: 680px; font-size: 1.04rem; }
.benefit-stack { display: grid; gap: 18px; margin-top: 32px; }
.benefit-stack article { display: grid; grid-template-columns: 34px 1fr; gap: 15px; padding: 20px; background: var(--surface-soft); border: 1px solid var(--border); border-radius: 16px; }
.benefit-stack article > span { display: grid; place-items: center; width: 31px; height: 31px; color: #063e1b; background: var(--green-500); border-radius: 50%; font-weight: 900; }
.benefit-stack h3 { margin-bottom: 5px; font-size: 1.05rem; letter-spacing: -.02em; }
.benefit-stack p { margin: 0; font-size: .88rem; }
.safety-card { position: relative; overflow: hidden; padding: 38px; color: #fff; background: linear-gradient(145deg, var(--navy-950), #0a2f66); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.safety-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -90px; top: -85px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.safety-card__shield { display: grid; place-items: center; width: 67px; height: 67px; margin-bottom: 27px; color: var(--yellow-500); background: rgba(255,210,28,.12); border: 1px solid rgba(255,210,28,.22); border-radius: 20px; }
.safety-card__shield svg { width: 34px; height: 34px; fill: currentColor; }
.safety-card h2 { margin-bottom: 22px; color: #fff; font-size: 2.2rem; }
.safety-card ul { display: grid; gap: 13px; margin-bottom: 28px; padding-left: 20px; color: #d9e3f5; }

.calculator-shell { overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.calculator-shell__bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 15px; min-height: 56px; padding: 0 20px; background: var(--navy-900); color: #fff; font-size: .83rem; }
.calculator-shell__bar > div { display: flex; gap: 6px; }
.calculator-shell__bar > div span { width: 9px; height: 9px; border-radius: 50%; background: var(--red-500); }
.calculator-shell__bar > div span:nth-child(2) { background: var(--yellow-500); }
.calculator-shell__bar > div span:nth-child(3) { background: var(--green-500); }
.calculator-shell__bar a { justify-self: end; color: #cbd7ee; }
.calculator-shell iframe { display: block; width: 100%; height: 830px; border: 0; background: #fff; }
.calculator-shell--page iframe { height: 980px; }

.faq-layout { display: grid; grid-template-columns: .66fr 1.34fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p { margin-bottom: 24px; }
.accordion { display: grid; gap: 12px; }
.accordion details { overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: 16px; transition: border-color .18s ease, box-shadow .18s ease; }
.accordion details[open] { border-color: #c7d4ff; box-shadow: 0 12px 28px rgba(31,94,255,.07); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 23px; cursor: pointer; color: var(--ink-900); font-weight: 820; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--blue-100); }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; left: 6px; top: 10px; width: 10px; height: 2px; background: var(--blue-600); transition: transform .18s ease; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details > div { padding: 0 23px 22px; }
.accordion details p:last-child, .accordion details ol:last-child, .accordion details ul:last-child { margin-bottom: 0; }

.final-cta-section { padding-top: 25px; }
.final-cta { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.15fr .75fr; align-items: center; gap: 55px; padding: 55px; color: #fff; background: linear-gradient(125deg, #0a2e68, var(--navy-950)); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.final-cta__pattern { position: absolute; right: -60px; top: -120px; width: 310px; height: 310px; border: 48px solid rgba(255,255,255,.05); border-radius: 50%; }
.final-cta h2 { position: relative; max-width: 720px; margin-bottom: 15px; color: #fff; }
.final-cta p { position: relative; max-width: 680px; margin-bottom: 0; color: #cbd7ee; }
.final-cta__actions { position: relative; display: grid; gap: 12px; }

.prefooter { margin-top: 80px; padding: 36px 0; color: #fff; background: linear-gradient(90deg, var(--blue-600), #1349bf); }
.prefooter__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.prefooter h2 { margin-bottom: 8px; color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.prefooter p { margin-bottom: 0; color: #dfe8ff; }
.site-footer { padding: 70px 0 20px; color: #d7e0ef; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr 1fr 1fr; gap: 45px; }
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text small { color: #9eb0ce; }
.footer-brand > p { max-width: 430px; margin-top: 20px; color: #9eb0ce; }
.footer-contact-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.footer-contact-chips a { padding: 7px 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 9px; color: #e7eef9; font-size: .8rem; }
.site-footer h3 { margin-bottom: 20px; color: #fff; font-size: .94rem; letter-spacing: .02em; }
.footer-links, .footer-hours { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; color: #9eb0ce; font-size: .86rem; }
.footer-links a:hover { color: #fff; }
.footer-hours li { display: grid; gap: 1px; }
.footer-hours strong { color: #dce5f3; font-weight: 650; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom p { margin: 0; color: #7487a7; font-size: .75rem; }
.mobile-actions { display: none; }

.inner-hero { position: relative; overflow: hidden; padding: 80px 0; color: #fff; background: linear-gradient(125deg, var(--navy-950), #0b3778); }
.inner-hero::after { content: ""; position: absolute; right: -100px; bottom: -170px; width: 360px; height: 360px; border: 50px solid rgba(255,255,255,.05); border-radius: 50%; }
.inner-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 45px; }
.inner-hero h1 { margin-bottom: 16px; color: #fff; font-size: clamp(2.5rem, 5vw, 4.8rem); }
.inner-hero p { max-width: 720px; margin-bottom: 0; color: #cbd7ee; font-size: 1.08rem; }
.updated-pill { padding: 10px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #e4ecfa; background: rgba(255,255,255,.08); font-size: .8rem; font-weight: 750; }
.two-card-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; }
.quick-quote-card { padding: 28px; }
.quick-quote-card h2 { margin-bottom: 22px; font-size: 2rem; }
.muted-note { margin: 0; padding: 16px 26px; color: var(--ink-500); font-size: .8rem; }
.notice-card { display: grid; grid-template-columns: 44px 1fr; gap: 15px; margin-top: 24px; padding: 20px; background: var(--yellow-100); border: 1px solid #ffe26e; border-radius: 15px; }
.notice-card svg { width: 29px; height: 29px; fill: none; stroke: #9f7200; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.notice-card p { margin: 3px 0 0; color: #6e5500; }

.help-layout { display: grid; grid-template-columns: 310px 1fr; gap: 55px; align-items: start; }
.help-aside { position: sticky; top: 115px; }
.help-card { padding: 26px; background: var(--navy-900); color: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.help-card h2 { margin-bottom: 18px; color: #fff; font-size: 1.8rem; }
.help-card ol { display: grid; gap: 11px; margin-bottom: 24px; color: #d5dfef; }
.faq-groups { display: grid; gap: 55px; }
.faq-group__title { display: grid; grid-template-columns: 55px 1fr; gap: 17px; align-items: start; margin-bottom: 22px; }
.faq-group__title > span { display: grid; place-items: center; width: 55px; height: 55px; color: var(--blue-600); background: var(--blue-100); border-radius: 17px; font-weight: 950; }
.faq-group__title h2 { margin-bottom: 5px; font-size: 2rem; }
.faq-group__title p { margin: 0; }

.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 65px; align-items: start; }
.legal-aside { position: sticky; top: 115px; }
.legal-aside nav { display: grid; gap: 7px; padding: 22px; background: var(--surface-soft); border: 1px solid var(--border); border-radius: 17px; }
.legal-aside strong { margin-bottom: 7px; color: var(--navy-900); }
.legal-aside a { padding: 7px 9px; border-radius: 8px; color: var(--ink-600); font-size: .84rem; }
.legal-aside a:hover { color: var(--blue-600); background: var(--blue-100); }
.legal-content { max-width: 820px; }
.legal-intro { margin-bottom: 45px; padding: 22px; color: #25385e; background: var(--surface-blue); border-left: 4px solid var(--blue-600); border-radius: 0 14px 14px 0; }
.legal-content > section { position: relative; padding: 0 0 42px 70px; }
.legal-content > section:not(:last-of-type) { margin-bottom: 42px; border-bottom: 1px solid var(--border); }
.legal-number { position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 47px; height: 47px; color: var(--blue-600); background: var(--blue-100); border-radius: 14px; font-weight: 950; }
.legal-content h2 { margin-bottom: 16px; font-size: 1.85rem; }
.legal-content p, .legal-content li { color: var(--ink-600); }
.legal-content ul { display: grid; gap: 10px; }
.legal-content a:not(.button) { color: var(--blue-600); font-weight: 700; }
.legal-contact { margin-top: 20px; padding: 30px; background: var(--surface-soft); border: 1px solid var(--border); border-radius: var(--radius-md); }
.legal-contact h2 { margin-bottom: 8px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay { transition-delay: .12s; }
.reveal--delay-1 { transition-delay: .09s; }
.reveal--delay-2 { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
    :root { --header-height: 76px; }
    .brand__text { display: none; }
    .main-nav > a:not(.button) { padding-inline: 8px; font-size: .84rem; }
    .hero__grid { grid-template-columns: 1fr 420px; gap: 38px; }
    .hero { min-height: auto; }
    .confidence-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .confidence-strip article:nth-child(2) { border-right: 0; }
    .confidence-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-grid > div:nth-child(2) { display: none; }
}

@media (max-width: 860px) {
    .section { padding: 78px 0; }
    .topbar__hide-mobile { display: none; }
    .nav-toggle { display: block; }
    .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
    .main-nav {
        position: fixed; inset: calc(34px + var(--header-height)) 16px auto; display: grid; gap: 5px;
        padding: 16px; background: #fff; border: 1px solid var(--border); border-radius: 18px;
        box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease;
    }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-nav > a:not(.button) { padding: 13px; }
    .main-nav .nav-link-portal { margin-left: 0; }
    .main-nav .button { margin-top: 6px; }
    .hero { padding: 64px 0 75px; }
    .hero__grid, .rate-layout, .experience-grid, .section-heading--split,
    .faq-layout, .final-cta, .two-card-grid { grid-template-columns: 1fr; }
    .hero__grid { gap: 48px; }
    .quote-card { max-width: 620px; }
    .section-heading--split { gap: 12px; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card { min-height: 250px; }
    .faq-layout { gap: 34px; }
    .faq-intro { position: static; }
    .final-cta { padding: 40px; gap: 30px; }
    .prefooter__inner { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1.2fr 1fr; }
    .inner-hero__grid { grid-template-columns: 1fr; }
    .help-layout, .legal-layout { grid-template-columns: 1fr; }
    .help-aside, .legal-aside { position: static; }
    .legal-aside nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .legal-aside strong { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    :root { --header-height: 68px; }
    body { padding-bottom: 66px; }
    .container { width: min(calc(100% - 24px), var(--container)); }
    .topbar { font-size: .7rem; }
    .topbar__inner { min-height: 31px; }
    .topbar__inner > span:first-child { white-space: nowrap; }
    .topbar a { display: none; }
    .site-header { height: var(--header-height); }
    .brand img { width: 52px; height: 52px; }
    .main-nav { inset: calc(31px + var(--header-height)) 12px auto; }
    .hero { padding: 52px 0 62px; }
    .hero h1 { font-size: clamp(2.45rem, 13vw, 3.7rem); }
    .hero__lead { font-size: 1rem; }
    .hero__actions { display: grid; }
    .hero__actions .button { width: 100%; }
    .hero__trust { display: grid; gap: 11px; }
    .quote-card { padding: 22px 17px; border-radius: 23px; }
    .quote-card__top { display: block; }
    .secure-pill { margin-top: 12px; }
    .amount-chips { grid-template-columns: repeat(2, 1fr); }
    .confidence-strip__grid { grid-template-columns: 1fr; }
    .confidence-strip article { min-height: 96px; border-right: 0; border-bottom: 1px solid var(--border); }
    .confidence-strip article:last-child { border-bottom: 0; }
    .section { padding: 65px 0; }
    .section-heading { margin-bottom: 32px; }
    .rate-panel__header, .rate-explainer { padding: 21px; }
    .rate-image-wrap { min-height: 170px; padding: 17px; }
    .rate-panel__footer { display: grid; gap: 5px; padding: 14px 20px; }
    .step-card { padding: 24px; }
    .safety-card { padding: 28px 23px; }
    .calculator-shell__bar { grid-template-columns: 1fr auto; padding: 0 13px; }
    .calculator-shell__bar strong { display: none; }
    .calculator-shell iframe { height: 960px; }
    .calculator-shell--page iframe { height: 1050px; }
    .accordion summary { padding: 18px; }
    .accordion details > div { padding: 0 18px 20px; }
    .final-cta { padding: 30px 22px; border-radius: 23px; }
    .final-cta__actions { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:nth-child(2) { display: block; }
    .footer-bottom { display: grid; }
    .prefooter { margin-top: 45px; }

    .mobile-actions {
        position: fixed;
        z-index: 1200;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: 0.9fr 1.35fr;
        gap: 8px;
        padding:
            8px
            max(8px, env(safe-area-inset-right))
            calc(8px + env(safe-area-inset-bottom))
            max(8px, env(safe-area-inset-left));
        background: rgba(255, 255, 255, 0.97);
        border-top: 1px solid var(--border);
        box-shadow: 0 -10px 30px rgba(6, 17, 38, 0.10);
        backdrop-filter: blur(12px);
    }

    .mobile-actions a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        min-width: 0;
        min-height: 52px;
        padding: 10px 12px;
        color: var(--navy-900);
        border-radius: 12px;
        font-size: 0.92rem;
        font-weight: 850;
        line-height: 1;
        text-decoration: none;
    }

    .mobile-actions__calculator {
        background: #ffffff;
        border: 1px solid var(--border);
    }

    .mobile-actions__wa {
        color: #063e1b !important;
        background: var(--green-500);
        border: 1px solid transparent;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.20);
    }

    .mobile-actions svg {
        display: block;
        flex: 0 0 auto;
        width: 23px;
        height: 23px;
    }

    .mobile-actions a:first-child svg,
    .mobile-actions .mobile-icon--calculator {
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 1.8 !important;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-actions a:last-child svg,
    .mobile-actions .mobile-icon--whatsapp {
        width: 25px;
        height: 25px;
        fill: currentColor !important;
        stroke: none !important;
    }

    .mobile-actions a:active {
        transform: scale(0.98);
    }

    .inner-hero { padding: 58px 0; }
    .inner-hero__grid { gap: 25px; }
    .updated-pill { justify-self: start; }
    .help-card { padding: 23px; }
    .faq-group__title { grid-template-columns: 45px 1fr; }
    .faq-group__title > span { width: 45px; height: 45px; border-radius: 13px; }
    .legal-aside nav { grid-template-columns: 1fr; }
    .legal-aside strong { grid-column: auto; }
    .legal-content > section { padding-left: 0; padding-top: 62px; }
    .legal-number { top: 0; }
    .legal-contact { padding: 23px; }
}



@media (max-width: 380px) {
    .mobile-actions {
        grid-template-columns: 0.85fr 1.25fr;
        gap: 6px;
    }

    .mobile-actions a {
        min-height: 50px;
        padding: 9px 8px;
        font-size: 0.84rem;
    }

    .mobile-actions svg {
        width: 21px;
        height: 21px;
    }

    .mobile-actions a:last-child svg,
    .mobile-actions .mobile-icon--whatsapp {
        width: 23px;
        height: 23px;
    }
}


/* Tarjeta de cotización sin franja superior */

.quote-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.quote-card::before,
.quote-card::after,
.quote-card__tricolor,
.quote-card__flag,
.quote-card__colors,
.quote-card__stripe {
    content: none !important;
    display: none !important;
}

.quote-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 22px;
    padding-top: 0 !important;
}

@media (max-width: 620px) {
    .quote-card {
        padding: 22px 17px;
        border-radius: 23px;
    }

    .quote-card__top {
        display: block;
        padding-top: 0 !important;
    }
}


/* Iconos definitivos de la barra móvil */

.mobile-actions__calculator svg {
    width: 24px !important;
    height: 24px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.7 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.mobile-actions__calculator svg circle {
    fill: currentColor !important;
    stroke: none !important;
}

.mobile-actions__wa svg {
    width: 27px !important;
    height: 27px !important;
    fill: currentColor !important;
    stroke: none !important;
}

.mobile-actions__wa svg path {
    fill: currentColor !important;
    stroke: none !important;
}