/* ==========================================================================
   JBC — Sobre nós
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 24px;
}

.hero-slogan {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   Números
   -------------------------------------------------------------------------- */

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
}

.number-item h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.number-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* --------------------------------------------------------------------------
   Liderança
   -------------------------------------------------------------------------- */

.leadership {
    background: var(--light-gray);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.leader-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    padding: 32px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.leader-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--light-3);
    margin: 0 auto 16px;
    overflow: hidden;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

.leader-card .role {
    font-size: 14px;
    color: var(--brand-primary);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Benefícios
   -------------------------------------------------------------------------- */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 48px;
    color: var(--brand-primary);
}

.benefit-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.benefit-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   História
   -------------------------------------------------------------------------- */

.history {
    background: var(--light-gray);
}

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

.history-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 24px;
}

.history-text:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Responsivo
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .numbers-grid,
    .benefits-grid,
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .numbers-grid,
    .benefits-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .number-item h3 {
        font-size: 40px;
    }

    .hero-intro {
        font-size: 16px;
    }
}
