/* ======================================================
   Página Empresa — Estilos específicos
   ====================================================== */

/* Herói (fallback — classes globais .hero e .inner-hero são usadas) */
.empresa-hero {
    padding: 200px 0 150px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.empresa-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.empresa-hero p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    color: #e0f2fe;
    max-width: 800px;
    margin: 0 auto;
}

/* ── Seção de Experiência ──────────────────────────────── */
.experience-section {
    background-color: #f8fafc;
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1500px;
    height: 1500px;
    background: repeating-radial-gradient(
        circle at center,
        transparent,
        transparent 80px,
        rgba(10, 64, 115, 0.04) 81px,
        rgba(10, 64, 115, 0.04) 81.5px,
        transparent 82px
    );
    pointer-events: none;
    z-index: 0;
}

.experience-section .container {
    position: relative;
    z-index: 1;
}

.exp-number {
    font-family: 'Sora', sans-serif;
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(to right, #0A4073, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.exp-text {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #0A4073;
    margin-left: 1rem;
}

.exp-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.75rem;
    color: #475569;
    max-width: 800px;
    margin: 2rem auto 0;
    font-weight: 500;
}

/* ── Cards Premium ─────────────────────────────────────── */
.premium-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.premium-card > h3 {
    margin-bottom: 1rem;
}

.premium-card p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
}

.card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

/* Cabeçalho com ícone nos cards de valores */
.card-icon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon-header .card-icon-box {
    margin-bottom: 0;
    flex-shrink: 0;
}

/* ── Seção de Estatísticas ─────────────────────────────── */
.stats-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #0A4073;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    color: #64748b;
}

/* ── Metodologia ───────────────────────────────────────── */
.methodology-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 16px;
    color: white;
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Seção com fundo alternativo */
.section-bg-alt {
    background-color: #f8fafc;
}

/* ── Responsivo ────────────────────────────────────────── */
@media (max-width: 768px) {
    .empresa-hero h1 {
        font-size: 3rem;
    }

    .empresa-hero p {
        font-size: 1.2rem;
    }

    .exp-number {
        font-size: 5rem;
    }

    .exp-text {
        font-size: 2rem;
    }

    .exp-description {
        font-size: 1.3rem;
    }
}
