:root {
    --primary: #00f0ff; /* Ciano Neon (Cyberpunk/Tech Style) */
    --primary-dark: #00bcd4;
    --dark-bg: #050505; /* Preto Quase Absoluto */
    --dark-surface: #0a0a0a;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Cores de Texto */
    --text-main: #ffffff;
    --text-muted: #9ca3af;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main) !important;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Utilitários de Texto */
.text-gradient {
    background: linear-gradient(90deg, #ffffff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.ls-3 { letter-spacing: 3px; }
.font-monospace { font-family: 'JetBrains Mono', monospace !important; }
.text-light-gray { color: #d1d5db !important; }

/* Layout Full Width Customizado */
.container-fluid-custom {
    padding-left: 4%;
    padding-right: 4%;
    max-width: 1920px;
    margin: 0 auto;
}

/* Top Bar */
.top-bar {
    background-color: #000;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.75rem;
}
.hover-white:hover { color: white !important; }

/* Navbar */
.glass-nav {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}
.brand-icon {
    width: 40px; height: 40px;
    background: var(--primary);
    color: #000;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}
.nav-link {
    color: #e5e7eb !important;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: 0.3s;
}
.nav-link:hover { color: var(--primary) !important; }

/* Hero Section */
.hero-full {
    min-height: 90vh;
    background-color: #000;
    position: relative;
    display: flex;
    align-items: center;
}
/* Fundo tecnológico abstrato */
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
        url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}
.display-2 { font-weight: 800; letter-spacing: -2px; }

/* Botões Neon */
.btn-primary {
    background-color: var(--primary);
    border: none;
    color: #000;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #fff;
    box-shadow: 0 0 20px var(--primary);
    transform: translateY(-2px);
}
.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}

/* Cards de VPS (Estilo Industrial) */
.bg-dark-1 { background-color: #080808; }
.bg-dark-2 { background-color: #0f0f0f; }

.pricing-card-pro {
    transition: 0.3s;
    background: linear-gradient(145deg, #0f0f0f, #0a0a0a);
}
.pricing-card-pro:hover {
    border-color: var(--primary) !important;
    transform: translateY(-5px);
}
.specs-list-pro li {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

/* Tabela Dedicados (Enterprise) */
.custom-table-pro {
    border: 1px solid var(--border-color);
}
.custom-table-pro th {
    background-color: #111;
    border-bottom: 2px solid #222;
    color: var(--text-muted);
    font-weight: 600;
}
.custom-table-pro td {
    background-color: #0a0a0a;
    border-bottom: 1px solid #222;
    vertical-align: middle;
}
.custom-table-pro tr:hover td {
    background-color: #151515;
}
.server-icon-sm {
    width: 32px; height: 32px;
    background: #222;
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
}

/* Infrastructure Boxes */
.infra-box {
    transition: 0.3s;
    cursor: default;
}
.infra-box:hover {
    background-color: #111;
}
.infra-box i {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

/* Footer */
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: 0.2s; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

/* Partners Logos Grayscale */
.grayscale-logos img {
    filter: grayscale(100%) brightness(0.7);
    transition: 0.3s;
    opacity: 0.6;
}
.grayscale-logos img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Correção de Cores Bootstrap */
h1, h2, h3, h4, h5, h6 { color: #fff !important; }
.text-muted { color: #737373 !important; }
input::placeholder { color: #555 !important; }
.form-control { color: #fff !important; background: #111 !important; border-color: #333 !important; }
.form-control:focus { border-color: var(--primary) !important; box-shadow: none !important; }

/* Icon Square */
.icon-sq {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container-fluid-custom { padding-left: 15px; padding-right: 15px; }
    .display-2 { font-size: 2.5rem; }
    .hero-full { padding-top: 80px; padding-bottom: 50px; text-align: center; }
    .hero-full .d-flex { justify-content: center; }
}