/* Estilos simples para o site */
body { background: #f8f9fa; }
.card { border-radius: 10px; }
.navbar-brand img { margin-right: 8px; }

/* Floating WhatsApp Button */
#whatsapp-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp Green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

#whatsapp-fab:hover {
    transform: scale(1.1);
}

#whatsapp-fab img {
    width: 35px;
    height: 35px;
}
