/* --- RESET & VARIABLES --- */
:root {
    --bg-dark: #050a14;
    --bg-card: #0f172a;
    --primary-blue: #00d4ff; /* Azul Ciano Vívido */
    --secondary-blue: #2563eb; /* Azul Royal Tech */
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    --grid-color: rgba(0, 212, 255, 0.05);
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth; /* A mágica da suavidade nativa */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

h1, h2, h3, .logo { font-family: 'Space Grotesk', sans-serif; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- BACKGROUND ANIMATION (BLUEPRINT EFFECT) --- */
.bg-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    perspective: 500px;
    transform-style: preserve-3d;
    z-index: -1;
    overflow: hidden;
}

.bg-grid::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 80%);
}

.moving-plane {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: rotateX(60deg);
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: rotateX(60deg) translateY(0); }
    100% { transform: rotateX(60deg) translateY(60px); }
}

/* --- HEADER GLASSMORPHISM --- */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    background: rgba(5, 10, 20, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-white);
    
    /* ADIÇÕES PARA ALINHAMENTO */
    display: flex;
    align-items: center; /* Centraliza verticalmente imagem e texto */
    gap: 10px;           /* Espaço entre a logo e o texto */
    cursor: pointer;     /* Indica que é clicável (home) */
}

.logo span { color: var(--primary-blue); }

/* Nova classe para garantir que Eng e Pro fiquem colados */
.logo-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-white);
    line-height: 1;  /* Garante alinhamento vertical perfeito */
}

.logo-text span { 
    color: #475E88; 
}
/* ESTILO DA IMAGEM DA LOGO */
.logo-icon {
    height: 50px; /* Tamanho controlado para caber no header de 80px */
    width: auto;  /* Mantém a proporção */
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.3)); /* Brilho sutil azul */
    transition: transform 0.6s ease;
}

/* EFEITO EXTRA: Gira a engrenagem ao passar o mouse */
.logo:hover .logo-icon {
    transform: rotate(90deg);
}

nav ul { display: flex; gap: 2rem; align-items: center; }

nav a {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

nav a:hover { color: var(--primary-blue); }

.btn-nav {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--primary-blue);
    border-radius: 4px;
    color: var(--primary-blue);
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--primary-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}
















/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden; /* Garante que nada vaze */
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.cta-group { display: flex; gap: 1rem; }

/* --- UPDATED BUTTONS (SMOOTHER HOVER) --- */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- CANVAS NETWORK VISUAL --- */
.hero-visual {
    position: relative;
    width: 600px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible; /* Permite que as partículas saiam um pouco se necessário */
}

#networkCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    /* Máscara radial para que as partículas sumam suavemente nas bordas */
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%);
}

/* --- STATUS CARD OVERLAY --- */
.status-card {
    position: relative;
    z-index: 2;
    width: 280px;
    background: rgba(15, 23, 42, 0.6); /* Mais translúcido */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeUp {
    to { transform: translateY(0); opacity: 1; }
}

.status-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-dot {
    width: 8px; height: 8px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-blue);
}

.status-dot.pulse {
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    70% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

.status-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.metric { display: flex; flex-direction: column; gap: 5px; }

.metric .label {
    font-size: 0.75rem; color: var(--text-gray);
}

.metric .value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.loading-bar {
    width: 100%; height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    position: absolute;
    left: 0; top: 0; height: 100%; width: 40%;
    background: var(--primary-blue);
    border-radius: 2px;
    animation: loadScan 3s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary-blue);
}

@keyframes loadScan {
    0% { left: -40%; width: 40%; }
    50% { left: 100%; width: 20%; }
    100% { left: -40%; width: 40%; }
}

















/* --- SECTION: HOW IT WORKS --- */
.how-it-works {
    padding: 100px 5%;
    background-color: var(--bg-dark);
    position: relative;
    z-index: 10; /* Garante que fique acima do grid animado se precisar */
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-top: 15px;
}

/* Container dos Steps */
.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

/* Linha conectora (o "fio" que liga os cards) */
.connection-line {
    position: absolute;
    top: 50px; /* Alinhado com os ícones */
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.05) 0%, 
        var(--primary-blue) 50%, 
        rgba(255,255,255,0.05) 100%);
    z-index: 0;
    opacity: 0.3;
}

/* O Card do Passo */
.step-card {
    background: rgba(15, 23, 42, 0.4); /* Fundo sutil */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    flex: 1;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden; /* Para o número grande não vazar */
}

/* Efeito Hover no Card */
.step-card:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Ícone do Passo */
.step-icon {
    width: 60px; height: 60px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 5px var(--bg-dark); /* Cria um "espaço" na linha conectora */
}

.step-card:hover .step-icon {
    background: var(--primary-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-blue);
}

/* Tipografia do Card */
.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    position: relative; z-index: 2;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    position: relative; z-index: 2;
}

/* Número Gigante de Fundo (01, 02...) */
.step-number {
    position: absolute;
    top: -20px; right: -10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03); /* Quase invisível */
    z-index: 1;
    transition: all 0.4s ease;
}

.step-card:hover .step-number {
    color: rgba(0, 212, 255, 0.1); /* Acende levemente azul no hover */
    transform: translateX(-10px);
}







/* --- SECTION: BENEFITS (DUAL SYSTEM) --- */
.benefits-section {
    padding: 80px 5%;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #080f1e 100%);
}

.dual-grid {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px; /* Altura fixa para permitir o efeito de esticar */
}

/* O Card Base */
.benefit-card {
    flex: 1; /* Ambos começam com tamanho igual */
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.5);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Animação muito suave */
    cursor: default;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

/* Efeito Elástico: O card com hover cresce, o outro encolhe naturalmente */
.benefit-card:hover {
    flex: 1.5; /* Cresce 50% */
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Background Tecnológico interno */
.card-bg-effect {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at top right, rgba(0, 212, 255, 0.05), transparent 60%);
    opacity: 0.5;
    z-index: 0;
    transition: 0.5s;
}

.benefit-card:hover .card-bg-effect {
    opacity: 1;
    background-image: radial-gradient(circle at top right, rgba(0, 212, 255, 0.1), transparent 70%);
}

.card-content {
    position: relative;
    z-index: 2;
    max-width: 400px; /* Limita largura do texto para não esticar demais */
}

/* Ícones e Títulos */
.card-icon {
    width: 50px; height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.subtitle {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

/* --- LISTA TIPO "TECH SPECS" --- */
.specs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.spec-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-white);
}

.spec-value.success {
    color: #22c55e; /* Verde Tech para status "OK" */
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

/* Botão Link com Seta */
.link-arrow {
    font-weight: 600;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.link-arrow:hover {
    gap: 15px; /* Seta anda para direita */
    color: #fff;
}






/* --- SECTION: PROFESSIONALS (TALENT STACK) --- */
.professionals-section {
    padding: 80px 5%;
    background-color: var(--bg-dark);
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsivo automático */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.talent-card {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho lateral no hover */
.talent-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--primary-blue);
    opacity: 0;
    transition: 0.3s;
}

.talent-card:hover {
    transform: translateY(-5px);
    background: rgba(15, 23, 42, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.2);
}

.talent-card:hover::before { opacity: 1; }

/* Cabeçalho do Card */
.card-header-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-header-icon svg { color: var(--primary-blue); }

.card-header-icon h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

/* Tags Container (Parece código) */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* A Tag individual (Estilo Pílula Tech) */
.pro-tag {
    font-size: 0.8rem;
    font-family: 'Space Grotesk', monospace; /* Fonte técnica */
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.2s;
    cursor: default;
}

/* Hover na Tag individual */
.talent-card:hover .pro-tag {
    border-color: rgba(0, 212, 255, 0.2);
    color: var(--text-white);
}

.pro-tag:hover {
    background: rgba(0, 212, 255, 0.1) !important;
    color: var(--primary-blue) !important;
    transform: scale(1.05);
}

/* Destaque especial para Desenho/Projetos (Área chave) */
.talent-card.highlight:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.pro-tag.highlight {
    background: rgba(0, 212, 255, 0.05);
    color: #fff;
}








/* --- SECTION: FAQ (TERMINAL STYLE) --- */
.faq-section {
    padding: 100px 5%;
    max-width: 900px; /* Mais estreito para leitura fácil */
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* O Bloco da Pergunta */
.faq-item {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Estado Ativo (Aberto) */
.faq-item.active {
    border-color: var(--primary-blue);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

/* Botão que dispara a ação */
.faq-trigger {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-trigger:hover {
    color: var(--primary-blue);
}

/* Ícone de Seta (Chevron) */
.chevron {
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

/* Conteúdo da Resposta (Animação de Slide) */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: -1px; /* Cola na borda de cima */
}

/* --- SUPPORT LINK (STATUS BAR STYLE) --- */
.faq-footer {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.support-link strong { color: var(--text-white); }

.support-link:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Indicador Pulsante (Verde Tech) */
.status-indicator {
    position: relative;
    width: 10px; height: 10px;
    display: flex; align-items: center; justify-content: center;
}

.pulse-dot {
    width: 8px; height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.status-indicator::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background-color: #22c55e;
    border-radius: 50%;
    opacity: 0.5;
    animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}









/* --- FOOTER (SOLID BLACK) --- */
.site-footer {
    position: relative;
    background-color: #000000; /* Preto Puro */
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Linha sutil para separar */
    padding-top: 80px;
    margin-top: 100px;
}

/* Removemos o Grid e o Brilho Azul para ficar "apenas preto" */
.footer-grid-bg, .site-footer::after {
    display: none;
}

/* Pre-Footer CTA */
.footer-cta {
    text-align: center;
    margin-bottom: 80px;
}

.footer-cta h2 {
    font-size: 3rem;
    color: #ffffff; /* Texto Branco Sólido */
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.btn-text {
    color: var(--text-gray);
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.btn-text:hover { color: var(--text-white); border-color: var(--text-white); }

/* Conteúdo Principal */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 5%;
    gap: 40px;
}

.footer-brand {
    flex: 2;
    min-width: 300px;
}

.footer-brand p {
    margin-top: 20px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 300px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-gray);
    transition: 0.3s;
    background: #000; /* Garante fundo preto */
}

.social-links a:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Links das Colunas */
.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-links ul li { margin-bottom: 12px; }

.footer-links a {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

/* --- SYSTEM BAR (BOTTOM) --- */
.system-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Space Grotesk', monospace;
    font-size: 1rem;
    color: #64748b;
    background: #000000; /* Preto Puro */
}

.system-right {
    display: flex;
    gap: 20px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-item strong { color: var(--text-gray); } /* Suavizei o branco para cinza claro */

/* Indicador Verde Discreto */
.indicator {
    width: 6px; height: 6px;
    border-radius: 50%;
    background-color: #22c55e;
}












/* --- WHATSAPP FLOATING BUTTON --- */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Verde Oficial WhatsApp */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Garante que fique acima de TUDO */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    
    /* Animação de Entrada */
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s backwards;
}

/* Efeito Hover (Cresce e Sobe) */
.wa-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6); /* Sombra Verde Neon */
}

/* Tooltip (Texto "Consultor Online") */
.wa-tooltip {
    position: absolute;
    right: 70px; /* À esquerda do botão */
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Animação de "Pulso" (Sinal emitindo) */
.wa-float::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}


span.btn-primary,
span.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    user-select: none;
}