.hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 76px;

}


/* HERO LIGHT (como tu referencia en blanco) */
.hero--light {
    position: relative;
    overflow: hidden;
    padding: 0px 0 72px;
    background: #ffffff;
}

/* halos suaves (startup/tech pero clean) */
.hero--light::before {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
}

/* grid */
.hero--light .hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 34px;
    min-height: 520px;
    z-index: 1;
}

/* texto */
.hero--light .hero-text {
    max-width: 720px;
    z-index: 10;

}

.hero--light .hero-text h1 {
    margin: 0 0 16px;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.02;
    font-size: clamp(2.6rem, 5.2vw, 4.6rem);
    color: #06111E;
    max-width: 18ch;
}

.hero--light .hero-text .accent {
    color: #FF6C2B;
}

.hero--light .hero-sub {
    margin: 0 0 22px;
    color: rgba(6, 17, 30, .72);
    max-width: 60ch;
    font-size: 1.06rem;
    line-height: 1.65;
}

/* botones (asegura contraste en blanco) */
.hero--light .hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero--light .btn-primary {
    background: #FF6C2B;
    color: #fff;
    border: 1px solid rgba(255, 108, 43, .35);
    box-shadow: 0 14px 34px rgba(6, 17, 30, .12);
}

.hero--light .btn-secondary {
    background: transparent;
    color: #06111E;
    border: 2px solid rgba(6, 17, 30, .20);
}

/* trust */
.hero--light .trust-badge {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: rgba(6, 17, 30, .62);
    font-size: .95rem;
}

.hero--light .trust-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #FF6C2B;
    box-shadow: 0 0 0 4px rgba(255, 108, 43, .18);
}

/* media: YA NO ES “card overlay oscura”, es panel limpio */
.hero--light .hero-media--flat {
    position: relative;
    justify-self: end;
    width: 155%;
    /* 👈 se queda */
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #fff;
}

/* imagen grande, recortada bonito, sin matar el blanco */
.hero--light .hero-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    display: block;
    filter: saturate(1.04) contrast(1.04);
}

/* para que se integre con el fondo blanco sin verse “pegada” */
.hero--light .hero-media--flat::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

}

/* TABLET */
@media (max-width: 980px) {

    .hero--light .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
    }

    .hero--light .hero-media--flat {
        width: 100%;
        /* 👈 aquí se corrige */
        max-width: 860px;
        justify-self: center;
        margin-top: 10px;
        aspect-ratio: 16 / 11;
    }

    .hero--light .hero-art {
        object-position: 60% center;
    }
}


/* MOBILE */
@media (max-width: 520px) {

    .hero--light {
        padding: 72px 0 48px;
    }

    .hero--light .hero-text h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        max-width: 18ch;
    }

    .hero--light .hero-sub {
        font-size: 1rem;
    }

    .hero--light .hero-buttons .btn {
        width: 100%;
    }

    .hero--light .hero-media--flat {
        width: 100%;
        /* 👈 crítico */
        aspect-ratio: 4 / 3;
        /* más natural en móvil */
        margin-top: 8px;
        border-radius: 18px;
    }

    .hero--light .hero-art {
        object-position: 55% 55%;
        /* centra al personaje */
    }

    .hero--light .trust-badge {
        font-size: .9rem;
        line-height: 1.4;
    }
}