/* CSS do projeto da Landing Page UNU Marketing - Nível Awwwards Premium (Expandido e Corrigido) */
:root {
    --primary: #1A73E8;      /* Azul Corporativo Nexus */
    --primary-dark: #0D47A1;
    --bg-color: #000000;     /* Preto 100% */
    --surface: rgba(255, 255, 255, 0.03);
    --surface-glass: rgba(20, 25, 35, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --text-primary: #FFFFFF;
    --text-secondary: #8A92A6;
    
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

h1, h2, h3, h4 { font-family: var(--font-heading); }
h1 br, h2 br, .section-title br, .massive-title br, .hero-headline br {
    display: none !important;
}
/* Mas manter <br> dentro de h3 (títulos de cards) para não vazar texto */
.infra-pillar-title br, .np-title br, .case-info h3 br, .feature-text h3 br {
    display: inline !important;
}
/* Forçar exibição instantânea sem animações de entrada */
.reveal-up {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: none !important;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--bg-color);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* FUNDO ANIMADO GLOBAL (AURORAS) */
.ambient-background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; overflow: hidden; pointer-events: none;
}
.aurora-band {
    position: absolute; border-radius: 50%;
    filter: blur(90px); -webkit-filter: blur(90px); opacity: 0.6;
}
.band-1 {
    width: 60%; height: 60%; background: rgba(24, 119, 242, 0.08);
    top: -10%; left: -10%; animation: auroraFloat 20s infinite ease-in-out alternate;
}
.band-2 {
    display: none; /* Removido para que o degradê termine em preto no canto inferior direito */
}
.band-3 {
    width: 80%; height: 40%; background: rgba(0, 255, 153, 0.03);
    top: 30%; left: 10%; animation: auroraPass 30s infinite linear;
}

@keyframes auroraFloat {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(10%, 10%) scale(1.2) rotate(45deg); }
    100% { transform: translate(-5%, 15%) scale(0.9) rotate(90deg); }
}
@keyframes auroraPass {
    0% { transform: translateX(-50%) rotate(-20deg); }
    50% { transform: translateX(50%) rotate(10deg); }
    100% { transform: translateX(-50%) rotate(-20deg); }
}

/* ONDAS DIGITAIS (DATA WAVES) */
.ambient-wave {
    position: absolute; top: 30%; left: 0; width: 200%; height: 50%;
    animation: waveDrift 30s infinite linear alternate;
    opacity: 0.5;
}
.wave-path { stroke-dasharray: 12 12; animation: dashMove 30s infinite linear; }

@keyframes waveDrift {
    0% { transform: translateX(0) scaleY(1); }
    100% { transform: translateX(-50vw) scaleY(1.3); }
}
@keyframes dashMove {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 1000; }
}

/* FIBRA ÓTICA (DATA STREAMS / FLASHES) */
/* Disable comet-like data streams in the Mecânica de Operação (funnel section) */
.funnel-section .data-stream { display: none; }
    position: absolute;
    width: 150px; height: 2px;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.8));
    opacity: 0;
}
.d-1 { top: 15%; left: 0%; background: linear-gradient(90deg, transparent, #1877F2, #fff); animation: shootData 6s infinite linear; }
.d-2 { top: 45%; left: 0%; background: linear-gradient(90deg, transparent, #8A2BE2, #fff); animation: shootData 8s infinite linear 2s; }
.d-3 { top: 75%; left: 0%; background: linear-gradient(90deg, transparent, #00FF99, #fff); animation: shootData 5s infinite linear 4s; }
.d-4 { top: 25%; left: 0%; background: linear-gradient(90deg, transparent, #1877F2, #fff); animation: shootData 9s infinite linear 1s; }
.d-5 { top: 85%; left: 0%; background: linear-gradient(90deg, transparent, #8A2BE2, #fff); animation: shootData 7s infinite linear 3s; }

@keyframes shootData {
    0% { transform: rotate(-15deg) translateX(-20vw); opacity: 0; }
    10% { opacity: 1; }
    50% { opacity: 1; }
    100% { transform: rotate(-15deg) translateX(120vw); opacity: 0; }
}

/* TEMA CLARO (Alternância de Seções) */
.light-theme {
    background-color: #F2F4F7 !important; /* Cinza claro elegante que faz o branco brilhar */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(24, 119, 242, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.06) 0%, transparent 40%),
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px) !important;
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px !important;
    background-position: center center !important;
    color: #0A0A0A;
    --bg-color: #F2F4F7;
    --text-primary: #0A0A0A;
    --text-secondary: #5A6270;
    --border-color: rgba(0, 0, 0, 0.08);
}
.light-theme .text-gradient { background: linear-gradient(90deg, var(--primary), #8A2BE2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.light-theme .glass-card { background: #ffffff; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.03); backdrop-filter: none; -webkit-backdrop-filter: none; }
.light-theme .glass-card:hover { border-color: var(--primary); box-shadow: 0 15px 40px rgba(24,119,242,0.1); transform: translateY(-5px); }
.light-theme .t-logo { filter: grayscale(100%) opacity(0.4); color: #000; }
.light-theme .t-logo:hover { filter: grayscale(0%) opacity(1); }

::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; position: relative; z-index: 2; }
.mb-80 { margin-bottom: 80px; }
.mt-40 { margin-top: 40px; }
.mt-20 { margin-top: 20px; }
.text-center { text-align: center; }

/* Header */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 30px 0; transition: transform 0.4s ease, background 0.3s ease, padding 0.3s ease, top 0.4s ease;
    /* mix-blend-mode removido para permitir o efeito de vidro fosco real */
}
.header.scrolled {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.header-hidden {
    top: -150px;
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.unu-logo-img { height: 45px; width: auto; max-width: 250px; object-fit: contain; transition: var(--transition-smooth); }
.header.scrolled .unu-logo-img { height: 35px; }

.theme-toggle {
    background: transparent; border: none;
    color: var(--text-secondary); border-radius: 50px; padding: 10px;
    font-size: 18px; cursor: pointer; transition: var(--transition-smooth);
    display: flex; align-items: center; justify-content: center;
}
.theme-toggle:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); transform: scale(1.1); }

/* Tipografia e Botões */
.text-gradient {
    background: linear-gradient(90deg, #FFFFFF, var(--primary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.massive-text {
    font-size: 10vw; font-weight: 900; line-height: 0.9; letter-spacing: -0.04em;
    text-transform: uppercase;
}
.cta-button {
    font-family: var(--font-heading); font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 18px 40px; border-radius: 100px; cursor: pointer;
    transition: var(--transition-smooth); border: none;
}
.outline-btn { background: #0a0a0a; color: #ffffff !important; border: 1px solid #0a0a0a; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.outline-btn:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3); }
.primary-btn { background: var(--primary); color: #fff; position: relative; overflow: hidden; }
.primary-btn::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: left 0.5s;
}
.primary-btn:hover::before { left: 100%; }

/* Glass Card Global */
.glass-card {
    background: var(--surface-glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color); border-radius: 24px; padding: 50px;
    transition: var(--transition-smooth);
}
.glass-card:hover { border-color: rgba(24, 119, 242, 0.4); transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }

/* HERO SECTION (NEXUS SPLIT LAYOUT) */
.hero-section { padding: 100px 0 100px 0; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-bg-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; opacity: 0.15; z-index: 0;
}
.hero-glow {
    position: absolute; width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(26,115,232,0.15) 0%, transparent 70%);
    top: 50%; left: 0%; transform: translate(-30%, -50%); pointer-events: none; z-index: 0;
}
.hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 2; width: 100%; }
.hero-content { position: relative; z-index: 2; text-align: left; }
.nexus-editorial-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    padding-bottom: 6px;
    margin-bottom: 20px;
    position: relative;
}
.nexus-editorial-tag::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px;
    background: linear-gradient(90deg, #1877F2, #00E676);
}
.hero-badge { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-secondary); }
.hero-headline { font-size: clamp(32px, 4vw, 55px); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 30px; }
.hero-provocation { max-width: 600px; margin: 0 0 50px 0; display: flex; flex-direction: column; gap: 15px; }
.h-provoke { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.5; text-align: left; border-left: 3px solid var(--primary); padding-left: 20px; font-style: italic; background: linear-gradient(90deg, rgba(255,255,255,0.03), transparent); padding: 15px 20px; border-radius: 0 12px 12px 0; }
.h-explain { font-size: 16px; color: var(--text-secondary); line-height: 1.8; text-align: left; padding-left: 24px; }
.h-explain strong { color: #fff; font-weight: 700; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-note { font-size: 12px; color: var(--text-secondary); letter-spacing: 0.05em; opacity: 0.6; }

/* NEXUS HERO VISUAL RIGHT */
.hero-visual { position: relative; width: 100%; height: 550px; perspective: 1000px; }
.hero-visual-card {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--surface-glass); border: 1px solid rgba(26,115,232,0.3); border-radius: 30px;
    overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.05);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}
.hero-visual-card:hover { transform: rotateY(0deg) rotateX(0deg); }
.hero-visual-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; mix-blend-mode: luminosity; }
.hero-floating-element {
    position: absolute; bottom: 40px; left: -40px; background: #0D0D0D;
    border: 1px solid rgba(26,115,232,0.5); padding: 25px; border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8); display: flex; align-items: center; gap: 20px;
    animation: floatUp 4s infinite ease-in-out alternate; z-index: 3;
}
.hero-floating-element h4 { color: #fff; font-size: 14px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.hero-floating-element span { color: var(--primary); font-size: 32px; font-weight: 800; font-family: var(--font-heading); }
@keyframes floatUp { 0% { transform: translateY(0); } 100% { transform: translateY(-20px); } }

@media (max-width: 991px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; padding-top: 40px; }
    .hero-content { text-align: center; }
    .h-provoke, .h-explain { text-align: center; border-left: none; padding-left: 0; }
    .h-provoke { border-top: 3px solid var(--primary); border-radius: 0; background: transparent; padding-top: 15px; }
    .hero-provocation { margin: 0 auto 40px auto; }
    .hero-actions { justify-content: center; flex-direction: column; }
    .hero-visual { height: 400px; margin-top: 40px; }
    .hero-visual-card { transform: none; }
    .hero-floating-element { left: 20px; bottom: -20px; }
}

/* TRUSTED BY (LOGOS COLORIDOS) */
.trusted-section { padding: 60px 0 100px; border-bottom: 1px solid var(--border-color); text-align: center; }
.trusted-title { color: var(--text-secondary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 50px; font-weight: 700; }
.trusted-logos-colored { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.brand-badge { 
    display: inline-flex; align-items: center; gap: 10px; 
    padding: 12px 24px; border-radius: 50px; 
    background: #fff; border: 1px solid rgba(0,0,0,0.06);
    font-size: 16px; font-weight: 700; color: #111;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    cursor: pointer;
}
.brand-badge:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }

/* Cores das Marcas (CSS Puro) */
.google-partner { color: #444; }
.google-partner .brand-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: -5px; }
.g-blue { background: #4285F4; } .g-red { background: #EA4335; } .g-yellow { background: #FBBC05; } .g-green { background: #34A853; margin-right: 5px !important; }

.meta-biz { color: #0668E1; border-color: rgba(6, 104, 225, 0.2); }
.meta-biz .brand-icon { font-size: 22px; font-weight: 900; line-height: 1; }

.tiktok-ads { color: #000; border-color: rgba(0,0,0,0.2); }
.tk { color: #000; text-shadow: 2px 2px 0px rgba(0,242,254,0.6), -2px -2px 0px rgba(254,9,121,0.6); font-weight: bold; font-size: 18px; }

.shopify-brand { color: #95BF47; border-color: rgba(149, 191, 71, 0.3); }
.sp { background: #95BF47; color: #fff; padding: 2px 6px; border-radius: 6px; font-size: 13px; font-weight: 900; }

.rd-station { color: #1F2B49; border-color: rgba(31, 43, 73, 0.2); }
.rd { background: #1F2B49; color: #fff; padding: 2px 6px; border-radius: 6px; font-size: 13px; font-weight: 900; }

.google-ads { color: #4285F4; border-color: rgba(66, 133, 244, 0.2); }
.ga { background: #4285F4; color: #fff; padding: 2px 6px; border-radius: 6px; font-size: 13px; font-weight: 900; }

.google-analytics { color: #E37400; border-color: rgba(227, 116, 0, 0.2); }
.gan { background: #E37400; color: #fff; padding: 2px 6px; border-radius: 6px; font-size: 13px; font-weight: 900; }

.google-search { color: #4285F4; border-color: rgba(66, 133, 244, 0.2); }
.gsc { background: #4285F4; color: #fff; padding: 2px 6px; border-radius: 6px; font-size: 13px; font-weight: 900; }

.custom-crm { color: #333; border-color: rgba(51, 51, 51, 0.2); }
.crm { background: linear-gradient(90deg, #1877F2, #8A2BE2); color: #fff; padding: 2px 6px; border-radius: 6px; font-size: 13px; font-weight: 900; }

/* SEÇÃO: Realidade */
.reality-section { padding: 150px 0; }
.reality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.section-title { font-size: clamp(32px, 4vw, 50px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.02em; }
.section-desc { font-size: 16px; color: var(--text-secondary); line-height: 1.8; max-width: 600px; margin-left: auto; margin-right: auto; }
.reality-text-col { align-self: center; }
.card-number { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 15px; }
.reality-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 15px; }
.reality-card p { color: var(--text-secondary); font-size: 16px; line-height: 1.6; }

/* SEÇÃO: OS DOIS PILARES */
.pillars-section { padding: 150px 0; background: rgba(255,255,255,0.01); border-top: 1px solid var(--border-color); }
.research-fact { max-width: 900px; margin: 0 auto 80px; text-align: left; position: relative; border-left: 4px solid var(--primary); }
.research-badge { display: inline-block; padding: 4px 12px; background: rgba(24,119,242,0.1); color: var(--primary); font-size: 12px; font-weight: 700; text-transform: uppercase; border-radius: 4px; margin-bottom: 20px; }
.research-fact h4 { font-size: 26px; font-weight: 800; line-height: 1.3; margin-bottom: 20px; color: #fff; }
.research-fact p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }

/* G1 NEWS MOCKUP (Print Realista) */
.g1-mockup {
    max-width: 850px; margin: 0 auto 80px;
    background: #FFFFFF; border-radius: 8px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    font-family: Arial, Helvetica, sans-serif;
    text-align: left; position: relative; z-index: 5;
}
.g1-header {
    background: #C4170C; padding: 15px 30px;
    display: flex; align-items: center; gap: 20px;
}
.g1-logo { font-size: 38px; font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1; }
.g1-category { color: #fff; font-size: 14px; font-weight: 700; opacity: 0.9; margin-top: 5px; }

.g1-content { padding: 50px; }
.g1-title { font-size: 42px; font-weight: 800; color: #333; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.g1-subtitle { font-size: 20px; color: #555; line-height: 1.4; margin-bottom: 30px; }

.g1-meta {
    border-top: 1px solid #EEE; border-bottom: 1px solid #EEE;
    padding: 15px 0; margin-bottom: 35px;
    display: flex; flex-direction: column; gap: 5px;
}
.g1-meta span { font-size: 14px; color: #C4170C; font-weight: bold; }
.g1-meta time { font-size: 13px; color: #888; }

.g1-body p { font-size: 18px; color: #333; line-height: 1.6; margin-bottom: 20px; }
.g1-body strong { font-weight: bold; color: #000; }
.g1-quote {
    border-left: 4px solid #C4170C; padding-left: 20px;
    margin: 35px 0; font-size: 24px; color: #111;
    font-style: italic; font-weight: 600; line-height: 1.4;
}

@media (max-width: 768px) {
    .g1-content { padding: 25px; }
    .g1-title { font-size: 32px !important; }
    .g1-subtitle { font-size: 18px !important; }
    .g1-body p { font-size: 16px !important; }
    .g1-quote { font-size: 20px; }
}
.pillars-grid { display: flex; align-items: center; justify-content: space-between; gap: 80px; }
.pillar-card { flex: 1; padding: 40px; }
.pillar-number { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.pillar-card h3 { font-size: 26px; font-weight: 800; margin-bottom: 15px; line-height: 1.3; }
.pillar-card p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }
.pillar-center-image { flex: 0.8; display: flex; justify-content: center; align-items: stretch; }

/* CONEXÃO VISUAL DOS PILARES (CARDS) */
.p-card-1 { border-left: 3px solid #1877F2; background: linear-gradient(90deg, rgba(24,119,242,0.05), transparent); }
.p-card-1:hover { border-color: #1877F2; box-shadow: 0 10px 40px rgba(24,119,242,0.15); }
.c-blue { color: #1877F2 !important; }

.p-card-2 { border-right: 3px solid #8A2BE2; background: linear-gradient(-90deg, rgba(138,43,226,0.05), transparent); text-align: right; }
.p-card-2:hover { border-color: #8A2BE2; box-shadow: 0 10px 40px rgba(138,43,226,0.15); }
.c-purple { color: #8A2BE2 !important; }

/* --- SEÇÃO DO MÉTODO: MONOLITOS (PILARES ELEGANTES) --- */
.human-method-grid {
    display: grid;
    grid-template-columns: 1fr 240px 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1100px) {
    .human-method-grid { grid-template-columns: 1fr; gap: 30px; }
    .human-center-block { order: -1; margin-bottom: 20px; }
}

/* CENTRO HUMANIZADO: A EMPRESA */
.human-center-block {
    display: flex; justify-content: center; align-items: center; text-align: center;
    position: relative;
}
.human-center-block::before {
    content: ''; position: absolute; top: 50%; right: 100%; width: 100vw; height: 1px;
    border-top: 1px solid rgba(255,255,255,0.15); z-index: -1;
}
.human-center-block::after {
    content: ''; position: absolute; top: 50%; left: 100%; width: 100vw; height: 1px;
    border-top: 1px solid rgba(255,255,255,0.15); z-index: -1;
}
@keyframes centerBreathe {
    0% { box-shadow: 0 15px 35px rgba(0,0,0,0.5); }
    50% { box-shadow: 0 15px 35px rgba(255,255,255,0.08), 0 0 30px rgba(255,255,255,0.05); }
    100% { box-shadow: 0 15px 35px rgba(0,0,0,0.5); }
}
.h-center-content {
    background: linear-gradient(135deg, #1A1C20, #0A0C10);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 220px; height: 220px;
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    animation: centerBreathe 4s ease-in-out infinite;
}
.h-center-subtitle { font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 4px; }
.h-center-title { font-size: 26px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 0px; }

/* MONOLITOS (PILARES DE DESIGN LIMPO) */
@keyframes pillarFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.monolith-pillar {
    border-radius: 20px;
    position: relative;
    display: flex; flex-direction: column; justify-content: flex-start;
    min-height: 480px;
    padding: 50px 40px;
    transition: transform 0.4s ease, border-color 0.4s ease;
    animation: pillarFloat 6s ease-in-out infinite;
}

.m-header { margin-bottom: 30px; }
.m-num { font-size: 80px; font-weight: 900; line-height: 1; opacity: 0.2; font-family: var(--font-heading); display: block; margin-bottom: 20px; }

.pillar-blue {
    background: linear-gradient(135deg, #083D91, #1877F2);
    box-shadow: 0 20px 40px rgba(24,119,242,0.25);
}
.pillar-green {
    background: linear-gradient(135deg, #00694B, #00E676);
    box-shadow: 0 20px 40px rgba(0,230,118,0.2);
    animation-delay: 3s;
}

.m-body h3 { font-size: 28px; font-weight: 800; line-height: 1.2; color: #fff; letter-spacing: -0.5px; margin-bottom: 20px; }
.m-body p { font-size: 16px; color: rgba(255,255,255,0.95); line-height: 1.9; font-weight: 400; letter-spacing: 0.3px; }

/* SEÇÃO: O FUNIL ESTRUTURADO */
.funnel-section { padding: 150px 0; border-top: 1px solid var(--border-color); }
.funnel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
/* Mecânica de Operação — Steps */
.funnel-steps { display: flex; flex-direction: column; gap: 0; }

.f-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    transition: none;
}

.f-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    padding-top: 2px;
}

.f-step-circle {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(26,115,232,0.18), rgba(26,115,232,0.06));
    border: 1.5px solid rgba(26,115,232,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.f-step-line {
    width: 2px;
    flex: 1;
    min-height: 28px;
    background: linear-gradient(to bottom, rgba(26,115,232,0.3), rgba(26,115,232,0.04));
    margin: 8px 0;
}

.f-step-body {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 22px 24px 20px;
    margin-bottom: 24px;
    overflow: hidden;
    flex: 1;
}

.f-step-num {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 58px;
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 1;
    color: rgba(26,115,232,0.12);
    font-family: var(--font-heading);
    user-select: none;
    pointer-events: none;
}

.f-step-body h4 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}

.f-step-body p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
}

.f-step-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 0 0 18px 18px;
}

.f-number { display: none; }
.f-step h4 { color: inherit; }
.f-step p  { color: inherit; }
/* =============================================
   FUNIL VISUAL — Novo (nz-funnel)
   ============================================= */
.nz-funnel {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 10px 0;
}

.nz-stage {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 18px 20px 18px 18px;
    overflow: hidden;
}

.nz-stage-icon {
    width: 46px;
    height: 46px;
    background: rgba(26,115,232,0.12);
    border: 1px solid rgba(26,115,232,0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nz-stage-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.nz-stage-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c, var(--primary));
    font-family: var(--font-heading);
    opacity: 0.8;
}

.nz-stage-name {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.nz-stage-sub {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.nz-stage-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1877F2;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(var(--cr, 24,119,242), 0.6);
}

.nz-stage-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #1877F2, #4a9eff);
    border-radius: 18px 0 0 18px;
}

/* Seta conectora */
.nz-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 2px 0;
    margin-left: 23px; /* alinha com centro do ícone do stage */
}

.nz-arrow-line {
    width: 2px;
    height: 18px;
    background: linear-gradient(to bottom, rgba(26,115,232,0.35), rgba(26,115,232,0.1));
}

/* Card de resultado final */
.nz-result {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(0,180,80,0.14), rgba(0,120,60,0.06));
    border: 1px solid rgba(0,200,100,0.3);
    border-radius: 18px;
    padding: 20px 20px;
    overflow: hidden;
}

.nz-result-glow {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(ellipse at 50% 120%, rgba(0,200,100,0.12), transparent 70%);
    pointer-events: none;
    animation: nzResultPulse 3s ease-in-out infinite;
}

@keyframes nzResultPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.nz-result-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00c864, #00a050);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0,200,100,0.35);
}

.nz-result-title {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 3px;
}

.nz-result-sub {
    font-size: 12.5px;
    color: rgba(0,200,100,0.8);
    line-height: 1.4;
}

/* Esconde estilos antigos não utilizados */
.css-funnel-container { display: none; }
.funnel-layer, .falling-data { display: none; }/* =============================================
   FUNIL REAL — nzfv (trapezoidal)
   ============================================= */
.nzfv {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    margin-top: 220px; /* empurra o funil para baixo */
}

.nzfv-header {
    margin-bottom: 18px;
}

.nzfv-header span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-family: var(--font-heading);
    opacity: 0.7;
}

.nzfv-layers {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Cada camada — trapézio via clip-path
   Redução de 7% por lado a cada camada:
   L1: 0%→100% / 7%→93%
   L2: 7%→93% / 14%→86%
   L3: 14%→86% / 21%→79%
   L4: 21%→79% / 28%→72%
   L5: 28%→72% / 35%→65%                */
.nzfv-layer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-bottom: -2px;
}

/* L1 — Mercado Alvo (mais larga) */
.nzfv-l1 {
    clip-path: polygon(0% 0%, 100% 0%, 93% 100%, 7% 100%);
    background: linear-gradient(160deg, #0d4fbd, #1877F2 55%, #3b8ff7);
    min-height: 82px;
    box-shadow: 0 0 40px rgba(24,119,242,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* L2 — Tráfego Gerado */
.nzfv-l2 {
    clip-path: polygon(7% 0%, 93% 0%, 86% 100%, 14% 100%);
    background: linear-gradient(160deg, #1e40af, #3730a3 55%, #4338ca);
    min-height: 72px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

/* L3 — Leads Capturados */
.nzfv-l3 {
    clip-path: polygon(14% 0%, 86% 0%, 79% 100%, 21% 100%);
    background: linear-gradient(160deg, #3730a3, #5b21b6 55%, #6d28d9);
    min-height: 64px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

/* L4 — Filtragem de Leads */
.nzfv-l4 {
    clip-path: polygon(21% 0%, 79% 0%, 72% 100%, 28% 100%);
    background: linear-gradient(160deg, #5b21b6, #7C3AED 55%, #8b5cf6);
    min-height: 58px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

/* L5 — Nutrição & Autoridade (mais estreita) */
.nzfv-l5 {
    clip-path: polygon(28% 0%, 72% 0%, 65% 100%, 35% 100%);
    background: linear-gradient(160deg, #6d28d9, #9333ea 55%, #a855f7);
    min-height: 52px;
    box-shadow: 0 0 30px rgba(147,51,234,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Conteúdo dentro de cada camada (padding acompanha o afunilamento) */
.nzfv-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 8%;
    position: relative;
    z-index: 1;
}

.nzfv-l2 .nzfv-content { padding: 10px 16%; }
.nzfv-l3 .nzfv-content { padding: 10px 23%; }
.nzfv-l4 .nzfv-content { padding: 8px 30%; }
.nzfv-l5 .nzfv-content { padding: 8px 36%; }


.nzfv-title {
    font-size: 15px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.nzfv-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.82);
    line-height: 1.3;
    white-space: nowrap;
}

/* Seta de saída */
.nzfv-exit-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 4px 0 2px;
    margin-top: 2px;
}

.nzfv-exit-line {
    width: 2px;
    height: 22px;
    background: linear-gradient(to bottom, rgba(124,58,237,0.5), rgba(0,200,100,0.4));
}

/* Card de resultado final — Design Premium */
.nzfv-result {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #001a0d 0%, #002b14 50%, #001a0d 100%);
    border: 1px solid rgba(0,210,100,0.45);
    border-radius: 18px;
    padding: 22px 24px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,200,100,0.2), inset 0 1px 0 rgba(0,255,120,0.1);
}

/* Shimmer animado que passa pela caixinha */
.nzfv-result-pulse {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 20%, rgba(0,255,120,0.08) 50%, transparent 80%);
    animation: nzShimmer 2.8s ease-in-out infinite;
    pointer-events: none;
    border-radius: 18px;
}

@keyframes nzShimmer {
    0% { left: -100%; }
    60%, 100% { left: 160%; }
}

/* Glow estático de fundo */
.nzfv-result::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(0,210,100,0.35) 0%, transparent 70%);
    pointer-events: none;
    animation: nzResultPulse 3s ease-in-out infinite;
}

/* Ícone reformulado */
.nzfv-result-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #00c864 0%, #00a050 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 24px rgba(0,200,100,0.6), 0 4px 12px rgba(0,0,0,0.3);
    border: 1px solid rgba(0,255,130,0.3);
}

/* Texto do resultado */
.nzfv-result-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.nzfv-result-title {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: -0.3px;
}

.nzfv-result-sub {
    font-size: 12.5px;
    color: rgba(0,230,110,0.75);
    line-height: 1.4;
}



/* Responsive */
@media (max-width: 900px) {
    .nzfv-desc { display: none; }
    .nzfv-l1 { min-height: 66px; }
    .nzfv-l2 { min-height: 58px; }
    .nzfv-l3 { min-height: 52px; }
    .nzfv-l4 { min-height: 46px; }
    .nzfv-l5 { min-height: 42px; }
}


/* SEÇÃO: CASES DE SUCESSO */
.cases-section { padding: 150px 0; background: rgba(255,255,255,0.01); }
.case-study-row { display: flex; align-items: stretch; gap: 60px; }
.case-image { flex: 1; padding: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.case-img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; transition: var(--transition-smooth); }
.case-image:hover .case-img { transform: scale(1.05); }
.case-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
/* Removida .case-tag (agora usa .nexus-editorial-tag) */
.case-info h3 { font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.case-info p { font-size: 16px; color: var(--text-secondary); margin-bottom: 30px; line-height: 1.6; }
.case-metrics { display: flex; gap: 40px; border-top: 1px solid var(--border-color); padding-top: 30px; }
.metric strong { display: block; font-size: 48px; color: var(--primary); font-weight: 900; line-height: 1; }
.metric span { font-size: 14px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

/* SEÇÃO: Solução Premium */
.solution-section { padding: 150px 0; }
.premium-feature-row { display: flex; align-items: center; gap: 80px; }
.premium-feature-row.reverse { flex-direction: row-reverse; }
.feature-image { flex: 1; padding: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; border-radius: 24px; }
.feature-img { width: 100%; height: auto; object-fit: cover; border-radius: 20px; transition: transform 0.8s ease; }
.feature-image:hover .feature-img { transform: scale(1.05); }
.feature-text { flex: 1; }
/* Removida .feature-tag (agora usa .nexus-editorial-tag) */
.feature-text h3 { font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.feature-text p { font-size: 16px; color: var(--text-secondary); margin-bottom: 30px; line-height: 1.7; }
.feature-list { list-style: none; }
.feature-list li { position: relative; padding-left: 30px; font-size: 16px; margin-bottom: 15px; color: var(--text-primary); font-weight: 500; }
.feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--primary); }
/* =============================================
   SEÇÃO: Infraestrutura — 3 Pilares
   ============================================= */
.infra-pillars-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0 16px;
    align-items: stretch;
}

.infra-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.7;
    margin-top: 80px; /* alinha com o corpo do card, abaixo do número */
}

.infra-pillar-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 24px;
    padding: 36px 32px 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.infra-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(var(--accent-rgb), 0.15);
    border-color: var(--accent);
}

.infra-pillar-number {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: rgba(var(--accent-rgb), 0.08);
    font-family: var(--font-heading);
    letter-spacing: -4px;
    position: absolute;
    top: 20px;
    right: 24px;
    user-select: none;
    transition: color 0.35s ease;
}

.infra-pillar-card:hover .infra-pillar-number {
    color: rgba(var(--accent-rgb), 0.14);
}

.infra-pillar-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(26,115,232,0.15), rgba(26,115,232,0.05));
    border: 1px solid rgba(26,115,232,0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.infra-pillar-card:hover .infra-pillar-icon-wrap {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.25);
}

.infra-pillar-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(26,115,232,0.12), rgba(26,115,232,0.04));
    border: 1px solid rgba(26,115,232,0.3);
    color: var(--primary);
    font-family: var(--font-heading);
    width: fit-content;
}

.infra-pillar-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    font-family: var(--font-heading);
    margin-bottom: 14px;
}

.infra-pillar-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.infra-feature-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.infra-feature-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.infra-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent, var(--primary));
    opacity: 0.7;
}

.infra-pillar-metric {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(26,115,232,0.04);
    border: 1px solid rgba(26,115,232,0.15);
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: auto;
}

.infra-metric-value {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
    white-space: nowrap;
}

.infra-metric-label {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.infra-pillar-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1877F2, #4a9eff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 0 0 24px 24px;
}

.infra-pillar-card:hover .infra-pillar-accent-bar {
    transform: scaleX(1);
}

@media (max-width: 1024px) {
    .infra-pillars-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .infra-connector:first-of-type {
        display: none;
    }
    .infra-connector:last-of-type {
        grid-column: 1 / -1;
        transform: rotate(90deg);
        margin: 0;
        padding: 8px 0;
    }
}

@media (max-width: 720px) {
    .infra-pillars-grid {
        grid-template-columns: 1fr;
    }
    .infra-connector {
        transform: rotate(90deg) !important;
        margin: 0 !important;
        grid-column: auto !important;
    }
    .infra-pillar-card { padding: 28px 24px 24px; }
    .infra-pillar-number { font-size: 54px; }
}

/* SEÇÃO: Inteligência Artificial (O Cérebro da Operação) */
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .ai-grid { grid-template-columns: 1fr; } }

/* --- DATA RADAR / TEIA DE DADOS (CÉREBRO DA OPERAÇÃO) --- */
.data-radar-container { position: relative; width: 400px; height: 400px; display: flex; justify-content: center; align-items: center; margin: 0 auto; }
.radar-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(26, 115, 232, 0.2); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.rc-1 { width: 120px; height: 120px; border-style: dashed; }
.rc-2 { width: 240px; height: 240px; }
.rc-3 { width: 360px; height: 360px; border: 1px dashed rgba(26, 115, 232, 0.4); }

.radar-scanner { position: absolute; top: 50%; left: 50%; width: 360px; height: 360px; margin-top: -180px; margin-left: -180px; background: conic-gradient(from 0deg, transparent 80%, rgba(26,115,232,0.5) 100%); border-radius: 50%; transform-origin: center; animation: radarScan 4s linear infinite; z-index: 1; pointer-events: none; }
@keyframes radarScan { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.radar-lines { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; }
.r-line { animation: pulseLine 2s infinite alternate; }
@keyframes pulseLine { from { opacity: 0.3; } to { opacity: 1; } }

.radar-center { position: relative; width: 90px; height: 90px; background: #0A0C10; border: 2px solid var(--primary); border-radius: 50%; display: flex; justify-content: center; align-items: center; z-index: 10; box-shadow: 0 0 30px rgba(26,115,232,0.8); }
.nexus-core-text { font-size: 14px; font-weight: 900; color: #fff; text-align: center; line-height: 1.1; letter-spacing: 1px; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }

.data-node { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 5; }
.node-point { width: 14px; height: 14px; background: #00E676; border-radius: 50%; box-shadow: 0 0 15px #00E676; animation: pulseNode 2s infinite alternate; }
@keyframes pulseNode { from { transform: scale(1); opacity: 0.8; } to { transform: scale(1.4); opacity: 1; } }
.node-tag { background: rgba(10, 12, 16, 0.9); border: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 20px; white-space: nowrap; text-transform: uppercase; letter-spacing: 1px; }

.dn-1 { top: 15px; left: 200px; transform: translateX(-50%); }
.dn-2 { top: 300px; left: 330px; transform: translateX(-50%); }
.dn-3 { top: 280px; left: 70px; transform: translateX(-50%); }
.dn-4 { top: 100px; left: 340px; transform: translateX(-50%); }

/* SEÇÃO: Cultura / Sobre Nós */
.about-section { padding: 100px 0 0 0; border-top: 1px solid var(--border-color); overflow: hidden; position: relative; }
.about-grid { display: grid; grid-template-columns: repeat(12, 1fr); align-items: end; }
.about-text { grid-row: 1; grid-column: 1 / 7; position: relative; z-index: 2; padding-bottom: 80px; text-shadow: 0 4px 20px rgba(0,0,0,0.8); }
.about-text p { font-size: 18px; color: var(--text-secondary); margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.about-list { list-style: none; margin-top: 30px; }
.about-list li { position: relative; padding-left: 30px; font-size: 18px; margin-bottom: 15px; font-weight: 500; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.about-list li::before { content: '→'; position: absolute; left: 0; color: var(--primary); }
.about-image-wrapper { grid-row: 1; grid-column: 5 / 13; display: flex; justify-content: flex-end; position: relative; z-index: 1; padding: 0; margin-right: -10vw; margin-bottom: -5px; }
.about-img { 
    width: 110%; max-width: none; height: auto; max-height: 100vh; 
    object-fit: contain; object-position: bottom right; 
    border-radius: 0; padding: 0; margin: 0;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mix-blend-mode: luminosity; opacity: 0.85;
    filter: contrast(1.1);
}

/* SEÇÃO: Testimonials */
.testimonials-section { padding: 150px 0; background: rgba(255,255,255,0.01); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { padding: 40px; display: flex; flex-direction: column; justify-content: space-between; min-height: 350px; }
.t-stars { color: #F59E0B; font-size: 20px; margin-bottom: 20px; letter-spacing: 2px; }
.t-quote { font-size: 18px; line-height: 1.6; font-style: italic; margin-bottom: 40px; flex-grow: 1; }
.t-author { display: flex; align-items: center; gap: 15px; border-top: 1px solid var(--border-color); padding-top: 20px; }
.t-avatar { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; color: var(--text-primary); }
.t-author strong { display: block; font-size: 16px; }
.t-author span { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; }

/* SEÇÃO O FILTRO (DIFERENCIAIS) */
.method-section { padding: 150px 0; }
.method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; }
.method-card { padding: 40px; border-radius: 24px; transition: var(--transition-smooth); background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); }
.bento-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    overflow: hidden;
}
.bento-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(20px);
    opacity: 0.5;
}
.bento-icon svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 8px currentColor);
}
.b-blue {
    background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(37,99,235,0.05));
    border-color: rgba(37,99,235,0.3);
}
.b-blue svg { stroke: #60a5fa; }
.b-blue .icon-glow { position: absolute; width: 40px; height: 40px; background: #3b82f6; filter: blur(20px); opacity: 0.4; }

.b-pink {
    background: linear-gradient(135deg, rgba(236,72,153,0.2), rgba(236,72,153,0.05));
    border-color: rgba(236,72,153,0.3);
}
.b-pink svg { stroke: #f472b6; }
.b-pink .icon-glow { position: absolute; width: 40px; height: 40px; background: #ec4899; filter: blur(20px); opacity: 0.4; }

.b-green {
    background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.05));
    border-color: rgba(16,185,129,0.3);
}
.b-green svg { stroke: #34d399; }
.b-green .icon-glow { position: absolute; width: 40px; height: 40px; background: #10b981; filter: blur(20px); opacity: 0.4; }

.b-orange {
    background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.05));
    border-color: rgba(245,158,11,0.3);
}
.b-orange svg { stroke: #fbbf24; }
.b-orange .icon-glow { position: absolute; width: 40px; height: 40px; background: #f59e0b; filter: blur(20px); opacity: 0.4; }
.m-icon { font-size: 36px; margin-bottom: 15px; line-height: 1; }
.method-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.method-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* Oferta */
.offer-section { padding: 150px 0; }
.centered { text-align: center; margin: 0 auto; max-width: 750px; }
.offer-box { max-width: 800px; margin: 0 auto; text-align: center; padding: 80px 40px; }
.offer-box h2 { font-size: 40px; margin-bottom: 20px; }
.offer-box p { color: var(--text-secondary); font-size: 18px; margin-bottom: 30px; }

/* FAQ Premium Redesign */
.faq-section { padding: 150px 0; background: rgba(255,255,255,0.01); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: flex-start; }
.faq-intro { position: sticky; top: 120px; }
.faq-list { display: flex; flex-direction: column; gap: 20px; }
.faq-item { padding: 30px 40px; cursor: pointer; transition: var(--transition-smooth); }
.faq-header { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-header h3 { font-size: 20px; font-weight: 600; transition: color 0.3s; line-height: 1.4; }
.faq-icon { font-size: 30px; font-weight: 300; transition: transform 0.4s; color: var(--text-secondary); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); }
.faq-body p { padding-top: 20px; color: var(--text-secondary); font-size: 16px; line-height: 1.6; }
.faq-item.active { border-color: var(--primary); background: rgba(24, 119, 242, 0.05); }
.faq-item.active .faq-header h3 { color: var(--primary); }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-item.active .faq-body { max-height: 1000px; transition: max-height 1s ease-in-out; }

/* Footer */
.footer {
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,20,0.6), rgba(20,20,30,0.4));
  opacity: 0.6;
  pointer-events: none;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.footer-col {
  flex: 1;
}
.footer-left p, .footer-left a {
  color: var(--text-secondary);
}
.footer-right {
  display: flex;
  gap: 20px;
}
.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  position: relative;
  transition: color 0.3s;
}
.footer-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s;
}
.footer-link:hover {
  color: var(--primary);
}
.footer-link:hover::after {
  width: 100%;
}

/* POPUP MODAL AWWWARDS STYLE */
.premium-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; z-index: 2000; padding: 20px; }
.premium-modal.active { opacity: 1; pointer-events: all; }
.modal-backdrop { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(3, 4, 7, 0.8); backdrop-filter: blur(10px); transition: opacity 0.5s; }
.modal-content { position: relative; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; padding: 40px 30px; z-index: 2001; transform: translateY(50px); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.premium-modal.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--text-secondary); font-size: 32px; font-weight: 300; cursor: pointer; transition: color 0.3s; }
.modal-close:hover { color: var(--text-primary); }
.modal-header { text-align: center; margin-bottom: 25px; }
.modal-icon { font-size: 32px; margin-bottom: 10px; }
.modal-header h3 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.modal-header p { color: var(--text-secondary); font-size: 14px; }
.input-group { margin-bottom: 20px; text-align: left; }
.input-group label { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 8px; font-weight: 700; }
.premium-form input, .premium-form select { width: 100%; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; padding: 16px 20px; color: var(--text-primary); font-family: var(--font-satoshi); font-size: 16px; transition: all 0.3s ease; }
.premium-form input:focus, .premium-form select:focus { outline: none; border-color: var(--primary); background: rgba(24, 119, 242, 0.05); box-shadow: 0 0 15px rgba(24, 119, 242, 0.3); }
.premium-form select option { background: var(--bg-color); }
.full-width { width: 100%; }

/* Form Row (Side-by-side Desktop) */
.form-row { display: flex; gap: 15px; align-items: flex-end; }
.form-row .input-group { flex: 1; margin-bottom: 15px; }

.success-message { text-align: center; padding: 40px 0; }
.success-icon { width: 80px; height: 80px; background: rgba(24,119,242,0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0 auto 20px; }
.success-message h4 { font-size: 24px; margin-bottom: 10px; }
.success-message p { color: var(--text-secondary); }

/* Removidos efeitos de fade no scroll a pedido do usuário */

/* Responsivo Global - Ajuste de Respiros (Espaçamentos) */
@media (max-width: 1024px) {
    /* Respiros da Seção no Tablet (Reduzido de 150px para 100px) */
    .reality-section, .solution-section, .about-section, .cases-section, .pillars-section, .funnel-section, .method-section, .offer-section, .faq-section { padding: 100px 0; }
    .hero-section { padding: 90px 0 80px; }
    .container { padding: 0 60px; } /* Mantém respiro lateral bom no tablet */

    .reality-grid, .premium-feature-row, .case-study-row, .about-grid, .faq-grid, .pillars-grid, .funnel-grid { grid-template-columns: 1fr; flex-direction: column; gap: 60px; }
    .premium-feature-row.reverse { flex-direction: column; }
    .method-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .testimonial-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .hero-headline { font-size: clamp(30px, 5vw, 45px); margin-bottom: 25px; }
    .hero-subheadline { font-size: 16px; margin-bottom: 40px; }
    .faq-intro { position: relative; top: 0; margin-bottom: 40px; text-align: center; }

    /* Fix: Stacking and heights of images and sections */
    .case-image, .feature-image {
        height: 350px !important;
        width: 100% !important;
    }
    .about-text {
        grid-row: auto !important;
        grid-column: auto !important;
        padding-bottom: 0 !important;
    }
    .about-image-wrapper {
        grid-row: auto !important;
        grid-column: auto !important;
        margin-right: 0 !important;
        justify-content: center !important;
    }
    .about-img {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 500px !important;
    }
    .np-connectors {
        display: none !important;
    }
    .nzfv {
        margin-top: 30px !important;
    }
    .brand-badge {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    /* 1. Respiros Globais (Negative Space Mobile) */
    .container { padding: 0 15px; }
    .reality-section, .solution-section, .about-section, .cases-section, .pillars-section, .funnel-section, .method-section, .offer-section, .faq-section { padding: 60px 0; }
    .hero-section { padding: 75px 0 50px; }
    .method-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-container { flex-direction: column; align-items: flex-start; gap: 30px; }
    .trusted-logos { gap: 20px; }

    /* 2. Redução de Espaçamentos Internos (Fim do visual espremido) */
    .glass-card, .method-card, .pillar-card, .reality-card, .f-step, .faq-item { padding: 30px 20px !important; }
    .case-info, .feature-text { padding: 0 10px; }

    /* 3. Scale-Down de Tipografia Global (Melhor Leitura) */
    .section-title { font-size: 32px !important; margin-bottom: 15px !important; line-height: 1.2; letter-spacing: -0.5px; }
    .section-desc { font-size: 16px !important; margin-bottom: 30px !important; line-height: 1.6; }
    h3 { font-size: 22px !important; margin-bottom: 10px !important; line-height: 1.3; }
    p { font-size: 15px !important; line-height: 1.7 !important; }
    .m-icon { font-size: 32px !important; margin-bottom: 15px !important; }
    .massive-title { font-size: 40px !important; line-height: 1.1 !important; }

    /* 4. Cabeçalho e Hero Mobile Fix */
    .header { padding: 14px 0 !important; }
    .nexus-logo-img { height: 38px !important; }
    .header-ticker { display: none !important; }
    
    /* Header button size compact but proportionate */
    .header .cta-button, .header .outline-btn {
        padding: 10px 22px !important;
        font-size: 12px !important;
        border-radius: 50px !important;
        width: auto !important;
    }
    
    /* Remove tap highlight color and focus outline on mobile to avoid blue borders */
    * {
        -webkit-tap-highlight-color: transparent !important;
        outline: none !important;
    }

    /* Hero Clutter & Vertical Breathing Room */
    .hero-section { padding: 130px 0 30px !important; }
    .hero-headline { font-size: 28px !important; line-height: 1.15 !important; margin-top: 15px !important; margin-bottom: 30px !important; letter-spacing: -1px; }
    .hero-provocation { gap: 24px !important; margin-bottom: 45px !important; display: flex; flex-direction: column; }
    .h-provoke { font-size: 15px !important; padding: 14px 18px !important; line-height: 1.5 !important; border-left: 3px solid var(--primary) !important; margin-bottom: 25px !important; }
    .h-explain { font-size: 14px !important; padding-left: 12px !important; line-height: 1.6 !important; margin-top: 10px !important; margin-bottom: 30px !important; }

    /* Sem .badge-wrapper mobile */
    .hero-badge { font-size: 11px; }
    
    /* Padronização de botões CTA da página (Sem esticar 100% para evitar desproporção) */
    .hero-actions { gap: 15px !important; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .hero-actions .cta-button, .ultimate-cta .cta-button, .case-info .cta-button, .about-text .cta-button, .cta-button { 
        width: auto !important;
        display: inline-flex !important;
        justify-content: center;
        align-items: center;
        font-size: 12px !important; 
        padding: 10px 22px !important; 
        border-radius: 50px !important;
    }
    .hero-actions .hero-note { margin-top: 5px; }

    /* Hero Image Zoom 70%, Cortada na Vertical (PNG transparente), Deslocada 25% para a Direita e 10% para Baixo */
    .hero-visual { height: 350px !important; overflow: hidden !important; position: relative !important; margin-top: 10px !important; margin-bottom: 10px !important; min-height: auto !important; }
    .hero-visual-mochila {
        width: 170% !important;
        max-width: none !important;
        transform: translate(20%, 10%) !important;
        margin-left: 0 !important;
        height: auto !important;
        display: block;
    }

    /* Tecnologias & Badges Compactos */
    .trusted-section { padding: 40px 0 45px !important; }
    .trusted-title { margin-bottom: 24px !important; font-size: 11px !important; }
    .trusted-logos-colored { gap: 8px !important; }
    .brand-badge {
        padding: 6px 12px !important;
        font-size: 11px !important;
        gap: 6px !important;
    }
    .brand-badge .brand-icon { font-size: 12px !important; }
    .meta-biz .brand-icon { font-size: 14px !important; }
    
    /* Desativa efeitos de hover persistentes que travam ao toque no celular */
    .brand-badge:hover, 
    .cta-button:hover, 
    .cta-button.primary-btn:hover, 
    .cta-button.outline-btn:hover, 
    .cta-button.pulse-btn:hover, 
    .glass-card:hover, 
    .method-card:hover, 
    .pillar-card:hover, 
    .reality-card:hover, 
    .infra-pillar-card:hover,
    .case-image:hover,
    .feature-image:hover,
    .case-study-row:hover,
    .case-image:hover .case-img,
    .feature-image:hover .feature-img {
        transform: none !important;
        box-shadow: none !important;
        transition: none !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
    }
    .cta-button:hover, .cta-button.primary-btn:hover, .cta-button.pulse-btn:hover {
        background-color: var(--primary) !important;
        color: #fff !important;
    }
    .cta-button.outline-btn:hover {
        background: rgba(26,115,232,0.1) !important;
        color: var(--primary) !important;
        border-color: var(--primary) !important;
    }
    .pulse-btn {
        animation: none !important;
    }
    
    /* AI Radar Mobile Responsive Scale */
    .data-radar-container {
        transform: scale(0.75);
        transform-origin: center;
        margin: -40px auto !important;
    }

    /* Keep stacked image heights small */
    .case-image, .feature-image {
        height: 250px !important;
    }

    /* Footer Mobile Spacing */
    .footer {
        padding: 25px 0 !important;
    }
    .footer-container {
        gap: 16px !important;
    }

    /* Ajuste Modal Form */
    .form-row { flex-direction: column !important; gap: 0 !important; align-items: stretch !important; }
    .form-row .input-group { margin-bottom: 15px !important; }

    /* 5. Funil animado responsivo reduzido */
    .css-funnel-container { min-height: 250px; gap: 12px; margin-top: 20px; }
    .funnel-layer { height: 45px; font-size: 12px; border-radius: 20px; }
    .f-number { width: 32px !important; height: 32px !important; font-size: 14px !important; }
    .layer-1 { width: 100%; }
    .layer-2 { width: 85%; }
    .layer-3 { width: 70%; }
    .layer-4 { width: 55%; }
    
    /* Funil trapezoidal mobile wrappings */
    .nzfv-title {
        white-space: normal !important;
        text-align: center;
        font-size: 13px !important;
    }
    .nzfv-l1 .nzfv-content { padding: 10px 4% !important; }
    .nzfv-l2 .nzfv-content { padding: 10px 10% !important; }
    .nzfv-l3 .nzfv-content { padding: 10px 18% !important; }
}

@media (max-width: 380px) {
    .data-radar-container {
        transform: scale(0.65);
        transform-origin: center;
        margin: -60px auto !important;
    }
    .header .cta-button {
        padding: 6px 12px !important;
        font-size: 10px !important;
    }
}

/* AI MODAL ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.ai-chat-window::-webkit-scrollbar { width: 6px; }
.ai-chat-window::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }

/* ==========================================================================
   SEÇÃO DE IMPACTO (O BÁSICO BEM FEITO)
   ========================================================================== */
.impact-quote-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: #050608;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.impact-quote-section.light-theme {
    background-color: #F2F4F7 !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.impact-quote-container {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.impact-quote-section .quote-icon {
    margin-bottom: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(26, 115, 232, 0.1);
    border: 1px solid rgba(26, 115, 232, 0.25);
    box-shadow: 0 0 20px rgba(26, 115, 232, 0.15);
    transition: var(--transition-smooth);
}

.impact-quote-section.light-theme .quote-icon {
    background: rgba(26, 115, 232, 0.05);
    border-color: rgba(26, 115, 232, 0.15);
    box-shadow: 0 0 15px rgba(26, 115, 232, 0.05);
}

.impact-quote-section .quote-sub {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary);
    margin-bottom: 20px;
}

.impact-quote-section .quote-main-text {
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1.45;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.impact-quote-section .quote-main-text .text-glow {
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.impact-quote-section.light-theme .quote-main-text .text-glow {
    text-shadow: none;
}

.impact-quote-section .quote-desc {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Responsividade */
@media (max-width: 768px) {
    .impact-quote-section {
        padding: 80px 0;
    }
    .impact-quote-section .quote-main-text {
        font-size: 26px;
    }
    .impact-quote-section .quote-desc {
        font-size: 16px;
    }
}

/* ==========================================================================
   NEXUS PILLARS (NP-CLASSES FOR OS DOIS PILARES - 3 COLUMN LAYOUT)
   ========================================================================= */
.np-layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 280px 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 50px;
    position: relative;
}

.np-card {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    min-height: 480px; /* Aligned height */
}

.np-card:hover {
    border-color: rgba(var(--nc-rgb), 0.4);
    box-shadow: 0 20px 50px rgba(var(--nc-rgb), 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}


.np-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.np-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(var(--nc-rgb), 0.1);
    border: 1px solid rgba(var(--nc-rgb), 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.np-card:hover .np-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(var(--nc-rgb), 0.15);
    border-color: rgba(var(--nc-rgb), 0.5);
}

.np-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--nc);
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(var(--nc-rgb), 0.1);
    border: 1px solid rgba(var(--nc-rgb), 0.25);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-heading);
}

.np-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    position: relative;
    z-index: 2;
}

.np-desc {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.np-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.np-list li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

.np-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--bullet, var(--nc));
    font-weight: 900;
    font-size: 15px;
}

.np-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--nc), #00ff8a);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.np-card:hover .np-accent-bar {
    transform: scaleX(1);
}

/* ==========================================================================
   CENTER BRIDGE & CONNECTOR STYLES
   ========================================================================= */
.np-center-bridge {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 380px;
}

.np-center-card {
    width: 230px;
    padding: 35px 20px;
    border-radius: 20px;
    background: rgba(13, 13, 16, 0.75);
    border: 2px dashed rgba(26, 115, 232, 0.4);
    box-shadow: 0 0 40px rgba(26, 115, 232, 0.1), inset 0 1px 0 rgba(255,255,255,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 5;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: floatCenterCard 6s ease-in-out infinite;
    transition: var(--transition-smooth);
}

.np-center-card:hover {
    border-style: solid;
    border-color: var(--primary);
    box-shadow: 0 0 50px rgba(26, 115, 232, 0.25), 0 0 10px rgba(26, 115, 232, 0.15);
    transform: scale(1.02);
}

.np-center-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.np-center-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(26, 115, 232, 0.1);
    border: 1px solid rgba(26, 115, 232, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(26, 115, 232, 0.15);
    color: var(--primary);
    transition: var(--transition-smooth);
}

.np-center-card:hover .np-center-logo {
    background: rgba(26, 115, 232, 0.2);
    transform: scale(1.08);
}

.np-center-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.np-center-title {
    font-size: 19px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.3;
}

.np-center-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(255, 76, 76, 0.08);
    border: 1px solid rgba(255, 76, 76, 0.25);
    font-size: 11px;
    font-weight: 700;
    color: #ff4c4c;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(255, 76, 76, 0.05);
}

.np-center-status .status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff4c4c;
    box-shadow: 0 0 10px #ff4c4c;
    animation: statusPulse 1.2s infinite ease-in-out;
}

/* Animations */
@keyframes floatCenterCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes statusPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes connectorDashLeft {
    to {
        stroke-dashoffset: -12;
    }
}

@keyframes connectorDashRight {
    to {
        stroke-dashoffset: 12;
    }
}

.connector-line {
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.left-line {
    animation-name: connectorDashLeft;
}

.right-line {
    animation-name: connectorDashRight;
}

/* Rodapé / Faixa inferior */
.np-footer {
    margin-top: 56px;
    padding: 28px 36px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    transition: var(--transition-smooth);
}

.np-footer p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0;
    max-width: 580px;
    line-height: 1.6;
}

.np-footer p strong {
    color: #ffffff;
}

/* Responsividade */
@media (max-width: 991px) {
    .np-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .np-card {
        min-height: auto;
        padding: 40px 30px;
    }
    .np-center-bridge {
        min-height: auto;
        padding: 20px 0;
    }
    .np-center-card {
        width: 100%;
        max-width: 400px;
        padding: 30px 20px;
    }
    .np-footer {
        padding: 22px 24px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .np-footer a {
        justify-content: center;
    }
}

/* Alinhamento centralizado do indicador de tag editorial */
.text-center .nexus-editorial-tag::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Estilização Premium para os Ícones Sociais do Rodapé */
.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-social-icon svg {
    fill: currentColor;
    transition: var(--transition-smooth);
}

.footer-social-icon:hover {
    background: rgba(26, 115, 232, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Posicionamento Premium da Mochila e Tablet no Hero (Responsivo) */
.hero-visual-mochila {
    width: 150%;
    max-width: 950px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 55px rgba(0,0,0,0.45));
    transform: scale(1.45) translateX(28%);
    transform-origin: center right;
    z-index: 10;
}

@media (max-width: 991px) {
    .hero-visual-mochila {
        width: 100%;
        max-width: 580px;
        transform: scale(1.1) translateX(0);
        transform-origin: center;
        margin-left: 0;
    }
}

/* Map new logo class to old rules */
.nexus-logo-img {
    transition: var(--transition-smooth);
}

/* Extra Mobile Adjustments */
@media (max-width: 768px) {
    /* Optimize brand badges for readability */
    .brand-badge {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
    /* Hide URL bar in G1 Mockup to save space */
    .browser-header div:last-child {
        display: none !important;
    }
    /* Center and clean up footer */
    .footer-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 12px !important;
    }
    .footer-left {
        text-align: center !important;
    }
    .footer-right {
        justify-content: center !important;
        width: 100% !important;
        gap: 20px !important;
    }
    /* Avoid Reviews grid overflow */
    .reviews-grid {
        grid-template-columns: 1fr !important;
    }
    /* Refine FAQ h3 font sizes */
    .faq-header h3 {
        font-size: 16px !important;
    }
}

/* Layout da Ferramenta de WhatsApp (Nexus Tools) */
.tool-card-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .tool-card-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tool-card-grid > div:last-child {
        border-left: none !important;
        padding-left: 0 !important;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
}

/* Ticker do Cabeçalho (Nexus Header Rotator) */
.header-ticker {
    animation: fadeIn 0.5s ease forwards;
}

@media (max-width: 991px) {
    .header-ticker {
        display: none !important;
    }
}
