/* Estilos para el encabezado de la sección de servicios */
.services-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.services-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin: 15px auto;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-align: center;
    width: 100%;
    text-transform: none;
}

.services-title .gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-accent-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 20px auto;
    border-radius: 5px;
    animation: pulse 2s infinite;
}

.services-subtitle {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--text-color-light);
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 4rem;
    }
    
    .services-subtitle {
        font-size: 1.2rem;
    }
}
