@import url('./menu.css');
@import url('./proyectos.css');
@import url('./clientes.css');
@import url('./contacto.css');
@import url('./nosotros.css');
@import url('./gnr.css');


/* Aca va también tu CSS general */
body {
  margin: 0px;
  padding: 0px;
  max-width: 100%;
  background-color: rgb(87, 86, 86);
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: white;
}
.til2 {
  font-size: 16px;
  margin-top: -15px;
}

.nav{
  display: flex;
  justify-content: space-around;
  background-color: rgb(39, 38, 38);
  flex-wrap: wrap;
}

.menu{
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 60px;
  font-size: 20px;
  padding: 5px;
  
}

.menu_abrir img{
  display: none;
  width: 50px;
  height: 50px;
  padding: 0px;
  cursor: pointer;
  position: absolute;
  left: 80%;
  top: 3%;
}

@media (max-width: 768px) {

  .nav{
    justify-content: start;
  }

  .nombre{
    margin-left: 5px;
  }

  .til2{
    font-size: 12px;
  }

  .menu a{
    display: none;
  }

  .menu_abrir img{
    display: block;
    cursor: pointer;
    user-select: none;
  }

  #menu-abrir:checked ~ .menu{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
    animation-name: abrir1;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
  }

  #menu-abrir:checked ~ .menu a{
    display: block;
    animation-name: abrir2;
    animation-duration: 2s;
    animation-fill-mode: forwards;
  }

}

@keyframes abrir1 {
  from{
    max-height: 0px;
  }

  to{
    max-height: 600px;
    
  }
}

@keyframes abrir2 {
  0%{
    opacity: 0;
  }

  100%{
    opacity: 1;
  }
}

a:hover:not(.datosf , .datos2, .proyects-link) {
  transition: all 0.3s;
  background-color: rgb(87, 86, 86);
  padding: 7px;
  border-radius: 15px;
}

.opciones {
  text-decoration: none;
  color: inherit;
}

/* FOOTER*/

.footer {
  background-color: rgb(39, 38, 38);
  text-align: left;
  padding-top: 10px;
  font-size: 14px;
  min-height: 250px;
}

.copy{
  width: 100%;
  text-align: center;
}

.footerdatos{
  max-width: 60%;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  gap: 10px;
  font-size: 14px;
  padding: 20px ;
}

.datosf, .pf{
  color: inherit;
  padding: 8px 5px;
  text-align: center;
  min-width: 150px;
  margin: 8px auto 8px auto;
  text-decoration: none;
}


.datosf:hover{
  color: rgb(42, 115, 175) ;
  cursor: pointer;
  text-decoration: underline;
}

.imgfooter {
  padding: 5px;
  display: block;
  margin: 10px auto 0px auto;
}




