/*root*/
:root{
    --fuente: "Roboto Slab";
    --negro: #000000;
    --blanco: #ffffff;
    --azulClaro: #5DCCF5;
    --azulFuerte: #077EB7;
    --gris: #E1E1E1;
}

/*Globales*/
html {
    box-sizing: border-box;
    font-size: 62.5%;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }
a{
    font-size: 2rem;
    font-family: var(--fuente);
    font-weight: 600;
}
h1{
    font-size: 3.2rem;
    font-family: var(--fuente);
}
@media (max-width: 480px) {
    h1{
        font-size: 2rem;
    }
}
h2{
    font-size: 2.5rem;
    font-family: var(--fuente);
}
@media (max-width: 480px) {
    h2{
        font-size: 1.6rem;
    }
}
p{
    font-size: 2rem;
    font-family: var(--fuente);
}
@media (max-width: 480px) {
    p{
        font-size: 1.4rem;
    }
}
li{
    font-size: 2rem;
    font-family: var(--fuente);
}
@media (max-width: 480px) {
    li{
        font-size: 1.4rem;
    }
}

/*Utilidades*/
.opaco{
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
}
.contenedor{
    width: min(90%, 120rem);
    margin: 0 auto;
}
@media (max-width: 480px) {
    .contenedor{
        width: auto;
        margin: auto;
    }
}
.lineas-paralelas{
    border-left: 2px solid var(--azulFuerte);
    border-right: 2px solid var(--azulFuerte);
}
.imagenes{
    width: auto;
    height: auto;
    max-width: 100%;
}
@media (max-width: 480px) {
    .imagenes{
        width: 100%;
    }
}
.linea-horizontal{
    border-bottom: 2px solid var(--gris);
}
.linea-alta{
    border-top: 2px solid var(--gris);
}
.sombra{
    box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.3);
    background-color: var(--blanco);
    padding-top: 2rem;
    border-radius: 1rem;
}
.flex-row{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.subrayado{
    display: inline-block;
    border-bottom: 2px solid var(--azulClaro);
}
.subrayado-blanco{
    display: inline-block;
    border-bottom: 2px solid var(--blanco);
}

/* Fondos */
.fondo1{
    background-image: url(../img/fondo1.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.fondo2{
    background-image: url(../img/fondo2.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.fondo3{
    background-image: url(../img/fondo3.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.fondo4{
    background-image: url(../img/fondo4.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.fondo5{
    background-image: url(../img/fondo5.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.fondo6{
    background-image: url(../img/fondo6.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.fondo7{
    background-image: url(../img/fondo7.png);
    background-repeat: no-repeat;
    background-size: cover;
}



/* Header */
.header, header p{
    background-color: var(--azulFuerte);
    text-align: center;
    margin: 0;
    color: var(--blanco);
}

/*Seccion Hero*/
.hero{
    background-image: url(../img/imagen-hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.contenedor-hero{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
@media (max-width: 480px) {
    .contenedor-hero a{
        font-size: 1.5rem;
    }
}
.logo{
    width: 5rem;
    height: auto;
}
.navegacion{
    align-content: center;
}
@media (max-width: 480px) {
    .nav1{
        padding-right: 5rem;
    }
}
@media (max-width: 480px) {
    .nav2{
        padding-left: 5rem;
    }
}
@media (max-width: 480px) {
    .navegacion{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
}
.boton-navegacion{
    padding: 1rem;
    margin: 5rem;
    background-color: var(--azulFuerte);
    color: var(--blanco);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border: 0.5px solid var(--blanco);
}
.boton-descargas{
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--azulClaro);
    color: var(--blanco);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border: 0.5px solid var(--blanco);
}
@media (max-width: 480px) {
    .boton-navegacion{
        margin: 0;
    }
}

/*Seccion Productos*/
.grid{
    align-content: center;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2rem;
    padding-top: 10rem;
    padding-bottom: 25rem;
}
@media (max-width: 480px) {
    .grid{
        grid-template-columns: repeat(2, 1fr);
        column-gap: 1rem;
        row-gap: 5rem;
        width: 95%;
    }
}
.producto{
    text-align: center;
}
.producto p{
    margin-left: 1rem;
    margin-right: 1rem;
}
.espacio-letras p{
    margin-left: 1rem;
    margin-right: 1rem;
}
.imagen-productos{
    height: 50%;
    width: 90%;
    max-width: 100%;
}

/*Seccion de descripcion general*/
.descripcion1{
    display: flex;
    flex-direction: row;
    padding-bottom: 10rem;
    padding-top: 10rem;
}
@media (max-width: 480px) {
    .descripcion1{
        flex-direction: column-reverse;
        align-items: center;
        width: 95%;
    }
}
.texto-descripcion1{
    padding-left: 5rem;
}
@media (max-width: 480px) {
    .texto-descripcion1{
        padding-left: 0;
    }
}
.texto-descripcion1 h1{
    display: inline-block;
    border-bottom: 2px solid var(--azulFuerte);
}
.descripcion2{
    display: flex;
    flex-direction: row-reverse;
    padding-bottom: 20rem;
}
@media (max-width: 480px) {
    .descripcion2{
        flex-direction: column-reverse;
        align-items: center;
        width: 95%;
    }
}
.texto-descripcion2{
    padding-right: 5rem;
}
@media (max-width: 480px) {
    .texto-descripcion2{
        padding-right: 0;
    }
}
.imagen-planta{
    width: 25%;
    height: auto;
    max-width: 100%;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.7);
}
@media (max-width: 480px) {
    .imagen-planta{
        width: 90%;
    }
}
/* Seccion catálogos */
.descargas{
    text-align: center;
}
.grid-descargas{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5rem;
} 
@media (max-width: 480px) {
    .grid-descargas{
        grid-template-columns: repeat(1, 1fr);
        row-gap: 5rem;
    } 
}
.grid-descargas img{
    width: 100%;
    height: 700px;
    max-width: 100%;
    object-fit: cover;
}
@media (max-width: 480px) {
    .grid-descargas img{
        max-width: 95%;
    }
}

/*Seccion de beneficios*/
.beneficios{
    text-align: center;
    padding-top: 15rem;
}
@media (max-width: 480px) {
    .beneficios{
        width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.grid-beneficios{
    align-content: center;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 5rem;
    padding-top: 5rem;
    padding-bottom: 20rem;
}
@media (max-width: 480px) {
    .grid-beneficios{
        grid-template-columns: repeat(1, 1fr);
        column-gap: 0;
        row-gap: 5rem;
        align-content: center;
        width: 70%;
    }
}
.espacio-letras h2{
    margin-left: 1rem;
    margin-right: 1rem;
}

/* Seccion de procesos */
/* Primera parte */
.primera-parte{
    text-align: center;
    padding-top: 10rem;
    padding-bottom: 20rem;
    background-image: url(../img/fondo1.png);
}
@media (max-width: 480px) {
    .primera-parte{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.primera-parte p{
    text-align: left;
}
.contenidoP1{
    display: flex;
    flex-direction: row;
    padding-top: 3rem;
    padding-right: 2rem;
}
@media (max-width: 480px) {
    .contenidoP1{
        flex-direction: column;
        width: 95%;
        padding-right: 0;
    }
}
.espacio{
    padding-right: 3rem;
}
@media (max-width: 480px) {
    .espacio{
        padding-right: 0;
    }
}
/* Segunda parte */
.segunda-parte{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding-bottom: 20rem;
    padding-top: 15rem;
    background-image: url(../img/fondo3.png);
}
.contenidoP2{
    text-align: left;
    width: 50%;
}
@media (max-width: 480px) {
    .contenidoP2{
        width: 95%;
    }
}
.contenidoP2 li{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    margin-right: 1rem;
}
/* Tercera parte */
.tercera-parte{
    padding-top: 15rem;
    padding-bottom: 20rem;
}
@media (max-width: 480px) {
    .tercera-parte{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 480px) {
    .contenidoP3{
        width: 95%;
    }
}
.parte-alta{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 1rem;
    border-bottom: 2px solid var(--azulFuerte);
    align-items: center;
    text-align: center;
}
@media (max-width: 480px) {
    .parte-alta{
        grid-template-columns: repeat(2, 1fr);
        row-gap: 1rem;
        column-gap: 1rem;
    }
}
.parte-baja{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1rem;
    align-items: center;
    text-align: center;
}
@media (max-width: 480px) {
    .parte-baja{
        grid-template-columns: repeat(2, 1fr);
        row-gap: 1rem;
        column-gap: 1rem;
    }
}
.icono-proceso-bajo{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.icono-proceso-arriba{
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Seccion de equipos */
.equipos{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contenido-equipos{
    padding-top: 5rem;

}
@media (max-width: 480px) {
    .contenido-equipos{
        width: 95%;
    }
}
.contenido-equipos p{
    padding-right: 2rem;
    
}
.aqualoop{
    padding-top: 5rem;
    padding-bottom: 5rem;
}
@media (max-width: 480px) {
    .aqualoop{
        width: 95%;
    }
}
.aqualoop p{
    padding-right: 2rem;
}
.tanques{
    text-align: center;
}
@media (max-width: 480px) {
    .tanques{
        width: 95%;
    }
}
.tanques p{
    text-align: left;
}
.tanques h1{
    text-align: left;
}
.imagenes-equipos{
    /* width: 40%; */
    height: auto;
    max-width: 100%;
}
@media (max-width: 480px) {
    .imagenes-equipos{
        width: 35%;
    }
}


/* Seccion Nosotros */
.contenido-expertos{
    padding-top: 10rem;
    padding-bottom: 20rem;
}
.expertos h1{
    text-align: center;
}
.expertos p{
    padding-bottom: 8rem;
}
.expertos{
    text-align: center;
}
.contenido-MVF{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    padding-top: 10rem;
    padding-bottom: 20rem;
}
@media (max-width: 480px) {
    .contenido-MVF{
        grid-template-columns: repeat(1, 1fr);
        column-gap: 0;
        row-gap: 2rem;
        justify-items: center;
    }
}
.mision h1,
.vision h1,
.filosofia h1{
    text-align: center;
}
.mision,
.vision,
.filosofia{
    border: 2px solid var(--azulFuerte);
    background-color: rgba(255, 255, 255, 0.7);
    height: 100%;
}
@media (max-width: 480px) {
    .mision,
    .vision,
    .filosofia{
        width: 90%;
    }
}
.mision p,
.vision p,
.filosofia p{
    margin-left: 2rem;
    margin-right: 2rem;
}
.colage-imagenes{
    display: flex;
    flex-direction: row;
    align-items: center;
}
@media (max-width: 480px) {
    .colage-imagenes{
        flex-direction: column;
    }
}
.img-filtros{
    padding-right: 2rem;
    width: 550px;
    max-width: 100%;
}
@media (max-width: 480px) {
    .img-filtros{
        padding-right: 0;
        padding-bottom: 4rem;
        width: 95%;
    }
}
.img-colage1{
    padding-right: 2rem;
    width: 250px;
    max-width: 100%;
}
@media (max-width: 480px) {
    .img-colage1{
        padding-right: 0;
        padding-bottom: 4rem;
        width: 95%;
    }
}
.img-colage2{
    max-width: 100%;
}
@media (max-width: 480px) {
    .img-colage2{
        width: 95%;
    }
}


/* Seccion contactos */
.contenido-contacto{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10rem;
    padding-bottom: 20rem;
}
.grid-contacto{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20rem;
}
@media (max-width: 480px) {
    .grid-contacto{
        grid-template-columns: repeat(1, 1fr);
        width: 95%;
    }
}
.alinear-iconos{
    display: flex;
    align-items: center;
}
.size-icono{
    height: 2.5rem;
}
.contactos h2{
    text-align: center;
}
.mapa{
    max-width: 100%;
}

/* Footer */
.footer{
    background-color: var(--azulFuerte);
    padding-top: 2rem;
}
.contenido-footer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 2rem;
}
@media (max-width: 480px) {
    .contenido-footer{
        flex-direction: column;
    }
}
.contenido-contacta li{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.grid-footer{
    display: grid;
    grid-template-columns: repeat(2, 30%);
    justify-content: end;
    justify-items: center;
}
@media (max-width: 480px) {
    .grid-footer{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-items: start;
    }
}