body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.main {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.header {
    height: auto;
    max-height: 20%;
    display: flex;
    flex-direction: column;
}

/* ------- Div Section 1 ------- */
.divSection1 {
    width: 100%;
    height: auto;
    background-color: #5993b9;
    padding-bottom: 20px;
}

.divSection1Up {
    width: 100%;
    padding: 20px 0;
}

.info-parrafo1 {
    color: white;
    font-size: 40px;
    text-align: center;
}

.info-parrafo2 {
    color: white;
    font-size: 25px;
    text-align: center;
    margin-top: 10px;
}

.divSection1Down {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.contenedorImage1,
.contenedorImage2,
.contenedorImage3 {
    width: 30%;
    background-color: #88bada;
    padding: 10px;
}

.img-ajustada,
.img-ajustada2,
.img-ajustada3 {
    width: 100%;
    height: auto;
}

.contenedorImage1 p,
.contenedorImage2 p,
.contenedorImage3 p {
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
    color: white;
}

/* ------- 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,
.contenedor3 {
    width: 30%;
}

.textNosotros {
    text-align: center;
    font-size: 50px;
}

.textNosotros2 {
    margin-top: 10px;
    text-align: center;
    font-size: 20px;
}

.section2cont2img2,
.section2cont2img3 {
    width: 100%;
    height: auto;
}

/* ------- Div muestra inicio ------- */
.divMuestraInicio {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.columnIzquierdo,
.columnDerecho {
    width: 48%;
    height: 100vh;
    padding: 20px;
}

.columnIzquierdo {
    background-color: red;
}

.columnDerecho {
    background-color: green;
}

/* ------- Footer ------- */
footer {
    /*
    width: 100%;
    height: 200px;
    */
}

/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
    .info-parrafo1 {
        font-size: 30px;
    }
    .info-parrafo2 {
        font-size: 20px;
    }
    .contenedorImage1,
    .contenedorImage2,
    .contenedorImage3 {
        width: 90%;
    }
    .contenedor1,
    .contenedor2,
    .contenedor3 {
        width: 90%;
    }
    .textNosotros {
        font-size: 35px;
    }
    .textNosotros2 {
        font-size: 18px;
    }
    .columnIzquierdo,
    .columnDerecho {
        width: 90%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .info-parrafo1 {
        font-size: 25px;
    }
    .info-parrafo2 {
        font-size: 18px;
    }
    .textNosotros {
        font-size: 30px;
    }
}
