/* ============================================================
   style_sobre.css — Página Sobre Nós (sobre_nos.php)
   ============================================================ */

/* ---- Page Hero ---- */
.sobre-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2332 100%);
    color: var(--white);
    padding: 4rem 0 3.5rem;
    text-align: center;
    position: relative;
}

.sobre-hero h1 {
    color: var(--white);
    font-size: var(--font-3xl);
    margin-bottom: var(--space-md);
}

.sobre-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-md);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Story Section ---- */
.story-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: var(--font-md);
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.story-content p strong {
    color: var(--primary);
}

.story-highlight {
    background: rgba(255, 153, 0, 0.05);
    border-left: 4px solid var(--accent);
    padding: var(--space-xl);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: var(--space-2xl) 0;
}

.story-highlight p {
    font-size: var(--font-lg);
    color: var(--text-primary);
    font-weight: 500;
    font-style: italic;
    margin: 0;
    line-height: 1.7;
}

/* ---- Timeline ---- */
.timeline-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-body);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-2xl);
    padding-left: var(--space-xl);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg-body);
    box-shadow: 0 0 0 2px var(--accent);
    z-index: 1;
}

.timeline-year {
    display: inline-block;
    font-size: var(--font-xs);
    font-weight: 700;
    color: var(--accent);
    background: rgba(255, 153, 0, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
}

.timeline-item h3 {
    font-size: var(--font-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.timeline-item p {
    font-size: var(--font-sm);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ---- Mission / Vision / Values ---- */
.mvv-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.mvv-card {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: var(--transition);
}

.mvv-card:nth-child(1)::before { background: var(--primary); }
.mvv-card:nth-child(2)::before { background: var(--accent); }
.mvv-card:nth-child(3)::before { background: var(--success); }

.mvv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.mvv-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.6rem;
}

.mvv-card:nth-child(1) .mvv-icon { background: rgba(35, 47, 62, 0.08); }
.mvv-card:nth-child(2) .mvv-icon { background: rgba(255, 153, 0, 0.1); }
.mvv-card:nth-child(3) .mvv-icon { background: rgba(6, 125, 98, 0.08); }

.mvv-card h3 {
    font-size: var(--font-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.mvv-card p {
    font-size: var(--font-sm);
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ---- Stats ---- */
.about-stats {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a2332 100%);
    color: var(--white);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.about-stat {
    text-align: center;
}

.about-stat-value {
    font-size: var(--font-3xl);
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.about-stat-label {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Team ---- */
.team-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-body);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.team-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: var(--transition-slow);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2xl);
    font-weight: 800;
    color: var(--white);
}

.team-card:nth-child(1) .team-avatar { background: linear-gradient(135deg, #232f3e, #37475a); }
.team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, #e68a00, #ff9900); }
.team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, #065f46, #059669); }
.team-card:nth-child(4) .team-avatar { background: linear-gradient(135deg, #4c1d95, #7c3aed); }

.team-card h4 {
    font-size: var(--font-base);
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: var(--font-xs);
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: var(--space-md);
}

.team-card p {
    font-size: var(--font-sm);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.team-social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.team-social-link:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ---- Differentials ---- */
.diff-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-white);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.diff-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.diff-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.diff-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: rgba(255, 153, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.diff-item h4 {
    font-size: var(--font-base);
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.diff-item p {
    font-size: var(--font-sm);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ---- CTA ---- */
.about-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    text-align: center;
    color: var(--white);
}

.about-cta h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.about-cta p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto var(--space-xl);
    font-size: var(--font-md);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .sobre-hero {
        padding: 3rem 0 2.5rem;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 30px;
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}
