/* ===== BOTÃO FLUTUANTE - WhatsApp Verde ===== */
/* Para ser incluído em todas as páginas do site */

.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.floating-whatsapp {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
    position: relative;
}

.floating-whatsapp:hover {
    background: #20bd5a;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    font-size: 1.75rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 1.25rem;
    }

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