/* CSS do projeto da Landing Page UNU Marketing - Nível Awwwards Premium (Expandido e Corrigido) */
:root {
    --primary: #1877F2;      /* Azul Vibrante da logo */
    --primary-dark: #0A57D0;
    --bg-color: #030407;     /* Preto profundo */
    --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-satoshi: 'Satoshi', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* { 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-satoshi);
    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 {
    width: 50%; height: 50%; background: rgba(138, 43, 226, 0.06);
    bottom: -10%; right: -10%; animation: auroraFloat 25s infinite ease-in-out alternate-reverse;
}
.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) */
.data-stream {
    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;
    /* mix-blend-mode removido para permitir o efeito de vidro fosco real */
}
.header.scrolled {
    padding: 15px 0;
    background: rgba(3, 4, 7, 0.2);
    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 {
    transform: translateY(-100%);
}
.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-satoshi); 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 */
.hero-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; padding-top: 80px; }
.hero-bg-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/aww_hero_1781281285561.png');
    background-size: cover; background-position: center; opacity: 0.5; z-index: 0;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.hero-glow {
    position: absolute; width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(24,119,242,0.15) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 0;
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 1000px; }
.badge-wrapper {
    display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; border-radius: 50px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); margin-bottom: 40px;
}
.pulse-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 10px var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }
.hero-badge { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-secondary); }
.hero-headline { font-size: clamp(48px, 6vw, 90px); font-weight: 900; line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 30px; }
.hero-provocation { max-width: 650px; margin: 0 auto 50px; display: flex; flex-direction: column; gap: 15px; }
.h-provoke { font-size: 20px; 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; flex-direction: column; align-items: center; gap: 16px; }
.hero-note { font-size: 12px; color: var(--text-secondary); letter-spacing: 0.05em; opacity: 0.6; }

/* 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; }

/* GRÁFICO ARQUITETURAL CSS (Pilares) - VERSÃO COMPLEXA */
.css-architecture-graphic {
    width: 100%; max-width: 380px;
    display: flex; flex-direction: column; align-items: center;
    position: relative; padding: 40px 0;
}
.arch-blueprint-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(24,119,242,0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(24,119,242,0.15) 1px, transparent 1px);
    background-size: 20px 20px; z-index: 0; opacity: 0.6;
    mask-image: radial-gradient(circle, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 80%);
}

.arch-metric {
    position: absolute; z-index: 4; background: rgba(3,4,7,0.9);
    border: 1px solid rgba(255,255,255,0.1); padding: 8px 12px; border-radius: 6px;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5); backdrop-filter: blur(5px);
}
.left-metric { top: 40%; left: -30px; border-left: 2px solid #1877F2; }
.right-metric { top: 60%; right: -30px; border-right: 2px solid #8A2BE2; }
.m-val { font-size: 14px; font-weight: 900; }
.m-lbl { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); }

.arch-company-block {
    width: 100%; padding: 2px; border-radius: 16px; text-align: center;
    position: relative; overflow: hidden; z-index: 3; box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.arch-inner {
    background: #030407; padding: 25px 20px; border-radius: 14px;
    position: relative; z-index: 2; display: flex; flex-direction: column; gap: 5px;
}
.arch-text { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: 2px; text-transform: uppercase; }
.arch-sub { font-size: 10px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 3px; }
.arch-glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(24, 119, 242, 1), transparent, rgba(138, 43, 226, 1), transparent);
    animation: spinGlow 4s infinite linear; z-index: 1;
}

.arch-pillars-support {
    display: flex; justify-content: space-between; width: 80%;
    height: 220px; position: relative; z-index: 2;
    margin-top: -10px; margin-bottom: -10px;
}
.arch-crossbeam { position: absolute; width: 100%; height: 2px; background: rgba(255,255,255,0.1); left: 0; z-index: 1; }
.cb-1 { top: 30%; } .cb-2 { top: 60%; }

.arch-viga {
    width: 55px; height: 100%; position: relative; overflow: hidden;
    background: rgba(255,255,255,0.02);
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 30px;
}
.viga-node { width: 8px; height: 8px; background: rgba(255,255,255,0.2); border-radius: 50%; z-index: 3; position: relative; }
.n-blue { box-shadow: 0 0 10px #1877F2; } .n-purple { box-shadow: 0 0 10px #8A2BE2; }

.viga-1 { border-left: 2px solid rgba(24, 119, 242, 0.4); border-right: 2px solid rgba(24, 119, 242, 0.4); box-shadow: inset 0 0 30px rgba(24, 119, 242, 0.15); }
.viga-2 { border-left: 2px solid rgba(138, 43, 226, 0.4); border-right: 2px solid rgba(138, 43, 226, 0.4); box-shadow: inset 0 0 30px rgba(138, 43, 226, 0.15); }

.viga-energy { position: absolute; bottom: -100px; left: 0; width: 100%; height: 100px; filter: blur(8px); border-radius: 50px; }
.viga-energy-1 { background: #1877F2; animation: flowUp 3s infinite linear; }
.viga-energy-2 { background: #8A2BE2; animation: flowUp 3s infinite linear 1.5s; }

.arch-base {
    width: 110%; padding: 18px;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.15);
    border-bottom: 3px solid var(--text-primary);
    text-align: center; border-radius: 8px;
    font-size: 12px; font-weight: 700; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 3px;
    box-shadow: 0 -15px 30px rgba(0,0,0,0.5); z-index: 3;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}

/* 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: 100px; align-items: center; }
.funnel-steps { display: flex; flex-direction: column; gap: 20px; }
.f-step { display: flex; gap: 20px; padding: 25px; align-items: flex-start; border-left: 2px solid transparent; transition: var(--transition-smooth); }
.f-step:hover { border-left-color: var(--primary); }
.f-number { flex-shrink: 0; width: 40px; height: 40px; background: rgba(24,119,242,0.1); color: var(--primary); font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid rgba(24,119,242,0.3); }
.f-step h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.f-step p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.css-funnel-container { display: flex; flex-direction: column; align-items: center; gap: 30px; position: relative; width: 100%; height: 100%; min-height: 400px; justify-content: center; }
.funnel-layer { min-height: 60px; height: auto; padding: 10px 20px; border-radius: 30px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; font-weight: 800; font-size: 16px; letter-spacing: 1px; text-transform: uppercase; position: relative; z-index: 2; animation: pulseLayer 3s infinite alternate; backdrop-filter: blur(10px); line-height: 1.3; }
.layer-1 { width: 100%; max-width: 500px; background: linear-gradient(90deg, rgba(24,119,242,0.8), rgba(138,43,226,0.8)); box-shadow: 0 0 30px rgba(24,119,242,0.5), inset 0 0 10px rgba(255,255,255,0.2); animation-delay: 0s; }
.layer-2 { width: 90%; max-width: 420px; background: linear-gradient(90deg, rgba(138,43,226,0.8), rgba(255,51,102,0.8)); box-shadow: 0 0 30px rgba(138,43,226,0.5), inset 0 0 10px rgba(255,255,255,0.2); animation-delay: 0.5s; }
.layer-3 { width: 80%; max-width: 340px; background: linear-gradient(90deg, rgba(255,51,102,0.8), rgba(255,153,51,0.8)); box-shadow: 0 0 30px rgba(255,51,102,0.5), inset 0 0 10px rgba(255,255,255,0.2); animation-delay: 1s; }
.layer-4 { width: 70%; max-width: 260px; background: linear-gradient(90deg, rgba(255,153,51,0.9), rgba(0,255,153,0.9)); box-shadow: 0 0 50px rgba(0,255,153,0.8), inset 0 0 10px rgba(255,255,255,0.4); animation-delay: 1.5s; color: #000; font-size: 13px; }
@keyframes pulseLayer { 0% { transform: scale(1); filter: brightness(1); } 100% { transform: scale(1.05); filter: brightness(1.3); } }

.falling-data { position: absolute; top: 0; width: 20px; height: 20px; background: #fff; border-radius: 50%; box-shadow: 0 0 20px 5px rgba(255,255,255,0.9); z-index: 1; animation: fallDown 3s infinite cubic-bezier(0.4, 0, 0.2, 1); }
.delay-1 { animation-delay: 1s; left: 40%; }
.delay-2 { animation-delay: 2s; left: 60%; }
@keyframes fallDown { 0% { top: -20px; opacity: 0; transform: scale(0.5); } 10% { opacity: 1; transform: scale(1); } 80% { opacity: 1; transform: scale(1); } 100% { top: 100%; opacity: 0; transform: scale(0.2); } }
.css-funnel-container::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: linear-gradient(to bottom, rgba(24,119,242,0.1), rgba(0,255,153,0.5)); transform: translateX(-50%); z-index: 0; }

/* 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; }
.case-tag { display: inline-block; padding: 6px 14px; border: 1px solid var(--primary); color: var(--primary); border-radius: 30px; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 24px; align-self: flex-start; }
.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; }
.feature-tag { display: inline-block; padding: 6px 14px; border: 1px solid var(--border-color); background: rgba(255,255,255,0.05); color: var(--text-primary); border-radius: 30px; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 24px; letter-spacing: 1px; }
.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: Cultura / Sobre Nós */
.about-section { padding: 150px 0; border-top: 1px solid var(--border-color); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { font-size: 18px; color: var(--text-secondary); margin-bottom: 20px; }
.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; }
.about-list li::before { content: '→'; position: absolute; left: 0; color: var(--primary); }
.about-image-wrapper { padding: 0; display: flex; justify-content: center; }
.about-img { width: 100%; max-height: 600px; object-fit: cover; border-radius: 20px; padding: 0; }

/* 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: 100px 0 50px; border-top: 1px solid var(--border-color); }
.footer-container { display: flex; justify-content: space-between; align-items: flex-end; }
.footer-logo { height: 50px; margin-bottom: 20px; max-width: 250px; object-fit: contain; }
.footer-left p { color: var(--text-secondary); }
.footer-right { display: flex; gap: 40px; }
.footer-link { color: var(--text-primary); text-decoration: none; font-size: 16px; font-weight: 500; text-transform: uppercase; position: relative; cursor: pointer; }
.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::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: 160px 0 100px; }
    .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(36px, 6vw, 60px); margin-bottom: 25px; }
    .hero-subheadline { font-size: 16px; margin-bottom: 40px; }
    .faq-intro { position: relative; top: 0; margin-bottom: 40px; text-align: center; }
}

@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: 120px 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: 15px 0; }
    .unu-logo-img { height: 30px; }
    
    .hero-headline { font-size: 44px !important; line-height: 1.05 !important; margin-bottom: 20px !important; letter-spacing: -1px; }
    .hero-provocation { gap: 15px; margin-bottom: 30px; }
    .h-provoke { font-size: 16px !important; padding: 12px 15px !important; border-left: 3px solid var(--primary) !important; }
    .h-explain { font-size: 15px !important; padding-left: 15px !important; line-height: 1.6 !important; }

    .badge-wrapper { padding: 8px 16px; margin-bottom: 20px; }
    .hero-badge { font-size: 11px; }
    
    /* Botões Full-Width no Mobile (Thumb-friendly) */
    .hero-actions { gap: 15px; width: 100%; }
    .cta-button { width: 100% !important; font-size: 16px !important; padding: 18px 20px !important; display: flex; justify-content: center; }

    /* 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%; }
}
