/* ============ CONTAINER GERAL ============ */
.profile-container {
    background: #f8f9fa;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ============ SEÇÃO DO PROFILE CARD ============ */
.profile-section {
    background: radial-gradient(140.92% 140.92% at 50% 4.5%, #BDD0C3 16.08%, #FFF 100%);
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.profile-card {
    width: 500px;
    text-align: center;
    padding: 30px;
    color: white;
}

/* Avatar */
.profile-avatar {
    border-radius: 50%;
    width: 120px;
    margin-bottom: 15px;
}

/* Nome e Profissão */
.profile-name {
    font-size: 22px;
    color: white;
    font-weight: bold;
}

/* Avaliação */
.profile-rating {
    background: white;
    color: black;
    font-size: 16px;
    padding: 8px 10px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 10px;
}

/* Status Premium e OAB */
.profile-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.badge-premium {
    background: #ffc107;
    color: black;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 8px;
}

.badge-oab {
    background: #17a2b8;
    color: white;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 8px;
}

.profile-contact {
    text-align: center; /* Centraliza os textos */
    margin-top: 15px;
}

.profile-contact p {
    margin-bottom: 10px; /* Dá um espaçamento entre os itens */
    font-size: 16px;
    color: #0b3819; /* Define a cor do texto como branco */
}

.profile-contact a {
    text-decoration: none;
    color: #0b3819;
    font-weight: 400;
}

.profile-contact a:hover {
    color: #22793e; /* Deixa o hover um pouco mais visível */
}



/* ============ MENU DE NAVEGAÇÃO ============ */
.profile-menu {
    background: white;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.profile-menu ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-menu ul li a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    padding: 10px;
    transition: 0.3s;
}

.profile-menu ul li a:hover {
    color: #318852;
}

/* ============ SEÇÃO PRINCIPAL ============ */
.profile-main {
    display: flex;
    max-width: 1200px;
    margin: 30px auto;
    gap: 30px;
    align-items: flex-start;
}

/* Coluna da esquerda (Conteúdo Principal) */
.profile-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Barra Lateral */
.profile-sidebar {
    flex: 1;
}

/* ============ CAIXAS DE CONTEÚDO ============ */
.profile-box {
    background: white;
    color: #333;
    padding: 20px;
    
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Seção Sobre */
.profile-box h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* ============ CIDADES DE ATUAÇÃO ============ */
.cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cities-list a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-pill {
    background: #eef5ec;
    border: 1px solid #c9d8c3;
    border-radius: 8px;
    color: #0b3819;
    display: inline-flex;
    font-weight: 700;
    padding: 8px 12px;
}

.view-more {
    display: block;
    margin-top: 15px;
    color: #28a745;
    font-weight: bold;
    text-decoration: none;
}

/* ============ QUALIFICAÇÃO ============ */
.rating-box {
    background: #fff3cd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.rating-star {
    background: #ffc107;
    color: black;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
    margin-right: 10px;
}

/* Tabela de Qualificação */
.qualification-table {
    width: 100%;
    border-collapse: collapse;
}

.qualification-table th, .qualification-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.qualification-table th {
    font-weight: bold;
    background: #f8f9fa;
}

.qualification-table td {
    font-size: 16px;
}

/* ============ BARRA LATERAL ============ */
.sidebar-card {
    background: #17a2b8;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.sidebar-card img {
    width: 100px;
    margin-bottom: 10px;
}

.form-green {
    color: #0b3819;
    font-weight: 800;
}

.form-green-regular {
    color: #0b3819;
    font-weight: 400;
}
