/* Sección hero */
#hero_wrapper {
    position: relative;
    width: 100%;
    min-height: 900px;
    background-image: var(--hero-bg-desktop);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

#hero_section {
    width: 100%;
}

.hero-content {
    width: calc(100% - 160px);
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* Bloque izquierdo */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Bloque derecho */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    #hero_wrapper {
        height: 100vh;
        background-image: var(--hero-bg-mobile);
    }

    .hero-content {
        width: calc(100% - 40px);
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }
}
