.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--negro);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.10) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0.45) 100%
    );
}

.hero__contenido {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__texto {
    max-width: 65rem;
    padding-top: 8rem;
    padding-left: 4rem;
}

.hero__texto h1 {
    color: var(--blanco);
    font-size: clamp(3.8rem, 7vw, 8rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 2.4rem;
    text-transform: uppercase;
}

.hero__texto h1 span {
    color: var(--amarillo);
    display: inline-block;
    font-size: 0.85em;
}

.hero__texto p {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.7rem, 2vw, 2rem);
    max-width: 55rem;
    margin-bottom: 3rem;
}

.hero__botones {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
}

.hero::before {
    content: '';
    position: absolute;
    width: 35rem;
    height: 35rem;
    background-color: rgba(255, 196, 0, 0.08);
    border-radius: 50%;
    top: -10rem;
    right: -10rem;
    filter: blur(5rem);
}

.hero::after {
    content: '';
    position: absolute;
    width: 28rem;
    height: 28rem;
    background-color: rgba(255, 196, 0, 0.06);
    border-radius: 50%;
    bottom: -10rem;
    left: -10rem;
    filter: blur(5rem);
}

/* TABLET Y CELULARES */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        background-image: url('../img/cel.png');
        background-size: cover;
        background-position: center;
        align-items: center;
    }

    .hero__overlay {
        display: none;
    }

    .hero__texto {
        width: 100%;
        max-width: 34rem;
        margin: 0 auto;
        padding-top: 6rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        text-align: center;
    }

    .hero__texto h1 {
        font-size: clamp(2.7rem, 8vw, 3.8rem);
        line-height: 1.08;
        margin-bottom: 1.4rem;
        letter-spacing: -0.04em;
        text-shadow:
            0 2px 8px rgba(0, 0, 0, 0.85),
            0 4px 20px rgba(0, 0, 0, 0.7);
    }

    .hero__texto h1 span {
        font-size: 0.78em;
        letter-spacing: -0.05em;
    }

    .hero__texto p {
        font-size: 1.28rem;
        line-height: 1.35;
        max-width: 28rem;
        margin: 0 auto 2rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    }

    .hero__botones {
        width: 100%;
        max-width: 30rem;
        margin: 0 auto;
        gap: 1rem;
    }

    .hero__botones .boton {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* CELULARES MUY ANGOSTOS */
@media (max-width: 420px) {
    .hero__texto {
        max-width: 31rem;
        padding-top: 5rem;
    }

    .hero__texto h1 {
        font-size: clamp(2.3rem, 7.4vw, 3.1rem);
        line-height: 1.1;
    }

    .hero__texto h1 span {
        font-size: 0.74em;
    }

    .hero__texto p {
        font-size: 1.15rem;
    }
}