/* --- HEADER --- */
.header__banner {
    padding: 0;
    position: relative;
    height: 350px;
    overflow: hidden;
}

.header__banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        radial-gradient(120rem 280% at 50% 50%, transparent 0, #780707 60%, #780707 80%, #5e0808 100%),
        radial-gradient(120rem 280% at 50% 50%, transparent 0, #ae1616 60%, #780707 80%, #5e0808 100%);
}

.main-contact__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.header__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 20;
    font-family: "Amaranth", sans-serif;
    text-align: center;
    width: 100%;
}

.header__title h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.header__title p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    display: none;
}

@media screen and (min-width: 640px) {
    .header__title p {
        display: block;
    }
}

/* --- BIENESTAR SECTION --- */
.bienestar-section {
    background-color: #fbf4e7;
}

.bienestar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.bienestar-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

/* Tarjetas */
.bienestar-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Tarjeta principal */
.card {
    width: 300px;
    height: 500px;
    perspective: 1000px;
}

/* Interior de la tarjeta */
.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s;
}

/* Efecto al pasar el mouse */
.card:hover .card-inner {
    transform: rotateY(180deg);
}

/* Frente y reverso */
.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Imagen del frente */
.card-front img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.card:hover .card-front img {
    transform: scale(1.05);
}

/* Contenido de texto */
.card-front h3,
.card-back h3 {
    font-size: 1.2rem;
    color: #780707;
    margin-bottom: 10px;
}

.card-front p,
.card-back p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

/* Parte trasera de la tarjeta */
.card-back {
    transform: rotateY(180deg);
    background-color: #c7e4e4;
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        width: 90%;
        height: 500px;
    }
}
