@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap');

* {
    font-family: "Alegreya Sans SC", sans-serif !important;
}

.contenidoCuidado {
    padding: 80px 40px;
    background-color: #fdfdfd;
}

.contenedorCuidado {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.imagenCuidado {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.imagenCuidado img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.textoCuidado {
    flex: 1 1 400px;
    max-width: 600px;
    text-align: justify;
}

.textoCuidado h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.textoCuidado p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333;
}

.textoCuidado strong {
    display: inline-block;
    margin-bottom: 6px;
    line-height: 1.5;
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 768px) {
    .contenedorCuidado {
        flex-direction: column;
        text-align: center;
    }

    .textoCuidado h1 {
        font-size: 1.8rem;
    }

    .textoCuidado p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .imagenCuidado {
        order: -1; /* imagen primero */
        margin-bottom: 0;
    }
}