/* 1. Registras la tipografía de tu carpeta */
@font-face {
  font-family: 'conforta';
  src: url('fonts/Comfortaa-Regular.ttf') format('ttf'),
  font-weight: normal;
  font-style: normal;
}

/* 2. Creas una clase para aplicarla solo a lo que tú quieras */
.epifuente {
  font-family: 'conforta';
}

.btn-whatsapp-custom:hover {
  color: #212529 !important; /* Fuerza el color de letra a un gris oscuro/negro */
  background-color: #f8f9fa !important; /* Opcional: un fondo gris muy claro al pasar el mouse */
  border-color: #0b3c3d !important;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: #FFF;
    transform: scale(1.1);
}