/* Container da Página Quem Somos */
.about-page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 16px;
}

.section-title-center {
    font-size: 26px;
    font-weight: 800;
    color: var(--foreground);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle-center {
    font-size: 14px;
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 36px;
}

/* Hero Section */
.about-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.about-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background-color: rgba(60, 131, 246, 0.1);
    border: 1px solid var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.about-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--foreground);
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.about-subtitle {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0;
}

/* Pilares Grid */
.about-pillars {
    margin-bottom: 60px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar-card {
    background-color: #131722;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background-color: #0b0e14;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--primary);
}

.pillar-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
    margin: 0 0 10px 0;
}

.pillar-card p {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

/* Equipe Grid */
.about-team {
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 600px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

.team-card {
    background-color: #131722;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    margin-bottom: 16px;
    object-fit: cover;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
    margin: 0 0 4px 0;
}

.team-name a {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.team-name a:hover {
    color: var(--primary);
}

.team-avatar-link {
    display: inline-block;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.team-avatar-link:hover {
    transform: scale(1.05);
}

/* Botão Ver Matérias */
.team-posts-btn {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.team-posts-btn:hover {
    opacity: 0.85;
    transform: translateX(4px); /* Desloca levemente a seta para a direita */
}

.team-role {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

/* Banner CTA */
.about-cta {
    background: linear-gradient(135deg, #131722 0%, #1e293b 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
}

.about-cta h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--foreground);
    margin: 0 0 10px 0;
}

.about-cta p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0 0 24px 0;
}

.about-cta-btn {
    display: inline-block;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.about-cta-btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}