/* ========================================
   QUEM SOMOS - ESTILOS ESPECÍFICOS
======================================== */

/* Hero Section */
.hero-quem-somos {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('images/header_quem-somos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-quem-somos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(1px);
}

.hero-quem-somos .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-quem-somos h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.hero-quem-somos p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #e2e8f0;
}



/* Liderança */
.lideranca {
    padding: 8rem 0;
    background: white;
}

.lideranca h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: #4a5568;
    font-weight: 300;
    line-height: 1.4;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.leader-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.leader-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e2e8f0;
    transition: all 0.3s ease;
}

.leader-card:hover .leader-photo {
    border-color: #7c3aed;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #e2e8f0;
}

.leader-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.leader-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: #7c3aed;
    margin-bottom: 1rem;
}

.leader-bio {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(124,58,237,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.linkedin-link:hover svg {
    fill: white;
}

/* Golden Circle */
.golden-circle {
    padding: 8rem 0;
    background: #f8f7ff;
}

.golden-circle h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: #4a5568;
    font-weight: 300;
    line-height: 1.4;
}

.golden-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.circle-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.circle {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.outer-circle {
    width: 350px;
    height: 350px;
    border: 3px solid #64748b;
    background: rgba(100,116,139,0.05);
}

.middle-circle {
    width: 250px;
    height: 250px;
    border: 3px solid #7c3aed;
    background: rgba(124,58,237,0.05);
}

.inner-circle {
    width: 150px;
    height: 150px;
    border: 3px solid #f97316;
    background: rgba(249,115,22,0.1);
}

.circle-label {
    position: absolute;
    font-weight: 600;
    font-size: 1.1rem;
}

.what {
    bottom: 20px;
    color: #64748b;
}

.how {
    bottom: 15px;
    color: #7c3aed;
}

.why {
    color: #f97316;
}

.golden-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.golden-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.golden-label {
    font-weight: 700;
}

.why-color {
    color: #f97316;
}

.how-color {
    color: #7c3aed;
}

.what-color {
    color: #64748b;
}

.golden-item p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .golden-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .circle-diagram {
        height: 300px;
    }
    
    .outer-circle {
        width: 280px;
        height: 280px;
    }
    
    .middle-circle {
        width: 200px;
        height: 200px;
    }
    
    .inner-circle {
        width: 120px;
        height: 120px;
    }
}

/* Parceiros */
.parceiros {
    padding: 8rem 0;
    background: white;
}

.parceiros h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: #4a5568;
    font-weight: 300;
    line-height: 1.4;
}

.parceiros-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.parceiro-logo {
    transition: all 0.3s ease;
    filter: grayscale(60%);
    opacity: 0.7;
}

.parceiro-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.parceiro-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* CTA Final */
.cta-final {
    padding: 8rem 0;
    background: #1e293b;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.cta-final h2 {
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #e2e8f0;
    line-height: 1.6;
}

/* Nav Active State */
.nav-menu a.active {
    color: #7c3aed;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-quem-somos h1 {
        font-size: 2.5rem;
    }
    
    .hero-quem-somos p {
        font-size: 1.1rem;
    }
    

    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .parceiros-carousel {
        gap: 2rem;
    }
    
    .parceiro-logo img {
        height: 40px;
    }
    
    .cta-final h2 {
        font-size: 2rem;
    }
    
    .cta-final p {
        font-size: 1.1rem;
    }
}

/* Citação Destacada */
.quote-section {
    padding: 6rem 0;
    background: #1e293b;
    text-align: center;
}

.quote-highlight {
    font-size: 2.55rem;
    font-weight: 300;
    color: white;
    line-height: 1.3;
    margin: 0;
    font-style: italic;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.quote-highlight::before {
    content: '"';
    color: #7c3aed;
    font-size: 2.4rem;
    font-weight: bold;
    position: relative;
    top: -5px;
}

.quote-highlight::after {
    content: '"';
    color: #7c3aed;
    font-size: 2.4rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .quote-highlight {
        font-size: 1.7rem;
    }
    
    .quote-highlight::before,
    .quote-highlight::after {
        font-size: 1.5rem;
    }
}