/* Estilos globais aqui, se necessário */
.whatsapp-fixo {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-fixo i {
    font-size: 1.5rem;
}

.whatsapp-fixo:hover {
    background-color: #1ebe5d;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }
}