/* ==========================================================
   PÁGINA DE SERVIÇOS (DARK TECH)
   ========================================================== */
.servicos-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(to bottom, rgba(0, 255, 204, 0.05), transparent);
}

.servicos-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.servicos-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.serv-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.serv-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 204, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Faixa de Destaque para o serviço mais vendido */
.serv-destaque::before {
    content: 'MAIS PEDIDO';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--neon-cyan);
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.serv-icon {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.serv-card h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.serv-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.serv-lista {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.serv-lista li {
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.serv-lista i {
    color: var(--neon-cyan);
    font-size: 0.8rem;
}

.serv-preco {
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.serv-preco span {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: normal;
}

.btn-servico {
    display: block;
    text-align: center;
    background: transparent;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-servico:hover {
    background: var(--neon-cyan);
    color: #000;
}

/* Call to Action Final */
.cta-final {
    background: var(--bg-card);
    text-align: center;
    padding: 60px 20px;
    margin: 40px auto 80px;
    max-width: 1000px;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 204, 0.2);
}

.cta-final h2 { color: #fff; margin-bottom: 15px; }
.cta-final p { color: var(--text-muted); margin-bottom: 30px; }