/* Estilos padronizados para cabeçalhos de seção */
.section-header {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #003087; /* Azul do Lions */
    border-radius: 2px;
}

.section-header .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #003087;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header .section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 0.5rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-header .section-title {
        font-size: 1.8rem;
    }
    
    .section-header .section-description {
        font-size: 1rem;
    }
}
