/* ============================================================
   REV DO BEM — Landing Page
   ============================================================ */

:root {
  --green: #00d95f;
  --green-dark: #00b84d;
  --green-soft: #e7fbef;
  --ink: #0f1c14;
  --gray: #5c6b62;
  --line: #e7ece9;
  --bg: #ffffff;
  --bg-soft: #f5f8f6;
  --radius: 18px;
  --shadow-sm: 0 6px 20px rgba(15, 28, 20, .06);
  --shadow-md: 0 18px 50px rgba(15, 28, 20, .12);
  --shadow-green: 0 14px 34px rgba(0, 217, 95, .35);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }
section { padding: 90px 0; }

.eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow.dark {
  background: var(--green-soft);
  color: var(--green-dark);
}

.hl { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: .98rem;
  padding: 12px 22px;
  border-radius: 100px;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--green);
  color: #04210f;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); background: transparent; }
.btn-ghost:hover { color: var(--green-dark); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  filter: drop-shadow(0 6px 14px rgba(0, 217, 95, .28));
  transition: transform .2s ease;
}
.brand:hover .brand-icon { transform: rotate(-6deg) scale(1.05); }
.brand-name {
  display: flex; flex-direction: column;
  justify-content: center; line-height: 1; gap: 3px;
}
.brand-rev {
  font-family: "Space Grotesk", var(--font);
  font-weight: 700; font-size: 1.42rem;
  letter-spacing: -.02em; color: var(--ink);
}
.brand-do {
  font-family: var(--font);
  font-weight: 700; font-size: .58rem;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--green-dark);
}
.brand.light .brand-rev { color: #fff; }
.brand.light .brand-do { color: var(--green); }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-weight: 500;
  font-size: .96rem;
  color: var(--gray);
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 3px;
  transition: .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background-color: #07120c;
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* foto de fundo (Unsplash) + degrade escuro por cima */
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 520px at 80% -8%, rgba(0, 217, 95, .22), transparent 60%),
    linear-gradient(100deg, rgba(7, 18, 12, .97) 0%, rgba(9, 28, 20, .9) 38%, rgba(10, 50, 32, .62) 72%, rgba(10, 58, 35, .45) 100%),
    url("assets/hero.jpg") center / cover no-repeat;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.hero-sub {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 600;
  color: var(--green);
  margin: 14px 0 18px;
}
.hero-text { color: #c5d3cb; max-width: 480px; font-size: 1.05rem; }
.hero-cta { display: flex; gap: 14px; margin: 30px 0 26px; flex-wrap: wrap; }

.hero-trust { display: flex; align-items: center; gap: 14px; }
.hero-trust p { color: #aebbb3; font-size: .9rem; }
.avatars-mini { display: flex; }
.avatars-mini span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2.5px solid #0c2017;
  margin-left: -10px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
}
.avatars-mini span:first-child { margin-left: 0; }

/* ---------- Phone mockup ---------- */
.hero-visual { position: relative; display: grid; place-items: center; }
.glow {
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0, 217, 95, .45), transparent 65%);
  filter: blur(20px);
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 1;
  width: 290px;
  background: #0b0f0d;
  border-radius: 38px;
  padding: 12px;
  box-shadow: var(--shadow-md), inset 0 0 0 2px rgba(255, 255, 255, .06);
}
.phone.small { width: 260px; }
.phone-notch {
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 22px;
  background: #0b0f0d;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  background: linear-gradient(180deg, #0f231a, #0b1712);
  border-radius: 28px;
  padding: 38px 18px 22px;
  min-height: 430px;
}
.phone-screen.alt { background: #fff; color: var(--ink); }

.app-bar {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 600; margin-bottom: 16px;
}
.app-logo {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--green); color: #04210f; font-weight: 800;
}
.app-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 14px;
}
.app-card.balance { display: flex; flex-direction: column; gap: 4px; }
.app-card .label { color: #9fb0a7; font-size: .8rem; }
.app-card .value { color: #fff; font-size: 1.7rem; }
.app-card .trend { color: var(--green); font-size: .82rem; font-weight: 600; }
.app-bars {
  display: flex; align-items: flex-end; gap: 8px;
  height: 96px; padding: 6px 4px 0;
}
.app-bars .bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  border-radius: 6px 6px 3px 3px;
  opacity: .9;
}
.app-card.mini {
  display: flex; align-items: center; justify-content: space-between;
  color: #cdd9d2; font-size: .85rem; margin-top: 14px;
}
.app-card.mini strong { color: #fff; font-size: 1.05rem; }

/* alt phone (value section) */
.link-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 14px;
}
.link-tag { font-size: .78rem; color: var(--gray); font-weight: 600; }
.link-card p { font-size: 1.02rem; margin: 6px 0 12px; word-break: break-all; }
.link-card .copy {
  width: 100%; border: 0; cursor: pointer;
  background: var(--green); color: #04210f;
  font-weight: 700; padding: 10px; border-radius: 10px;
  font-family: var(--font);
}
.stat-row { display: flex; gap: 10px; margin-bottom: 14px; }
.stat-row > div {
  flex: 1; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px; text-align: center;
}
.stat-row span { display: block; font-size: .75rem; color: var(--gray); }
.stat-row strong { font-size: 1.25rem; }
.earn-pill {
  background: var(--green-soft); color: var(--green-dark);
  font-weight: 700; text-align: center;
  padding: 12px; border-radius: 12px;
}

/* ---------- Value ---------- */
.value { background: var(--bg); }
.value-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.value-visual { display: grid; place-items: center; }
.value-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.value-copy p { color: var(--gray); font-size: 1.06rem; margin-bottom: 22px; }
.checklist { margin-bottom: 26px; display: grid; gap: 12px; }
.checklist li {
  position: relative; padding-left: 34px;
  font-weight: 500; color: var(--ink);
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 1px;
  width: 24px; height: 24px;
  background: var(--green-soft);
  border-radius: 50%;
}
.checklist li::after {
  content: "";
  position: absolute; left: 9px; top: 7px;
  width: 5px; height: 9px;
  border: solid var(--green-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---------- Section head ---------- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 12px; }
.section-head p { color: var(--gray); font-size: 1.1rem; }
.section-head .eyebrow { background: var(--green-soft); color: var(--green-dark); }

/* ---------- Social proof (carousel) ---------- */
.proof { background: var(--bg-soft); }

.carousel { position: relative; padding: 0 8px; }
.creators {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.creators::-webkit-scrollbar { display: none; }

.creator {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.creator:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.creator .ava {
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1.15rem;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  flex-shrink: 0;
  overflow: hidden;
}
.creator .ava img { width: 100%; height: 100%; object-fit: cover; }
.creator .info b { display: block; font-size: 1.02rem; }
.creator .info span { color: var(--gray); font-size: .88rem; }
.creator .info .followers { color: var(--green-dark); font-weight: 600; }

/* arrows */
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md); z-index: 3;
  transition: background .15s, color .15s, transform .15s;
}
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-btn:hover { background: var(--green); color: #04210f; }
.carousel-btn:disabled { opacity: .35; cursor: default; }
.carousel-btn:disabled:hover { background: #fff; color: var(--ink); }
.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }

/* dots */
.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 0; background: #cdd6d0; cursor: pointer; padding: 0;
  transition: width .2s, background .2s;
}
.carousel-dots button.active { width: 26px; border-radius: 6px; background: var(--green); }

/* ---------- How it works ---------- */
.how { background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
}
.step-num {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  background: var(--green); color: #04210f;
  border-radius: 14px; font-weight: 800; font-size: 1.2rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-green);
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--gray); }

/* ---------- Earnings ---------- */
.earnings { background: var(--bg-soft); }
.earn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.earn-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.earn-card.highlight {
  background: linear-gradient(165deg, #0c2017, #0a3a23);
  color: #fff;
  border: 0;
}
.earn-ico {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: var(--green-soft); color: var(--green-dark);
  margin-bottom: 16px;
}
.earn-ico svg { width: 28px; height: 28px; }
.earn-card.highlight .earn-ico { background: rgba(255, 255, 255, .1); color: var(--green); }
.earn-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.earn-card p { color: var(--gray); }
.earn-card.highlight p { color: #c5d3cb; }
.big-range {
  margin-top: 18px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--green);
  line-height: 1.1;
}
.big-range span { color: #c5d3cb; font-size: 1.1rem; font-weight: 500; margin: 0 6px; }
.big-range small { display: block; color: #aebbb3; font-size: .95rem; font-weight: 500; margin-top: 4px; }

/* ---------- Simulator ---------- */
.simulator { background: #fff; }
.sim-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 50px;
  box-shadow: var(--shadow-sm);
}
.sim-card .section-head { margin-bottom: 36px; }
.sim-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.field { display: block; margin-bottom: 26px; }
.field > span { display: block; font-weight: 600; margin-bottom: 10px; }
.field > span b { color: var(--green-dark); }
.field input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: var(--font); font-size: 1rem;
  background: #fff;
  transition: border-color .15s;
}
.field input[type="text"]:focus { outline: 0; border-color: var(--green); }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; border-radius: 100px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) var(--fill, 12%), var(--line) var(--fill, 12%));
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 4px solid var(--green);
  box-shadow: var(--shadow-sm); cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 4px solid var(--green); cursor: pointer;
}
.range-scale {
  display: flex; justify-content: space-between;
  color: var(--gray); font-size: .8rem; margin-top: 8px;
}
.rate-note { color: var(--gray); font-size: .92rem; }
.rate-note b { color: var(--ink); }

.sim-result {
  background: linear-gradient(165deg, #0c2017, #0a3a23);
  color: #fff;
  border-radius: 22px;
  padding: 34px;
  text-align: center;
}
.result-label { color: #aebbb3; font-size: .9rem; }
.result-value {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800; color: var(--green);
  margin: 6px 0 2px;
}
.result-sub { color: #c5d3cb; font-size: .92rem; }
.result-month {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, .07);
  border-radius: 14px; padding: 14px 16px; margin: 22px 0;
}
.result-month span { color: #c5d3cb; font-size: .9rem; }
.result-month strong { font-size: 1.2rem; }

/* ---------- Final CTA ---------- */
.cta {
  background:
    radial-gradient(800px 400px at 50% 120%, rgba(0, 217, 95, .25), transparent 60%),
    linear-gradient(165deg, #07120c, #0a3a23);
  color: #fff;
  text-align: center;
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; }
.cta p { color: #c5d3cb; font-size: 1.1rem; margin-bottom: 30px; }
.cta-form {
  display: flex; gap: 12px;
  max-width: 540px; margin: 0 auto 18px;
}
.cta-form input {
  flex: 1;
  padding: 15px 18px;
  border: 0; border-radius: 100px;
  font-family: var(--font); font-size: 1rem;
}
.cta-form input:focus { outline: 2px solid var(--green); }
.cta-fine { color: #aebbb3; font-size: .9rem; }
.cta-fine span { color: var(--green); margin: 0 6px; }

/* ---------- Footer ---------- */
.footer { background: #07120c; color: #c5d3cb; padding: 70px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer-brand p { margin: 14px 0 18px; max-width: 280px; }
.socials { display: flex; gap: 10px; }
.social {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  transition: background .15s, color .15s;
}
.social svg { width: 20px; height: 20px; }
.social:hover { background: var(--green); color: #04210f; }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer-col a { display: block; color: #c5d3cb; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px; color: #8a978f; font-size: .88rem; flex-wrap: wrap; gap: 8px;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid, .value-grid, .sim-grid, .earn-grid { grid-template-columns: 1fr; }
  .value-visual { order: 2; }
  .hero-visual { margin-top: 20px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .creator { flex: 0 0 calc((100% - 18px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  section { padding: 64px 0; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.show {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 18px 24px;
    gap: 6px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-links.show a { padding: 10px 0; }
  .sim-card { padding: 30px 22px; }
  .cta-form { flex-direction: column; }
  .cta-form input { text-align: center; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .creator { flex: 0 0 100%; }
  .carousel-btn.prev { left: -4px; }
  .carousel-btn.next { right: -4px; }
  .footer-grid { grid-template-columns: 1fr; }
}
