@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html{
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth !important;
}



.contenedorGeneral{
    display: flex;
    justify-content: center;
}

.footerLinks{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}


textarea {
    resize: none;
  }

.footerCuerpo{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* MODAL IMAGENES */


#modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  #modal-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
  }
  
  #closeModal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
  }
  
  #closeModal:hover {
    transform: scale(1.2);
  }


  /* Boton whatsapp */

  .whatsapp-btn {

    position: fixed;
  
    bottom: 20px;
  
    right: 20px;
  
    z-index: 9999;
  
    width: 60px;
  
    height: 60px;
  
    border-radius: 50%;
  
    background-color: #25D366;
  
    display: flex;
  
    align-items: center;
  
    justify-content: center;
  
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  
    animation: breathe 2s ease-in-out infinite;
  
  }
  
  
  
  
  
  .whatsapp-btn i {
  
    color: #fff;
  
    font-size: 24px;
  
    animation: beat 2s ease-in-out infinite;
  
    text-decoration: none;
  
  }
  
  
  
  
  
  @keyframes breathe {
  
    0% {
  
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  
    }
  
    70% {
  
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  
    }
  
    100% {
  
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  
    }
  
  }
  
  
  
  
  
  @keyframes beat {
  
    0% {
  
      transform: scale(1);
  
    }
  
    50% {
  
      transform: scale(1.2);
  
    }
  
    100% {
  
      transform: scale(1);
  
    }
  
  }


  .descripcion{
    text-align: justify;
    text-justify: inter-word;
  }


  .textoSecundario{
    display: flex;
    justify-content: center;
    align-items: center;
  }