:root {
    --bg-black: #050505;
    --card-bg: rgba(255, 255, 255, 0.02);
    --main-purple: #8a2be2;
    --light-purple: #e0ccff;
    --yellow: #ffca28;
    --green: #00ff88;
}

.servicos-page {
    padding-top: 140px;
    background-color: var(--bg-black);
}

.servicos-hero {
    text-align: center;
    padding: 0 8% 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.servicos-hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.servicos-hero p {
    font-size: 1.1rem;
    color: #999;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 8% 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-category {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 35px;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.service-category:hover {
    transform: translateY(-10px);
    border-color: var(--main-purple);
    background: rgba(138, 43, 226, 0.03);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.category-header h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; }

.service-list { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.service-list li {
    padding: 12px 0;
    color: #bbb;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
}
.service-list li::before {
    content: '→';
    margin-right: 12px;
    color: var(--main-purple);
}

.btn-service {
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: white;
    border: 1px solid var(--main-purple);
    transition: 0.3s;
}

.btn-service:hover { background: var(--main-purple); box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2); }
.border-yellow { border-color: var(--yellow) !important; }
.border-yellow:hover { background: var(--yellow) !important; color: black !important; }
.border-green { border-color: var(--green) !important; }
.border-green:hover { background: var(--green) !important; color: black !important; }

.final-cta {
    padding: 60px 8% 100px; 
    background: linear-gradient(to top, #0f041d, var(--bg-black));
}

.smaller-card {
    background: rgba(138, 43, 226, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    
    padding: 60px 40px; 
    max-width: 650px; 
    
    border-radius: 35px;
    text-align: center;
    margin: 0 auto;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; 
}

.smaller-card h3 {
    font-size: clamp(1.8rem, 4vw, 2.4rem); 
    color: var(--light-purple);
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.smaller-card p {
    font-size: 1.1rem; 
    color: #bbb;
    line-height: 1.7; 
    max-width: 500px; 
}

.cta-btn-wrapper { margin-top: 5px; }

/* Menu Ativo */
.nav-links a.active { color: var(--main-purple); font-weight: 700; }

/* RESPONSIVO */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .servicos-page { padding-top: 100px; }
    .services-grid { grid-template-columns: 1fr; }
    
    .smaller-card { 
        padding: 40px 20px; 
        gap: 20px; 
        max-width: 100%; 
    }
    .smaller-card h3 { font-size: 1.6rem; }
    
    .hide-mobile { display: none; }
}