/* ============================================
   Quem Somos Page — faithful to Figma
   ============================================ */

.about-hero {
    padding: 70px 0 80px;
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-image img {
    display: block;
    width: 100%;
    border-bottom-right-radius: 68px;
    object-fit: cover;
}

.about-label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0071F3;
    margin-bottom: 10px;
}

.about-title {
    font-size: 40px;
    font-weight: 700;
    color: #0D2248;
    margin-bottom: 22px;
}

.about-text {
    font-size: 18px;
    line-height: 1.6;
    color: #0D2248;
    margin-bottom: 18px;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 36px;
}

.about-stat {
    display: flex;
    flex-direction: column;
}

.about-stat .stat-value {
    font-size: 58px;
    font-weight: 700;
    line-height: 1;
    color: #0071F3;
    margin-bottom: 8px;
}

.about-stat .stat-label {
    font-size: 16px;
    color: #0D2248;
    max-width: 150px;
}

/* Partners carrossel banner */
.about-partners {
    background-color: var(--primary-dark);
    line-height: 0;
}

.partners-banner {
    display: block;
    width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-image { order: 1; }
    .about-content { order: 2; }
}

@media (max-width: 768px) {
    .about-title { font-size: 30px; }
    .about-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .about-stat .stat-value { font-size: 44px; }
}
