/* DEFINIÇÕES GERAIS E CORES (Paleta da Logo) */
:root {
    --bg-color: #050509; /* Quase preto, para destacar o neon */
    --card-bg: #0c0c16;  /* Um pouco mais claro que o fundo */
    --text-primary: #e0e6ed;
    --text-secondary: #a0aec0;
    --neon-blue: #00ffff; /* Ciano puro para o efeito neon */
    --neon-blue-glow: rgba(0, 255, 255, 0.4);
    --header-bg: rgba(10, 10, 20, 0.95);
    --font-main: 'Poppins', sans-serif;
    --font-mono: 'Space Mono', monospace; /* Para um toque mais tech */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tipografia Moderna */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.meulogo{
    width: 350px;
}

/* HEADER & NAVEGAÇÃO (Efeito Moderno e Transparente) */
#header {
    height: 80px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--header-bg);
    backdrop-filter: blur(10px); /* Efeito de vidro jateado moderno */
    position: fixed; /* Fixado no topo */
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px; /* Ajuste conforme necessário */
    width: auto;
}

#logo {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue-glow); /* Efeito neon no texto */
}

#menu {
    display: flex;
    gap: 1rem;
}

#menu a {
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
}

#menu a:hover {
    color: var(--neon-blue);
    background: rgba(0, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

/* CONTEÚDO PRINCIPAL E LAYOUT */
.content-container {
    max-width: 1200px;
    margin: 100px auto 40px; /* Margin top para compensar o header fixo */
    padding: 0 1rem;
}

/* Seção Hero (Destaque Inicial) */
#hero {
    text-align: center;
    padding: 60px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

#hero h1 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Botão Principal Neon */
.btn-neon {
    margin-top: 20px;
    padding: 15px 30px;
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    font-family: var(--font-mono);
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    box-shadow: 0 0 10px var(--neon-blue-glow);
}

.btn-neon:hover {
    background: var(--neon-blue);
    color: var(--bg-color);
    box-shadow: 0 0 25px var(--neon-blue);
}

/* Estilos do Modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--card-bg);
    margin: 5% auto;
    padding: 30px;
    border: 1px solid var(--neon-blue);
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.close {
    color: var(--text-secondary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover { color: var(--neon-blue); }

/* Estilo do Formulário */
#formTelegram { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }

#formTelegram input, #formTelegram select, #formTelegram textarea {
    padding: 12px;
    background: #151525;
    border: 1px solid #333;
    color: white;
    border-radius: 5px;
    font-family: var(--font-main);
}

#formTelegram input:focus, #formTelegram select:focus {
    border-color: var(--neon-blue);
    outline: none;
}

#btnEnviar {
    padding: 15px;
    background: var(--neon-blue);
    border: none;
    color: var(--bg-color);
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

#statusMensagem { margin-top: 15px; text-align: center; font-size: 0.9rem; }
.sucesso { color: #00ff88; }
.erro { color: #ff4444; }

/* Grid de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Estilo dos Cartões de Serviço (Inspirado na Logo) */
.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03); /* Borda quase invisível */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Efeito de "acender" o cartão no hover */
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.2);
    box-shadow: 0 10px 30px -10px rgba(0, 255, 255, 0.15);
}

.service-card h2 {
    color: var(--neon-blue);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue-glow);
}

.sub-service {
    margin-bottom: 1.5rem;
}

.sub-service h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
}

.sub-service ul {
    list-style: none;
    padding-left: 0;
}

.sub-service ul li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1.2rem;
}

/* Pontinho neon na lista */
.sub-service ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-weight: bold;
}

/* FOOTER */
.main-footer {
    text-align: center;
    padding: 2rem;
    background: var(--header-bg);
    margin-top: 40px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.main-footer p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* RESPONSIVIDADE (Ajustes para Celular) */
#btn-mobile {
    display: none;
    padding: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--neon-blue);
}

@media(max-width: 800px) {
    #hero h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {
    #header {
        padding: 0 1rem;
    }

    #logo {
        font-size: 1.3rem;
    }

    #btn-mobile {
        display: flex;
    }

    #menu {
        display: block;
        position: absolute;
        width: 100%;
        top: 80px;
        right: 0;
        background: var(--header-bg);
        height: 0;
        transition: height 0.6s ease;
        z-index: 1000;
        visibility: hidden;
        overflow-y: hidden;
        border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    }

    #nav.active #menu {
        height: calc(100vh - 80px);
        visibility: visible;
        overflow-y: auto;
    }

    #menu a {
        padding: 1rem;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 0;
        display: block;
    }
    
    #hamburger {
        display: block;
        border-top: 2px solid;
        width: 20px;
        color: currentColor;
    }

    #hamburger::after, #hamburger::before {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: transform 0.3s;
    }
    
    /* Animação do Hamburger (Opcional, mas moderno) */
    #nav.active #hamburger {
        border-top-color: transparent;
    }
    #nav.active #hamburger::before {
        transform: rotate(135deg);
    }
    #nav.active #hamburger::after {
        transform: rotate(-135deg);
        margin-top: -7px;
    }
}