/*
 * pages/quem-somos.css
 * ====================
 * Migrado em: 2026-02-10
 */

.about-hero {
    background-color: var(--secondary-color, #023e8a);
    color: var(--white, #fff);
    padding: 80px 0;
}

.about-hero .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text-col {
    flex: 1;
    min-width: 300px;
}

.about-text-col .sub-headline {
    color: var(--accent-color, #48cae4);
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-text-col h1 {
    color: var(--white, #fff);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.about-text-col p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-left: 4px solid var(--accent-color, #48cae4);
    margin: 30px 0;
    border-radius: 4px;
}

.mission-box h5 {
    color: var(--accent-color, #48cae4);
    margin-bottom: 10px;
    font-weight: 600;
}

.mission-box p {
    color: var(--white, #fff);
    margin: 0;
    font-style: italic;
}

.about-image-col {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.about-image-col img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

/* Specialist Section */
.specialist-section {
    padding: 80px 0;
    background-color: var(--bg-light, #f8f9fa);
}

.specialist-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.specialist-section .sub-headline {
    color: var(--secondary-color, #023e8a);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color, #0077b6);
    margin: 20px auto;
}

.specialist-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.specialist-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.specialist-content .highlight-text {
    font-weight: 600;
    color: var(--secondary-color, #023e8a);
    margin-top: 30px;
    font-size: 1.2rem;
}

/* Professional Bio */
.professional-bio {
    padding: 80px 0;
    background-color: var(--white, #fff);
}

.bio-card {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.bio-image {
    flex: 0 0 350px;
    max-width: 100%;
    position: relative;
}

.bio-image-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-color, #48cae4);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 0;
}

.bio-image img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bio-content {
    flex: 1;
    min-width: 300px;
}

.bio-content .sub-headline {
    color: var(--primary-color, #0077b6);
}

.bio-content h2 {
    margin-bottom: 5px;
}

.bio-coren {
    color: #777;
    font-weight: 500;
    margin-bottom: 25px;
}

.credentials-list {
    list-style: none;
    padding: 0;
}

.credentials-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #555;
}

.credentials-list li i {
    color: var(--primary-color, #0077b6);
    margin-right: 10px;
}

.bio-cta-wrapper {
    margin-top: 40px;
}