.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    padding-top: 150px;
}

/* Coluna de Texto (60%) */
.about-content {
    flex: 1.2;
}

.about-title {
    font-size: 48px;
    line-height: 1.1;
    margin: 24px 0;
    font-weight: 300;
}

.about-title span {
    color: var(--color-primary);
    font-weight: 600;
}

.about-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 90%;
}

/* Caixa de Expertise Técnica */
.expertise-box {
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid var(--color-primary);
    padding: 30px 40px;
    margin-top: 40px;
}

.expertise-box h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.expertise-box p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

/* Coluna de Stats (40%) */
.about-stats-grid {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2px; /* Linha sutil entre blocos */
    background: rgba(255, 255, 255, 0.05); /* Cor da linha divisória */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card {
    background: #0b0f0d; /* Cor de fundo do body para contraste */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background 0.3s ease;
}

.stat-card:hover {
    background: rgba(37, 165, 80, 0.03);
}

.stat-value {
    font-size: 64px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-main);
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.4;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 1100px) {
    .about-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    .about-content, .about-stats-grid {
        flex: 1;
        width: 100%;
    }
    .about-title {
        font-size: 24px;
    }
    .about-stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .stat-card {
        flex: 1;
        min-width: 200px;
        padding: 30px;
    }
    
    .about-description {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 90%;
    }
}

@media (max-width: 600px) {
    .about-stats-grid {
        flex-direction: column;
    }
    .stat-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}