@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');


:root{
   
  --primario:#00abda;
  --secundario:#000100;
  --color3:#2e2f32;
  /*--color3:#292a2b;
  --color4:#050505; */

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

.bd{
  /* outline: 1px solid red; */
}

body,
input {
  font-family: "Poppins", sans-serif;
}

a{
  text-decoration: none;
}


/*====================================
BOTON DE WHATSAPP
=====================================*/


.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.whatsapp-button a {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.whatsapp-button a:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}
.whatsapp-icon {
  width: 36px;
  height: 36px;
}



/* Media Queries para dispositivos móviles */
@media only screen and (max-width: 768px) {
  body{
    /* background-color: rgba(0, 0, 255, 0.364); */
  }
}

@media (max-width: 550px) {

  body{
    /* background-color: rgba(142, 227, 186, 0.364); */
  }

}