  .whatsapp-main-button a {
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-decoration: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    transition: opacity 0.5s ease;
    opacity: 1;
  }

  .whatsapp-main-button img {
    width: 110px;
    height: 110px;
		margin-left: 18px;
  }

  .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: -100%;
    /* Inicia fuera de la pantalla */
    z-index: 1001;
    /* Asegura que esté por encima del botón principal */
    transition: right 0.5s ease;
    /* Suaviza la transición */
  }

  .whatsapp-button.show {
    right: 20px;
    /* Ajusta según necesidades específicas de posicionamiento */
  }

  .whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background-color: #FFC400;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    margin-bottom: 40px;
  }

  .whatsapp-button img {
    width: 75px;
    height: 75px;
    margin-right: 10px;
    border-radius: 50px;
    overflow: hidden;
    position: absolute;
    right: 150px;
  }

  .whatsapp-back-button {
    display: block;
    margin-top: 10px;
    background-color: #0E6251;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
  }

  .flotante {
		font-weight: 800; 
		margin-bottom:0px; 
		background-color:#191971;
    text-align: center;
    padding: 2px 18px;
    border-radius: 50px;
  }
  /* Estilos para dispositivos móviles */
@media only screen and (max-width: 768px) {
  .whatsapp-main-button img {
    width: 80px;
    height: 80px;
  }
  .whatsapp-main-button a {
    bottom: 55px;
    right: 0px;
  }
}
