/* ==========================================================================
   ORBILO STYLESHEET 🌀⚡ - 100% RESPONSIVO, PERFEITO EM QUALQUER TELA
   Desenvolvimento de Web Sites & Aplicativos
   ========================================================================== */

:root {
  --bg-space: #06050c;
  --bg-card: rgba(18, 14, 33, 0.78);
  --bg-card-hover: rgba(28, 20, 52, 0.95);
  
  --neon-green: #00ff88;
  --neon-cyan: #00f3ff;
  --neon-pink: #ff007f;
  --neon-purple: #b026ff;
  --neon-yellow: #ffff00;
  --neon-orange: #ff5500;
  
  --text-main: #f0f0ff;
  --text-dim: #a6a6c2;
  
  --font-display: 'Syne', sans-serif;
  --font-cyber: 'Orbitron', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-retro: 'Press Start 2P', monospace;
  
  --zap-color: #25d366;
  --zap-glow: rgba(37, 211, 102, 0.6);
}

/* Reset Universal & Prevenção Absoluta de Overflow */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-space);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  background: radial-gradient(circle at 50% 20%, #170e33 0%, #06050c 80%);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a, button, [role="button"], input, .hud-btn, .crazy-card, .easter-btn, .copy-pill {
  cursor: pointer;
}

/* ==========================================================================
   CANVAS DE FUNDO & FILTROS CRT
   ========================================================================== */
#warp-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

.crt-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%
  ), linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.02),
    rgba(0, 255, 0, 0.01),
    rgba(0, 255, 0, 0.02)
  );
  background-size: 100% 3px, 6px 100%;
  pointer-events: none;
  z-index: 9998;
}

body.crt-active .crt-overlay {
  display: block;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  z-index: -1;
}

/* ==========================================================================
   CURSOR PERSONALIZADO (Apenas Desktop com mouse)
   ========================================================================== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    display: block;
  }
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon-cyan), 0 0 20px var(--neon-pink);
  transition: transform 0.15s ease;
}

.cursor-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  border: 2px dashed var(--neon-pink);
  border-radius: 50%;
  animation: spinRing 4s linear infinite;
  opacity: 0.6;
}

@keyframes spinRing {
  100% { transform: rotate(360deg); }
}

body.cursor-hover .cursor-dot {
  transform: scale(2.2);
  background: var(--neon-yellow);
}

body.cursor-hover .cursor-ring {
  border-color: var(--neon-green);
  opacity: 1;
  transform: scale(1.3);
}

/* ==========================================================================
   HEADER NAVBAR RESPONSIVA
   ========================================================================== */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem clamp(1rem, 3vw, 2rem);
  background: rgba(6, 5, 12, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
  gap: 0.8rem;
  width: 100%;
  max-width: 100vw;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.brand-glitch {
  font-family: var(--font-cyber);
  font-weight: 900;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 2px 2px 0 var(--neon-pink), -2px -2px 0 var(--neon-cyan);
}

.brand-badge {
  font-family: var(--font-retro);
  font-size: 0.55rem;
  color: var(--neon-green);
  background: rgba(0, 255, 136, 0.15);
  border: 1px solid var(--neon-green);
  padding: 3px 6px;
  border-radius: 4px;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: nowrap;
}

.hud-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-family: var(--font-cyber);
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
  min-height: 38px;
  white-space: nowrap;
}

.hud-btn:hover {
  background: rgba(0, 243, 255, 0.15);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 243, 255, 0.3);
}

.hud-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-cyber);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  box-shadow: 0 0 18px var(--zap-glow);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  min-height: 38px;
  flex-shrink: 0;
}

.hud-whatsapp-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 25px var(--zap-glow), 0 0 10px #fff;
}

.zap-pulse-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulseDot 1.2s infinite alternate;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 1; }
}

/* ==========================================================================
   CHAOS TICKER
   ========================================================================== */
.chaos-ticker-wrapper {
  background: #ff007f;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.4rem 0;
  font-family: var(--font-cyber);
  font-size: clamp(0.68rem, 1.8vw, 0.8rem);
  font-weight: 900;
  letter-spacing: 1px;
  border-bottom: 2px solid #000;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
  width: 100%;
  max-width: 100vw;
}

.chaos-ticker {
  display: inline-flex;
  gap: 2.5rem;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   MAIN CONTAINER
   ========================================================================== */
.main-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1rem, 4vw, 3rem) 0.5rem 1rem;
  position: relative;
  width: 100%;
}

.orbilo-eye-wrapper {
  position: relative;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.orbilo-orb {
  width: clamp(100px, 18vw, 130px);
  height: clamp(100px, 18vw, 130px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7b2cbf, #10002b);
  border: 4px solid var(--neon-cyan);
  box-shadow: 0 0 35px var(--neon-cyan), inset 0 0 25px var(--neon-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: floatOrb 5s ease-in-out infinite;
  user-select: none;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.orb-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px dashed var(--neon-pink);
  border-radius: 50%;
  animation: spinRing 12s linear infinite reverse;
}

.orb-pupil {
  width: clamp(36px, 7vw, 46px);
  height: clamp(36px, 7vw, 46px);
  background: #000;
  border-radius: 50%;
  border: 3px solid var(--neon-yellow);
  position: relative;
  transition: transform 0.08s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-reflection {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 6px;
  box-shadow: 0 0 6px #fff;
}

/* Balão centralizado de forma universal - ZERO OVERFLOW */
.eye-speech-bubble {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon-yellow);
  color: #000;
  font-family: var(--font-cyber);
  font-size: clamp(0.7rem, 2vw, 0.78rem);
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 255, 0, 0.5);
  width: max-content;
  max-width: min(340px, 86vw);
  text-align: center;
  white-space: normal;
  line-height: 1.3;
  animation: bounceBubble 3s infinite alternate;
}

@keyframes bounceBubble {
  0% { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(-4px); }
}

.hero-content {
  width: 100%;
}

.hero-pretitle {
  font-family: var(--font-cyber);
  font-size: clamp(0.72rem, 2vw, 0.88rem);
  color: var(--neon-green);
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 11vw, 6.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #fff 15%, var(--neon-cyan) 60%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 45px rgba(0, 243, 255, 0.35);
  position: relative;
  word-break: break-word;
}

.glitch-mega::before,
.glitch-mega::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glitch-mega::before {
  left: 3px;
  text-shadow: -2px 0 var(--neon-pink);
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch-mega::after {
  left: -3px;
  text-shadow: -2px 0 var(--neon-cyan);
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { clip: rect(10px, 9999px, 44px, 0); }
  25% { clip: rect(60px, 9999px, 80px, 0); }
  50% { clip: rect(30px, 9999px, 50px, 0); }
  75% { clip: rect(80px, 9999px, 110px, 0); }
  100% { clip: rect(20px, 9999px, 70px, 0); }
}

@keyframes glitch-anim2 {
  0% { clip: rect(50px, 9999px, 90px, 0); }
  30% { clip: rect(20px, 9999px, 40px, 0); }
  70% { clip: rect(70px, 9999px, 130px, 0); }
  100% { clip: rect(10px, 9999px, 60px, 0); }
}

.hero-subtitle {
  font-size: clamp(0.98rem, 2.3vw, 1.3rem);
  max-width: 740px;
  margin: 0 auto clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-dim);
  padding: 0 0.5rem;
}

.highlight-acid {
  display: block;
  color: var(--neon-yellow);
  font-weight: 700;
  margin-top: 0.4rem;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

/* AÇÕES DO HERO COM QUEBRA RESPONSIVA FLUIDA */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.2rem);
  width: 100%;
}

.hyper-btn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(0.85rem, 2.2vw, 1.15rem) clamp(1.2rem, 3.5vw, 2.2rem);
  border-radius: 16px;
  font-family: var(--font-cyber);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-height: 50px;
  text-align: center;
  max-width: 100%;
}

.cta-zap-mega {
  background: linear-gradient(135deg, #00ff88, #05a050);
  color: #032b13;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.5);
  border: 2px solid #fff;
}

.cta-zap-mega:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.8), 0 0 15px #fff;
}

.cta-zap-mega .hyper-text {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cta-zap-mega .hyper-sub {
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: #02200d;
  background: rgba(255, 255, 255, 0.75);
  padding: 2px 10px;
  border-radius: 20px;
  margin-top: 4px;
}

.cta-chaos-trigger {
  background: #ff0055;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
  border: 2px dashed #fff;
  flex-direction: row;
  gap: 0.5rem;
  font-size: clamp(0.82rem, 1.8vw, 0.92rem);
}

.cta-chaos-trigger:hover {
  transform: translateY(-3px) scale(1.03);
  background: #ff2a75;
  box-shadow: 0 0 35px rgba(255, 0, 85, 0.8);
}

/* STATS BAR */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
  width: 100%;
  max-width: 900px;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.85rem 0.5rem;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-pill:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-2px);
}

.stat-num {
  font-family: var(--font-cyber);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 900;
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.stat-label {
  font-size: clamp(0.68rem, 1.7vw, 0.76rem);
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 3px;
}

/* ==========================================================================
   SEÇÕES & HEADERS
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: clamp(1.8rem, 4.5vw, 2.8rem);
}

.badge-tag {
  font-family: var(--font-cyber);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon-pink);
  background: rgba(255, 0, 127, 0.15);
  border: 1px solid var(--neon-pink);
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: #fff;
  line-height: 1.15;
}

.section-desc {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: var(--text-dim);
  max-width: 650px;
  margin: 0.6rem auto 0;
  padding: 0 0.5rem;
}

/* ==========================================================================
   CARDS DE SERVIÇOS (100% RESPONSIVOS)
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  width: 100%;
}

.crazy-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.2rem) clamp(1.2rem, 3vw, 1.8rem);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.crazy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  opacity: 0.3;
}

.crazy-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-cyan);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 35px rgba(0, 243, 255, 0.2);
}

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

.card-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-family: var(--font-cyber);
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(0, 243, 255, 0.15);
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  padding: 3px 8px;
  border-radius: 6px;
}

.card-icon {
  font-size: clamp(2.3rem, 5vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.card-title {
  font-family: var(--font-cyber);
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #fff;
  line-height: 1.25;
}

.card-text {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.card-bullets {
  list-style: none;
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.card-bullets li {
  font-size: 0.86rem;
  color: #d8d8ee;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-zap-link {
  font-family: var(--font-cyber);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--neon-green);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0;
}

.card-zap-link:hover {
  color: #fff;
  transform: translateX(4px);
  text-shadow: 0 0 10px var(--neon-green);
}

/* ==========================================================================
   SEÇÃO TECNOLOGIAS
   ========================================================================== */
.section-tech {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(1.2rem, 3.5vw, 1.8rem);
  text-align: center;
  width: 100%;
}

.tech-title {
  font-family: var(--font-cyber);
  font-size: 0.82rem;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  margin-bottom: 0.9rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.tech-tag {
  background: rgba(0, 243, 255, 0.08);
  border: 1px solid rgba(0, 243, 255, 0.25);
  color: #fff;
  font-family: var(--font-cyber);
  font-size: clamp(0.7rem, 1.8vw, 0.78rem);
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
  transition: all 0.2s ease;
}

.tech-tag:hover {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: 0 0 12px var(--neon-cyan);
  transform: translateY(-2px);
}

/* ==========================================================================
   MANIFESTO / CONTATO DIRETO
   ========================================================================== */
.manifesto-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  background: radial-gradient(circle at top left, #170e30 0%, #0c081d 100%);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 24px;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  align-items: center;
  width: 100%;
}

@media (max-width: 860px) {
  .manifesto-box {
    grid-template-columns: 1fr;
  }
}

.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.8vw, 2.3rem);
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.15;
}

.manifesto-text {
  color: var(--text-dim);
  font-size: clamp(0.92rem, 2vw, 1rem);
  margin-bottom: 1.4rem;
}

.manifesto-steps {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: clamp(0.85rem, 1.8vw, 0.92rem);
  color: #e0e0ff;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--neon-cyan);
  color: #000;
  font-family: var(--font-cyber);
  font-weight: 900;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zap-direct-card {
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid var(--neon-green);
  border-radius: 20px;
  padding: clamp(1.5rem, 3.5vw, 2.2rem) clamp(1rem, 2.5vw, 1.4rem);
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.25);
  width: 100%;
}

.zap-badge-live {
  font-family: var(--font-cyber);
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--neon-green);
  margin-bottom: 0.5rem;
}

.zap-number-display {
  font-family: var(--font-cyber);
  font-size: clamp(1.25rem, 3.8vw, 1.7rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 1.5px;
  margin-bottom: 0.4rem;
  text-shadow: 0 0 15px var(--neon-green);
  word-break: break-all;
}

.zap-direct-card p {
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-bottom: 1.2rem;
}

.cta-zap-clean {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  padding: 0.85rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 0 20px var(--zap-glow);
  width: 100%;
  max-width: 100%;
}

.cta-zap-clean:hover {
  transform: scale(1.02);
  box-shadow: 0 0 28px var(--zap-glow);
}

/* ==========================================================================
   ROLETA INTERATIVA
   ========================================================================== */
.roulette-box {
  background: radial-gradient(circle, #1c113b 0%, #0c081d 100%);
  border: 2px dashed var(--neon-yellow);
  border-radius: 24px;
  padding: clamp(1.4rem, 4vw, 2.6rem) clamp(1rem, 3vw, 1.8rem);
  text-align: center;
  box-shadow: 0 0 35px rgba(255, 255, 0, 0.15);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.roulette-display {
  font-family: var(--font-cyber);
  font-size: clamp(0.92rem, 2.3vw, 1.35rem);
  font-weight: 800;
  color: var(--neon-yellow);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 0, 0.3);
  margin-bottom: 1.4rem;
  text-shadow: 0 0 12px rgba(255, 255, 0, 0.5);
  line-height: 1.35;
  word-break: break-word;
}

.roulette-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.btn-spin {
  background: linear-gradient(135deg, var(--neon-yellow), var(--neon-orange));
  color: #000;
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
  flex-direction: row;
  gap: 0.5rem;
  font-size: clamp(0.82rem, 1.8vw, 0.92rem);
}

.btn-spin:hover {
  transform: translateY(-2px) scale(1.03);
}

.btn-share-zap {
  background: #25d366;
  color: #fff;
  box-shadow: 0 0 20px var(--zap-glow);
  flex-direction: row;
  gap: 0.5rem;
  font-size: clamp(0.82rem, 1.8vw, 0.92rem);
}

.btn-share-zap.hidden {
  display: none !important;
}

/* ==========================================================================
   FORTALEZA DO WHATSAPP (FINAL)
   ========================================================================== */
.section-final-zap {
  padding: 0.5rem 0;
  width: 100%;
}

.zap-shrine {
  background: radial-gradient(circle at center, #073b1f 0%, #041a0d 60%, #06050c 100%);
  border: 3px solid var(--neon-green);
  border-radius: clamp(20px, 4vw, 32px);
  padding: clamp(2.2rem, 5vw, 3.8rem) clamp(1rem, 2.5vw, 1.8rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.25), inset 0 0 35px rgba(0, 255, 136, 0.15);
  width: 100%;
}

.zap-shrine-radar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 90vw);
  height: min(500px, 90vw);
  border: 1px dashed rgba(0, 255, 136, 0.2);
  border-radius: 50%;
  pointer-events: none;
  animation: radarSpin 20s linear infinite;
}

@keyframes radarSpin {
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.zap-big-badge {
  font-family: var(--font-cyber);
  font-size: clamp(0.68rem, 1.8vw, 0.82rem);
  font-weight: 900;
  color: var(--neon-yellow);
  background: rgba(255, 255, 0, 0.15);
  border: 1px solid var(--neon-yellow);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1.5px;
  margin-bottom: 1.1rem;
  max-width: 95vw;
}

.zap-shrine-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.9rem;
}

.color-cycle {
  background: linear-gradient(90deg, #00ff88, #00f3ff, #ff007f, #00ff88);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: colorWave 4s ease infinite;
}

@keyframes colorWave {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.zap-shrine-subtitle {
  color: #c0f4d3;
  font-size: clamp(0.92rem, 2vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto clamp(1.3rem, 3.5vw, 2rem);
  padding: 0 0.5rem;
}

.phone-number-showcase {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: rgba(0, 0, 0, 0.75);
  padding: 0.75rem clamp(0.9rem, 2.5vw, 1.6rem);
  border-radius: 50px;
  border: 2px solid var(--neon-green);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.35);
  margin-bottom: 1.8rem;
  max-width: 100%;
}

.phone-icon {
  font-size: 1.3rem;
}

.phone-digits {
  font-family: var(--font-cyber);
  font-size: clamp(1.15rem, 3.2vw, 1.9rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 1.5px;
  text-shadow: 0 0 15px var(--neon-green);
}

.copy-pill {
  background: var(--neon-green);
  color: #032b13;
  border: none;
  font-family: var(--font-cyber);
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.55rem 1.1rem;
  border-radius: 30px;
  transition: all 0.2s ease;
  min-height: 36px;
}

.copy-pill:hover {
  background: #fff;
  transform: scale(1.04);
}

.shrine-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta-zap-ultramax {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: clamp(0.82rem, 2vw, 1.15rem);
  padding: clamp(0.95rem, 2.3vw, 1.25rem) clamp(1.2rem, 3.5vw, 2.6rem);
  border-radius: 50px;
  box-shadow: 0 0 35px var(--zap-glow), 0 0 10px #fff;
  border: 2px solid #fff;
  flex-direction: row;
  gap: 0.5rem;
  max-width: 100%;
  width: auto;
}

.cta-zap-ultramax:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 0 50px var(--zap-glow), 0 0 20px #fff;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.cosmic-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(2.2rem, 4.5vw, 3.2rem) 1.2rem 1.5rem;
  background: #030206;
  width: 100%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin-bottom: 1.8rem;
}

.footer-logo {
  font-family: var(--font-cyber);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.4rem;
}

.footer-col h4 {
  font-family: var(--font-cyber);
  font-size: 0.8rem;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.footer-link {
  color: var(--neon-green);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-micro {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 3px;
}

.easter-btn {
  background: rgba(176, 38, 255, 0.15);
  border: 1px solid var(--neon-purple);
  color: #e0b0ff;
  font-family: var(--font-cyber);
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  font-size: 0.75rem;
  transition: all 0.2s ease;
  min-height: 40px;
}

.easter-btn:hover {
  background: var(--neon-purple);
  color: #fff;
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.4rem;
}

/* ==========================================================================
   BOTÃO FLUTUANTE DO WHATSAPP (100% RESPONSIVO)
   ========================================================================== */
.floating-zap-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
}

.floating-zap-orb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  box-shadow: 0 0 25px var(--zap-glow), 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-zap-orb:hover {
  transform: scale(1.08) rotate(6deg);
  box-shadow: 0 0 35px var(--zap-glow), 0 0 15px #fff;
}

.zap-svg-icon {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
}

.float-pulse, .float-aura {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
}

.float-pulse {
  border: 2px solid var(--zap-color);
  animation: floatRipple 2s cubic-bezier(0.1, 0.2, 0.3, 1) infinite;
}

.float-aura {
  background: var(--zap-color);
  opacity: 0.3;
  animation: floatRipple 2s cubic-bezier(0.1, 0.2, 0.3, 1) infinite 0.7s;
}

@keyframes floatRipple {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.1); opacity: 0; }
}

.floating-zap-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  font-family: var(--font-cyber);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  border: 1px solid var(--neon-green);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.floating-zap-orb:hover .floating-zap-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

/* ==========================================================================
   TOASTS & MODO CAOS
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: min(380px, calc(100vw - 3rem));
  pointer-events: none;
}

.toast {
  background: #0b0718;
  color: #fff;
  border: 1px solid var(--neon-cyan);
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  font-family: var(--font-cyber);
  font-size: 0.78rem;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: slideInToast 0.3s ease-out forwards;
}

@keyframes slideInToast {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

body.chaos-mode {
  animation: shakeScreen 0.15s infinite;
  filter: hue-rotate(90deg) contrast(130%) !important;
}

@keyframes shakeScreen {
  0% { transform: translate(1px, 1px); }
  25% { transform: translate(-1px, 0px); }
  50% { transform: translate(1px, -1px); }
  75% { transform: translate(-1px, 1px); }
  100% { transform: translate(1px, -1px); }
}

.chaos-particle {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  animation: dropChaos 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes dropChaos {
  0% { transform: translateY(-10vh) rotate(0deg) scale(0.6); opacity: 1; }
  100% { transform: translateY(110vh) rotate(540deg) scale(1.4); opacity: 0; }
}

/* ==========================================================================
   BREAKPOINTS DE PRECISÃO CIRÚRGICA (100% RESPONSIVO)
   ========================================================================== */

/* Tablets & Telas Médias (<= 768px) */
@media (max-width: 768px) {
  .top-nav {
    padding: 0.7rem 1rem;
  }

  .nav-controls {
    gap: 0.5rem;
  }

  .hud-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.68rem;
  }

  .hud-btn .hud-text {
    display: none; /* No mobile esconde o texto para economizar espaço e evitar overflow */
  }

  .hud-whatsapp-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }

  /* Botões do Hero empilham verticalmente e preenchem com largura agradável */
  .hero-actions {
    flex-direction: column;
    gap: 0.9rem;
    align-items: center;
  }

  .hero-actions .hyper-btn {
    width: 100%;
    max-width: 360px;
  }

  .floating-zap-container {
    bottom: 1.2rem;
    right: 1.2rem;
  }

  .floating-zap-orb {
    width: 54px;
    height: 54px;
  }

  .zap-svg-icon {
    width: 26px;
    height: 26px;
  }

  .floating-zap-tooltip {
    display: none;
  }

  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 5rem;
    max-width: calc(100vw - 2rem);
  }
}

/* Smartphones (<= 480px) */
@media (max-width: 480px) {
  .top-nav {
    padding: 0.55rem 0.75rem;
  }

  .brand-glitch {
    font-size: 1.3rem;
  }

  .brand-badge {
    display: none;
  }

  .hud-whatsapp-btn .zap-text {
    font-size: 0.72rem;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }

  .stat-pill {
    padding: 0.7rem 0.35rem;
  }

  .phone-number-showcase {
    flex-direction: column;
    border-radius: 20px;
    padding: 1rem;
    width: 100%;
  }

  .copy-pill {
    width: 100%;
  }

  .cta-zap-ultramax {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.95rem;
  }

  .roulette-controls {
    flex-direction: column;
    width: 100%;
  }

  .roulette-controls .hyper-btn {
    width: 100%;
  }

  .cta-zap-clean {
    width: 100%;
  }
}

/* Telas Ultra-Pequenas (<= 360px - iPhone SE / Galaxys antigos) */
@media (max-width: 360px) {
  .top-nav {
    padding: 0.5rem;
  }

  .brand-glitch {
    font-size: 1.15rem;
  }

  .hud-whatsapp-btn {
    padding: 0.35rem 0.55rem;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .zap-number-display {
    font-size: 1.2rem;
  }
}
