.hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-body) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(205, 126, 98, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 450px;
    height: 550px;
    aspect-ratio: 450 / 550; /* Esto reserva el hueco exacto */
    background-color: var(--secondary);
}

.hero-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 200px 20px 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

/* RESPONSIVE HERO */
@media (max-width: 968px) {
    .hero {
        text-align: center;
        padding-top: 140px;
        padding-bottom: 4rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin: 2rem auto 0;
        width: 100%;
        max-width: 550px;
        height: auto;
        aspect-ratio: 4/5;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 3rem;
        min-height: auto;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 320px;
    }
}