/* style_busca.css - Estilos para página de busca de profissionais */
/* Logo padrão (desktop) */
img.logo {
  max-width: 300px;
}

/* Versão mobile */
@media (max-width: 768px) {
  img.logo {
    max-width: 120px;
  }
}
/* Filtro Select */
.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 0.75rem;
    color: white;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: #217e77;
    box-shadow: 0 0 0 3px rgba(33, 126, 119, 0.1);
}

.filter-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Filtros de Categoria */
.category-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(31, 41, 55, 0.5);
    border: 2px solid transparent;
    border-radius: 9999px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.category-filter:hover {
    background: rgba(33, 126, 119, 0.2);
    border-color: #217e77;
    transform: translateY(-2px);
}

.category-filter.active {
    background: linear-gradient(135deg, #217e77 0%, #1e3264 100%);
    border-color: #217e77;
    box-shadow: 0 4px 15px rgba(33, 126, 119, 0.4);
}

/* Card de Profissional */
.professional-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.professional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(33, 126, 119, 0.3);
    border-color: #217e77;
}

.professional-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-category {
    background: rgba(33, 126, 119, 0.2);
    color: #217e77;
    border: 1px solid rgba(33, 126, 119, 0.3);
}

.badge-location {
    background: rgba(30, 50, 100, 0.2);
    color: #7dd3fc;
    border: 1px solid rgba(30, 50, 100, 0.3);
}

.badge-secondary {
    background: rgba(139, 92, 246, 0.2);
    color: #c084fc;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Rating */
.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, #217e77 0%, #1e3264 100%);
    transition: all 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 4px 15px rgba(33, 126, 119, 0.5);
    transform: translateY(-2px);
}

/* Glassmorphism */
.glassmorphism {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.3);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #217e77 0%, #1e3264 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Line Clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .professional-card {
        margin-bottom: 1rem;
    }
    
    .category-filter {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Estilo para modal de login do SweetAlert */
.swal-wide {
    width: 500px !important;
    padding: 2rem !important;
}

.swal2-html-container {
    margin: 0 !important;
    padding: 0 !important;
}