/* Estilos para el bot�n de WhatsApp */

@media only screen and (min-width: 768px) {
  .whatsapp-chat {
      position: fixed;
      bottom: 5em;
      right: 4em;
      background-color:transparent;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: transform 0.3s ease-in-out;
    }
    
    .whatsapp-chat img {
      width: 5rem;
      height: 5rem;
    }
    
    .whatsapp-chat:hover {
      transform: scale(1.1);
    }
  
    .custom-button {
      padding: 10px 20px;
      font-size: 22px;
    }
  }
  
  @media only screen and (max-width: 767px) {
  .whatsapp-chat {
      position: fixed;
      bottom: 5em;
      right: 4em;
      background-color:transparent;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: transform 0.3s ease-in-out;
    }
    
    .whatsapp-chat img {
      width: 5rem;
      height: 5rem;
    }
    
    .whatsapp-chat:hover {
      transform: scale(1.1);
    }
  
    .custom-button {
      padding: 10px 20px;
      font-size: 50px;
    }
  }
  
  
    @media screen and (max-width: 768px) {
      /* Estilos para dispositivos m�viles */
      .whatsapp-chat img {
          width: 5rem;
          height: 5rem;
        }
        .custom-button {
          padding: 10px 20px;
          font-size: 28px;
        }
          
    }
    
    @media screen and (min-width: 769px) and (max-width: 1200px) {
      /* Estilos para tabletas y pantallas m�s grandes */
      .whatsapp-chat img {
          width: 10rem;
          height: 10rem;
        }
        .custom-button {
          padding: 10px 20px;
          font-size: 55px;
        }
        
    }
    
    @media screen and (min-width: 1201px) {
      /* Estilos para pantallas de escritorio */
      .whatsapp-chat img {
          width: 5rem;
          height: 5rem;
  }
    }
  
    .contenedorboton{
      text-align: center;
      padding-top: 2px;
    }
  
    .custom-button {
      padding: 10px 20px;
  
      color: #ffffff !important;
      background-color: #3498db;
      border: 2px solid transparent;
      border-radius: 5px;
      transition: all 0.3s ease; /* Transición suave para el efecto hover */
    
      /* Para un cursor que indica que es un botón clickeable */
      cursor: pointer;
    }
    .custom-button a {
      color: #fff!important;
    }
  
  
    .custom-button:hover {
      background-color: rgba(52, 152, 219, 0.8); 
      border-color: #fff; 
    }
  
    