/* Bienestar Hero - inspirado en el diseño compartido */
.bienestar-hero {
    --bg-start: #efe8e2;
    --bg-end: #f6f1ec;
    background: linear-gradient(180deg, var(--bg-start) 0%, var(--bg-end) 100%);
    padding: 56px 0 72px;
    min-height: 560px;
}

.bh-content {
    padding-top: 50px;
    padding-bottom: 100px;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.bh-title {
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.bh-subtitle {
    max-width: 640px;
    margin-bottom: 24px;
}

/* Fotos posicionadas */
.bh-photo {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    background-image: var(--img), linear-gradient(135deg, #d7d1cb 0%, #f0ede9 100%);
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.bh-photo--left {
    top: 0;
    left: 0;
    width: 232px;
    height: 306px;
}

.bh-photo--top-right {
    top: 0;
    right: 0;
    width: 281px;
    height: 171px;
}

.bh-photo--bottom-right {
    right: 135px;
    bottom: 0;
    width: 209px;
    height: 220px;
}


/* Responsive */
@media (max-width: 1399.98px) {
    .bh-photo--top-right {
        right: 40px;
    }

    .bh-photo--bottom-right {
        right: 80px;
    }
}

@media (max-width: 1199.98px) {
    .bh-photo--left {
        width: 240px;
        height: 240px;
    }

    .bh-photo--top-right {
        width: 300px;
        height: 140px;
    }

    .bh-photo--bottom-right {
        width: 300px;
        height: 320px;
    }
}

@media (max-width: 991.98px) {
    .bienestar-hero {
        padding-top: 32px;
        padding-bottom: 64px;
    }

    .bh-content {
        padding: 0 16px;
    }

    .bh-title {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
        line-height: 1.05;
        margin-bottom: 12px;
    }

    .bh-subtitle {
        max-width: 90%;
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .bh-cta-row {
        flex-direction: column;
        gap: 10px;
    }

    .bh-photo--left {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 360px;
        margin: 0 auto 20px;
        height: 220px;
    }

    .bh-photo--top-right,
    .bh-photo--bottom-right {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .bh-title {
        font-size: clamp(1.8rem, 10vw, 2.3rem);
    }

    .bh-subtitle {
        max-width: 94%;
    }
}