/*
Theme Name: Divi Child Theme
Template: Divi
*/
@import url("../Divi/style.css");

/* Customização de botões para links na pa'gina de profissionais */
.links-pesquisa-wrap { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1rem; }
.btn-link-pesquisa {
  display:inline-block; padding:.55rem .9rem; border-radius:.5rem;
  background:#1e73be; color:#fff; text-decoration:none; font-weight:600;
}
.btn-link-pesquisa:hover { opacity:.9; }

/* WhatsApp Integration */
.whatsapp-header {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background: #25D366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-header:hover {
    transform: scale(1.1);
}

.whatsapp-header svg {
    width: 24px;
    height: 24px;
    fill: white;
}

@media (max-width: 768px) {
    .whatsapp-header {
        bottom: 20px;
        top: auto;
        right: 20px;
    }
}

/* Status Badges para Cards */
.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

.status-badge.recrutando { 
    background: #28a745; 
}

.status-badge.andamento { 
    background: #007bff;
}

.status-badge.finalizado { 
    background: #6c757d;
}
