
@import url("https://fonts.googleapis.com/css?family=Montserrat|Montserrat+Alternates|Poppins&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat Alternates", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin-top: 100px; /* IMPORTANTE: Para dejar espacio al header fijo */
  background-image: url("../img/gatos.jpg");

    background-size: 100vw 100vh;
}

/* Estilos para el nuevo contenido principal */
.content {
flex-grow: 1; /* Esto hace que el contenido se estire y empuje el footer hacia abajo */
padding: 20px;
 text-align: right;
}

/* Estilos para el footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 22px;
}
.capa {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
  top: 0;
  left: 0;
}
/*Estilos para el encabezado*/
.header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
}
.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}
.container .btn-menu,
.logo {
  float: left;
  line-height: 100px;
}
.container .btn-menu label {
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}
.logo h1 {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  margin-left: 10px;
   /* letter-spacing: 0.3px; */
}
.container .menu {
  float: right;
  line-height: 100px;
}
.container .menu a {
  display: inline-block;
  padding: 5px;
  line-height: normal;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  font-size: 19px;
  margin-right: 5px;
  letter-spacing: 0.1px;
}
.container .menu a:hover {
  border-bottom: 2px solid #c7c7c7;
  padding-bottom: 5px;
}
/*Fin de Estilos para el encabezado*/

/*Menù lateral*/
#btn-menu {
  display: none;
}
.container-menu {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}
#btn-menu:checked ~ .container-menu {
  opacity: 1;
  visibility: visible;
}
.cont-menu {
  /* display: flex;
  flex-wrap: wrap; */
  width: 100%;
  max-width: 250px;
  background: #1c1c1c;
  height: 100vh;
  position: relative;
  transition: all 500ms ease;
  transform: translateX(-100%);
 
  /* box-sizing: border-box; */

}
#btn-menu:checked ~ .container-menu .cont-menu {
  transform: translateX(0%);
}
.cont-menu nav {
  transform: translateY(15%);
}

.cont-menu nav a {
  display: block;
  text-decoration: none;
  padding: 20px;
  color: #c7c7c7;
  border-left: 5px solid transparent;
  transition: all 400ms ease;
   font-size: 25px;
}
.cont-menu nav a:hover {
  border-left: 5px solid #c7c7c7;
  background: #1f1f1f;
}
.cont-menu label {
  position: absolute;
  right: 5px;
  top: 10px;
  color: #fff;
  cursor: pointer;
  font-size: 25px;
}
/* boton de whatsup */

 /* Botón WhatsApp */
  .btn-whats {
    background-color: #25D366;
    color: white;
    width: 25vw;
    height: 25vw;
    max-width: 60px;
    max-height: 60px;
    text-decoration: none;
    border-radius: 50%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 4vh;
    right: 1vw;
    transition: all 0.6s;
    z-index: 1;
  }
  
  .btn-whats:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.562);
  }
  
  .pulse {
    animation: pulse 1s infinite;
  }
  
  .btn-whats i {
    font-size: 40px;
  }
  
  @keyframes pulse {
    50% {
      transform: scale(1.1);
    }
  }

 /* @media all and (max-width: 730px){
    
.container .menu a {
    font-size: 10px;
}
  }  */


  @media all and (max-width: 922px) {
  .container .menu a  {
    display: none;
  }

 }
 
  /* @media all and (max-width: 450px) {
 .logo h1 {
  color: #fff;
  font-weight: 350;
  font-size: 20px;
  margin-left: 10px;
}

 }

   @media all and (max-width: 330px) {
 .logo h1 {
  color: #fff;
  font-weight: 250;
  font-size: 18px;
  margin-left: 3px;
}

 } */

