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

/* Hero Serviços */
.hero-servicos {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a3f5f 100%);
}

.hero-servicos .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.3;
}

.hero-servicos .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-servicos .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 44, 68, 0.85) 0%, rgba(31, 44, 68, 0.7) 100%);
    z-index: 2;
}

.hero-servicos .hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-servicos .hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-servicos .hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-servicos .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-servicos .hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Serviços Principais */
.servicos-principais {
    background: #fff;
}

.servicos-principais .card {
    display: flex;
    flex-direction: column;
}

.servicos-principais .card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.servicos-principais .card p {
    flex-grow: 1;
    margin-bottom: 1rem;
}

/* Por Que Escolher */
.por-que-escolher {
    background: var(--light-bg);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.diferencial-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.diferencial-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.diferencial-item h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.diferencial-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Final */
.cta-final-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a3f5f 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content h2::after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-servicos .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-servicos .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-servicos .hero-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-servicos .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-servicos .hero-ctas {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
