/* Estilos para o botão flutuante de WhatsApp */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #0078d7;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.whatsapp-float:hover {
    background-color: #005ea3;
    transform: scale(1.1);
}

.whatsapp-message {
    background-color: #ffffff;
    color: #333333;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.whatsapp-message.show {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-message:after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
}

/* Animação de pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 120, 215, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 120, 215, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 120, 215, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 576px) {
    .whatsapp-float-container {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .whatsapp-message {
        padding: 8px 12px;
        font-size: 0.9rem;
        margin-right: 10px;
    }
}

