    /* ── Comparador de vuelos — hero ──────────────────────────────── */
    .cv-hero {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        min-height: var(--hero-h);
        display: flex;
        align-items: flex-end;
        margin-bottom: 2rem;
        background: #020617;
    }
    .cv-hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .cv-hero-overlay {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 2.5rem 2rem 2rem;
    }
    .cv-hero-overlay h1 {
        color: #fff;
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        line-height: 1.15;
        margin: 0 0 0.5rem;
        text-shadow: 0 2px 10px rgba(0,0,0,.65), 0 1px 3px rgba(0,0,0,.45);
    }
    .cv-hero-overlay p {
        color: rgba(255,255,255,0.92);
        font-size: 1rem;
        margin: 0;
        max-width: 38rem;
        text-shadow: 0 1px 6px rgba(0,0,0,.6);
    }
    /* La franja del planificador entre secciones necesita ritmo propio */
    .cv-comparador .planner-strip { margin-bottom: 2.5rem; }
    @media (max-width: 600px) {
        .cv-hero { min-height: var(--hero-h-mobile); }
        .cv-hero-overlay { padding: 1.75rem 1.25rem 1.5rem; }
    }
