/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
}

/* General */
.main {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.header {
    width: 100%;
    max-height: 20%;
    display: flex;
    flex-direction: column;
}

/* ------- Div Section 1 ------- */
.divSection1 {
    width: 100%;
    background-color: #4ca69e;
    padding: 40px 0;
}

.divSection1Up {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.info-parrafo1 {
    color: white;
    font-size: 40px;
    margin-bottom: 10px;
}

.info-parrafo2 {
    color: white;
    font-size: 25px;
}

.divSection1Down {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contenedorImage1,
.contenedorImage2 {
    width: 45%;
    background-color: #88bada;
    padding: 20px;
    text-align: center;
}

.img-ajustada {
    width: 100%;
    height: auto;
}

.contenedorImage1 p,
.titleServiceClass p,
.divDescriptionServiceClasses p {
    font-size: 20px;
    color: white;
    margin-top: 10px;
}

/* ------- Div Section 2 ------- */
.divSection2 {
    width: 100%;
    background-color: #fdf6f6;
    padding: 40px 0;
}

.divSection2Unic {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contenedor1,
.contenedor2 {
    width: 45%;
}

.textNosotros {
    text-align: center;
    font-size: 40px;
}

.textNosotros2 {
    margin-top: 10px;
    text-align: center;
    font-size: 20px;
}

.section2cont2img2 {
    width: 100%;
    height: auto;
}

/* ------- Div Section 3 ------- */
.divSection3 {
    width: 100%;
    background-color: #3ac6b9;
    padding: 40px 0;
}

.divSection3Unic {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.divSection3contenedor1,
.divSection3contenedor2 {
    width: 45%;
    text-align: center;
}

.section3cont1img1 {
    width: 100%;
    height: auto;
}

.sect3title {
    font-size: 40px;
    color: white;
}

.sect3DescripTexNosos {
    margin-top: 10px;
    font-size: 20px;
    color: white;
}

/* ------- Div muestra inicio (no usada en este archivo) ------- */
.divMuestraInicio {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.columnIzquierdo,
.columnDerecho {
    width: 45%;
    height: 100vh;
    padding: 20px;
}

/* Footer */
footer {
}

/* --- MEDIA QUERIES RESPONSIVE --- */
@media (max-width: 768px) {
    .info-parrafo1 {
        font-size: 30px;
    }
    .info-parrafo2 {
        font-size: 20px;
    }
    .contenedorImage1,
    .contenedorImage2,
    .contenedor1,
    .contenedor2,
    .divSection3contenedor1,
    .divSection3contenedor2 {
        width: 90%;
    }
    .textNosotros {
        font-size: 30px;
    }
    .textNosotros2,
    .sect3DescripTexNosos {
        font-size: 18px;
    }
    .sect3title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .info-parrafo1 {
        font-size: 25px;
    }
    .info-parrafo2 {
        font-size: 18px;
    }
    .textNosotros {
        font-size: 25px;
    }
    .sect3title {
        font-size: 25px;
    }
}
