/* About */
.about {
    background: var(--gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-medium);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 3.5rem;
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
    font-weight: 1000;
}

.stat p {
    color: var(--gray-medium);
    font-weight: 700;
}


/* Responsividade para telas menores */
@media (max-width: 768px) {
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .stat {
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat {
        width: 100%;
        max-width: 300px;
    }
}
