.mainWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mainWrapper .mainContentPhoto {
    display: none;
    max-width: 30%;
    width: auto;
}

.mainWrapper .mainContentPhoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mainContent {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mainContent h1 {
    font-size: 2em;
    color: #fff;
}

.mainContent p {
    color: #fff;
}

.mainContent h1 b {
    color: var(--secondary-color);
}

.coordenação,
.composicao {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.centerTable {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.wrapperTable {
    overflow: auto;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    border-radius: 4px; 
}

.table {
    position: relative;
    width: max-content;
    min-width: 830px; 
    display: flex;
    flex-direction: column;
}

.table .header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: var(--primary-color);
    padding: 0 30px;
    gap: 30px;
}

.table .header h3 {
    color: #fff;
    font-size: 1.5em;
    flex: 1;
    padding: 10px 0;
    width: 100%;
    display: flex;
    align-items: center;
}

.table .header h3:not(:last-child) {
    border-right: 1px solid #0003;
}

.table .content {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.table .content .row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 30px;
    gap: 30px;
}

.table .content .row span {
    flex: 1;
    padding: 10px 0;
    display: flex;
    align-items: center;
    width: 100%;
    word-break: break-all; /* Garante que emails muito longos não quebrem o layout */
}

/* Estilização específica para o link de email */
.table .content .row span a {
    color: var(--primary-color); 
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.table .content .row span a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.table .content .row span:not(:last-child) {
    border-right: 1px solid #0003;
}

.table .content .row:nth-child(even) {
    background: #f8f8f8;
}

/* --- BARRA DE PESQUISA --- */
.search-box {
    position: relative;
    width: 100%;
    max-width: 830px; 
    margin: 0 auto 25px auto;
    margin-bottom: 25px; 
    display: flex;
    align-items: center;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 45px; 
    border: 1px solid #ddd;
    border-radius: 4px; 
    font-size: 1rem;
    outline: none;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    color: #555;
    background-color: #f9f9f9;
}


.search-box input:focus {
    border-color: #004a8d; 
    box-shadow: 0 0 0 3px rgba(0, 74, 141, 0.1);
    background-color: #fff;
}

.search-box iconify-icon {
    position: absolute;
    right: 15px;
    color: #888;
    font-size: 1.3rem;
    pointer-events: none; 
}

@media (min-width: 860px) {
    .mainWrapper .mainContentPhoto {
        display: block;
    }
    .mainContent {
        max-width: 50%;
    }
}