@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #031B17;
  --bg-alt: #05231d;
  --panel: #0a2921;
  --panel-2: #0d332a;
  --border: rgba(244,247,246,0.08);
  --border-strong: rgba(244,247,246,0.16);
  --cream: #F4F7F6;
  --muted: #A8B5B1;
  --muted-2: #718178;
  --accent: #16E29A;
  --accent-dim: #10b87d;
  --accent-deep: #0a3a2c;
  --danger: #e2795f;
  --radius: 18px;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #031B17; }

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.section {
  position: relative;
  padding: 120px 8vw 100px;
  border-bottom: 1px solid var(--border);
}
.section.alt { background: var(--bg-alt); }
.section-inner { max-width: 1180px; margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }

.section-title {
  font-size: clamp(27px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 18px;
  max-width: 760px;
}

.section-lede {
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 48px;
}

.section-number {
  position: absolute;
  top: 110px;
  right: 8vw;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
}

/* ---------- Nav ---------- */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8vw;
  background: rgba(3,27,23,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.topnav.scrolled { border-color: var(--border); }
.topnav .brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
  letter-spacing: -0.01em;
}
.topnav .brand svg { width: 20px; height: 20px; }
.topnav .brand .sep { color: var(--muted-2); font-weight: 400; }
.topnav .cta {
  border: 1px solid var(--border-strong);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s ease;
  white-space: nowrap;
}
.topnav .cta:hover { border-color: var(--accent); color: var(--accent); }

.progress-rail {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 101;
  width: 0%;
  box-shadow: 0 0 8px var(--accent);
}

/* ---------- Cover ---------- */
.cover {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 8vw 80px;
  position: relative;
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(22,226,154,0.10), transparent 60%),
    linear-gradient(180deg, #031B17 0%, #04211c 100%);
  overflow: hidden;
}
.cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,247,246,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,247,246,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  pointer-events: none;
}
.cover-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); font-weight: 600;
  border: 1px solid rgba(22,226,154,0.28);
  background: rgba(22,226,154,0.06);
  padding: 8px 16px; border-radius: 100px;
  width: fit-content; margin-bottom: 34px;
  position: relative; z-index: 1;
}
.cover h1 {
  font-size: clamp(34px, 5.4vw, 66px);
  line-height: 1.08;
  max-width: 900px;
  position: relative; z-index: 1;
}
.cover h1 .accent-text { color: var(--accent); }
.cover .subtitle {
  margin-top: 28px;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  max-width: 640px;
  position: relative; z-index: 1;
}
.hero-features {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 44px;
  max-width: 720px;
}
.hero-feature {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border-strong);
  background: rgba(244,247,246,0.03);
  border-radius: 100px;
  padding: 10px 18px 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cream);
}
.hero-feature svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

.hero-ctas {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 48px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.btn-primary {
  background: var(--accent); color: #031B17;
  box-shadow: 0 0 0 rgba(22,226,154,0);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(22,226,154,0.25); }
.btn-secondary {
  border: 1px solid var(--border-strong); color: var(--cream);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.cover-foot {
  margin-top: 76px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  position: relative; z-index: 1;
}
.cover-foot .meta { display: flex; gap: 36px; flex-wrap: wrap; }
.cover-foot .meta div { font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.08em; }
.cover-foot .meta div span { display: block; color: var(--cream); font-size: 14px; text-transform: none; letter-spacing: 0; margin-top: 6px; font-weight: 500; }
.scroll-hint { display:flex; align-items:center; gap:10px; color: var(--muted-2); font-size: 12.5px; letter-spacing: 0.05em; }
.scroll-hint .arrow { width: 18px; height: 1px; background: var(--muted-2); position: relative; }
.scroll-hint .arrow::after { content:''; position:absolute; right:0; top:-2px; width:5px; height:5px; border-right:1px solid var(--muted-2); border-bottom:1px solid var(--muted-2); transform: rotate(-45deg); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .25s ease;
}
.card:hover { border-color: var(--border-strong); }
.card h4 { font-size: 17px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 14px; }
.card .num-badge {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--accent); margin-bottom: 14px; display: block;
}
.card .icon-wrap {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-deep); border: 1px solid rgba(22,226,154,0.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .icon-wrap svg { width: 19px; height: 19px; color: var(--accent); }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid var(--border-strong);
  color: var(--muted);
}
.pill.accent { color: var(--accent); border-color: rgba(22,226,154,0.3); background: rgba(22,226,154,0.06); }

/* tag list */
.taglist { display: flex; flex-wrap: wrap; gap: 8px; }
.taglist .tag {
  font-size: 13px; padding: 8px 14px; border-radius: 10px;
  background: var(--panel-2); border: 1px solid var(--border); color: var(--muted);
}

/* checklist */
.checklist { display: grid; gap: 12px; }
.checklist .item { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--muted); }
.checklist .item svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; color: var(--accent); }
.checklist.cross .item svg { color: var(--muted-2); }

/* Question / note list */
.qlist { display: grid; gap: 0; border-top: 1px solid var(--border); }
.qlist .q { display: flex; gap: 16px; padding: 16px 4px; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--cream); }
.qlist .q .num { font-family: var(--font-display); color: var(--accent); font-weight: 700; font-size: 13px; min-width: 26px; }

/* Highlight quote block */
.quote {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.38;
  max-width: 800px;
  color: var(--cream);
  margin: 44px 0;
  padding-left: 26px;
  border-left: 2px solid var(--accent);
}
.quote.small { font-size: 17px; font-weight: 500; }

/* ---------- Journey visual ---------- */
.journey {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  margin: 12px 0 8px;
}
.journey-step {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 26px 14px;
  position: relative;
}
.journey-step .dot-ring {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--panel);
  display: flex; align-items: center; justify-content: center;
}
.journey-step .dot-ring svg { width: 22px; height: 22px; color: var(--accent); }
.journey-step .label { font-size: 13.5px; font-weight: 600; color: var(--cream); max-width: 140px; }
.journey-step.final .dot-ring { background: var(--accent); border-color: var(--accent); }
.journey-step.final .dot-ring svg { color: #031B17; }
.journey-arrow {
  align-self: center;
  width: 32px; height: 1px; background: var(--border-strong);
  position: relative;
  margin-top: 26px;
  flex: 0 0 auto;
}
.journey-arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid var(--border-strong); border-bottom: 1px solid var(--border-strong);
  transform: rotate(-45deg);
}

/* ---------- Roadmap (próximos passos) ---------- */
.roadmap { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; margin: 12px 0 44px; }
.roadmap .journey-arrow { margin-top: 44px; }
.roadmap .step-tag {
  display: inline-flex; font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
  border: 1px solid var(--border-strong); color: var(--muted-2);
  white-space: nowrap;
}
.roadmap .step-tag.active {
  color: #031B17; background: var(--accent); border-color: var(--accent); font-weight: 700;
}
.journey-arrow.dashed { background: none; border-top: 1px dashed var(--border-strong); height: 0; }
.journey-step.current .dot-ring { background: var(--accent); border-color: var(--accent); }
.journey-step.current .dot-ring svg { color: #031B17; }

/* ---------- Timeline / phases ---------- */
.phases { display: grid; gap: 0; }
.phase {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.phase:last-child { border-bottom: none; }
.phase .pn { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--panel-2); -webkit-text-stroke: 1px var(--border-strong); }
.phase h4 { font-size: 18px; margin-bottom: 10px; }
.phase p { color: var(--muted); font-size: 14.5px; max-width: 620px; }

/* ---------- Deliverables category cards ---------- */
.deliv-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.deliv-card h4 { font-size: 18px; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.deliv-card .cat-sub { color: var(--muted-2); font-size: 13px; margin-bottom: 20px; }
.deliv-card .checklist { margin-top: 4px; }
.note-box {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  font-size: 13px;
  color: var(--muted-2);
  display: flex; gap: 10px; align-items: flex-start;
}
.note-box svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--muted-2); }

/* disclaimer */
.disclaimer {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--bg-alt);
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 820px;
}
.disclaimer svg { width: 16px; height:16px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }

/* ---------- Prazos ---------- */
.prazo-card { text-align: left; }
.prazo-card .tag-time {
  font-family: var(--font-display); font-size: 12.5px; color: var(--accent);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; display: block;
}

/* ---------- ROI section ---------- */
.roi-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 780px;
  margin: 12px 0 32px;
}
.roi-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.roi-box .lbl { font-size: 12.5px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.roi-box .val { font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: var(--cream); }
.roi-box .sub { font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.roi-box.highlight { border-color: rgba(22,226,154,0.35); }
.roi-box.highlight .val { color: var(--accent); }
.roi-eq { font-family: var(--font-display); font-size: 22px; color: var(--muted-2); text-align: center; }

/* ---------- Pricing ---------- */
.pricing-card {
  border: 1px solid rgba(22,226,154,0.32);
  border-radius: 22px;
  padding: 44px;
  background: linear-gradient(160deg, var(--panel), var(--bg-alt));
  position: relative;
  overflow: hidden;
  max-width: 640px;
}
.pricing-card::before {
  content: '';
  position: absolute; top: -70px; right: -70px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,226,154,0.16), transparent 70%);
}
.pricing-card .label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 16px; position: relative; }
.pricing-card .amount { font-family: var(--font-display); font-size: clamp(38px, 4.2vw, 54px); font-weight: 800; color: var(--cream); position: relative; }
.pricing-card .alt-condition { font-size: 15px; color: var(--muted); margin: 14px 0 26px; position: relative; }
.pricing-card .alt-condition strong { color: var(--cream); font-weight: 600; }
.pricing-card .pricing-list { margin: 22px 0 26px; position: relative; }
.pricing-card .badge-line {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted); margin-bottom: 26px; position: relative;
  padding: 12px 16px; border-radius: 10px; background: rgba(22,226,154,0.05); border: 1px solid rgba(22,226,154,0.16);
}
.pricing-card .badge-line svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.pricing-card .btn-primary { position: relative; }

/* ---------- Closing ---------- */
.closing {
  min-height: 80vh;
  display: flex; flex-direction: column; justify-content: center;
  background: radial-gradient(ellipse 900px 500px at 50% 100%, rgba(22,226,154,0.08), transparent 60%);
  text-align: center;
}
.closing .section-inner { max-width: 820px; margin: 0 auto; }
.closing h2 { font-size: clamp(28px, 4vw, 46px); margin-bottom: 24px; line-height: 1.2; }
.closing p.lede { color: var(--muted); font-size: 17px; margin-bottom: 20px; }
.closing p.final-phrase { font-family: var(--font-display); font-size: clamp(18px, 2vw, 22px); font-weight: 600; color: var(--accent); margin: 30px 0 40px; }
.closing .btn-primary { margin: 0 auto; }

footer.foot {
  padding: 44px 8vw;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
  font-size: 12.5px; color: var(--muted-2);
  flex-wrap: wrap; gap: 20px;
}
.foot-left { display: flex; flex-direction: column; gap: 8px; }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); transition: color .2s ease; }
.foot-links a:hover { color: var(--accent); }
.zyoner-badge { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; color: var(--muted); }
.zyoner-badge svg { width: 16px; height: 16px; }

/* ---------- Section nav dots ---------- */
.dotnav {
  position: fixed;
  right: 26px; top: 50%; transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column; gap: 10px;
}
.dotnav a { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); display: block; transition: all .2s ease; }
.dotnav a.active { background: var(--accent); box-shadow: 0 0 8px var(--accent); height: 22px; border-radius: 4px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 95;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(22,226,154,0.32);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(22,226,154,0.4); }
.wa-float svg { width: 27px; height: 27px; color: #031B17; }

@media (max-width: 900px) {
  .dotnav { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .phase { grid-template-columns: 40px 1fr; }
  .section { padding: 90px 6vw 70px; }
  .section-number { display: none; }
  .cover { padding: 130px 6vw 60px; }
  .journey, .roadmap { flex-direction: column; }
  .journey-arrow { width: 1px; height: 24px; margin: 0 0 0 25px; }
  .journey-arrow::after { right: -3px; top: auto; bottom: 0; transform: rotate(45deg); }
  .journey-step { flex-direction: row; text-align: left; padding: 10px 0; flex-wrap: wrap; }
  .roadmap .journey-step { align-items: center; }
  .roadmap .step-tag { order: 3; margin-left: 62px; }
  .roi-compare { grid-template-columns: 1fr; }
  .roi-eq { transform: rotate(90deg); padding: 6px 0; }
  .pricing-card { padding: 30px 26px; }
  footer.foot { flex-direction: column; align-items: flex-start; }
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

@media print {
  .topnav, .dotnav, .progress-rail, .scroll-hint, .wa-float { display: none !important; }
  .section { break-inside: avoid; border-bottom: none; padding: 40px 6vw; }
  body { background: #031B17; }
}
