/* ✨ CORREÇÃO PRINCIPAL: Empurra o conteúdo para baixo do header fixo */
.main-content {
    padding-top: 105px; /* Altura aproximada do seu header. Ajuste se necessário */
}

/* --- Seção Hero (Banner) --- */
.about-hero {
    /* ✨ ALTERAÇÃO: Nova cor de fundo para diferenciar do header */
    background-color: var(--gray-800);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 18px;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Estilo das Seções com Fundo Transparente --- */
.about-section {
    padding: 40px 0;
}

/* ✨ NOVO: O "Card de Vidro Fosco" que vai conter o texto */
.content-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.content-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 15px;
}

.content-card p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 15px;
}


/* --- Seção Pilares (Dentro do Card) --- */
.about-pillars .content-card h2 {
    text-align: center;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.pillar-item {
    text-align: center;
    background: none; /* Remove o fundo antigo */
    padding: 20px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.pillar-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pillar-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--gray-800);
}

.pillar-item p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 15px;
}


/* --- Responsividade --- */
@media (max-width: 900px) {
    .main-content {
        padding-top: 90px; /* Ajusta para header menor em telas pequenas se houver */
    }
    .content-card {
        padding: 30px;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}