:root {
    --bg-dark: #0a0a0a;
    --bg-surface: #121212;
    --accent-primary: #8A2BE2; /* Roxo Vibrante */
    --accent-secondary: #C71585; /* Magenta para gradientes */
    --text-primary: #EAEAEA;
    --text-secondary: #a0a0a0;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- ESTILOS GERAIS E SCROLLBAR --- */
body {
    background-color: var(--bg-dark);
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"%3E%3Cpath fill="%231a1a1a" fill-opacity="0.4" d="M1 3h1v1H1V3zm2-2h1v1H3V1z"%3E%3C/path%3E%3C/svg%3E');
    font-family: var(--font-body);
    color: var(--text-secondary);
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-primary); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-secondary); }

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

.section-padding { padding: 6rem 0; }
.page-header {
    min-height: 50vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(16, 16, 16, 0.7), var(--bg-dark));
}
.page-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    letter-spacing: -2px;
}

/* --- NAVBAR E BOTÕES --- */
/* (Estes estilos permanecem os mesmos da versão anterior) */
/* ... (todo o código CSS anterior permanece igual até à secção da Navbar) ... */

/* --- NAVBAR --- */
.navbar {
    transition: background-color 0.4s ease-in-out, padding 0.4s ease-in-out;
}
.navbar.scrolled {
    background-color: rgba(16, 16, 16, 0.85) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.navbar-brand { font-weight: 700; font-size: 1.5rem; }
.nav-link { 
    font-weight: 600; 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    transition: color 0.3s ease; 
}
.nav-link:hover { 
    color: var(--accent-primary); 
}
/* REGRA ATUALIZADA/ADICIONADA */
.nav-link.active {
    color: var(--accent-primary) !important;
}

/* ... (o resto do seu CSS permanece igual) ... */

/* --- NOVOS ESTILOS PARA A PÁGINA DE SERVIÇOS --- */
.service-block {
    padding: 3rem 0;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: -webkit-linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-title {
    font-size: clamp(2rem, 5vw, 2.75rem); /* Tamanho de fonte responsivo */
    font-weight: 700;
    color: var(--text-primary);
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    opacity: 0;
    animation: slideInUp 0.5s ease-out forwards;
}

/* Animação em cascata para os itens da lista */
.service-features li:nth-child(1) { animation-delay: 0.2s; }
.service-features li:nth-child(2) { animation-delay: 0.4s; }
.service-features li:nth-child(3) { animation-delay: 0.6s; }

.service-features i {
    color: var(--accent-primary);
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Divisória animada */
.animated-divider {
    border-color: #222;
    height: 1px;
    width: 0%;
    animation: expandWidth 1s ease-out forwards;
}

@keyframes expandWidth {
    from { width: 0%; }
    to { width: 100%; }
}
/* --- ESTILO PARA FORMULÁRIOS (ADICIONAR AO FIM DO SEU STYLE.CSS) --- */
.form-input {
    width: 100%;
    background-color: #1a1a1a;
    border: 2px solid #333;
    border-radius: 0.5rem;
    padding: 1rem;
    color: var(--text-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}