/* Site UI kit — Agência Zara — v6 (clean, premium, cozy) */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ink: #1a1a1a;
  --ink-2: #555550;
  --ink-3: #8c8c84;
  --line: rgba(0,0,0,0.06);
  --line-2: rgba(0,0,0,0.09);
  --g: #6b7c4e;
  --g-d: #4f5e38;
  --g-dd: #3a4528;
  --g-l: #edeee6;
  --gold: #b8a06a;
  --gold-l: #f5f0e2;
  --cream: #f3efe8;
  --cream-2: #e9e3d6;
  --white: #ffffff;
  --bg: #f5f5f3;
  --serif: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-lg: 16px;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font-sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
/* Grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* Fade-in on scroll */
.zn-fade { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.zn-fade.is-visible { opacity: 1; transform: translateY(0); }

/* Hero stagger entrance */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.zn-hero .zn-eyebrow,
.zn-hero .zn-hero-title,
.zn-hero .zn-hero-lead,
.zn-hero .zn-hero-cta-row,
.zn-hero .zn-hero-divider,
.zn-hero .zn-hero-pills {
  opacity: 0;
  animation: heroIn 0.6s ease forwards;
}
.zn-hero .zn-eyebrow { animation-delay: 0.1s; }
.zn-hero .zn-hero-title { animation-delay: 0.25s; }
.zn-hero .zn-hero-lead { animation-delay: 0.4s; }
.zn-hero .zn-hero-cta-row { animation-delay: 0.55s; }
.zn-hero .zn-hero-divider { animation-delay: 0.7s; }
.zn-hero .zn-hero-pills { animation-delay: 0.8s; }

/* Step cards stagger */
.zn-step-card:nth-child(1) { transition-delay: 0s; }
.zn-step-card:nth-child(2) { transition-delay: 0.1s; }
.zn-step-card:nth-child(3) { transition-delay: 0.2s; }
.zn-step-card:nth-child(4) { transition-delay: 0.3s; }

/* ═══ NAV ═══ */
.zn-nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(251,250,247,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.zn-nav-inner { max-width: 1200px; margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; justify-content: space-between; }
.zn-logo { font-size: 16px; font-weight: 700; color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 6px; letter-spacing: -0.3px; white-space: nowrap; }
.zn-logo em { font-style: normal; color: var(--g); font-weight: 700; }
.zn-logo-mark { display: flex; }
.zn-nav-right { display: flex; align-items: center; gap: 20px; margin-left: 24px; }
.zn-nav-online { font-size: 12px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 7px; font-weight: 600; letter-spacing: 0.3px; }
.zn-nav-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--g); box-shadow: 0 0 0 3px rgba(107,124,78,0.18); animation: zn-pulse 1.5s ease-in-out infinite; }
@keyframes zn-pulse { 50% { opacity: 0.4; } }
.zn-nav-cta {
  font-size: 13px; font-weight: 600; color: var(--white);
  background: var(--g); border: none;
  padding: 10px 22px; border-radius: 12px;
  cursor: pointer; transition: all .35s cubic-bezier(.22,1,.36,1);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; box-shadow: 0 4px 14px rgba(107,124,78,0.18);
}
.zn-nav-cta span { transition: transform .3s cubic-bezier(.22,1,.36,1); }
.zn-nav-cta:hover { background: var(--g-d); transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 24px rgba(107,124,78,0.22); }
.zn-nav-cta:hover span { transform: translateX(3px); }
.zn-nav-cta:active { transform: translateY(0) scale(0.97); box-shadow: 0 2px 8px rgba(107,124,78,0.18); transition-duration: .1s; }

/* ═══ BUTTONS ═══ */
.zn-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-weight: 600; font-size: 16px; color: var(--white);
  background: var(--g); padding: 18px 34px;
  border-radius: 12px; border: none; cursor: pointer;
  transition: all .35s cubic-bezier(.22,1,.36,1); letter-spacing: -0.2px;
  text-decoration: none; font-family: inherit;
  box-shadow: 0 4px 16px rgba(107,124,78,0.18);
  position: relative; overflow: hidden;
}
.zn-btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  opacity: 0; transition: opacity .35s;
}
.zn-btn-arrow { transition: transform .3s cubic-bezier(.22,1,.36,1); display: inline-flex; }
.zn-btn-primary:hover {
  background: var(--g-d); transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(107,124,78,0.22);
}
.zn-btn-primary:hover::before { opacity: 1; }
.zn-btn-primary:hover .zn-btn-arrow { transform: translateX(5px); }
.zn-btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(107,124,78,0.2);
  transition-duration: .1s;
}
.zn-btn-xl { padding: 20px 38px; font-size: 17px; }

/* ═══ SECTION HEADS ═══ */
.zn-section-head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.zn-section-num { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--g); font-weight: 500; letter-spacing: 0.5px; }
.zn-section-tag { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink-3); padding-left: 16px; border-left: 1px solid var(--line-2); }

/* ═══ HEADINGS ═══ */
.zn-h2 {
  font-size: 52px; font-weight: 600; color: var(--ink);
  letter-spacing: -1.5px; line-height: 1.05;
  margin: 0 0 40px; text-wrap: balance;
  font-family: var(--serif);
}
.zn-h2 em { font-style: italic; color: var(--g-dd); font-family: var(--serif); font-weight: 400; letter-spacing: -1px; }

/* ═══ HERO ═══ */
.zn-hero { max-width: 1200px; margin: 0 auto; padding: 60px 32px 100px; display: grid; grid-template-columns: 1fr; gap: 0; align-items: center; position: relative; }
.zn-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.zn-hero-bg-word { position: absolute; top: 40%; left: -60px; font-family: var(--serif); font-style: italic; font-size: 280px; color: rgba(107,124,78,0.03); font-weight: 500; letter-spacing: -6px; line-height: 1; user-select: none; white-space: nowrap; }
.zn-hero-copy { position: relative; z-index: 1; max-width: 640px; }
.zn-hero-art { position: relative; z-index: 1; aspect-ratio: 4/5; }
.zn-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--g); margin-bottom: 28px; }
.zn-eye-line { width: 28px; height: 1px; background: var(--g); }
.zn-hero-title { font-size: 72px; line-height: 0.98; font-weight: 600; color: var(--ink); letter-spacing: -2.5px; margin: 0 0 28px; text-wrap: balance; font-family: var(--serif); }
.zn-hi { position: relative; display: inline-block; }
.zn-hi em { font-style: italic; font-family: var(--serif); font-weight: 400; color: var(--g); letter-spacing: -1.5px; }
.zn-hero-lead { font-size: 17px; color: var(--ink-2); line-height: 1.7; margin: 0 0 36px; max-width: 460px; font-weight: 400; }
.zn-hero-lead strong { color: var(--g-dd); font-weight: 600; }
.zn-hero-cta-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.zn-hero-trust { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--ink-2); line-height: 1.4; font-weight: 500; }
.zn-dots { display: flex; }
.zn-dots span { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -10px; overflow: hidden; }
.zn-dots span:first-child { margin-left: 0; }
.zn-dots span img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* Hero divider & pills */
.zn-hero-divider { width: 100%; height: 1px; background: var(--line); margin: 28px 0 20px; }
.zn-hero-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.zn-hero-pill { display: inline-flex; align-items: center; padding: 10px 18px; background: var(--g-l); border: 1px solid rgba(107,124,78,0.15); border-radius: 50px; font-size: 14px; font-weight: 600; color: var(--g-dd); letter-spacing: 0.2px; }
.zn-hero-pill--dark { background: var(--ink); border-color: var(--ink); color: #fff; }

/* Hero frame */
.zn-hero-frame { position: relative; width: 100%; height: 100%; border-radius: var(--radius); overflow: hidden; background: var(--cream-2); box-shadow: var(--shadow-lg); }
.zn-hero-frame::before { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,0.35); border-radius: 6px; z-index: 2; pointer-events: none; }
.zn-hero-frame > img { width: 100%; height: 100%; object-fit: cover; }
.zn-hero-frame-tag { position: absolute; top: 24px; left: 24px; font-family: var(--serif); font-style: italic; font-size: 14px; color: #fff; font-weight: 500; letter-spacing: 0.5px; z-index: 3; opacity: 0.85; }
.zn-hero-badge { position: absolute; top: 32px; right: -20px; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 12px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); }
.zn-hb-dot { width: 8px; height: 8px; border-radius: 50%; background: #a3b18a; box-shadow: 0 0 0 3px rgba(163,177,138,0.25); animation: zn-pulse 1.5s ease-in-out infinite; }
.zn-hb-n { font-size: 15px; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.zn-hb-l { font-size: 10px; color: rgba(255,255,255,0.6); font-weight: 600; letter-spacing: 0.5px; margin-top: 2px; }

/* ═══ SOCIAL PROOF MARQUEE ═══ */
.zn-proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; background: var(--white); overflow: hidden; }
.zn-proof-inner { max-width: 1200px; margin: 0 auto; }
.zn-proof-head { display: flex; align-items: center; gap: 14px; padding: 0 32px 16px; }
.zn-proof-live { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #c53030; display: inline-flex; align-items: center; gap: 7px; }
.zn-proof-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #c53030; animation: zn-pulse 1.4s ease-in-out infinite; }
.zn-proof-lbl { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink-2); }
.zn-proof-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%); }
.zn-proof-marquee:hover .zn-proof-track { animation-play-state: paused; }
.zn-proof-track { display: flex; gap: 12px; animation: zn-marquee 35s linear infinite; width: max-content; padding: 0 12px; }
@keyframes zn-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.zn-proof-pill { display: flex; align-items: center; gap: 10px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); white-space: nowrap; }
.zn-proof-amt { font-size: 14px; font-weight: 800; color: var(--g-dd); font-variant-numeric: tabular-nums; letter-spacing: -0.3px; font-family: var(--serif); }
.zn-proof-div { width: 1px; height: 12px; background: var(--line-2); }
.zn-proof-who { font-size: 12px; color: var(--ink-3); font-weight: 500; }

/* ═══ HOW IT WORKS ═══ */
.zn-how { padding: 80px 32px 60px; background: var(--bg); }
.zn-how-inner { max-width: 920px; margin: 0 auto; }
.zn-how-list { margin-top: 24px; }
.zn-how-item {
  display: grid; grid-template-columns: 88px 1fr; gap: 28px;
  padding: 40px 0; border-top: 1px solid var(--line);
  align-items: start; position: relative;
  transition: padding .2s; cursor: default;
}
.zn-how-item:last-child { border-bottom: 1px solid var(--line); }
.zn-how-item::after { content: ''; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0; background: var(--g); transition: width .35s cubic-bezier(.22,1,.36,1); }
.zn-how-item:hover::after { width: 100%; }
.zn-how-item:hover { padding-left: 8px; }
.zn-how-n { font-family: var(--serif); font-size: 48px; font-weight: 500; color: var(--g); letter-spacing: -1px; line-height: 1; font-style: italic; padding-top: 4px; }
.zn-how-t { font-size: 24px; font-weight: 700; color: var(--ink); letter-spacing: -0.5px; margin-bottom: 12px; line-height: 1.2; }
.zn-how-d { font-size: 15px; color: var(--ink-2); line-height: 1.75; max-width: 480px; }
.zn-how-hi { color: var(--g-dd); font-weight: 600; }
.zn-how-dash { display: none; }

/* ═══ WHATIS ═══ */
.zn-what { padding: 80px 32px; background: var(--white); position: relative; }
.zn-what::before, .zn-what::after { display: none; }
.zn-what-inner { max-width: 920px; margin: 0 auto; }
.zn-what-quote { position: relative; margin: 0 0 56px; padding: 0 0 0 36px; max-width: 700px; }
.zn-quote-mark { position: absolute; left: -8px; top: -24px; font-family: var(--serif); font-size: 80px; color: var(--g); font-style: italic; line-height: 1; font-weight: 500; opacity: 0.7; }
.zn-what-quote p { font-family: var(--serif); font-size: 24px; font-style: italic; color: var(--ink); line-height: 1.5; margin: 0; font-weight: 400; letter-spacing: -0.3px; }
.zn-what-quote p strong { font-style: normal; font-family: var(--font-sans); font-weight: 700; color: var(--g-dd); font-size: 20px; }
.zn-what-quote p em { font-style: italic; color: var(--g-dd); }
.zn-what-col { padding: 28px 24px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.zn-what-col--no { border-left: 3px solid #e07070; }
.zn-what-col--yes { border-left: 3px solid var(--g); }
.zn-what-ttl { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; }
.zn-what-ttl em { font-style: italic; color: var(--ink); font-family: var(--serif); font-size: 18px; font-weight: 500; text-transform: none; letter-spacing: 0; margin: 0 4px; }
.zn-what-ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; font-size: 17px; font-weight: 500; color: var(--ink); letter-spacing: -0.2px; }
.zn-what-ul li { display: flex; align-items: baseline; gap: 12px; }
.zn-what-ul li span { font-family: var(--serif); font-size: 20px; font-weight: 500; width: 16px; flex-shrink: 0; }
.zn-what-col--no li span { color: #d45555; }
.zn-what-col--yes li span { color: var(--g); }

/* ═══ SIMULATOR ═══ */
.zn-sim { padding: 80px 32px; background: var(--bg); }
.zn-sim-inner { max-width: 600px; margin: 0 auto; }
.zn-sim-lead { font-size: 16px; color: var(--ink-2); margin: -28px 0 36px; font-family: var(--serif); font-style: italic; }
.zn-sim-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 36px; position: relative; box-shadow: var(--shadow-md); }
.zn-sim-card::before { display: none; }
.zn-sim-row { margin-bottom: 32px; position: relative; z-index: 1; }
.zn-sim-lbl { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.zn-sim-lbl span { font-size: 12px; color: var(--ink-3); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.zn-sim-lbl strong { font-size: 32px; color: var(--ink); font-weight: 700; letter-spacing: -1px; font-variant-numeric: tabular-nums; display: inline-flex; align-items: baseline; }
.zn-sim-lbl strong i { font-family: var(--serif); font-style: italic; font-size: 16px; font-weight: 500; margin-left: 2px; color: var(--ink-3); }
.zn-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 50px; background: linear-gradient(90deg, var(--g) 0%, var(--g) var(--val, 50%), #e8e8e6 var(--val, 50%), #e8e8e6 100%); outline: none; cursor: pointer; }
.zn-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--g); cursor: grab; box-shadow: 0 0 0 4px var(--white), 0 4px 12px rgba(107,124,78,0.3); }
.zn-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--g); border: none; cursor: grab; }
.zn-slider-ticks { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-3); font-weight: 600; margin-top: 10px; letter-spacing: 0.5px; }
.zn-sim-out { padding: 24px 0 0; border-top: 1px dashed rgba(0,0,0,0.08); margin-top: 8px; position: relative; z-index: 1; }
.zn-sim-out-top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 16px; }
.zn-sim-out-lbl { font-size: 11px; color: var(--ink-3); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.zn-sim-out-big { font-size: 48px; font-weight: 700; color: var(--g-dd); letter-spacing: -1.8px; font-variant-numeric: tabular-nums; line-height: 1; display: inline-flex; align-items: baseline; gap: 6px; }
.zn-sim-rs { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--g); font-weight: 500; }
.zn-sim-out-sep { height: 1px; background: var(--line); margin: 0 0 14px; }
.zn-sim-out-bot { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--ink-2); }
.zn-sim-out-bot strong { font-size: 18px; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: -0.4px; }
.zn-sim-cta { margin-top: 20px; position: relative; z-index: 1; }
.zn-sim-foot { font-size: 12px; color: var(--ink-3); margin: 20px 0 0; text-align: center; font-family: var(--serif); font-style: italic; }

/* ═══ TESTIMONIALS ═══ */
.zn-dep { padding: 80px 32px; background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.zn-dep::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(107,124,78,0.12) 0%, transparent 60%); }
.zn-dep-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.zn-dep .zn-section-num { color: #a3b18a; }
.zn-dep .zn-section-tag { color: rgba(255,255,255,0.45); border-left-color: rgba(255,255,255,0.15); }
.zn-dep .zn-h2 { color: #fff; }
.zn-dep .zn-h2 em { color: #a3b18a; }
.zn-dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.zn-t-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 36px 28px 28px; margin: 0; position: relative; transition: all .25s; }
.zn-t-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.zn-t-mark { position: absolute; top: 10px; left: 26px; font-family: var(--serif); font-size: 56px; color: #a3b18a; font-style: italic; line-height: 1; font-weight: 500; opacity: 0.6; }
.zn-t-q { font-family: var(--serif); font-size: 20px; color: #fff; line-height: 1.45; margin: 28px 0 24px; font-weight: 400; text-wrap: pretty; letter-spacing: -0.3px; font-style: italic; }
.zn-t-bot { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); }
.zn-t-av { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.15); filter: saturate(0.85) contrast(1.05); }
.zn-t-meta { flex: 1; min-width: 0; }
.zn-t-n { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: -0.2px; }
.zn-t-r { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 1px; }
.zn-t-amt { text-align: right; }
.zn-t-amt span { font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; display: block; }
.zn-t-amt strong { font-size: 16px; color: #a3b18a; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: -0.3px; }

/* Depoimentos — variante light (fundo cream) */
.zn-dep--light { background: var(--cream); color: var(--ink); }
.zn-dep--light::before { display: none; }
.zn-dep--light .zn-section-num { color: var(--g); }
.zn-dep--light .zn-section-tag { color: var(--ink-3); border-left-color: var(--line-2); }
.zn-dep--light .zn-h2 { color: var(--ink); }
.zn-dep--light .zn-h2 em { color: var(--g-dd); }
.zn-dep--light .zn-t-card { background: var(--white); border-color: var(--line); box-shadow: var(--shadow-sm); }
.zn-dep--light .zn-t-card:hover { background: var(--white); box-shadow: var(--shadow-md); }
.zn-dep--light .zn-t-mark { color: var(--g); opacity: 0.5; }
.zn-dep--light .zn-t-q { color: var(--ink); }
.zn-dep--light .zn-t-bot { border-top-color: var(--line); }
.zn-dep--light .zn-t-av { border-color: var(--line); }
.zn-dep--light .zn-t-n { color: var(--ink); }
.zn-dep--light .zn-t-r { color: var(--ink-3); }
.zn-dep--light .zn-t-amt span { color: var(--g); }
.zn-dep--light .zn-t-amt strong { color: var(--g-dd); }
/* Card destaque escuro dentro do light */
.zn-dep--light .zn-t-card--dark { background: var(--ink); border-color: rgba(255,255,255,0.08); box-shadow: 0 16px 40px rgba(0,0,0,0.15); transform: translateY(-8px); }
.zn-dep--light .zn-t-card--dark:hover { background: var(--ink); transform: translateY(-10px); }
.zn-dep--light .zn-t-card--dark .zn-t-mark { color: #a3b18a; opacity: 0.6; }
.zn-dep--light .zn-t-card--dark .zn-t-q { color: #fff; }
.zn-dep--light .zn-t-card--dark .zn-t-bot { border-top-color: rgba(255,255,255,0.08); }
.zn-dep--light .zn-t-card--dark .zn-t-av { border-color: rgba(255,255,255,0.15); }
.zn-dep--light .zn-t-card--dark .zn-t-n { color: #fff; }
.zn-dep--light .zn-t-card--dark .zn-t-r { color: rgba(255,255,255,0.45); }
.zn-dep--light .zn-t-card--dark .zn-t-amt span { color: #a3b18a; }
.zn-dep--light .zn-t-card--dark .zn-t-amt strong { color: #a3b18a; }

/* ═══ SAFETY SECTION ═══ */
.zn-safety { padding: 64px 32px; background: var(--white); text-align: center; }
.zn-safety-inner { max-width: 920px; margin: 0 auto; }
.zn-safety-badge { font-size: 48px; margin-bottom: 16px; }
.zn-safety-title { font-size: 32px; font-weight: 700; color: var(--ink); letter-spacing: -1px; margin: 0 0 48px; font-family: var(--serif); }
.zn-safety-title em { font-style: italic; color: var(--g-dd); font-weight: 500; }
.zn-safety-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; text-align: left; }
.zn-safety-item { display: flex; gap: 16px; padding: 24px; background: var(--bg); border-radius: var(--radius-lg); border: 1px solid var(--line); transition: all 0.3s; }
.zn-safety-item:hover { background: var(--white); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.zn-safety-icon { font-size: 28px; flex-shrink: 0; }
.zn-safety-text { font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.zn-safety-text strong { display: block; font-size: 15px; color: var(--ink); font-weight: 700; margin-bottom: 4px; }
@media (max-width: 900px) {
  .zn-safety { padding: 48px 20px; }
  .zn-safety-title { font-size: 26px; margin-bottom: 32px; }
  .zn-safety-grid { grid-template-columns: 1fr; gap: 16px; }
  .zn-safety-item { padding: 20px; }
}

/* ═══ SECTION II — "O QUE É" (dark) ═══ */
.zn-about { padding: 64px 32px 72px; background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.zn-about::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 0%, rgba(107,124,78,0.12) 0%, transparent 55%); pointer-events: none; }
.zn-about-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.zn-about .zn-section-num { color: #a3b18a; }
.zn-about .zn-section-tag { color: rgba(255,255,255,0.4); border-left-color: rgba(255,255,255,0.12); }
.zn-about-title { font-size: 44px; font-weight: 700; color: #fff; letter-spacing: -2px; line-height: 1.05; margin: 0 0 16px; font-family: var(--serif); }
.zn-about-title em { font-style: italic; font-weight: 500; color: #a3b18a; }
.zn-about-lead { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 540px; line-height: 1.7; margin: 0 0 48px; }
.zn-about-lead strong { color: #fff; }
.zn-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.zn-about-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 32px 26px; }
.zn-about-card--accent { background: rgba(163,177,138,0.08); border-color: rgba(163,177,138,0.15); }
.zn-about-card-title { font-size: 13px; font-weight: 700; color: #a3b18a; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.zn-about-list { display: flex; flex-direction: column; gap: 14px; }
.zn-about-list-item { display: flex; align-items: flex-start; gap: 12px; }
.zn-about-list-icon { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.zn-about-list-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.55; }
.zn-about-note { margin-top: 32px; padding: 18px 22px; border-radius: var(--radius); background: rgba(255,255,255,0.03); border-left: 3px solid #a3b18a; }

/* Check icon animation */
.zn-check-icon svg path {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  transition: stroke-dashoffset 0.5s ease;
}
.zn-check-icon svg circle {
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.is-visible .zn-check-icon svg path,
.zn-about .zn-check-icon svg path {
  stroke-dashoffset: 0;
}
.is-visible .zn-check-icon svg circle,
.zn-about .zn-check-icon svg circle {
  transform: scale(1);
}
.zn-about-list-item:nth-child(1) .zn-check-icon svg path { transition-delay: 0.1s; }
.zn-about-list-item:nth-child(1) .zn-check-icon svg circle { transition-delay: 0s; }
.zn-about-list-item:nth-child(2) .zn-check-icon svg path { transition-delay: 0.25s; }
.zn-about-list-item:nth-child(2) .zn-check-icon svg circle { transition-delay: 0.15s; }
.zn-about-list-item:nth-child(3) .zn-check-icon svg path { transition-delay: 0.4s; }
.zn-about-list-item:nth-child(3) .zn-check-icon svg circle { transition-delay: 0.3s; }
.zn-about-list-item:nth-child(4) .zn-check-icon svg path { transition-delay: 0.55s; }
.zn-about-list-item:nth-child(4) .zn-check-icon svg circle { transition-delay: 0.45s; }
.zn-about-note p { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.6; margin: 0; }
.zn-about-note strong { color: #fff; }

/* ═══ SECTION III — GANHOS ═══ */
.zn-earn { padding: 80px 32px; background: var(--cream); }
.zn-earn-inner { max-width: 960px; margin: 0 auto; }
.zn-earn-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: start; }
.zn-earn-context p { font-size: 15px; color: var(--ink-2); line-height: 1.7; margin: 0 0 28px; }
.zn-earn-stats { display: flex; flex-direction: column; gap: 16px; }
.zn-earn-stat { padding: 16px 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.zn-earn-stat-label { font-size: 11px; font-weight: 700; color: var(--ink-3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.zn-earn-stat-value { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }
.zn-earn-stat-value span { font-size: 13px; font-weight: 500; color: var(--ink-3); }
.zn-earn-tip { padding: 12px 18px; background: var(--g-l); border-radius: var(--radius); border-left: 3px solid var(--g); font-size: 12px; color: var(--g-dd); font-weight: 600; line-height: 1.5; }
.zn-earn-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.zn-earn-card-title { font-size: 11px; font-weight: 700; color: var(--ink-3); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.zn-earn-bars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.zn-earn-bar { display: flex; align-items: center; gap: 14px; }
.zn-earn-bar-label { font-size: 13px; font-weight: 600; color: var(--ink-2); width: 60px; flex-shrink: 0; }
.zn-earn-bar-track { flex: 1; height: 28px; background: var(--g-l); border-radius: 6px; position: relative; overflow: hidden; }
.zn-earn-bar-fill { height: 100%; background: linear-gradient(90deg, var(--g), #a3b18a); border-radius: 6px; }
.zn-earn-bar-value { font-size: 14px; font-weight: 700; color: var(--ink); width: 100px; text-align: right; }
.zn-earn-bar--highlight { background: var(--g-l); margin: 0 -12px; padding: 8px 12px; border-radius: 8px; }
.zn-earn-bar--highlight .zn-earn-bar-label { font-weight: 700; color: var(--g-dd); }
.zn-earn-bar--highlight .zn-earn-bar-track { height: 32px; background: rgba(107,124,78,0.12); }
.zn-earn-bar--highlight .zn-earn-bar-value { font-size: 15px; font-weight: 800; color: var(--g-dd); }
.zn-earn-summary { background: linear-gradient(135deg, var(--g-l), rgba(107,124,78,0.08)); border: 1px solid rgba(107,124,78,0.15); border-radius: var(--radius); padding: 24px; text-align: center; }
.zn-earn-summary-label { font-size: 12px; color: var(--ink-2); margin-bottom: 8px; }
.zn-earn-summary-label strong { color: var(--ink); }
.zn-earn-summary-tag { font-size: 12px; font-weight: 700; color: var(--g); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.zn-earn-summary-amount { font-size: 34px; font-weight: 800; color: var(--g-dd); letter-spacing: -1.5px; font-variant-numeric: tabular-nums; }
.zn-earn-summary-month { font-size: 13px; color: var(--ink-2); margin-top: 6px; }
.zn-earn-summary-month strong { color: var(--ink); font-size: 15px; }
.zn-earn-cta { margin-top: 24px; display: flex; margin-left: auto; margin-right: auto; }
.zn-earn-disclaimer { font-size: 11px; color: var(--ink-3); margin: 10px 0 0; text-align: center; }

/* Earn — hours list */
.zn-earn-hours {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  max-width: 580px; margin-bottom: 32px; overflow: visible;
}
.zn-earn-hour {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px 20px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: all 0.2s; position: relative; overflow: visible;
}
.zn-earn-hour:hover { box-shadow: var(--shadow-sm); }
.zn-earn-hour { cursor: pointer; }
.zn-earn-hour-icon { flex-shrink: 0; display: flex; margin-top: 2px; color: var(--ink-3); }
.zn-earn-hour-time { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.zn-earn-hour-value { font-size: 15px; font-weight: 700; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.zn-earn-hour-tag {
  position: absolute; top: -10px; right: 12px;
  font-size: 9px; font-weight: 700; color: #fff;
  letter-spacing: 0.8px; text-transform: uppercase;
  background: var(--g); padding: 3px 8px;
  border-radius: 4px; border: 1px solid var(--g-d);
  white-space: nowrap;
}
.zn-earn-hour--active {
  border: 2px solid var(--g); background: var(--g-l);
}
.zn-earn-hour--active .zn-earn-hour-icon { color: var(--g-dd); }
.zn-earn-hour--active .zn-earn-hour-time { color: var(--g-dd); }
.zn-earn-hour--active .zn-earn-hour-value { color: var(--g-dd); }

/* Warning box */
.zn-earn-warning {
  display: flex;
  align-items: flex-start;
  max-width: 580px;
  margin-bottom: 24px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fef3f2;
}
.zn-earn-warning p { font-size: 12.5px; color: #7a1f1f; line-height: 1.65; margin: 0; }
.zn-earn-warning p strong { font-weight: 600; }

/* Earn — result card */
.zn-earn-result {
  max-width: 580px; text-align: left;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-md);
}
.zn-earn-result-label { font-size: 14px; color: var(--ink-2); margin-bottom: 8px; }
.zn-earn-result-label strong { color: var(--ink); }
.zn-earn-result-amount {
  font-size: 40px; font-weight: 800; color: var(--g-dd);
  letter-spacing: -2px; font-variant-numeric: tabular-nums;
  line-height: 1.1; margin-bottom: 16px;
}
.zn-earn-result-month {
  font-size: 16px; font-weight: 500; color: var(--ink-3);
  letter-spacing: 0;
}
.zn-earn-result-pix {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--g-dd);
  background: var(--g-l); padding: 8px 16px; border-radius: 50px;
  margin-bottom: 12px;
}
.zn-earn-result-note {
  font-size: 11px; color: var(--ink-3);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .zn-earn-hours { max-width: 100%; grid-template-columns: 1fr 1fr; gap: 10px; }
  .zn-earn-hour { padding: 14px 14px; gap: 10px; }
  .zn-earn-hour-time { font-size: 13px; }
  .zn-earn-hour-value { font-size: 13px; }
  .zn-earn-hour-tag { font-size: 8px; top: -9px; right: 10px; }
  .zn-earn-result { max-width: 100%; padding: 24px 20px; }
  .zn-earn-result-amount { font-size: 30px; letter-spacing: -1.5px; }
}
.zn-earn-foot { font-size: 12px; color: var(--ink-3); margin: 24px 0 0; text-align: left; font-family: var(--serif); font-style: italic; }

/* PIX highlight badge */
.zn-pix-badge { display: flex; align-items: center; gap: 14px; background: none; border: none; box-shadow: none; padding: 0; margin-bottom: 20px; }
.zn-pix-badge-icon { font-size: 32px; }
.zn-pix-badge-title { font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -0.5px; }
.zn-pix-badge-sub { font-size: 11px; color: var(--ink-2); }
.zn-pix-trust { font-size: 12px; color: var(--ink-3); margin-top: 12px; }

/* ═══ FAQ ═══ */
.zn-faq { padding: 80px 32px; background: var(--cream); }
.zn-faq-inner { max-width: 720px; margin: 0 auto; }
/* FAQ — variante 2 colunas */
.zn-faq--split { background: var(--white); }
.zn-faq--split .zn-faq-inner { max-width: 960px; }
.zn-faq-grid { display: grid; grid-template-columns: minmax(280px, 320px) 1fr; gap: 56px; align-items: start; }
.zn-faq-side h2 { font-size: 40px; font-weight: 700; color: var(--ink); letter-spacing: -1.5px; line-height: 1.05; margin: 0 0 16px; font-family: var(--serif); }
.zn-faq-side h2 em { font-style: italic; font-weight: 500; color: var(--g-dd); }
.zn-faq-side p { font-size: 14px; color: var(--ink-2); line-height: 1.65; margin: 0 0 24px; }
.zn-faq-list { margin-top: 0; overflow: hidden; }
.zn-faq-item { border-top: 1px solid var(--line); transition: all .2s; }
.zn-faq-item:last-child { border-bottom: 1px solid var(--line); }
.zn-faq-item.is-open { background: var(--bg); margin: 0 -20px; padding: 0 20px; border-radius: var(--radius); border-color: transparent; box-shadow: var(--shadow-sm); }
.zn-faq-q { width: 100%; background: none; border: none; padding: 24px 0; display: grid; grid-template-columns: 36px 1fr 24px; gap: 14px; align-items: center; font-size: 18px; font-weight: 600; color: var(--ink); cursor: pointer; text-align: left; letter-spacing: -0.3px; font-family: inherit; }
.zn-faq-num { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--g); font-weight: 500; }
.zn-faq-txt { text-wrap: balance; }
.zn-faq-plus { font-size: 20px; color: var(--ink-3); font-weight: 400; text-align: center; }
.zn-faq-a { padding: 0 0 22px 50px; font-size: 15px; color: var(--ink-2); line-height: 1.6; max-width: 620px; }

/* ═══ FINAL CTA ═══ */
.zn-final { padding: 100px 32px; background: var(--ink); color: #fff; text-align: center; position: relative; overflow: hidden; }
.zn-final-bg { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 30px; pointer-events: none; overflow: hidden; }
.zn-final-bg span { font-family: var(--serif); font-style: italic; font-size: 160px; color: rgba(255,255,255,0.025); font-weight: 500; letter-spacing: -8px; line-height: 1; white-space: nowrap; }
.zn-final-bg span:nth-child(even) { transform: translateX(20%); color: rgba(163,177,138,0.03); }
.zn-final-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.zn-final-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #a3b18a; padding: 9px 18px; border: 1px solid rgba(163,177,138,0.2); border-radius: 50px; margin-bottom: 32px; }
.zn-final-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: #a3b18a; animation: zn-pulse 1.4s ease-in-out infinite; box-shadow: 0 0 0 3px rgba(163,177,138,0.18); }
.zn-final-h { font-size: 80px; font-weight: 700; line-height: 0.96; letter-spacing: -3px; margin: 0 0 48px; text-wrap: balance; }
.zn-final-hi { color: #a3b18a; font-family: var(--serif); font-style: italic; font-weight: 600; letter-spacing: -1px; }
.zn-final-btn { background: var(--white); color: var(--ink); padding: 22px 40px; font-size: 17px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.zn-final-btn:hover { background: #8fa076; color: #1a1a1a; box-shadow: 0 14px 36px rgba(163,177,138,0.3); }
.zn-final-feet { display: flex; gap: 28px; justify-content: center; margin-top: 32px; font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500; letter-spacing: 0.3px; flex-wrap: wrap; }
.zn-final-feet span { display: inline-flex; align-items: center; gap: 6px; }

/* ═══ FOOTER ═══ */
.zn-foot { background: var(--cream); color: var(--ink-2); padding: 52px 32px; text-align: center; border-top: 1px solid var(--line); }
.zn-foot-inner { max-width: 600px; margin: 0 auto; }
.zn-foot-logo { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.3px; }
.zn-foot-logo em { font-style: normal; color: var(--g); }
.zn-foot-orn { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 16px 0; }
.zn-foot-orn span { width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); }
.zn-foot-orn span:nth-child(2) { background: var(--g); }
.zn-foot-strip { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-2); margin: 0 0 6px; }
.zn-foot-copy { font-size: 11px; color: var(--ink-3); margin: 4px 0; letter-spacing: 0.3px; }

/* ═══ FLOATING CTA (mobile only) ═══ */
.zn-floating-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; padding: 12px 36px; background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(0,0,0,0.08); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); transform: translateY(100%); display: none; }
.zn-floating-cta.is-visible { transform: translateY(0); }
.zn-floating-cta .zn-btn-primary { width: 100%; justify-content: center; gap: 8px; font-size: 15px; padding: 16px 24px; box-shadow: 0 4px 16px rgba(107,124,78,0.2); }
.zn-floating-cta .zn-btn-primary span:first-child { font-size: 18px; }
@media (max-width: 900px) {
  .zn-floating-cta { display: block; }
}

/* ═══ MODAL ═══ */
.zn-modal { position: fixed; inset: 0; background: rgba(15,31,22,0.5); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; z-index: 100; padding: 20px; }
.zn-signup { background: var(--white); border-radius: var(--radius-lg); padding: 48px 36px 32px; max-width: 420px; width: 100%; position: relative; box-shadow: 0 40px 80px rgba(0,0,0,0.25); }
.zn-signup::before { display: none; }
.zn-signup-x { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 26px; color: var(--ink-3); cursor: pointer; line-height: 1; font-family: inherit; z-index: 2; transition: color .2s; }
.zn-signup-x:hover { color: var(--ink); }
.zn-signup-t { font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1.1; margin: 0 0 24px; letter-spacing: -0.8px; }
.zn-signup-t em { font-style: italic; color: var(--g); display: block; font-family: var(--serif); font-size: 17px; font-weight: 500; margin-top: 8px; letter-spacing: -0.2px; }
.zn-signup-steps { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; font-size: 15px; color: var(--ink); position: relative; }
.zn-signup-steps li { padding: 12px 16px; background: var(--bg); border-radius: var(--radius); }
.zn-signup-steps strong { color: var(--g); margin-right: 8px; font-weight: 800; font-family: var(--serif); font-style: italic; }
.zn-signup-foot { text-align: center; font-size: 12px; color: var(--ink-3); margin: 14px 0 0; font-family: var(--serif); font-style: italic; }

/* ═══ PIX FLOAT BADGE ═══ */
@keyframes zn-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.zn-pix-float { position: absolute; bottom: 36px; left: 32px; background: rgba(255,255,255,0.6); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-radius: 16px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-md); z-index: 10; animation: zn-float 3s ease-in-out infinite; }
.zn-pix-float-icon { width: 40px; height: 40px; border-radius: 50%; background: #e8f5e9; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.zn-pix-float-label { font-size: 12px; font-weight: 500; color: var(--ink-3); margin-bottom: 1px; }
.zn-pix-float-value { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }

/* ═══ VIDEO POPUP ═══ */
.zn-video-popup { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.zn-video-popup.is-visible { opacity: 1; pointer-events: all; }
.zn-video-popup-container { position: relative; width: 100%; max-width: 380px; border-radius: 20px; overflow: hidden; background: var(--white); box-shadow: 0 24px 60px rgba(0,0,0,0.3); display: flex; flex-direction: column; }
.zn-video-popup-wrap { position: relative; width: 100%; aspect-ratio: 9/16; overflow: hidden; background: #000; }
.zn-video-popup-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.zn-video-popup-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,0.2); color: #fff; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: all 0.2s; line-height: 1; font-weight: 400; }
.zn-video-popup-close:hover { background: rgba(0,0,0,0.75); border-color: rgba(255,255,255,0.4); transform: scale(1.05); }
.zn-video-popup-close:active { transform: scale(0.95); }
.zn-video-popup-footer { background: var(--white); padding: 20px 24px 24px; text-align: center; }
.zn-video-popup-label { font-size: 13px; color: var(--ink-2); margin: 0 0 14px; font-weight: 500; }
.zn-video-cta { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--white); background: var(--g); padding: 14px 28px; border-radius: 12px; border: none; cursor: pointer; font-family: inherit; box-shadow: 0 4px 16px rgba(107,124,78,0.2); transition: all 0.3s cubic-bezier(0.22,1,0.36,1); letter-spacing: -0.2px; width: 100%; justify-content: center; margin: 0 auto; opacity: 0; animation: fadeInUp 0.4s ease forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.zn-video-cta span { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }
.zn-video-cta:hover { background: var(--g-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,124,78,0.25); }
.zn-video-cta:hover span { transform: translateX(4px); }
.zn-video-cta:active { transform: translateY(0) scale(0.98); transition-duration: 0.1s; }
.zn-video-skip { display: inline-flex; align-items: center; justify-content: center; width: 100%; font-size: 13px; color: var(--g); margin-top: 8px; cursor: pointer; text-decoration: none; font-weight: 600; font-family: inherit; background: none; border: 1px solid var(--g); border-radius: 12px; padding: 11px 28px; transition: all 0.2s; }
.zn-video-skip:hover { background: var(--g-l); text-decoration: none; }

/* Desktop: vídeo centralizado com max-width */
@media (min-width: 901px) {
  .zn-video-popup { padding: 40px; }
  .zn-video-popup-container { max-width: 480px; }
  .zn-video-popup-wrap { aspect-ratio: 9/16; }
  .zn-video-popup-close { top: 16px; right: 16px; }
  .zn-video-popup-footer { padding: 24px 28px 28px; }
  .zn-video-popup-label { font-size: 14px; margin-bottom: 16px; }
  .zn-video-cta { font-size: 16px; padding: 16px 32px; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .zn-hero { grid-template-columns: 1fr; gap: 48px; padding: 32px 36px 48px; }
  .zn-hero-title { font-size: 38px; letter-spacing: -1.5px; }
  .zn-hero-lead { font-size: 15px; }
  .zn-hero-bg-word { font-size: 120px; }
  .zn-hero-pills { gap: 8px; margin-top: 16px; }
  .zn-hero-pill { padding: 8px 14px; font-size: 12px; }
  .zn-h2 { font-size: 28px; letter-spacing: -0.8px; margin-bottom: 20px; }
  .zn-final-h { font-size: 36px; letter-spacing: -1.5px; margin-bottom: 32px; }
  .zn-how, .zn-what, .zn-sim, .zn-dep, .zn-faq, .zn-earn { padding: 44px 36px; }
  .zn-about { padding: 40px 36px 48px; }
  .zn-final { padding: 56px 36px; }
  .zn-how-item { grid-template-columns: 56px 1fr; gap: 16px; padding: 20px 0; }
  .zn-how-n { font-size: 36px; }
  .zn-how-t { font-size: 17px; }
  .zn-how-d { font-size: 13px; line-height: 1.65; }
  .zn-section-head { margin-bottom: 14px; }
  .zn-section-num { font-size: 18px; }
  .zn-section-tag { font-size: 10px; letter-spacing: 2px; }
  .zn-what-two { grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 28px; }
  .zn-what-col { padding: 18px 14px; }
  .zn-what-col--yes { border-left: 3px solid var(--g); }
  .zn-what-col--no { border-left: 3px solid #e07070; }
  .zn-what-ttl { font-size: 9px; margin-bottom: 12px; }
  .zn-what-ttl em { font-size: 13px; }
  .zn-what-ul { font-size: 13px; gap: 8px; }
  .zn-what-ul li span { font-size: 15px; }
  .zn-what-quote p { font-size: 18px; }
  .zn-what-quote p strong { font-size: 16px; }
  .zn-quote-mark { font-size: 56px; top: -16px; }
  .zn-dep-grid { grid-template-columns: 1fr; }
  .zn-dep--light .zn-t-card--dark { transform: none; box-shadow: var(--shadow-sm); }
  .zn-t-card { padding: 24px 20px 20px; }
  .zn-t-q { font-size: 16px; margin: 20px 0 16px; }
  /* Section II — about */
  .zn-about-title { font-size: 28px; letter-spacing: -0.8px; }
  .zn-about-lead { font-size: 15px; }
  .zn-about-grid { grid-template-columns: 1fr; }
  .zn-about-card { padding: 24px 20px; }
  /* Section III — earnings */
  .zn-earn-grid { grid-template-columns: 1fr; gap: 20px; }
  .zn-earn-card { padding: 24px 20px; }
  .zn-earn-bar-track { height: 20px; }
  .zn-earn-bar--highlight .zn-earn-bar-track { height: 22px; }
  .zn-earn-summary-amount { font-size: 26px; }
  .zn-earn-stat { padding: 12px 14px; }
  .zn-sim-card { padding: 24px 18px; }
  .zn-sim-out-big { font-size: 36px; }
  .zn-sim-lbl strong { font-size: 24px; }
  .zn-sim-lead { font-size: 14px; margin: -20px 0 28px; }
  /* FAQ */
  .zn-faq-q { font-size: 15px; padding: 18px 0; }
  .zn-faq-a { font-size: 14px; padding-left: 40px; }
  .zn-faq-grid { grid-template-columns: 1fr; gap: 12px; }
  .zn-faq-side h2 { font-size: 28px; }
  .zn-faq-side p { margin-bottom: 0; }
  .zn-faq-side { order: -1; }
  /* Buttons */
  .zn-btn-primary { font-size: 15px; padding: 16px 28px; }
  .zn-btn-xl { padding: 18px 30px; font-size: 15px; }
  .zn-hero-cta-row { flex-direction: column; gap: 20px; align-items: flex-start; }
  .zn-pix-float { bottom: 16px; left: 16px; padding: 10px 14px; gap: 10px; }
  .zn-pix-float-icon { width: 32px; height: 32px; }
  .zn-pix-float-label { font-size: 11px; }
  .zn-pix-float-value { font-size: 15px; }
  .zn-hero-badge { right: 12px; top: 12px; }
  .zn-nav-online { display: none; }
  .zn-final-feet { gap: 12px; font-size: 11px; padding: 0 36px; }
  .zn-final-bg span { font-size: 80px; }
  .zn-final-tag { font-size: 10px; padding: 8px 16px; }
  .zn-proof-head { padding: 0 36px 14px; }
  .zn-video-popup { padding: 20px; }
  .zn-video-popup-wrap { border-radius: 0; }
  .zn-video-popup-wrap iframe { border-radius: 0; }
  .zn-video-popup-close { top: 12px; right: 12px; width: 36px; height: 36px; font-size: 22px; }
  .zn-video-cta { font-size: 15px; padding: 14px 24px; }
  .zn-foot { padding: 32px 36px; }
  .zn-nav-inner { padding: 10px 36px; }
}


/* ═══ STEP CARDS (como funciona v2) ═══ */
.zn-steps-cards { display: flex; flex-direction: column; gap: 32px; }
.zn-step-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 28px;
  background: var(--white); border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius-lg); padding: 36px 40px;
  position: relative; align-items: center;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .3s ease;
}
.zn-step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.zn-step-card-num {
  position: absolute; top: 20px; left: 32px;
  font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--g); font-weight: 500;
}
.zn-step-phone { display: flex; justify-content: center; }
.zn-phone-mock {
  width: 180px; background: var(--bg);
  border-radius: 24px; border: 2px solid var(--line);
  overflow: hidden; position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
.zn-phone-notch {
  width: 52px; height: 6px; background: var(--line);
  border-radius: 0 0 8px 8px; margin: 0 auto;
}
.zn-phone-content { min-height: 340px; height: 360px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.zn-step-card-body h3 {
  font-size: 20px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.4px; margin: 0 0 14px; line-height: 1.3;
}
.zn-step-card-body h3 strong { font-weight: 800; }
.zn-step-card-body ul {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.zn-step-card-body li {
  font-size: 14px; color: var(--ink-2); line-height: 1.5;
  padding-left: 16px; position: relative;
}
.zn-step-card-body li::before {
  content: '◦'; position: absolute; left: 0; color: var(--g);
  font-weight: 700;
}
.zn-step-highlight {
  font-size: 13px; font-weight: 700; color: var(--g-dd);
  background: #eaf6ef; padding: 12px 16px;
  border-radius: 8px; border-left: 3px solid var(--g);
  line-height: 1.5;
}
.zn-step-highlight span { margin-right: 4px; }

/* Responsive */
@media (max-width: 900px) {
  .zn-step-card {
    grid-template-columns: 1fr; gap: 20px;
    padding: 24px 20px; padding-top: 40px;
  }
  .zn-step-phone { order: -1; }
  .zn-phone-mock { width: 200px; }
  .zn-phone-content { min-height: 300px; height: 320px; }
  .zn-step-card-body h3 { font-size: 18px; }
  .zn-step-card-body li { font-size: 13px; }
  .zn-step-highlight { font-size: 12px; }
  .zn-step-card-num { top: 14px; left: 20px; }
}


/* ═══ ONBOARDING (cards only) ═══ */

/* Card states */
.zn-step-card.is-visible {
  opacity: 1; transform: translateY(0);
}
.zn-step-card.is-past {
  opacity: 0.55;
}
.zn-step-card.is-past:hover {
  transform: none;
  box-shadow: none;
}
.zn-step-card.is-active {
  opacity: 1; box-shadow: var(--shadow-md);
}


/* ═══ WHAT NOTICE BLOCK ═══ */

.zn-what-notice {
  display: flex; gap: 20px; margin-bottom: 48px;
  padding: 36px 32px; background: var(--bg);
  border-radius: var(--radius-lg); max-width: 700px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.zn-what-notice-icon {
  font-size: 20px; color: var(--g); flex-shrink: 0;
  margin-top: 2px; opacity: 0.6;
}
.zn-what-notice-body p {
  font-size: 15px; color: var(--ink-2); line-height: 1.65;
  margin: 0 0 8px;
}
.zn-what-notice-body strong { color: var(--ink); font-weight: 700; }
.zn-what-notice-lead {
  font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 12px;
}
.zn-what-points {
  display: flex; flex-direction: column; gap: 6px;
  margin: 10px 0; padding-left: 2px;
}
.zn-what-points div {
  font-size: 14px; font-weight: 600; color: var(--g-dd);
  padding-left: 18px; position: relative;
}
.zn-what-points div::before {
  content: '→'; position: absolute; left: 0; color: var(--g);
}
.zn-what-notice-key {
  font-size: 15px; font-weight: 700; color: var(--g-dd);
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.zn-what-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 0; }

@media (max-width: 900px) {
  .zn-what-notice { flex-direction: column; gap: 12px; padding: 28px 22px; }
  .zn-what-notice-body p { font-size: 14px; }
  .zn-what-notice-lead { font-size: 15px; }
  .zn-what-points div { font-size: 13px; }
  .zn-what-notice-key { font-size: 14px; }
}


/* ═══ EARNINGS TABLE ═══ */
.zn-earn-info { display: flex; flex-direction: column; gap: 12px; }
.zn-earn-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0;
}
.zn-earn-label { font-size: 13px; color: var(--ink-2); font-weight: 500; }
.zn-earn-value { font-size: 15px; font-weight: 700; color: var(--ink); }

.zn-earn-table-label {
  font-size: 11px; font-weight: 700; color: var(--ink-3);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px;
}
.zn-earn-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.zn-earn-table th {
  text-align: left; font-size: 11px; font-weight: 700;
  color: var(--ink-3); letter-spacing: 0.5px; text-transform: uppercase;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.zn-earn-table td {
  padding: 12px 0; border-bottom: 1px solid var(--line);
  color: var(--ink-2); font-size: 14px;
}
.zn-earn-table td strong {
  color: var(--g-dd); font-weight: 700; font-size: 15px;
}
.zn-earn-highlight-row {
  background: var(--g-l); border-radius: 6px;
}
.zn-earn-highlight-row td {
  padding: 14px 8px; border-bottom: none; font-weight: 600; color: var(--ink);
}
.zn-earn-highlight-row td:first-child { border-radius: 6px 0 0 6px; }
.zn-earn-highlight-row td:last-child { border-radius: 0 6px 6px 0; }
.zn-earn-highlight-row td strong { font-size: 16px; }

.zn-earn-weekly { text-align: center; }
.zn-earn-weekly-label {
  font-size: 13px; color: var(--ink-2); margin-bottom: 12px;
}
.zn-earn-weekly-value { margin-bottom: 6px; }
.zn-earn-weekly-pix {
  font-size: 11px; font-weight: 700; color: var(--g);
  letter-spacing: 1.5px; text-transform: uppercase; display: block;
  margin-bottom: 4px;
}
.zn-earn-weekly-amount {
  font-size: 36px; font-weight: 800; color: var(--g-dd);
  letter-spacing: -1.5px; font-variant-numeric: tabular-nums;
}
.zn-earn-weekly-month {
  font-size: 14px; color: var(--ink-2); margin-top: 8px;
}
.zn-earn-weekly-month strong {
  color: var(--ink); font-weight: 700; font-size: 16px;
}

@media (max-width: 900px) {
  .zn-earn-table { font-size: 13px; }
  .zn-earn-table td strong { font-size: 14px; }
  .zn-earn-weekly-amount { font-size: 28px; }
  .zn-earn-row { flex-direction: column; gap: 2px; }
}


/* ═══ SECTION FLOW — visual transitions ═══ */
.zn-proof + .zn-how { padding-top: 80px; }
.zn-how + .zn-what { border-top: none; }

/* Consistent section inner widths */
.zn-what-inner,
.zn-sim-inner,
.zn-faq-inner { max-width: 680px; margin: 0 auto; }

/* Section titles — tighter spacing to content */
.zn-h2 { margin-bottom: 32px; }
.zn-section-head { margin-bottom: 20px; }

/* Depoimentos grid — better card spacing */
.zn-dep-grid { gap: 16px; }
.zn-t-card { padding: 32px 24px 24px; }
.zn-t-q { margin: 24px 0 20px; font-size: 18px; }
.zn-t-mark { font-size: 48px; top: 8px; left: 22px; }

/* FAQ — tighter, cleaner */
.zn-faq-q { padding: 20px 0; font-size: 16px; }
.zn-faq-a { padding: 0 0 18px 50px; font-size: 14px; }

/* Earnings card — less internal padding */
.zn-sim-card { padding: 32px 28px; }

/* Footer — less padding */
.zn-foot { padding: 40px 32px; }


/* ═══ WHAT — redesigned blocks ═══ */
.zn-what-block { margin-bottom: 32px; }
.zn-what-text {
  font-size: 16px; color: var(--ink-2); line-height: 1.7;
  margin: 0 0 8px;
}
.zn-what-text strong { color: var(--ink); font-weight: 700; }

.zn-what-safe {
  background: var(--g-l); border-radius: var(--radius-lg);
  padding: 36px 32px; margin: 36px 0;
  border-left: 4px solid var(--g);
}
.zn-what-safe-title {
  font-size: 17px; font-weight: 700; color: var(--ink);
  margin-bottom: 20px;
}
.zn-what-safe-list {
  display: flex; flex-direction: column; gap: 14px;
}
.zn-what-safe-item {
  font-size: 15px; font-weight: 600; color: var(--g-dd);
  display: flex; align-items: center; gap: 10px;
}
.zn-what-check {
  color: var(--g); font-size: 16px; flex-shrink: 0;
}

.zn-what-key {
  font-size: 18px; font-weight: 700; color: var(--ink);
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.04);
  letter-spacing: -0.3px;
}

@media (max-width: 900px) {
  .zn-what-safe { padding: 24px 20px; }
  .zn-what-safe-title { font-size: 15px; }
  .zn-what-safe-item { font-size: 14px; }
  .zn-what-text { font-size: 14px; }
  .zn-what-key { font-size: 16px; }
}

/* Mobile-first usability pass for the active pages. */
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .zn-nav-inner {
    min-height: 58px;
    padding: 10px 18px;
    gap: 12px;
  }

  .zn-nav-right {
    gap: 10px;
    margin-left: 10px;
  }

  .zn-nav-cta {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .zn-hero {
    gap: 28px;
    padding: 36px 20px 44px;
  }

  .zn-hero-title {
    font-size: clamp(2.35rem, 10vw, 3.15rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .zn-hero-lead,
  .zn-section-lead,
  .zn-about-lead,
  .zn-what-text {
    font-size: 1rem;
    line-height: 1.72;
  }

  .zn-hero-cta-row,
  .zn-final .zn-btn-primary,
  .zn-final-btn {
    width: 100%;
  }

  .zn-btn-primary,
  .zn-video-cta {
    min-height: 50px;
    justify-content: center;
  }

  .zn-how,
  .zn-what,
  .zn-sim,
  .zn-dep,
  .zn-faq,
  .zn-earn,
  .zn-about {
    padding-left: 20px;
    padding-right: 20px;
  }

  .zn-step-card {
    padding: 30px 18px 22px;
    gap: 18px;
  }

  .zn-step-phone {
    order: 2;
  }

  .zn-phone-mock {
    width: min(178px, 62vw);
  }

  .zn-phone-content {
    min-height: 240px;
    height: 260px;
  }

  .zn-what-two,
  .zn-earn-hours,
  .zn-earn-facts,
  .zn-about-grid {
    grid-template-columns: 1fr;
  }

  .zn-what-col--yes,
  .zn-what-col--no,
  .zn-what-safe,
  .zn-earn-tip,
  .zn-about-note {
    border-left-width: 1px;
  }
}

/* Compact page CTAs on phones: buttons should not read as full-width bars. */
@media (max-width: 640px) {
  .zn-hero-cta-row {
    align-items: flex-start;
    width: auto;
  }

  .zn-hero-cta-row .zn-btn-primary,
  .zn-final .zn-btn-primary,
  .zn-final-btn {
    width: auto;
    min-width: min(100%, 214px);
    max-width: min(100%, 284px);
    padding-inline: 24px;
  }

  .zn-final .zn-btn-primary,
  .zn-final-btn {
    align-self: center;
  }
}
