.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

/* Tooltip */
.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: max-content;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 6px 10px;
    border-radius: 5px;
    position: absolute;
    right: 70px;
    /* posição do tooltip */
    font-size: 14px;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

/* Mostrar tooltip ao passar mouse */
.whatsapp-float:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

@media (max-width: 768px) {
    h1.home-name-title {
        font-size: 1.9rem;
        text-align: center;
    }

    div.home-role-title {
        font-size: 1rem;
        text-align: center;
    }

}