/* Estilos globais para títulos de seção - Padrão Trending */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--af-color-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--af-color-quinternary);
    margin: 0;
    opacity: 0.8;
}

/* Responsividade para títulos de seção */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}
