/**
 * Estilos para Seção Sobre
 */

.about {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 80px 20px;
}

.about h2 {
    text-align: center;
    color: #1E1E5F;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.about-item {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,82,204,0.15);
}

.about-item h3 {
    color: #0052CC;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: linear-gradient(135deg, #0052CC 0%, #1E1E5F 100%);
    padding: 60px 40px;
    border-radius: 8px;
}

.stat {
    text-align: center;
    color: white;
}

.stat h4 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    color: white;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.cta {
    background: linear-gradient(135deg, #0052CC 0%, #1E1E5F 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .about h2 {
        font-size: 1.8rem;
    }
    
    .about-item {
        padding: 25px;
    }
    
    .stats {
        padding: 40px 20px;
    }
    
    .stat h4 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
}
