.services-page {
    padding-top: 120px;
    padding-bottom: 60px;
}

.page-header {
    background: linear-gradient(135deg, var(--br-blue-dark), #1e293b);
    color: var(--br-white);
    padding: 80px 20px;
    border-radius: var(--radius-xl);
    margin: 0 auto 60px;
    width: 96%;
    max-width: 1800px;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

/* Detalhe visual de fundo no header */
.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .page-header {
        width: 100%;
        border-radius: 0;
        padding: 60px 20px;
    }
    .page-header h1 { font-size: 2.5rem; }
}