/* ==========================================================================
   PÁGINA DE SERVIÇOS - ESTILOS ESPECÍFICOS
   ========================================================================== */

/* Os estilos de menu já estão corretos no style.css principal */

/* Hero da Página de Serviços */
.services-page-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: white;
}

.services-page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.services-page-hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Ajustes de Fontes - Pretas e Legíveis */
.services .section-title,
.category-header h3,
.service-content h4 {
    color: #0F172A !important;
}

.services .section-subtitle,
.service-content p {
    color: #475569 !important;
}

/* Padding ajustado para a página */
.services {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: white;
}

.cta-section p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.cta-section .btn {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

/* Responsivo */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 32px;
        gap: 24px;
        box-shadow: -2px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li:last-child {
        margin-left: 0;
        width: 100%;
    }
    
    .btn-nav {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .services-page-hero {
        padding: 120px 0 60px;
    }
}
