/* ════════════════════════════════════════════════════════════
   MaxNitro — Nano Ureia Faisca
   Design: Dark Agro-Tech / MaxNitro Brand
   ════════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Brand — MaxNitro palette */
  --neon:           #31F56B;
  --neon-bright:    #3DFF75;
  --neon-mid:       #1DBB53;
  --neon-dim:       #139A3F;
  --neon-glow:      rgba(49,245,107,.35);
  --neon-glow-soft: rgba(49,245,107,.15);

  --amber:          #F3D34A;
  --red-soft:       #FF4A4A;
  --orange:         #FF6A3D;

  /* Backgrounds — dark green-black */
  --bg-base:        #021509;
  --bg-950:         #051A0B;
  --bg-900:         #07170B;
  --bg-800:         #0B1D10;
  --bg-700:         #102316;
  --bg-600:         #12291A;
  --bg-500:         #14301D;
  --bg-400:         #1B3D24;

  /* Borders */
  --border:         rgba(49,245,107,.12);
  --border-mid:     rgba(49,245,107,.25);
  --border-bright:  rgba(49,245,107,.5);
  --border-dark:    rgba(255,255,255,.06);

  /* Text */
  --text-white:     #F5F7F4;
  --text-soft:      rgba(245,247,244,.72);
  --text-muted:     #8EA18B;
  --text-dim:       rgba(245,247,244,.28);

  /* Sizing */
  --max-w:          1200px;
  --header-h:       68px;
  --r:              14px;
  --r-lg:           20px;
  --r-xl:           28px;
  --r-pill:         999px;

  /* Font */
  --font: 'Outfit', system-ui, sans-serif;

  /* Easing */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── BACKGROUND GRID ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(49,245,107,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49,245,107,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 0%, transparent 100%);
}

/* ── CONTAINER ── */
.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 28px;
}

/* ── NOISE OVERLAY ── */
.noise-overlay {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

/* ════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  height: var(--header-h); z-index: 900;
  background: rgba(2,21,9,.85);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: border-color .3s, background .3s;
}
.site-header.opaque {
  background: rgba(2,21,9,.97);
  border-bottom-color: var(--border-mid);
}

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%; gap: 24px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.logo-img {
  height: 36px; width: auto;
  filter: brightness(1) drop-shadow(0 0 8px rgba(49,245,107,.4));
}

.header-nav {
  display: flex; gap: 2px;
}
.header-nav a {
  padding: 8px 16px; font-size: .875rem; font-weight: 500;
  color: var(--text-muted); border-radius: var(--r-pill);
  transition: color .2s, background .2s;
}
.header-nav a:hover {
  color: var(--neon); background: rgba(49,245,107,.08);
}

.btn-header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--neon); color: #021509;
  font-size: .8125rem; font-weight: 700;
  padding: 9px 22px; border-radius: var(--r-pill);
  transition: all .25s var(--ease);
  box-shadow: 0 0 20px var(--neon-glow);
  white-space: nowrap;
}
.btn-header-cta:hover {
  background: var(--neon-bright);
  box-shadow: 0 0 32px var(--neon-glow), 0 0 8px var(--neon-glow-soft);
  transform: translateY(-1px);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: rgba(49,245,107,.08);
  border: 1px solid var(--border-mid);
  border-radius: 10px; cursor: pointer;
  padding: 0; transition: background .2s;
}
.hamburger:hover { background: rgba(49,245,107,.16); }
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--neon); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: rgba(2,21,9,.97);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border-mid);
  z-index: 890;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav {
  display: flex; flex-direction: column;
  padding: 20px 24px 28px;
  gap: 4px;
}
.mobile-link {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 16px;
  font-size: 1rem; font-weight: 500; color: var(--text-muted);
  border-radius: 12px;
  transition: color .2s, background .2s;
  border-bottom: 1px solid var(--border);
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--neon); background: rgba(49,245,107,.06); }
.mobile-link--cta {
  margin-top: 12px;
  background: var(--neon); color: #021509 !important;
  font-weight: 700; justify-content: center;
  border-radius: var(--r-pill); border: none;
  box-shadow: 0 0 20px var(--neon-glow);
}
.mobile-link--cta:hover {
  background: var(--neon-bright) !important;
  box-shadow: 0 0 32px var(--neon-glow);
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--header-h);
}

.hero-bg-image {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600&q=50&auto=format&fit=crop')
    center / cover no-repeat;
  filter: brightness(.12) saturate(.4) hue-rotate(100deg);
}

.hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(49,245,107,.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(2,21,9,.9) 0%, transparent 50%),
    linear-gradient(180deg, transparent 60%, var(--bg-base) 100%);
}

.hero-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; width: 100%; height: 100%; display: block; }

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
  animation: orbDrift 20s ease-in-out infinite;
}
.orb-1 { width: 700px; height: 700px; background: rgba(49,245,107,.07); top: -15%; left: 25%; }
.orb-2 { width: 400px; height: 400px; background: rgba(49,245,107,.05); bottom: 5%; right: -10%; animation-delay: -7s; }
.orb-3 { width: 300px; height: 300px; background: rgba(19,154,63,.08); top: 40%; left: -8%; animation-delay: -14s; }

@keyframes orbDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-18px) scale(1.06); }
  66%      { transform: translate(-18px,28px) scale(.94); }
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding-top: 80px; padding-bottom: 100px;
}
.hero-content {
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 600; color: var(--neon);
  background: rgba(49,245,107,.08);
  border: 1px solid var(--border-mid);
  padding: 5px 14px; border-radius: var(--r-pill);
  margin-bottom: 28px; letter-spacing: .06em; text-transform: uppercase;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon), 0 0 16px var(--neon-glow);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 6px var(--neon); }
  50%      { box-shadow: 0 0 18px var(--neon), 0 0 32px var(--neon-glow); }
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.06;
  color: var(--text-white); margin-bottom: 24px;
  letter-spacing: -.025em;
}
.hero-title em {
  font-style: normal;
  color: var(--neon);
  text-shadow: 0 0 24px rgba(49,245,107,.6), 0 0 48px rgba(49,245,107,.2);
}

.hero-desc {
  font-size: 1.0625rem; color: var(--text-soft);
  line-height: 1.72; margin-bottom: 40px; max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* Buttons */
.btn-primary-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--neon); color: #021509;
  font-weight: 700; font-size: .9375rem;
  padding: 15px 30px; border-radius: var(--r-pill);
  box-shadow: 0 0 24px var(--neon-glow), inset 0 1px 0 rgba(255,255,255,.2);
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.btn-primary-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.25), transparent 70%);
  pointer-events: none;
}
.btn-primary-hero:hover {
  background: var(--neon-bright);
  box-shadow: 0 0 40px var(--neon-glow), 0 0 80px rgba(49,245,107,.15);
  transform: translateY(-3px);
}

.btn-ghost-hero {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-soft); font-weight: 600; font-size: .9375rem;
  padding: 15px 28px; border-radius: var(--r-pill);
  border: 1px solid var(--border-mid);
  background: rgba(49,245,107,.05);
  transition: all .25s var(--ease);
}
.btn-ghost-hero:hover {
  color: var(--neon); border-color: var(--border-bright);
  background: rgba(49,245,107,.1);
  box-shadow: 0 0 16px var(--neon-glow-soft);
}

.hero-stats { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.stat-item  { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--text-muted); font-weight: 500; }
.stat-icon  { color: var(--neon); font-size: .875rem; }
.stat-sep   { width: 1px; height: 18px; background: var(--border); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-img-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border-mid);
  box-shadow: 0 0 40px rgba(49,245,107,.12), 0 32px 80px rgba(0,0,0,.6);
}
.hero-img { width: 100%; height: 680px; object-fit: cover; display: block; }
.img-overlay-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(2,21,9,.8) 100%);
}

.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  background: rgba(7,23,11,.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-mid);
  padding: 13px 18px; border-radius: var(--r);
  box-shadow: 0 0 20px rgba(49,245,107,.1), 0 8px 32px rgba(0,0,0,.5);
  animation: floatY 3.5s ease-in-out infinite;
}
.float-card--top    { top: 24px; right: -20px; animation-delay: 0s; }
.float-card--bottom { bottom: 36px; left: -20px; animation-delay: -1.75s; }

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

.fc-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.fc-dot.green { background: var(--neon); box-shadow: 0 0 10px var(--neon-glow); }
.fc-dot.amber { background: var(--amber); box-shadow: 0 0 10px rgba(243,211,74,.4); }
.fc-body { display: flex; flex-direction: column; gap: 1px; }
.fc-body strong { font-size: .8rem; font-weight: 700; color: var(--text-white); }
.fc-body span   { font-size: .7rem; color: var(--text-muted); }

.hero-scroll-cue { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3; }
.scroll-line {
  width: 1px; height: 52px; margin: 0 auto;
  background: linear-gradient(180deg, var(--neon) 0%, transparent 100%);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%  { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════════════════════════════════
   CRED BAR
════════════════════════════════════════════════════════════ */
.cred-bar {
  background: var(--bg-900);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.cred-inner {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap; justify-content: center;
}
.cred-label { font-size: .75rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
.cred-items { display: flex; gap: 8px; flex-wrap: wrap; }
.cred-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; color: var(--text-muted);
  padding: 6px 16px;
  background: rgba(49,245,107,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  transition: all .2s;
}
.cred-item:hover { color: var(--neon); border-color: var(--border-mid); background: rgba(49,245,107,.08); }
.cred-item i { color: var(--neon); font-size: .8rem; }

/* ════════════════════════════════════════════════════════════
   SECTION BASE
════════════════════════════════════════════════════════════ */
.section { padding: 100px 0; position: relative; }
.section--dark    { background: var(--bg-900); }
.section--tinted  { background: var(--bg-950); }
.section--form    { background: var(--bg-900); overflow: hidden; }
.section--product { background: var(--bg-800); overflow: hidden; }
.section--notice  { padding: 56px 0; background: var(--bg-base); }

/* Glow spots */
.section-dark-glow, .form-section-glow {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(49,245,107,.1) 0%, transparent 70%);
  pointer-events: none;
}
.section-dark-glow { width: 600px; height: 600px; top: -200px; left: -200px; }
.section-dark-glow.glow-right { top: auto; left: auto; bottom: -150px; right: -150px; }
.form-section-glow { width: 500px; height: 500px; top: -100px; right: -100px; }

/* Section header */
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.section-title {
  font-family: var(--font);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800; line-height: 1.1;
  color: var(--text-white); margin-bottom: 14px;
  letter-spacing: -.02em;
}

.section-sub {
  font-size: 1rem; color: var(--text-muted);
  max-width: 560px; line-height: 1.7;
}

/* Gradient highlight text */
.text-neon {
  color: var(--neon);
  text-shadow: 0 0 20px rgba(49,245,107,.5);
}

/* Pill label */
.pill {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--neon);
  background: rgba(49,245,107,.08);
  border: 1px solid var(--border-mid);
  padding: 5px 14px; border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.pill--light {
  color: var(--neon);
  background: rgba(49,245,107,.06);
  border-color: var(--border);
}

/* ════════════════════════════════════════════════════════════
   CONTEXT CARDS
════════════════════════════════════════════════════════════ */
.context-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.ctx-card {
  background: var(--bg-800);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.ctx-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(49,245,107,.06) 0%, transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.ctx-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-mid);
  box-shadow: 0 0 32px rgba(49,245,107,.08), 0 20px 48px rgba(0,0,0,.4);
}
.ctx-card:hover::before { opacity: 1; }

.ctx-card--featured {
  background: linear-gradient(135deg, #041F0C 0%, #082814 60%, #0A3318 100%);
  border-color: var(--border-bright);
  box-shadow: 0 0 24px rgba(49,245,107,.12);
}
.ctx-card--featured:hover { box-shadow: 0 0 40px rgba(49,245,107,.2), 0 20px 48px rgba(0,0,0,.4); }

.ctx-num {
  font-family: var(--font); font-size: 4rem; font-weight: 900;
  color: rgba(49,245,107,.06); line-height: 1;
  position: absolute; top: 16px; right: 20px; pointer-events: none;
}

.ctx-icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 20px;
}
.ctx-icon.green { background: rgba(49,245,107,.12); color: var(--neon); border: 1px solid rgba(49,245,107,.2); }
.ctx-icon.amber { background: rgba(243,211,74,.1);  color: var(--amber); border: 1px solid rgba(243,211,74,.2); }
.ctx-icon.red   { background: rgba(255,74,74,.1);   color: var(--red-soft); border: 1px solid rgba(255,74,74,.2); }

.ctx-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-white); margin-bottom: 10px; }
.ctx-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   SPLIT LAYOUT
════════════════════════════════════════════════════════════ */
.split-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: stretch;
}
.split-layout .split-visual {
  position: relative;
}
.split-layout .split-visual .visual-frame {
  position: absolute; inset: 0; height: 100%;
}
.split-layout--rev .split-visual { order: -1; }

.split-desc {
  font-size: 1rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 32px;
}

.visual-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border-mid);
  box-shadow: 0 0 40px rgba(49,245,107,.1), 0 32px 64px rgba(0,0,0,.5);
  height: 100%;
}
.visual-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; position: absolute; inset: 0; }
.visual-frame--tinted img { filter: saturate(.8) brightness(.9) hue-rotate(5deg); }

.visual-badge {
  position: absolute; top: 20px; right: -14px;
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--neon); color: #021509;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px;
  box-shadow: 0 0 28px var(--neon-glow);
  animation: floatY 4s ease-in-out infinite;
}
.visual-badge i    { font-size: 1.25rem; }
.visual-badge span { font-size: .55rem; font-weight: 800; text-align: center; line-height: 1.3; text-transform: uppercase; letter-spacing: .04em; }

/* Check list */
.check-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.cl-icon {
  width: 22px; height: 22px; min-width: 22px; border-radius: 50%;
  background: rgba(49,245,107,.12); color: var(--neon);
  border: 1px solid rgba(49,245,107,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; margin-top: 2px;
}
.cl-text strong { font-size: .9375rem; font-weight: 700; color: var(--text-white); display: block; }
.cl-text span   { font-size: .8125rem; color: var(--text-muted); }

.btn-primary-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--neon); color: #021509;
  font-weight: 700; font-size: .9375rem;
  padding: 14px 28px; border-radius: var(--r-pill);
  box-shadow: 0 0 24px var(--neon-glow);
  transition: all .3s var(--ease);
}
.btn-primary-dark:hover {
  background: var(--neon-bright);
  box-shadow: 0 0 40px var(--neon-glow);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   STEPS
════════════════════════════════════════════════════════════ */
.steps-row { display: flex; align-items: stretch; gap: 0; }

.step-card {
  flex: 1;
  background: var(--bg-800); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 24px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.step-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--neon); box-shadow: 0 0 8px var(--neon);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-mid);
  box-shadow: 0 0 28px rgba(49,245,107,.1), 0 16px 40px rgba(0,0,0,.4);
}
.step-card:hover::after { transform: scaleX(1); }

.step-arrow { display: flex; align-items: center; padding: 0 10px; color: var(--border-mid); font-size: 1.1rem; flex-shrink: 0; align-self: center; }

.step-num { font-family: var(--font); font-size: 2.75rem; font-weight: 900; color: rgba(49,245,107,.07); line-height: 1; margin-bottom: 4px; }
.step-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(49,245,107,.1); color: var(--neon);
  border: 1px solid rgba(49,245,107,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.0625rem; margin-bottom: 16px;
}
.step-card h3 { font-size: .9375rem; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.step-card p  { font-size: .8125rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   MODELO DE ATUAÇÃO — TIMELINE
════════════════════════════════════════════════════════════ */
.section--atuacao {
  background: var(--bg-base);
  position: relative; overflow: hidden;
}
.atuacao-bg-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(49,245,107,.07) 0%, transparent 70%);
  pointer-events: none;
}

.atuacao-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: stretch;
}
.atuacao-image { display: flex; }

.atuacao-img-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border-mid);
  box-shadow: 0 0 40px rgba(49,245,107,.1), 0 32px 64px rgba(0,0,0,.5);
  width: 100%; min-height: 360px;
}
.atuacao-img-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
  position: absolute; inset: 0;
}
.atuacao-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2,21,9,.65) 100%);
}

.atuacao-timeline {
  display: flex; flex-direction: column; gap: 0;
}

.at-item {
  display: flex; gap: 28px; align-items: flex-start;
}

/* Coluna esquerda: node + linha */
.at-left {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0;
}

.at-node {
  position: relative; width: 64px; height: 64px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

/* Anel externo animado */
.at-node::before {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--border-mid);
  animation: nodeRing 3s ease-in-out infinite;
}
.at-item:hover .at-node::before {
  border-color: var(--neon);
  box-shadow: 0 0 16px var(--neon-glow);
}
@keyframes nodeRing {
  0%,100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.1); opacity: 1; }
}

.at-num {
  position: absolute; top: -8px; right: -4px;
  font-size: .65rem; font-weight: 800;
  color: var(--neon); background: var(--bg-800);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-pill);
  padding: 1px 7px; line-height: 1.6;
  letter-spacing: .04em;
}

.at-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(49,245,107,.1);
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--neon); font-size: 1.125rem;
  transition: background .3s, box-shadow .3s;
  position: relative; z-index: 1;
}
.at-item:hover .at-icon {
  background: rgba(49,245,107,.18);
  box-shadow: 0 0 20px var(--neon-glow);
}

/* Linha vertical conectando os nodes */
.at-line {
  width: 1px; flex: 1; min-height: 48px;
  background: linear-gradient(180deg, var(--neon) 0%, rgba(49,245,107,.1) 100%);
  margin: 4px 0;
  position: relative;
}
.at-line::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--neon); opacity: .4;
}

/* Conteúdo direito */
.at-content {
  padding: 6px 0 48px;
  flex: 1;
}
.at-item:last-child .at-content { padding-bottom: 0; }

.at-content h3 {
  font-size: 1.125rem; font-weight: 700;
  color: var(--text-white); margin-bottom: 8px;
  transition: color .2s;
}
.at-item:hover .at-content h3 { color: var(--neon); }

.at-content p {
  font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px;
}

.at-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 600; color: var(--text-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  padding: 4px 12px; border-radius: var(--r-pill);
  letter-spacing: .03em;
}
.at-tag i { font-size: .7rem; color: var(--neon); }

.at-tag--neon {
  color: var(--neon); background: rgba(49,245,107,.08);
  border-color: var(--border-mid);
  box-shadow: 0 0 12px rgba(49,245,107,.1);
}
.at-tag--neon i { color: var(--neon); }

/* ════════════════════════════════════════════════════════════
   PROFILE CARDS
════════════════════════════════════════════════════════════ */
.profile-cards { display: flex; flex-direction: column; gap: 10px; }

.profile-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 18px; border-radius: var(--r);
  background: var(--bg-700); border: 1px solid var(--border);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.profile-card:hover {
  border-color: var(--border-mid);
  background: rgba(49,245,107,.05);
  box-shadow: 0 0 16px rgba(49,245,107,.06);
}
.profile-card.diferencial {
  border-color: rgba(243,211,74,.2);
  background: rgba(243,211,74,.04);
}
.profile-card.diferencial:hover { border-color: rgba(243,211,74,.35); }

.pc-icon { color: var(--neon); font-size: 1.125rem; flex-shrink: 0; margin-top: 2px; }
.pc-icon.amber { color: var(--amber); }
.pc-text strong { font-size: .9rem; font-weight: 700; color: var(--text-white); display: block; }
.pc-text span   { font-size: .8rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════
   PRODUCT GRID
════════════════════════════════════════════════════════════ */
/* Produto: layout split imagem + grid 2×2 */
.product-split {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.product-bottle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 458px; /* fallback; sobrescrito por JS com altura real do grid */
}
.product-bottle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-lg);
  transition: transform .5s var(--ease);
}
.product-bottle:hover img {
  transform: scale(1.04) translateY(-4px);
}
.product-bottle-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(49,245,107,.15) 0%, transparent 65%);
  pointer-events: none;
}

.product-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }

.prod-card {
  position: relative; overflow: hidden;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px; text-align: center;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.prod-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-bright);
  box-shadow: 0 0 32px rgba(49,245,107,.15), 0 24px 48px rgba(0,0,0,.5);
}

.prod-glow {
  position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(49,245,107,.18) 0%, transparent 70%);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.prod-card:hover .prod-glow { opacity: 1; }

.prod-icon-wrap {
  width: 62px; height: 62px; border-radius: 16px;
  background: rgba(49,245,107,.1);
  border: 1px solid rgba(49,245,107,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--neon);
  margin: 0 auto 18px;
  transition: background .3s, box-shadow .3s;
}
.prod-card:hover .prod-icon-wrap {
  background: rgba(49,245,107,.18);
  box-shadow: 0 0 24px rgba(49,245,107,.25);
}

.prod-card h3 { font-size: .9375rem; font-weight: 700; color: var(--text-white); margin-bottom: 10px; }
.prod-card p  { font-size: .8125rem; color: var(--text-muted); line-height: 1.65; }

.prod-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--neon); box-shadow: 0 0 8px var(--neon);
  opacity: 0; transition: opacity .3s;
}
.prod-card:hover .prod-line { opacity: 1; }

/* ════════════════════════════════════════════════════════════
   A REDE
════════════════════════════════════════════════════════════ */
.rede-flow {
  display: flex; flex-direction: column; align-items: center;
  gap: 0; margin-bottom: 64px;
}

.rede-node {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  background: var(--bg-700);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl);
  padding: 28px 36px;
  position: relative;
  min-width: 260px; max-width: 340px;
  transition: border-color .3s, box-shadow .3s;
}
.rede-node:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 28px rgba(49,245,107,.12);
}

.rede-node--top { border-color: var(--border); }

.rede-node--master {
  border-color: var(--neon);
  box-shadow: 0 0 40px rgba(49,245,107,.2);
  background: linear-gradient(135deg, rgba(49,245,107,.08) 0%, var(--bg-700) 100%);
  min-width: 300px;
}

.rede-badge {
  position: absolute; top: -14px;
  background: var(--neon); color: #021509;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 16px;
  border-radius: var(--r-pill);
}

.rede-icon {
  width: 56px; height: 56px;
  background: rgba(49,245,107,.08);
  border: 1px solid rgba(49,245,107,.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--text-muted);
}
.rede-icon--highlight {
  background: rgba(49,245,107,.15);
  border-color: var(--neon);
  color: var(--neon);
  font-size: 1.5rem;
  width: 64px; height: 64px; border-radius: 18px;
}
.rede-icon--sm {
  width: 44px; height: 44px; border-radius: 12px; font-size: 1rem;
}

.rede-label {
  font-size: .95rem; font-weight: 700; color: var(--text-white);
}
.rede-node--master .rede-label { font-size: 1.05rem; color: var(--neon); }

.rede-desc {
  font-size: .8rem; color: var(--text-muted); line-height: 1.55; max-width: 240px;
}

.rede-arrow-down {
  color: var(--neon); font-size: 1.1rem; opacity: .6;
  padding: 8px 0;
}

.rede-vendedores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  justify-items: center;
}
.rede-node--vendedor {
  width: 100%;
  min-width: unset; max-width: 130px;
  padding: 18px 16px; border-radius: var(--r-lg);
}
.rede-node--more {
  border-style: dashed;
  opacity: .7;
}

.rede-clientes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}
.rede-cliente {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg-800);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 13px 32px;
  font-size: .9375rem; font-weight: 500; color: var(--text-muted);
  transition: border-color .2s, color .2s;
}
.rede-cliente i { color: var(--neon); }
.rede-cliente:hover { border-color: var(--border-mid); color: var(--text-white); }

/* Benefícios da rede */
.rede-beneficios {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}
.rede-ben {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  transition: border-color .3s, transform .3s;
}
.rede-ben:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
}
.rede-ben i {
  font-size: 1.4rem; color: var(--neon);
  background: rgba(49,245,107,.1);
  border: 1px solid rgba(49,245,107,.2);
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.rede-ben strong {
  font-size: .875rem; font-weight: 700; color: var(--text-white);
}
.rede-ben span {
  font-size: .8rem; color: var(--text-muted); line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════
   NOTICE
════════════════════════════════════════════════════════════ */
.notice-wrap {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--bg-800);
  border: 1px solid var(--border);
  border-left: 4px solid var(--neon);
  border-radius: var(--r-lg);
  padding: 32px 36px; max-width: 860px; margin: 0 auto;
  box-shadow: 0 0 24px rgba(49,245,107,.06);
}
.notice-icon-wrap {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(49,245,107,.1); border-radius: 12px;
  border: 1px solid rgba(49,245,107,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--neon); font-size: 1.25rem;
}
.notice-right h3 { font-size: 1rem; font-weight: 700; color: var(--text-white); margin-bottom: 10px; }
.notice-right p  { font-size: .9rem; color: var(--text-soft); line-height: 1.7; }
.notice-right strong { color: var(--neon); }

/* ════════════════════════════════════════════════════════════
   SCARCITY
════════════════════════════════════════════════════════════ */
.section-scarcity {
  background: linear-gradient(135deg, #031A09 0%, #041E0B 100%);
  border-top: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
  padding: 60px 0; position: relative; overflow: hidden;
}
.section-scarcity::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(49,245,107,.07) 0%, transparent 70%);
  pointer-events: none;
}
.scarcity-wrap {
  position: relative; z-index: 1;
  display: flex; gap: 36px; align-items: center; flex-wrap: wrap;
}
.sc-icon {
  width: 68px; height: 68px; flex-shrink: 0; border-radius: 50%;
  border: 2px solid var(--border-mid);
  background: rgba(49,245,107,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.625rem; color: var(--neon);
  animation: pulseRing 2.5s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(49,245,107,.1);
}
@keyframes pulseRing {
  0%,100% { box-shadow: 0 0 0 0 rgba(49,245,107,.3); }
  50%      { box-shadow: 0 0 0 14px transparent; }
}
.sc-text { flex: 1; min-width: 240px; }
.sc-text h2 { font-family: var(--font); font-size: clamp(1.25rem,2.5vw,1.75rem); font-weight: 700; color: var(--text-white); margin-bottom: 6px; }
.sc-text p  { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.sc-btn { flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   FORM
════════════════════════════════════════════════════════════ */
.form-layout {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: stretch; position: relative; z-index: 1;
}
.form-info {
  display: flex; flex-direction: column; align-items: flex-start;
}
.form-info .section-title,
.form-info .form-info-desc,
.form-info .form-features,
.form-info .form-info-img {
  align-self: stretch;
}

.form-info-desc { font-size: .9375rem; color: var(--text-soft); line-height: 1.75; margin-top: 12px; margin-bottom: 40px; }

.form-features { display: flex; flex-direction: column; gap: 18px; }

.form-info-img {
  margin-top: 32px;
  flex: 1;
  min-height: 160px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-mid);
  box-shadow: 0 0 32px rgba(49,245,107,.08);
}
.form-info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform .5s var(--ease);
}
.form-info-img:hover img {
  transform: scale(1.04);
}
.ff-item { display: flex; gap: 14px; align-items: flex-start; }
.ff-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(49,245,107,.1); border-radius: 10px;
  border: 1px solid rgba(49,245,107,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--neon); font-size: .9rem;
}
.ff-text strong { font-size: .9rem; font-weight: 700; color: var(--text-white); display: block; }
.ff-text span   { font-size: .8rem; color: var(--text-muted); }

/* Form card */
.form-card {
  background: var(--bg-700);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xl); padding: 40px 36px;
  box-shadow: 0 0 32px rgba(49,245,107,.07), 0 24px 64px rgba(0,0,0,.4);
  position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
}

#lead-form { display: flex; flex-direction: column; gap: 18px; }

.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label { font-size: .8rem; font-weight: 600; color: var(--text-soft); letter-spacing: .03em; text-transform: uppercase; }
.req { color: var(--neon); }

.input-wrap { position: relative; }
.input-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: rgba(49,245,107,.4); font-size: .8125rem; pointer-events: none;
  transition: color .2s;
}
.fg input[type="text"],
.fg input[type="tel"],
.fg input[type="email"],
.fg select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 16px 12px 40px;
  font-size: .9375rem; font-family: var(--font); color: var(--text-white); outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
}
.fg select option { background: var(--bg-800); color: var(--text-white); }
.fg select option[value=""] { color: var(--text-dim); }
.fg input::placeholder { color: var(--text-dim); }
.fg input:focus,
.fg select:focus {
  border-color: var(--neon);
  background: rgba(49,245,107,.05);
  box-shadow: 0 0 0 3px rgba(49,245,107,.12), 0 0 16px rgba(49,245,107,.08);
}
.input-wrap:focus-within .input-icon { color: var(--neon); }
.fg input.error,
.fg select.error { border-color: var(--red-soft); box-shadow: 0 0 0 3px rgba(255,74,74,.12); }
.ferr { font-size: .77rem; color: var(--red-soft); min-height: 13px; display: block; }

/* Radio */
.radio-row { display: flex; gap: 10px; }
.radio-row { flex-wrap: wrap; }
.radio-opt {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 12px; cursor: pointer;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: var(--r); font-size: .78rem; font-weight: 500; color: var(--text-muted);
  transition: all .2s var(--ease); user-select: none; min-width: calc(50% - 5px);
}
.radio-opt small { font-size: .78rem; font-weight: 500; text-transform: none; }
.radio-opt:hover { border-color: var(--border-mid); color: var(--text-white); background: rgba(49,245,107,.07); }
.radio-opt input { display: none; }

.radio-box {
  width: 17px; height: 17px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.radio-box i { font-size: .5rem; color: #021509; opacity: 0; transition: opacity .2s; }

.radio-opt:has(input:checked) { border-color: var(--neon); background: rgba(49,245,107,.1); color: var(--text-white); }
.radio-opt:has(input:checked) .radio-box { background: var(--neon); border-color: var(--neon); box-shadow: 0 0 10px var(--neon-glow); }
.radio-opt:has(input:checked) .radio-box i { opacity: 1; }

/* Submit */
.btn-submit {
  width: 100%; margin-top: 8px; padding: 15px;
  background: var(--neon); color: #021509;
  font-size: .9375rem; font-weight: 700; font-family: var(--font);
  border: none; border-radius: var(--r-pill); cursor: pointer;
  box-shadow: 0 0 24px var(--neon-glow), inset 0 1px 0 rgba(255,255,255,.2);
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.btn-submit::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.2), transparent 70%);
  pointer-events: none;
}
.btn-submit:hover:not(:disabled) {
  background: var(--neon-bright);
  box-shadow: 0 0 40px var(--neon-glow), 0 0 80px rgba(49,245,107,.12);
  transform: translateY(-2px);
}
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.btn-submit-text, .btn-submit-loading {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-disclaimer { font-size: .74rem; color: var(--text-dim); text-align: center; margin-top: 12px; line-height: 1.5; }

/* Success */
.form-success {
  text-align: center; padding: 56px 36px; border-radius: var(--r-lg);
  background: var(--bg-700); border: 1px solid var(--border-bright);
  box-shadow: 0 0 40px rgba(49,245,107,.1); position: relative; overflow: hidden;
}
.fs-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(49,245,107,.2) 0%, transparent 70%);
  pointer-events: none;
}
.form-success .fs-icon {
  position: relative; font-size: 3.5rem; color: var(--neon);
  margin-bottom: 14px; display: block;
  text-shadow: 0 0 32px var(--neon-glow);
  animation: successPop .5s var(--spring);
}
@keyframes successPop { 0%{ transform:scale(0);opacity:0; } 100%{ transform:scale(1);opacity:1; } }
.form-success h3 { font-size: 1.5rem; font-weight: 700; color: var(--text-white); margin-bottom: 10px; position: relative; }
.form-success p  { font-size: .9375rem; color: var(--text-muted); line-height: 1.65; position: relative; }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-900);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-inner span {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-highlight { color: var(--neon); font-weight: 700; }

/* ════════════════════════════════════════════════════════════
   FAB
════════════════════════════════════════════════════════════ */
.site-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--neon); color: #021509;
  font-size: .8125rem; font-weight: 700; font-family: var(--font);
  padding: 13px 22px; border-radius: var(--r-pill);
  box-shadow: 0 0 28px var(--neon-glow);
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), box-shadow .3s;
}
.site-fab.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.site-fab:hover { box-shadow: 0 0 44px var(--neon-glow); transform: translateY(-3px); background: var(--neon-bright); }

/* ════════════════════════════════════════════════════════════
   REVEAL
════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
/* ── TABLET LARGE (≤1024px) ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .section { padding: 80px 0; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; padding-bottom: 72px; text-align: left; }
  .hero-content { display: flex; flex-direction: column; align-items: flex-start; }
  .hero-eyebrow { margin: 0 0 24px; }
  .hero-title { font-size: 2.6rem; }
  .hero-desc { font-size: 1rem; max-width: 560px; margin: 0 0 32px; }
  .hero-actions { justify-content: flex-start; flex-wrap: wrap; gap: 12px; }
  .hero-stats { justify-content: flex-start; }
  .hero-img { height: 340px; }
  .float-card--top, .float-card--bottom { display: none; }

  /* Contexto */
  .context-grid { grid-template-columns: 1fr; gap: 16px; }

  /* A Rede */
  .rede-beneficios { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .rede-node { min-width: 220px; max-width: 280px; padding: 22px 24px; }
  .rede-node--master { min-width: 260px; }

  /* Modelo de Atuação */
  .atuacao-layout { grid-template-columns: 1fr; gap: 36px; }
  .atuacao-img-frame { min-height: 280px; max-height: 320px; }
  .timeline-list { max-width: 100%; }

  /* Perfil */
  .split-layout { grid-template-columns: 1fr; gap: 36px; }
  .split-layout--rev .split-visual { order: 0; }
  .visual-frame img { height: 300px; }
  .visual-badge { display: none; }
  .profile-cards { grid-template-columns: 1fr 1fr; }

  /* Produto */
  .product-split { grid-template-columns: 1fr; gap: 32px; }
  .product-bottle { height: auto !important; width: 100%; display: block; padding: 0; }
  .product-bottle img { max-width: 100%; width: 100%; height: auto; object-fit: cover; margin: 0; display: block; border-radius: var(--r-lg); }
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }

  /* Formulário */
  .form-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-info { align-items: flex-start; }
  .form-info-img { height: 220px; }
  .form-info-img img { height: 220px; }

  /* Steps */
  .steps-row { flex-wrap: wrap; gap: 14px; }
  .step-arrow { display: none; }
  .step-card { flex: 0 0 calc(50% - 7px); }

  /* Notice */
  .notice-wrap { gap: 20px; padding: 28px 24px; }

  /* Seção de títulos */
  .section-title { font-size: 2rem; }
}

/* ── TABLET PEQUENO (≤768px) ── */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }

  /* Header */
  .header-nav { gap: 16px; }
  .header-nav a { font-size: .8rem; }

  /* Hero */
  .hero-title { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions > * { width: auto; justify-content: flex-start; }
  .hero-img { height: 260px; }

  /* Seção de títulos */
  .section-title { font-size: 1.75rem; }
  .section-sub { font-size: .9rem; }

  /* Contexto */
  .ctx-card { padding: 26px 20px; }

  /* A Rede */
  .rede-beneficios { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .rede-node { min-width: 180px; max-width: 240px; padding: 18px 16px; }
  .rede-node--master { min-width: 220px; }
  .rede-vendedores { gap: 10px; }
  .rede-node--vendedor { min-width: 90px; max-width: 110px; padding: 14px 12px; }

  /* Atuação */
  .atuacao-img-frame { min-height: 240px; }

  /* Perfil */
  .profile-cards { grid-template-columns: 1fr; }
  .visual-frame img { height: 260px; }

  /* Produto */
  .product-bottle img { max-width: 100%; width: 100%; height: auto; }
  .product-grid { gap: 12px; }
  .prod-card { padding: 24px 18px; }

  /* Formulário */
  .form-card { padding: 28px 22px; }
  .radio-row { gap: 10px; }
  .form-info-img { height: 180px; }
  .form-info-img img { height: 180px; }

  /* Steps */
  .steps-row { flex-direction: column; }
  .step-card { flex: 1 1 100%; }

  /* Notice */
  .notice-wrap { flex-direction: column; gap: 14px; padding: 22px 18px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* FAB */
  .site-fab { width: 52px; height: 52px; padding: 0; border-radius: 50%; justify-content: center; }
  .site-fab span { display: none; }
}

/* ── MOBILE (≤640px) ── */
@media (max-width: 640px) {
  :root { --header-h: 62px; }
  .header-nav { display: none; }
  .btn-header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .container { padding: 0 18px; }

  .hero { min-height: auto; padding-bottom: 0; }
  .hero-inner { padding-top: 28px; padding-bottom: 48px; text-align: center !important; gap: 24px; }
  .hero-content { display: flex; flex-direction: column; align-items: center !important; text-align: center !important; }
  .hero-eyebrow { margin: 0 auto 16px !important; font-size: .7rem; padding: 4px 12px; }
  .hero-title { font-size: 1.75rem; line-height: 1.2; margin-bottom: 12px; text-align: center !important; }
  .hero-desc  { font-size: .9rem; margin-bottom: 20px; text-align: center !important; }
  .hero-actions { margin-bottom: 20px; justify-content: center !important; align-items: center !important; }
  .hero-stats { gap: 10px; flex-direction: column; align-items: center !important; justify-content: center !important; }
  .stat-sep { display: none; }
  .stat-item { font-size: .8rem; }
  .hero-visual { display: none; }
  .hero-scroll-cue { display: none; }

  .cred-inner { flex-direction: column; gap: 14px; align-items: center; text-align: center; }
  .cred-items { justify-content: center; }
  .cred-label { white-space: normal; text-align: center; }

  .section { padding: 56px 0; }
  .section-title { font-size: 1.6rem; }
  .context-grid { gap: 12px; }

  /* Perfil — centralizar no mobile */
  .split-layout { text-align: center; }
  .split-desc { text-align: center; }
  .pill { margin: 0 auto 16px; }

  /* Formulário — centralizar no mobile */
  .form-info { align-items: center !important; text-align: center; }
  .form-info-desc { text-align: center; }
  .form-features { align-items: flex-start; width: 100%; }
  .ff-item { text-align: left; }

  .product-split { gap: 24px; }
  .product-bottle { width: 100% !important; height: auto !important; display: block !important; padding: 0 !important; overflow: hidden; border-radius: var(--r-lg); }
  .product-bottle img { width: 100% !important; height: auto !important; object-fit: cover; border-radius: var(--r-lg); }
  .product-grid { grid-template-columns: 1fr; gap: 10px; }

  .form-card { padding: 24px 16px; }
  .radio-row { flex-direction: column; }

  .visual-frame img { height: 220px; }

  /* A Rede — mobile 2×2 */
  .rede-vendedores { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .rede-node--vendedor { max-width: 100%; }
  .rede-clientes { grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 100%; }
  .rede-cliente { padding: 11px 16px; font-size: .85rem; }
}

/* ================================================================
   Footer padronizado MAXNITRO — igual ao rodapé do index.html
   ================================================================ */
.footer {
  background: #07170b;
  padding: 60px 0 28px;
  border-top: 3px solid #5aab3f;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-marca-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer-marca-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-tagline {
  color: rgba(255,255,255,.45);
  font-size: .87rem;
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: background .25s ease, color .25s ease;
}
.footer-social a:hover {
  background: #5aab3f;
  color: #fff;
}
.footer-col-titulo {
  font-weight: 700;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  color: rgba(255,255,255,.45);
  font-size: .87rem;
  transition: color .2s ease;
}
.footer-links a:hover {
  color: #8fd36b;
}
.footer-base {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  color: rgba(255,255,255,.3);
  font-size: .82rem;
  margin: 0;
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255,255,255,.3);
  font-size: .82rem;
  transition: color .2s ease;
}
.footer-legal a:hover {
  color: #8fd36b;
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .footer { padding: 44px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-base { align-items: flex-start; flex-direction: column; }
  .footer-legal { gap: 12px; flex-direction: column; }
}


/* ================================================================
   Mobile overflow fix — form/contact section
   ================================================================ */
@media (max-width: 640px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .section--form,
  .form-layout,
  .form-info,
  .form-card,
  #lead-form,
  .fg,
  .input-wrap,
  .fg input[type="text"],
  .fg input[type="tel"],
  .fg input[type="email"],
  .fg select,
  .radio-row,
  .radio-opt {
    min-width: 0;
    max-width: 100%;
  }

  .section--form {
    overflow-x: hidden;
  }

  .form-layout {
    overflow: hidden;
  }

  .form-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .form-info-desc,
  .ff-text strong,
  .ff-text span {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

@media (max-width: 380px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .form-card {
    padding-left: 14px;
    padding-right: 14px;
  }
}
