@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&family=Orbitron:wght@700;900&display=swap');

:root {
    --primary: #9D38DC;
    --primary-dark: #770ABC;
    --dark-bg: #0b0f1a;
    --card-bg: #161b26;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 15, 26, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

/* --- LINKS DE NAVEGAÇÃO (DESKTOP) --- */
.nav-links {
    position: fixed;
    top: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    list-style: none;
    z-index: 1001;
    transition: all 0.3s;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-links i {
    margin-right: 10px;
    color: #B040FF;
    filter: drop-shadow(0 0 5px rgba(176, 64, 255, 0.4));
    font-size: 0.95em;
}

.nav-links a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed !important;
        top: auto !important; 
        bottom: -100% !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
        max-height: 60vh !important;
        background: rgba(11, 15, 26, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important; /* Mantém o container no centro */
        padding: 2.5rem 1.5rem 4rem !important;
        z-index: 9999 !important;
        border-top: 2px solid rgba(176, 64, 255, 0.8) !important;
        border-bottom: 15px solid #B040FF !important;
        box-shadow: 0 -20px 60px rgba(0, 0, 0, 1), 0 0 40px rgba(176, 64, 255, 0.4) !important;
        border-radius: 40px 40px 0 0 !important;
        display: none;
    }

    .nav-links li {
        width: auto !important; /* Largura automática para alinhar pelo conteúdo */
        min-width: 200px; /* Garante uma base para o alinhamento à esquerda */
        text-align: left !important; /* Alinha o texto dentro da LI à esquerda */
    }

    .nav-links a {
        font-size: 1.3rem !important;
        padding: 0.8rem 1rem !important;
        display: flex !important;
        align-items: center;
        justify-content: flex-start !important; /* Alinha o conteúdo do link à esquerda */
    }
}

.btn-login {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 15px rgba(157, 56, 220, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(157, 56, 220, 0.5);
    background: var(--primary-dark);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
    background: radial-gradient(circle at top center, #1a103c 0%, var(--dark-bg) 70%);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom right, #fff 30%, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.services {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary);
}

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

.card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
    line-height: 1.5;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(157, 56, 220, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.product-spotlight {
    background: linear-gradient(90deg, #0f0518 0%, #1a0b2e 100%);
    padding: 6rem 2rem;
    margin: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.spotlight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.spotlight-text {
    flex: 1;
    min-width: 300px;
}

.spotlight-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.spotlight-badge {
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.spotlight-visual {
    flex: 1;
    min-width: 300px;
    background: #161b26;
    border-radius: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.fake-ui {
    width: 80%;
    height: 80%;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* --- ESTILOS DO NOVO LOGO --- */
.logo-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    transform-origin: left center;
}
.zenite-group { display: flex; align-items: baseline; margin-right: 8px; }
.big-z {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #ffffff;
    transform: scaleY(1.1); 
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    margin-right: 1px;
}
.enite-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    background: linear-gradient(90deg, #ffffff 0%, #B040FF 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}
.vega-row { display: flex; align-items: baseline; }
.vega-letters {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #B040FF; 
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(176, 64, 255, 0.5);
    margin-right: 3px;
}
.phone-a-icon {
    width: 14px;
    height: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #050505;
    border-top: 2.5px solid #B040FF;
    border-left: 2.5px solid #B040FF;
    border-right: 2.5px solid #B040FF;
    border-bottom: 2.5px solid transparent; 
    border-radius: 3px 3px 0 0;
    box-shadow: 0 -2px 10px rgba(176, 64, 255, 0.4);
    transform: translateY(1.5px); 
}
.phone-a-icon::before {
    content: '';
    position: absolute;
    top: 1.5px;
    width: 3px;
    height: 1px;
    background: #050505;
    border-radius: 0.5px;
}
.phone-cursor {
    width: 4px;
    height: 2px;
    background-color: #B040FF;
    border-radius: 1px;
    box-shadow: 0 0 5px rgba(176, 64, 255, 0.8);
    animation: blink-cursor 1s infinite step-end;
    position: absolute;
    top: 45%; 
}
@keyframes blink-cursor { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* --- Loading Spinner --- */
.spinner {
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top: 3px solid white;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

footer {
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: var(--text-muted);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 1024px) {
    nav {
        padding: 1rem 1.5rem !important;
    }
    
    .nav-links {
        position: fixed;
        top: auto !important; /* Força para não ficar preso no topo */
        bottom: -100%;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 60vh;
        background: rgba(11, 15, 26, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1.5rem 3.5rem;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999; /* Garantir que fique acima de tudo */
        border-top: 2px solid rgba(176, 64, 255, 0.8);
        border-bottom: 12px solid #B040FF; /* Neon roxo bem grosso na base */
        box-shadow: 0 -20px 60px rgba(0, 0, 0, 1), 0 0 40px rgba(176, 64, 255, 0.4);
        border-radius: 40px 40px 0 0;
    }

    .nav-links.active {
        bottom: 0 !important;
        top: auto !important;
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        width: 100%;
        color: #fff;
    }

    .mobile-menu-icon {
        display: block;
    }

    .hero-content h1 { font-size: 2.8rem; }
    
    .header-right {
        gap: 1rem;
    }

    .btn-login {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    
    .btn-login {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .header-right {
        gap: 0.8rem;
    }
    
    .logo-row {
        transform: scale(0.85);
        transform-origin: left center;
    }
}

@media (max-width: 768px) {
    .spotlight-container { flex-direction: column; text-align: center; }
}
