/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cyan: #00C2FF;
  --cyan-dark: #0099CC;
  --cyan-glow: rgba(0, 194, 255, 0.3);
  --bg: #0A0F2C;
  --bg-2: #0D1535;
  --bg-3: #111827;
  --surface: rgba(255,255,255,0.03);
  --border: rgba(0, 194, 255, 0.12);
  --border-hover: rgba(0, 194, 255, 0.35);
  --text: #E8EAF0;
  --text-muted: rgba(232, 234, 240, 0.55);
  --text-dim: rgba(232, 234, 240, 0.35);
  --font: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

::selection { background: var(--cyan-glow); color: var(--cyan); }

/* ==================== CURSOR ==================== */
.cursor {
  width: 10px; height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  transition: width 0.3s var(--transition), height 0.3s var(--transition), background 0.3s;
  mix-blend-mode: screen;
}
.cursor.expanded {
  width: 48px; height: 48px;
  background: rgba(0,194,255,0.15);
  border: 1.5px solid var(--cyan);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(0,194,255,0.4);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.08s linear, width 0.3s var(--transition), height 0.3s var(--transition), opacity 0.3s;
}

/* ==================== PROGRESS BAR ==================== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), #7B2FFF);
  z-index: 9998;
  width: 0%;
  transition: width 0.1s linear;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding 0.4s var(--transition), backdrop-filter 0.4s, background 0.4s;
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(10, 15, 44, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--cyan); }

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-cta {
  background: var(--cyan);
  color: #000 !important;
  font-weight: 600;
  padding: 10px 20px;
}
.nav-cta:hover { background: #33CFFF; transform: translateY(-1px); }

.nav-menu-btn { display: none; background: none; border: none; cursor: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-menu-btn span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,194,255,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.4); } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--text);
  margin-bottom: 24px;
}
.word { display: inline-block; margin-right: 0.2em; opacity: 0; }
.accent-word { color: var(--cyan); }

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--cyan);
}
.stat-suffix { font-size: 24px; font-weight: 700; color: var(--cyan); }
.stat-label { display: block; font-size: 12px; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim { 0%,100% { opacity:0; transform:scaleY(0); transform-origin:top; } 50% { opacity:1; transform:scaleY(1); } }
.hero-scroll-hint span { font-size: 10px; color: var(--text-dim); letter-spacing: 0.2em; text-transform: uppercase; }

/* ==================== BUTTONS ==================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(0,194,255,0.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s var(--transition); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.3s var(--transition);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-hover); background: rgba(255,255,255,0.03); }

/* ==================== CONTAINERS & LAYOUT ==================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
section { padding: 120px 0; }

.section-header { text-align: center; margin-bottom: 80px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,194,255,0.08);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==================== GLASS CARD ==================== */
.glass-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.4s var(--transition), box-shadow 0.4s;
}
.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 40px rgba(0,194,255,0.08);
}

/* ==================== PROBLEMA ==================== */
.problema { background: var(--bg-2); position: relative; overflow: hidden; }
.section-bg-gradient {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,255,0.04), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: bgMove 8s ease-in-out infinite alternate;
}
@keyframes bgMove { from { transform:translate(-50%,-50%) scale(1); } to { transform:translate(-45%,-55%) scale(1.2); } }

.problema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problema-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--transition);
  opacity: 0;
}
.problema-card:hover {
  border-color: rgba(255, 80, 80, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255,80,80,0.06);
}
.problema-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: inline-block;
}
.pulse-icon.active { animation: iconPulse 0.6s ease; }
@keyframes iconPulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.4); } }
.problema-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.problema-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ==================== COMO FUNCIONA ==================== */
.como-funciona { background: var(--bg-2); }
.steps-container { position: relative; }
.steps-line {
  position: absolute;
  top: 56px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  border-top: 2px dashed rgba(0,194,255,0.3);
  z-index: 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.step-item {
  text-align: center;
  padding: 0 20px;
  opacity: 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--cyan);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.step-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.step-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step-item p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ==================== SERVIÇOS ==================== */
.servicos { background: var(--bg); }
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.servicos-grid-3 { grid-template-columns: repeat(3, 1fr); }
.servico-card {
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.5s var(--transition), box-shadow 0.5s;
  cursor: none;
}
.servico-card:hover { transform: rotateY(8deg) translateY(-8px); box-shadow: 0 30px 60px rgba(0,194,255,0.1); }
.card-glow {
  position: absolute;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(0,194,255,0.15), transparent 70%);
  top: -40px; right: -40px;
  transition: all 0.5s;
  border-radius: 50%;
}
.servico-card:hover .card-glow { transform: scale(1.5); opacity: 1.5; }
.card-icon { margin-bottom: 20px; }
.card-icon svg { width: 44px; height: 44px; }
.servico-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.servico-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.card-tag {
  display: inline-block;
  background: rgba(0,194,255,0.08);
  border: 1px solid var(--border);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ==================== STATS ==================== */
.stats-section { padding: 80px 0; position: relative; overflow: hidden; }
.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,194,255,0.04) 0%, transparent 50%, rgba(123,47,255,0.04) 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
}
.stat-item { opacity: 0; }
.big-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--cyan);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -2px;
}
.stat-label-big {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==================== PACOTES ==================== */
.pacotes { background: var(--bg-3); }
.pacotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pacote-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: rotateY(90deg);
  transition: all 0.5s var(--transition);
}
.pacote-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
.pacote-destaque {
  border-color: var(--cyan);
  background: rgba(0,194,255,0.04);
  transform: scale(1.04);
}
.pacote-destaque.revealed { transform: scale(1.04) !important; }
.pacote-destaque:hover { transform: scale(1.04) translateY(-8px) !important; }

.shine-border {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: conic-gradient(from 0deg, var(--cyan), #7B2FFF, var(--cyan));
  z-index: -1;
  animation: shineSpin 3s linear infinite;
  opacity: 0.5;
}
@keyframes shineSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.badge-popular {
  display: inline-block;
  background: var(--cyan);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pacote-header { margin-bottom: 32px; }
.pacote-nome {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}
.pacote-preco { display: flex; align-items: baseline; gap: 4px; }
.preco-moeda { font-size: 20px; font-weight: 700; color: var(--text-muted); }
.preco-valor {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
}
.preco-periodo { font-size: 14px; color: var(--text-muted); font-weight: 500; }

.pacote-features { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.pacote-features li { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.feat-check { color: var(--cyan); font-weight: 700; font-size: 16px; flex-shrink: 0; }

.btn-pacote {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.3s var(--transition);
  letter-spacing: 0.01em;
}
.btn-pacote:hover { border-color: var(--border-hover); color: var(--text); transform: translateY(-2px); }
.btn-destaque { background: var(--cyan); color: #000; border-color: var(--cyan); }
.btn-destaque:hover { background: #33CFFF; color: #000; border-color: #33CFFF; box-shadow: 0 12px 40px rgba(0,194,255,0.35); }

/* ==================== WHATSAPP ==================== */
.whatsapp-section { background: var(--bg-2); }
.whatsapp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wpp-features { list-style: none; margin: 28px 0 40px; display: flex; flex-direction: column; gap: 14px; }
.wpp-feat { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-muted); opacity: 0; }
.feat-icon { font-size: 20px; }

/* Phone mockup */
.whatsapp-mockup { display: flex; justify-content: center; }
.phone-frame {
  width: 300px;
  height: 580px;
  background: #111;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  transform: perspective(800px) rotateX(20deg) rotateY(-10deg);
  opacity: 0;
}
.phone-notch {
  width: 100px; height: 28px;
  background: #111;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
}
.phone-screen { height: calc(100% - 28px); display: flex; flex-direction: column; }
.wpp-header {
  background: #1A2B1A;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.wpp-avatar {
  width: 38px; height: 38px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #000;
  flex-shrink: 0;
}
.wpp-contact { flex: 1; }
.wpp-contact strong { display: block; font-size: 14px; font-weight: 600; }
.wpp-status { font-size: 11px; color: #25D366; }
.wpp-chat {
  flex: 1;
  background: #0D1117;
  padding: 16px 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wpp-chat::-webkit-scrollbar { width: 0; }

.wpp-msg {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
  position: relative;
  animation: msgSlide 0.4s var(--transition);
}
@keyframes msgSlide { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.wpp-msg.incoming { background: #1A2B1A; color: #E8EAF0; align-self: flex-start; border-bottom-left-radius: 4px; }
.wpp-msg.outgoing { background: #1A4A2A; color: #E8EAF0; align-self: flex-end; border-bottom-right-radius: 4px; }
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: #1A2B1A;
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  align-items: center;
}
.typing-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: typingAnim 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingAnim { 0%,100% { opacity:0.3; transform:translateY(0); } 50% { opacity:1; transform:translateY(-3px); } }

/* ==================== DEPOIMENTOS ==================== */
.depoimentos { background: var(--bg); }
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depo-card { padding: 36px 32px; opacity: 0; }
.depo-stars { color: #FFB800; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.depo-card p { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin-bottom: 28px; font-style: italic; }
.depo-author { display: flex; align-items: center; gap: 14px; }
.depo-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--cyan), #7B2FFF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.depo-author strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.depo-author span { font-size: 12px; color: var(--text-muted); }

/* ==================== PACOTES EXTRAS ==================== */
.lancamento-badge {
  display: inline-block;
  background: rgba(0,194,255,0.08);
  border: 1px solid rgba(0,194,255,0.2);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  margin-top: 16px;
}
.feat-x { color: rgba(232,234,240,0.25); font-size: 16px; flex-shrink: 0; }
.pacotes-nota {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0;
}

/* ==================== QUEM SOMOS ==================== */
.quem-somos { background: var(--bg-3); }
.quem-inner {
  max-width: 720px;
  margin: 0 auto;
}
.quem-texto { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 16px; }
.quem-texto p { font-size: 16px; color: var(--text-muted); line-height: 1.75; }
.quem-destaque {
  font-size: 18px !important;
  color: var(--text) !important;
  font-weight: 600;
  border-left: 3px solid var(--cyan);
  padding-left: 16px;
  margin-top: 4px;
}
.quem-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.quem-badge-item {
  background: rgba(0,194,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s;
}
.quem-badge-item:hover { border-color: var(--border-hover); color: var(--text); }

.quem-card {
  padding: 40px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.quem-avatar-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
}
.quem-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #7B2FFF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
}
.quem-avatar-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  opacity: 0.4;
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.08); opacity: 0.15; }
}
.quem-card strong { font-size: 20px; font-family: var(--font-display); font-weight: 700; margin-top: 4px; }
.quem-card > span { font-size: 13px; color: var(--cyan); font-weight: 500; }
.quem-bio { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-style: italic; margin-top: 12px; }
.quem-loc { font-size: 12px; color: var(--text-dim); margin-top: 8px; }

/* ==================== CONTATO ==================== */
.contato { position: relative; overflow: hidden; }
.contato-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,194,255,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(123,47,255,0.06) 0%, transparent 60%);
}
.contato-center {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.contato-center .section-tag { margin-bottom: 20px; display: inline-block; }

.btn-wpp-grande {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 20px 40px;
  border-radius: 100px;
  text-decoration: none;
  margin: 36px 0 28px;
  transition: all 0.3s var(--transition);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  position: relative;
  overflow: hidden;
}
.btn-wpp-grande::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-wpp-grande:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(37,211,102,0.5); }
.btn-wpp-grande:hover::before { opacity: 1; }

.contato-info {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.contato-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ==================== FOOTER ==================== */
.footer { background: #04060F; padding: 60px 0 30px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; gap: 24px; flex-wrap: wrap; }
.footer-brand p { font-size: 13px; color: var(--text-dim); margin-top: 8px; }
.footer-location { font-size: 13px; color: var(--text-dim); margin-top: 6px; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-bottom span { font-size: 12px; color: var(--text-dim); }

/* ==================== WPP FLOAT ==================== */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  z-index: 9990;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: wppPulse 2.5s infinite;
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
}
.wpp-float:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.7); }
@keyframes wppPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
}
.wpp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,15,44,0.95);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  backdrop-filter: blur(10px);
}
.wpp-float:hover .wpp-tooltip { opacity: 1; }

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal, .reveal-left, .reveal-right, .reveal-up {
  opacity: 0;
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition), filter 0.8s var(--transition);
}
.reveal { transform: translateY(30px) scale(0.97); filter: blur(4px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-up { transform: translateY(60px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-up.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ==================== GLITCH ==================== */
.glitch {
  position: relative;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
}
.glitch.glitching::before {
  opacity: 0.7;
  color: #FF006E;
  animation: glitchBefore 0.3s steps(2) forwards;
}
.glitch.glitching::after {
  opacity: 0.7;
  color: #00FFE5;
  animation: glitchAfter 0.3s steps(2) forwards;
}
@keyframes glitchBefore {
  0% { clip-path:inset(0 0 80% 0); transform:translate(-3px); }
  33% { clip-path:inset(40% 0 40% 0); transform:translate(3px); }
  66% { clip-path:inset(70% 0 10% 0); transform:translate(-2px); }
  100% { clip-path:inset(0 0 0 0); transform:translate(0); opacity:0; }
}
@keyframes glitchAfter {
  0% { clip-path:inset(80% 0 0 0); transform:translate(3px); }
  33% { clip-path:inset(30% 0 50% 0); transform:translate(-3px); }
  66% { clip-path:inset(5% 0 75% 0); transform:translate(2px); }
  100% { clip-path:inset(0 0 0 0); transform:translate(0); opacity:0; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .quem-inner { grid-template-columns: 1fr; gap: 48px; }
  .quem-card { max-width: 400px; }
  .servicos-grid, .servicos-grid-3, .problema-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .whatsapp-inner { grid-template-columns: 1fr; gap: 60px; }
  .steps-line { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  section { padding: 80px 0; }
  .container { padding: 0 24px; }
  .hero-content { padding: 0 24px; padding-top: 100px; }
  .servicos-grid, .servicos-grid-3, .problema-grid, .pacotes-grid, .depo-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 24px; }
  .hero-title { letter-spacing: -2px; }
  .section-title { letter-spacing: -1px; }
  .pacote-destaque { transform: none; }
  .pacote-destaque:hover { transform: translateY(-8px) !important; }
  .phone-frame { transform: none; }
  .footer-right { align-items: flex-start; }
  .btn-wpp-grande { font-size: 16px; padding: 18px 28px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .nav-container { padding: 0 20px; }
  .contato-trust { flex-direction: column; gap: 8px; }
}
