/* ============================================================
   sobre.css  —  Estilos da página Sobre Nós
   Usado em: home/templates/home/sobre.html
   ============================================================ */

/* ── Hero ── */
.sobre-hero {
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    padding: 5rem 0 4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
/* Padrão decorativo de fundo */
.sobre-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sobre-hero h1 {
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 1.2;
}
.sobre-hero p {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.7;
}
/* Badge de tagline no hero */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    padding: .4rem 1rem;
    font-size: .82rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 1.5rem;
}

/* ── Seção Quem Somos ── */
.section-quem { padding: 5rem 0; }
.section-quem .label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin-bottom: .5rem;
}
.section-quem h2 {
    font-weight: 800;
    font-size: 1.9rem;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}
.section-quem p {
    color: var(--bs-secondary-color);
    line-height: 1.8;
    font-size: .97rem;
}

/* ── Seção O Que Fazemos ── */
.section-fazemos {
    padding: 4rem 0;
    background: var(--bs-tertiary-bg);
}
.section-fazemos h2 { font-weight: 800; font-size: 1.7rem; }
.section-fazemos p.lead-text {
    color: var(--bs-secondary-color);
    font-size: .97rem;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

/* ── Seção Diferenciais ── */
.section-diferenciais { padding: 5rem 0; }
.diff-card {
    border-radius: 16px;
    border: 1px solid var(--bs-border-color);
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    border-color: var(--bs-primary);
}
.diff-card .diff-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.diff-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.diff-card p  { font-size: .88rem; color: var(--bs-secondary-color); line-height: 1.65; margin: 0; }

/* ── Seção CTA final ── */
.section-cta {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 4rem 0;
    color: #fff;
    text-align: center;
}
.section-cta h2 { font-weight: 800; font-size: 1.8rem; }
.section-cta p  { color: rgba(255,255,255,.7); font-size: .97rem; max-width: 500px; margin: 0 auto 1.5rem; }