* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    list-style: none;
    text-decoration: none;
}

body {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #006699;
}


h1,h2,h3,h4,h5,h6,figure,ul {
    margin:0;
}

h1 {
    font-size: 30px;
}

img {
    max-width: 100%;
    height: auto;
}

.menu-item {
    display: inline-block;
}

/* PAGINA */

div {
    margin-right: 10px;
    margin-left: 10px;
}


/* styles.css */


.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
    background-color: #ffffff;
}

.logo {
    max-height: 50px;
    margin: 10 px;
    text-align: left;
    align-items: center;
}

.nav.topenav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 10;
    overflow: hidden;
}

.nav li {
    margin-left: 10px;
}

.nav a {
    text-decoration: none;
    font-weight: bold;
}

/* HAMBURGUESA y RESPONSIVE*/

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
    position: relative;
    border: 5px solid #00945e;
    border-radius: 10px;
    padding: 20px;
}

.menu-icon .line {
    width: 60px;
    height: 5px;
    background-color: #00945e;
    margin: 5px 0;
    border-radius: 30px;
}

#menu-toggle {
    display: none;
}

/* SUPERPONER ELEMENTOS EN LA MISMA PAGINA*/

#div1 {
    z-index: 1;
}
#div2 {
    z-index: 2;
}

/* ---------------- */



@media (max-width: 1079px) {

    .nav {
        padding: 55px;
    }

    .menu-icon {
        display: flex;
    }

    .topenav {
        position: absolute;
        top: 10px;
        right: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        flex-direction: column;
        background-color: #ffffff;
        text-align: center;
        border-radius: 30px;
    }

    .topenav li {
            margin: 0;
            width: 100%;
            padding: 5px;
    }

    .topenav a {
        width: 100%;
        padding: 0px 0px;
    }

    #menu-toggle:checked + .menu-icon + .topenav {
        height: 66vh;
        top: 191px;
    }

}

/* posicion y estilos menu */

.menu-item{
    text-transform: uppercase;
}

.menu-item a{
    text-decoration: none;
    color: #006699;
}

.menu-item a:hover{
    color: #ffffff;
}

.menu-item :hover{
    background-color: #00945e;
    border-radius: 15px;
    padding: 10px;
}


/* imagen con texto en portada*/


.texto-sobre-imagen1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 148, 94, 0.5); /* Fondo semitransparente */
    padding: 10px;
    border-radius: 10px; /* Bordes redondeados */
    text-align: center;
}

.texto-sobre-imagen2{
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    color: #006699;
    background-color: rgb(255, 255, 255, 0.9); /* Fondo semitransparente */
    padding: 10px;
    border-radius: 10px; /* Bordes redondeados */
    text-align: center;
}

.texto-sobre-imagen3{
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 102, 153, 0.2); /* Fondo semitransparente */
    padding: 10px;
    border-radius: 10px; /* Bordes redondeados */
    text-align: center;
}

.texto-sobre-imagen4{
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    color: #006699;
    background-color: rgba(255, 255, 255, 0.9); /* Fondo semitransparente */
    padding: 10px;
    border-radius: 10px; /* Bordes redondeados */
    text-align: center;
}

.texto-sobre-imagen5{
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 102, 153, 0.9); /* Fondo semitransparente */
    padding: 10px;
    border-radius: 10px; /* Bordes redondeados */
    text-align: center;
}

/* imagenes movimiento portada*/


.portada-movimiento{
    width: 100%;
    height: auto;
    margin: 10px auto 0;
    overflow: hidden;
}

.portada-movimiento ul{
    display: flex;
    padding: 0;
    animation: cambio 21s infinite alternate ease-in-out;
    width: 500%;
}

.portada-movimiento li{
    width: 100%;
    list-style: none;
    position: relative;
}

.texto1{
    position: absolute;
    bottom: 50px; /* Distancia desde el borde inferior */
    left: 50%;
    transform: translateX(-50%); /* Centra el elemento horizontalmente */
    color: #ffffff;
    text-align: center; /* centrar todo el texto */
}

  /* Oculta el texto en pantallas de hasta 900px de ancho */
  @media (max-width: 900px) {
    .texto1 {
      display: none;
    }
  }

.texto1 a{
    text-decoration: none;
    color:#ffffff;
    padding-left: 55px;
    padding-right: 55px;
}

.texto1 a:hover{
    color: #ffffff;
    text-align: center;
}

.texto1 :hover{
    background-color: #00945e;
    border-radius: 15px;
}

.texto2{
    position: absolute;
    bottom: 50px; /* Distancia desde el borde inferior */
    left: 50%;
    transform: translateX(-50%); /* Centra el elemento horizontalmente */
    color: #006699;
}

  /* Oculta el texto en pantallas de hasta 900px de ancho */
  @media (max-width: 900px) {
    .texto2 {
      display: none;
    }
  }

.texto2 a{
    text-decoration: none;
    color: #006699;
    padding-left: 33px;
    padding-right: 33px;
}

.texto2 a:hover{
    color: #ffffff;
    text-align: center;
}

.texto2 :hover{
    background-color: #00945e;
    border-radius: 15px;
    margin-left: 5px;
    margin-right: 5px;
}

.portada-movimiento img{
    width: 100%;
    height: 100%;
}

@keyframes cambio{
    0% { margin-left: 0; }
    15% { margin-left: 0; }

    20% { margin-left: -100%; }
    30% { margin-left: -100%; }
    
    35% { margin-left: -200%; }
    50% { margin-left: -200%; }
    
    55% { margin-left: -300%; }
    70% { margin-left: -300%; }

    75% { margin-left: -400%; }
    90% { margin-left: -400%; }    
}

/* cambio tamaño pantalla*/

/* 2ª pagina portada y VIDEO */


.texto-presentacion0 {
    position: mycontainer1;
    box-shadow: 7px 7px 12px 0 rgba(0, 102, 153, 0.3);
    margin: 30px;
    color: #006699;
    background-color: rgba(255, 255, 255, 0.5); /* Fondo semitransparente */
    padding: 10px;
    border-radius: 10px; /* Bordes redondeados */
    text-align: center;
}

.contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    float: left;
    margin: 10px;
    padding: 10px;
}

div.texto-presentacion1 {
    position: relative;
    top: 0;
    padding: 10px;
    color: white;
    background-color: #006699;
    border-radius: 10px; /* Bordes redondeados */
    text-align: center;
}

div.video {
    position: relative;
    top: 0;
    padding: 0px;
    border: 5px solid #006699;
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: 10px; /* Bordes redondeados */
    padding-left: 0px;
    padding-right: 0px;
    background: #ffffff
}

div.video:hover {
    border: 5px solid #00945e
}

.video iframe {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* 3ª pagina portada CON GALERIA*/

.texto-presentacion2{
    position: mycontainer2;
    box-shadow: 7px 7px 12px 0 rgba(0, 102, 153, 0.3);
    margin: 30px;
    color: #006699;
    background-color: rgba(255, 255, 255, 0.5); /* Fondo semitransparente */
    padding: 10px;
    border-radius: 10px; /* Bordes redondeados */
    text-align: center;
}

.gallery {
    position: relative;
    box-shadow: 7px 7px 12px 0 rgba(0, 102, 153, 0.3);
    margin: 30px;
    color: #006699;
    background-color: rgba(255, 255, 255, 0.5); /* Fondo semitransparente */
    padding: 10px;
    border-radius: 10px; /* Bordes redondeados */
    text-align: center;
}

div.gallery {
  margin: 20px;
  border: 5px solid #006699;
  float: left;
  width: 400px;
  margin-left: 37px;
  margin-right: auto;
}

div.gallery:hover {
  border: 5px solid #00945e
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

.gallery a:hover{
    color: #00945e
}

.gallery a{
        text-decoration: none;
        font-weight: bold;
        color: #006699;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* 3ª pagina portada CON lista movil productos*/

.texto-presentacion3{
    position: mycontainer3;
    box-shadow: 7px 7px 12px 0 rgba(0, 102, 153, 0.3);
    margin: 30px;
    color: #006699;
    background-color: rgba(255, 255, 255, 0.5); /* Fondo semitransparente */
    padding: 10px;
    border-radius: 10px; /* Bordes redondeados */
    text-align: center;
}

.mycontainer3 a:hover{
    color: #00945e
}

.mycontainer3 a{
        text-decoration: none;
        font-weight: bold;
        color: #006699;
}


.productos_servicios img{
    width: 120px;
    height: auto;
    margin: 0 20px;
    transition: .5s;
    cursor: pointer;
    padding-top: 20%;
}


.info {
    text-align: center;
    font-weight: bold;
    color: #006699;
}

.info a {
    text-align: center;
    font-weight: bold;
    color: #006699;
}

.info a:hover {
    text-align: center;
    font-weight: bold;
    color: #00945e;
}

.productos_servicios {
    position: relative;
    display: flex;
    width: 1200px;
    height: 200px;
    overflow: hidden;
    margin: 5%;
}

.productos_servicios{
    white-space: nowrap;
    animation: animate 30s linear infinite;
}


@keyframes animate {
    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-100%);
    }
}

.productos_servicios div{
    animation-play-state: paused;

}


/* 4ª pagina portada CON ACCIONES DEL OZONO*/

.texto-presentacion4{
    position: mycontainer4;
    box-shadow: 7px 7px 12px 0 rgba(0, 102, 153, 0.3);
    margin: 30px;
    color: #006699;
    background-color: rgba(255, 255, 255, 0.5); /* Fondo semitransparente */
    padding: 10px;
    border-radius: 10px; /* Bordes redondeados */
    text-align: center;
}

.mycontainer4 a {
        text-decoration: none;
        font-weight: bold;
        color: #006699;
}

.mycontainer4 a:hover {
    color: #00945e;
}

.contenedor4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    float: left;
    padding: 10px;
}

.contenedor4 a {
    color: #00945e;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 30px;
    padding-left: 5px;
    padding-right: 10px;
}

.contenedor4 a:hover {
    color: #006699;
}

div.acciones-ozono {
    position: mycontainer4;
    margin: 20px;
    color: white;
    background-color: rgba(0, 102, 153, 0.9); /* Fondo semitransparente */
    padding: 10px;
    border-radius: 10px; /* Bordes redondeados */
    text-align: left;
}


div.acciones_imagen {
    margin: 20px;
    border: 3px solid #006699;
    border-radius: 10px; /* Bordes redondeados */
}

div.acciones_imagen img {
    width: 100%;
    height: 100%;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* 5ª pagina portada nuestro Equipo */

.texto-presentacion5{
    position: mycontainer5;
    box-shadow: 7px 7px 12px 0 rgba(0, 102, 153, 0.3);
    margin: 30px;
    color: #006699;
    background-color: rgba(255, 255, 255, 0.5); /* Fondo semitransparente */
    padding: 10px;
    border-radius: 10px; /* Bordes redondeados */
    text-align: center;
}


.mycontainer5 {
    padding: 0px 0;
}


.fil_equipo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.col_equipo {
    text-wrap: wrap;
    align-content: center;
    max-width: 100%;
    max-height: 100%;
}

.equipo {
    margin: 20px;
    color: #006699;
}

div.equipo_imagen {
    margin: 20px;
}

div.equipo_imagen img {
    width: 100%;
    height: 100%;
}  

.clearfix:after {
content: "";
display: table;
clear: both;
}

/* 6ª pagina portada CON lista CLIENTES */

.texto-presentacion6{
    position: mycontainer6;
    box-shadow: 7px 7px 12px 0 rgba(0, 102, 153, 0.3);
    margin: 30px;
    color: #006699;
    background-color: rgba(255, 255, 255, 0.5); /* Fondo semitransparente */
    padding: 10px;
    border-radius: 10px; /* Bordes redondeados */
    text-align: center;
}

@media (max-width: 300px) {
    #cuerpo-clientes .clientescarrusel {
        display: none;
    }
}

.llave {
    float: left;
}

.llave {
    width: 27px;
    height: 169px;
}

.clientescarrusel {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.clientescarrusel img {
    width: 94px;
    height: 88px;
    margin: 10px;
    justify-content: center;
}

.clientescarrusel {
    white-space: nowrap;
    animation: clientescarrusel 30s linear infinite;
}


@keyframes clientescarrusel {
    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-100%);
    }
}

.clientescarrusel div {
    animation-play-state: paused;
}


/* 7ª pagina portada  FOOTER */


footer {
    position: mycontainer7;
    background-color: #006699;
    color: #ffffff;
    padding: 20px 0;
    justify-content: center;
}

.fila {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
}

.columnas {
    text-align: center;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

.columnas a{
    text-decoration: none;
    font-weight: bold;
    color: #ffffff;
}

.columnas a:hover{
    color: #ffffff;
}

.columnas li a:hover{
    background-color: #00945e;
    border-radius: 15px;
    padding: 5px;
}

.columnas p a:hover{
    background-color: #00945e;
    border-radius: 15px;
    padding: 5px;
}

.columnas3 {
    text-align: center;
}

.social-media {
    display: flex;
}

.social-media ul {
    list-style: none;
    display: flex;
}

.social-media li {
    margin: 5px 0px 20px 0;
}

.social-media-iconos {
    width: 50px;
    height: 50px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background-color: #ffffff;
}

.social-media-iconos img {
    margin-top: 7px;
}  

