.float{
    position: fixed;
    width:65px;
    height:65px;
    background-color: #25d366;
    bottom: 5%;
    right: 15%;
    color: #fff;
    border-radius: 70%;
    padding: 4px 8px 2px 2px;
    text-align: center;
    z-index: 999;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Define qué y cómo se transiciona */
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.438);
    font-size: smaller;
}

.fa-whatsapp{
    font-size: 60px;    
}

.float:hover{
    background-color: #2fe973;
    color:#fff;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.438);
    transform: scale(1.05);
}

.float:active{
    box-shadow: 0 0 0 0 rgb(37 211 101 / 0%);
    animation: styles-module__pulse__BJkE8 1.2s infinite;
}

small{
    font-size: 12px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: none;
    background-color: antiquewhite;
    border-radius: 5px;
    padding:5px;
    margin-top: 10px;
    color:black;
    bottom: 1%;
    right: 15%;
}

small:hover{
    text-decoration: none;
}