/* --- ESTILOS DO BOTÃO FLUTUANTE --- */
.fab-whatsapp { position: fixed; bottom: 70px; right: 30px; background-color: #25D366; color: white; border: none; border-radius: 50%; width: 60px; height: 60px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 9998; display: flex; justify-content: center; align-items: center; transition: transform 0.3s ease, background-color 0.3s ease; }
.fab-whatsapp:hover { background-color: #1EBE57; transform: scale(1.1); }
/* --- ESTILOS DO MODAL --- */
.wa-modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); z-index: 9999; backdrop-filter: blur(3px); }
.wa-modal-content { background-color: #fff; width: 90%; max-width: 700px; margin: 5% auto; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.5); overflow: hidden; position: relative; animation: modalFadeIn 0.3s; }
@keyframes modalFadeIn { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
.wa-modal-header { background-color: #003366; color: white; padding: 20px; text-align: center; font-size: 20px; font-weight: bold; border-bottom: 4px solid #FFCC00; position: relative; }
.wa-close-btn { position: absolute; top: 15px; right: 20px; color: white; font-size: 28px; font-weight: bold; cursor: pointer; background: none; border: none; line-height: 1; }
.wa-close-btn:hover { color: #FFCC00; }
.wa-modal-body { padding: 20px; max-height: 70vh; overflow-y: auto; }
/* --- LISTA DE CONTATOS --- */
.wa-list-item { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid #eee; flex-wrap: wrap; gap: 15px; }
.wa-list-item:last-child { border-bottom: none; }
.wa-list-info h4 { margin: 0 0 5px 0; color: #003366; font-size: 18px; }
.wa-list-info p { margin: 0; font-size: 14px; color: #555; line-height: 1.4; }
.wa-list-actions { display: flex; gap: 10px; }
.wa-btn-modal { background-color: #25D366; color: white !important; text-decoration: none; padding: 8px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; white-space: nowrap; transition: background-color 0.2s; }
.wa-btn-modal:hover { background-color: #1EBE57; }