@import url('https://fonts.googleapis.com/css2?family=Alegreya+SC:ital,wght@0,400;0,500;0,700;0,800;0,900;1,400;1,500;1,700;1,800;1,900&family=Lugrasimo&family=Michroma&family=Prosto+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Akronim&family=Alegreya+SC:ital,wght@0,400;0,500;0,700;0,800;0,900;1,400;1,500;1,700;1,800;1,900&family=Lugrasimo&family=Michroma&family=Prosto+One&display=swap');

*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body{
    opacity: 1;
    animation: entrada .4s ease-in forwards;
    background: linear-gradient(90deg,#250055,#5200a3,#6600ff,#3e00b3,#070055);
}





.puerta-contenedor {
      position: fixed;
      width: 100vw;
      height: 100vh;
      top: 0;
      left: 0;
      z-index: 2;
      overflow: hidden;
      display: flex;
    }


    .puerta {
      width: 50%;
      height: 100%;
      background-image: linear-gradient(rgba(0, 0, 0, 0.623), rgba(255, 255, 255, 0), rgb(0, 0, 0)), url(imagenes/inicioL.webp);
      background-size: cover;
      transition: transform 3s ease;
    }

    .puerta.right {
      background-image:linear-gradient(rgba(0, 0, 0, 0.623), rgba(255, 255, 255, 0), rgb(0, 0, 0)), url(imagenes/inicioR.webp);
      background-size: cover;
    }

    .puerta-contenedor.abierto .left {
      transform: translateX(-100%);
    }

    .puerta-contenedor.abierto .right {
      transform: translateX(100%);
    }

    .puerta-contenedor.abierto ~ .contenido {
      opacity: 1;
    }




.nav{
    display: flex;
    align-items: center;
    justify-content: right;
    background-color: rgb(2, 8, 94);
    height: 48px;
    z-index: 2;
    animation: entrada 7s ease-in forwards;
}

.nav a{
    text-decoration: none;
    color: #fff;
    z-index: 3;
    cursor: pointer;
    background:linear-gradient(45deg,rgb(49, 85, 245), rgba(1, 1, 119, 0.671), rgba(1, 1, 119, 0));
    border-radius: 20px 0px 0px 0px;
    width: 320px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 15px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.fa-location-dot{
    margin-right: 10px;
    color: rgb(247, 231, 14);
}

.fa-phone{
    color: rgb(236, 241, 241);
    margin-right: 10px;
}

.fa-envelope{
    margin-right: 10px;
    color: #ffffff;
}

.fa-clock{
    margin-right: 10px;
    color: #ffffff;
}

li{
    list-style: none;
    font-size: 1.1rem;
    color: #ffffff;
}

.correo:hover{
    color: rgb(255, 196, 0);
}

.telefono:hover{
    color: rgb(255, 196, 0);
}

.direccion:hover{
   color: rgb(255, 196, 0);
}

.reloj:hover{
  color: rgb(255, 196, 0);
}

.busqueda{
  position: relative;
  display: flex;
  align-items: center;
}

#barraBusqueda{
  width: 0;
  padding: 8px;
  font-size: 16px;
  border-radius: 5px;
  transition: width 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

#barraBusqueda.mostrar{
  width: 200px;
  opacity: 1;
  pointer-events: all;
}



.bi-search{
  color: white;
  font-size: 1.5rem;
  transition: transform .4s ease;
}

.bi-search:hover{
  transform: scale(1.1);
  cursor: pointer;
  transform: scale(1.3) rotate(-45deg);
}





.inicio{
  transition: top 1s ease;
  position: fixed;
  z-index: 1;
  width: 100%;
}

.navbar{
  position: relative;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(34, 12, 94);
    z-index: 1;
    opacity: 0;
    animation: entrada 3s ease-in forwards;
    border-top: 1px solid rgba(167, 167, 167, 0.192);
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px; 
  width: 100%;
  background: linear-gradient(to right, #00d5ff,rgb(23, 23, 241), #c4021b, #e23307);
  margin-top: 20px;
}

.primero{
  width: 75%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}


.primero img{
  width: 16rem;
  margin-top: -20px;
}


.segundo{
  width: 20rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.linea{
  width: 1px;
  height: 40px;
  background-color: #bebebea2;
}

.logo{
    width: 330px;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
    z-index: 2;
    margin-left: 20px;
}

.logo h1{
  color: #ffffff;
  font-family: "Michroma";
  font-size: 2.5rem;
  font-weight: 900;
  text-shadow: 2px 2px 2px #c4021b;
}

.logo h2{
  color: #c4021b;
  font-family: "Prosto One";
  text-transform: uppercase;
  text-shadow: 0px 0px 10px #f72b2b; 
}


.logos{
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.logos i{
  color: rgb(255, 196, 0);
  font-size: 1.5rem;
  transition: .3s ease;
}

.logos i:hover{
  color: #fff;

}




.menu{
    display: flex;
    width: 600px;
    align-items: center;
    justify-content: space-between;
}

.menu-list{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.menu-list a{
  text-transform: uppercase;
    font-size: 1.3rem;
    font-family: "Alegreya SC";
    text-decoration: none;
    color: rgb(255, 255, 255);
    transition: 0.5s;
}

.menu a:hover{
  text-decoration: 3px underline rgb(255, 196, 0);
}


.menu-list:hover a:not(:hover){
    opacity: .5;
}





.cabeza{
    width: 100%;
    height: 60vh;
    background: linear-gradient( rgb(0, 0, 0), rgba(0, 0, 0, 0.733), rgba(0, 0, 0, 0.671)), url(imagenes/nosotros.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: entrada 2s ease-in forwards;
    mask-image: linear-gradient(black 99%, transparent);
}


.titulo{
    width: 100%;
    height: 300px;
    margin-top: 100px;
    color: rgb(255, 196, 0);
    opacity: 0;
    animation: entrada 4s ease-in forwards;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.titulo h1{
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 30px;
    font-family: "Michroma";
}

.titulo h3{
    color: #fff;
    margin-top: 100px;
}


@keyframes entrada{
    to{
        opacity: 1;
    }
}


.logar{
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 50px;
    background: linear-gradient(black,#170035,#070055,rgba(0, 0, 0, 0));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 50px;
}

.texto{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 10px;
}


.texto img{
    width: 60%;
    object-fit: cover;
}

.texto p{
    text-align: center;
    font-size: 1.rem;
    font-family:Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
}



.valores{
  width: 100%;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 100px;
}

.valores h1{
  font-family: "Michroma";
  font-weight: lighter;
}

.valores p{
  font-family: Arial, Helvetica, sans-serif;
}

.icono{
  filter: brightness(1) invert(1);
}

.confianza{
  width: 400px;
  height: 80%;
  border-radius: 30px;
  box-shadow: 0px 10px 50px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  img{
    width: 80px;
    object-fit: cover;
    background-color: #1ad9e7;
    border-radius: 50%;
  }

  div{
    width: 60%;
  }
}


.cercania{
  width: 400px;
  height: 80%;
  border-radius: 30px;
  box-shadow: 0px 10px 50px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  img{
    width: 80px;
    object-fit: cover;
    background-color: #1ad9e7;
    border-radius: 50%;
  }

  div{
    width: 60%;
  }
}


.pasion{
width: 400px;
  height: 80%;
  border-radius: 30px;
  box-shadow: 0px 10px 50px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  img{
    width: 80px;
    object-fit: cover;
    background-color: #1ad9e7;
    border-radius: 50%;
  }

  div{
    width: 60%;
  }
}


.fotos{
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.fotos img{
  width: 700px;
  height: 100%;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: 0px 10px 30px;
}

.fotos video{
  width: 500px;
  height: 55%;
  border-radius: 30px;
  border: 5px solid #fff;
  margin-left: -100px;
  box-shadow: -50px 20px 50px;
}



.vision{
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.mision, .vision2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
}

.vision h1{
    color: #fff;
    font-size: 4rem;
    font-family: "Lugrasimo";
    text-shadow: 0px 10px 30px black;
}

.vision p{
    color: #fff;
    text-align: center;
    width: 500px;
    font-size: 20px;
}

.arriba{
    border-bottom: 5px solid rgb(255, 196, 0);
    width: 500px;
    height: 50px;
    border-radius: 50%;
}

.medio{
    width: 600px;
    border: 2px solid #00d5ff;
    border-radius: 50%;
}

.abajo{
    width: 500px;
    height: 50px;
    border-radius: 50%;
    border-top: 5px solid rgb(255, 196, 0);
}


.mapa{
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

iframe{
  width: 90%;
  height: 60vh;
  border-radius: 40px;
  box-shadow: 0px 10px 50px;
}





  footer{
    width: 100%;
    height: 60vh;
    background-color: rgba(0, 0, 0, 0.329);
    display: flex;
    justify-content: center;
    color: #fff;
    font-family: "Prosto One";
    flex-wrap: wrap;
    box-sizing: border-box;
  }

  .lista{
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .lista a{
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 15px;
    transition: 1s ease-in-out;
  }

  .lista a:hover{
    color: #ffd000;
    text-decoration:underline;
  }


  .centro{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .centro p{
    color: #d8d8d8;
    margin: 10px;
  }

  .mail:hover{
    color: #fff;
    cursor: pointer;
  }

  .age:hover{
    color: #fff;
    cursor: pointer;
  }


  .centro img{
    width: 150px;
    margin-bottom: 20px;
  }

  .centro a{
    text-decoration: none;
  }

  .centro span{
    color: #ffd000;
    font-family: "Akronim";
    font-size: 1.5rem;
  }

  .centro span:hover{
    color: #f01616;
    cursor: pointer;
  }

  .redess{
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .redess a{
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 15px;
    transition: 1s ease-in-out;
  }

  .redess a:hover{
    color: #ffd000;
    text-decoration:underline;
  }

  h2 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}


.abrir-menu{
  display: none;
}

.cerrar-menu{
  display: none;
}

.redes-menu{
  display: none;
}


@media  (min-width: 0px) and (max-width: 500px) {

  body{
    width: 100%;
    background: linear-gradient(#250055,#5200a3,#6600ff,#3e00b3,#070055);
  }
  .puerta-contenedor{
    width: 100%;
    height: 100%;
  }

  .puerta.left{
    background-position: right;
  }

  .puerta.right{
    background-position: left;
  }

  .nav a{
    display: none;
  }

  .inicio{
    width: 100%;
  }

  .navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .primero{
    width: 100%;
    display: flex;
    justify-content: space-between;
    img{
      width: 60%;
    }
  }

  

  .segundo{
    display: none;
  }

  .abrir-menu, .cerrar-menu, .redes-menu{
    display: block;
    border: 0;
    font-size: 3.5rem;
    background-color: transparent;
    cursor: pointer;
    color: #fff;
  }

  .redes-menu i{
    font-size: 3rem;
    color: #ffd000;
  }

  .cerrar-menu{
    font-size: 2rem;
    
  }


  .menu{
    opacity: 0;
    visibility: hidden;

    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 0 100vmax rgba(2, 8, 94, 0.685);
    padding: 2rem;
  }

  .menu.visible{
    opacity: 1;
    visibility: visible;
  }

  .menu-list{
    width: 100%;
    margin-top: 50px;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
    color: #fff;
    background: linear-gradient(#250055,#5200a3,#6600ff,#3e00b3,#070055);

div{
      display: flex;
      width: 100%;
      justify-content: space-evenly;
    }
  }



  .menu-list li a{
    color: #fff;
    font-size: 2rem;
  }


  .logos{
    display: none;    
  }


  .cabeza{
    width: 100%;
    height: 300px;
    justify-content: center;
  }

  .titulo{
    width: 100%;
    text-align: center;
    
    h1{
      font-size: 3.1rem;
    }

    h3{
      margin-top: 10px;
    }
  }

  .logar{
    width: 100%;
    height: 700px;
    margin: 0;
    padding: 1rem;
  }

  .texto{
    width: 100%;


    p{
      font-weight: 500;
      font-size: 1.2rem;
    }
  }

  .valores{
    width: 100%;
    height: 500px;
    flex-direction: column;
    margin: 0;
  }

  .confianza, .cercania, .pasion{
    height: 150px;
    width: 90%;

    h1{
      font-weight: 900;
    }
  }

  .fotos{
    flex-direction: column-reverse;
    width: 100%;
    margin: 0;
    video{
      width: 90%;
      height: 200px;
      margin: 0;
      box-shadow: 0px 0px 30px;
    }

    img{
      width: 100%;
      height: 300px;
    }
  }

  .vision{
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    div{
      width: 90%;
      text-align: center;

      p{
        width: 100%;
      }
    }
  }

  .mapa{
    width: 100%;
    margin-top: 0px;
    height: 100%;
    margin-bottom: 3rem;
  }

  iframe{
    width: 90%;
  }

  .footer{
    flex-direction: column;
    align-items: center;
    min-height: auto;
    width: 100%;
    height: 100%;
  }

  .lista{
    width: 100%;
    margin-top: 10px;
  }

  .centro{
    width: 100%;
    order: 3;
  }


  .redess{
    width: 100%;
    margin-top: 10px;
  }

}



/* para tablets */


@media (min-width: 501px) and (max-width: 1024px) {
  body{
    width: 100%;
    background: linear-gradient(#250055,#5200a3,#6600ff,#3e00b3,#070055);
  }

  .puerta-contenedor{
    width: 100%;
    height: 100%;
  }

  .puerta.left{
    background-position: right;
  }

  .puerta.right{
    background-position: left;
  }

  .nav a{
    display: none;
  }

  .inicio{
    position: absolute;
    width: 100%;
  }

  .navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    width: 100%;
  }

  .primero{
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: space-evenly;

    img{
      width: 20rem;
    }
  }

  .segundo{
    display: none;
  }

  .abrir-menu, .cerrar-menu, .redes-menu{
    display: block;
    border: 0;
    font-size: 3.5rem;
    background-color: transparent;
    cursor: pointer;
    color: #fff;
  }

  .redes-menu i{
    font-size: 3rem;
    color: #ffd000;
  }

  .cerrar-menu{
    font-size: 2rem;
  }


  .menu{
    opacity: 0;
    visibility: hidden;

    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 0 100vmax rgba(2, 8, 94, 0.685);
    padding: 2rem;
  }

  .menu.visible{
    opacity: 1;
    visibility: visible;
  }

  .menu-list{
    width: 100%;
    margin-top: 50px;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
    color: #fff;
    background: linear-gradient(#250055,#5200a3,#6600ff,#3e00b3,#070055);

    div{
      display: flex;
      width: 50%;
      justify-content: space-evenly;
    }
  }


  .menu-list li a{
    color: #fff;
    font-size: 2rem;
  }

  .logos{
    display: none;    
  }

  .cabeza{
    width: 100%;
    height: 45vh;
    background-attachment: scroll;
    background-position: center;
  }

  .titulo{
    width: 100%;
    text-align: center;
  }

  .logar{
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .texto{
    width: 80%;
  }

  .valores{
    width: 100%;
    height: 100%;
    padding: 20px;
    gap: 5px;
  }

  .confianza, .cercania, .pasion{
    flex-direction: column;
    width: 100%;
    height: 14rem;
    box-shadow: 0px 0px 50px;
    
    div{
      width: 90%;
      height: 100%;
      text-align: center;
    }
  }

  .fotos{
    width: 100%;
    height: 100%;
    flex-direction: column-reverse;
    margin: 0;
    margin-bottom: 5rem;

    video{
      box-shadow: 0px -20px 30px;
      margin: 0;
      margin-bottom: -50px;
      z-index: 1;
    }

    img{
      width: 95%;
      height: 100%;
      box-shadow: 0px 20px 30px;
    }
  }

  .vision{
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 5rem;

    div{
      width: 80%;
    }
  }

  .footer{
    flex-direction: column;
    align-items: center;
    min-height: auto;
    width: 100%;
    height: 100%;
  }

  .lista{
    width: 100%;
    margin-top: 10px;
  }

  .centro{
    order: 3;
  }


  .redess{
    width: 100%;
    margin-top: 10px;
  }

  .marcas{
    display: none;
  }
}