/* ===== Tokens ===== */
:root {
  --gold: #ffb400;
  --gold-dark: #e89b00;
  --gold-soft: #fff8e8;
  --ink: #1d2733;
  --ink-soft: #2e3a47;
  --muted: #5a6b7b;
  --line: #e6ebf0;
  --bg: #ffffff;
  --soft: #f7f9fb;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(29, 39, 51, 0.08);
  --shadow-lg: 0 24px 60px rgba(29, 39, 51, 0.14);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { line-height: 1.2; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 8px 20px rgba(255, 180, 0, 0.35); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--gold); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 18px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 20px; }
.brand-logo { display: block; }
.brand-lockup { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { letter-spacing: -0.03em; }
.brand-sub { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.01em; text-transform: uppercase; }
.nav { display: flex; gap: 26px; margin-left: auto; font-weight: 500; color: var(--muted); }
.nav a:hover { color: var(--ink); }
.header-inner .btn { margin-left: 8px; }

/* ===== Hero ===== */
.hero { padding: 72px 0 56px; background:
  radial-gradient(900px 420px at 80% -10%, var(--gold-soft), transparent 70%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.pill {
  display: inline-block; background: var(--gold-soft); color: var(--gold-dark);
  font-weight: 600; font-size: 14px; padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; }
.hl { color: var(--gold-dark); }
.lead { font-size: 19px; color: var(--muted); margin-top: 20px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-checks { display: flex; gap: 22px; list-style: none; padding: 0; margin: 26px 0 0; color: var(--muted); font-size: 15px; flex-wrap: wrap; }

/* ===== Hero visual / widget mock ===== */
.hero-visual { display: flex; justify-content: center; }
.widget-card {
  width: 100%; max-width: 420px; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; box-shadow: var(--shadow-lg); padding: 22px;
  transform: rotate(-1deg);
}
.widget-head { border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 16px; }
.widget-score { display: flex; flex-direction: column; gap: 6px; }
.widget-score strong { font-size: 40px; line-height: 1; }
.muted { color: var(--muted); font-size: 14px; }
.review { padding: 14px 0; border-bottom: 1px solid var(--line); }
.review:last-child { border-bottom: 0; padding-bottom: 0; }
.review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-top > div:nth-child(2) { display: flex; flex-direction: column; line-height: 1.25; }
.review-top .stars { margin-left: auto; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--gold);
  color: #fff; display: grid; place-items: center; font-weight: 700; flex-shrink: 0;
}
.avatar-2 { background: #6d597a; }
.verified { color: #2a9d8f; font-size: 12px; font-weight: 600; }
.review p { font-size: 15px; color: var(--ink-soft); }
.review-photo {
  margin-top: 10px; height: 64px; width: 64px; border-radius: 10px;
  background: linear-gradient(135deg, #ffe6a8, #ffd166);
}

/* ===== Estrelas ===== */
.stars { --size: 16px; display: inline-flex; gap: 2px; }
.stars.stars-lg { --size: 22px; }
.stars span { width: var(--size); height: var(--size); display: inline-block;
  background: var(--gold);
  -webkit-mask: var(--star-mask) center / contain no-repeat;
  mask: var(--star-mask) center / contain no-repeat; }
.stars span.off { background: #dfe5ea; }

/* ===== Trustbar ===== */
.trustbar { border-block: 1px solid var(--line); background: var(--soft); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 28px 24px; text-align: center; }
.trust-grid strong { display: block; font-size: 26px; color: var(--gold-dark); }
.trust-grid span { color: var(--muted); font-size: 14px; }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-soft { background: var(--soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.eyebrow { color: var(--gold-dark); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; margin: 12px 0; }
.section-head p { color: var(--muted); font-size: 18px; }

/* ===== Features ===== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #f0d48a; }
.ficon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft);
  display: grid; place-items: center; font-size: 22px; margin-bottom: 14px;
}
.feature h3 { font-size: 17px; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--ink);
  display: grid; place-items: center; font-weight: 800; font-size: 18px; margin-bottom: 16px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ===== Plans ===== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 30px 26px; display: flex; flex-direction: column;
}
.plan-featured { border: 2px solid var(--gold); box-shadow: var(--shadow); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-weight: 700; font-size: 13px;
  padding: 5px 14px; border-radius: 999px;
}
.plan h3 { font-size: 20px; }
.price { font-size: 44px; font-weight: 800; margin: 12px 0 4px; letter-spacing: -0.03em; }
.price .cur { font-size: 22px; vertical-align: super; margin-right: 2px; }
.price .cents { font-size: 22px; }
.price .per { font-size: 16px; font-weight: 500; color: var(--muted); }
.plan-sub { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; color: var(--ink-soft); font-size: 15px; }
.plan ul li { color: var(--ink-soft); }
.plan .btn { margin-top: auto; width: 100%; }
.plans-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 22px; }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px;
}
.faq summary {
  cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--gold-dark); font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: '−'; }
.faq details p { color: var(--muted); padding: 0 0 18px; }

/* ===== CTA final ===== */
.cta-final { padding: 80px 0; background: linear-gradient(135deg, #1d2733, #2e3a47); color: #fff; }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-final h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; }
.cta-final p { color: #c7d0d9; font-size: 18px; margin: 14px 0 28px; }

/* ===== Footer ===== */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-tag { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 260px; }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--ink-soft); padding: 5px 0; font-size: 15px; }
.footer-col a:hover { color: var(--gold-dark); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px;
  color: var(--muted); font-size: 14px;
}

/* ===== Responsivo ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
  .steps, .plans { grid-template-columns: 1fr; }
  .plan-featured { order: -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 460px) {
  .features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
