/* ===================== TOKENS ===================== */
:root {
  --bg: #0c0f14;
  --bg-2: #11151c;
  --bg-3: #161b24;
  --surface: #1a2029;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);
  --text: #ffffff;
  --text-2: rgba(255,255,255,0.72);
  --text-3: rgba(255,255,255,0.5);
  --accent: #0BD663;
  --accent-2: #07a84d;
  --gold: #FFD903;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: 'Albert Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.green { color: var(--accent); }
.white { color: var(--text); }

/* ===================== BOTÕES ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #07140b;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  border: 1px solid var(--accent);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
  align-self: flex-start;
}
.btn-primary:hover {
  background: #18e870;
  border-color: #18e870;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(11,214,99,0.25);
}
.btn-primary svg { transition: transform 0.2s ease; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  border: 1px solid var(--line-strong);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px 6vw 40px;
  overflow: hidden;
  background: #06080b;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,8,11,0.5) 0%, rgba(6,8,11,0.7) 50%, rgba(6,8,11,0.92) 100%),
    url('../images/CAPA-PARTE-1.webp') no-repeat center center / cover;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 35%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 35%, transparent 90%);
  z-index: 1;
  opacity: 0.6;
}

.hero-nav {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 80px;
}

.hero-logo { width: 130px; height: auto; }

.nav-link {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--accent); }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
  justify-content: center;
  padding: 40px 0;
}

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--text-2);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  align-self: flex-start;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(11,214,99,0.55); }
  100% { box-shadow: 0 0 0 10px rgba(11,214,99,0); }
}

.hero-title {
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-num {
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  font-feature-settings: 'tnum' 1;
  font-variant-numeric: tabular-nums;
}

.hero-rest {
  font-weight: 400;
  color: var(--text-2);
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.01em;
}

.hero-em {
  font-weight: 700;
  color: var(--text);
  font-size: clamp(28px, 4.5vw, 52px);
  letter-spacing: -0.02em;
}

.hero-amp {
  color: var(--accent);
  font-weight: 400;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-foot {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.hero-stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  font-feature-settings: 'tnum' 1;
  font-variant-numeric: tabular-nums;
}

.stat-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ===================== TICKER ===================== */
.ticker-section {
  position: relative;
  background: var(--bg);
  padding: 36px 0;
  overflow: hidden;
}

.ticker {
  height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: 110%;
  margin-left: -5%;
  transform: rotate(-1.5deg);
}

.ticker-light {
  background: #fafafa;
  color: #1a1a1a;
  margin-bottom: -1px;
}

.ticker-accent {
  background: var(--accent);
  color: #07140b;
}

.ticker-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  display: flex;
  align-items: center;
}

.ticker-content,
.ticker-content-reverse {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
  gap: 24px;
  padding-right: 24px;
}

.ticker-content { animation: marquee 35s linear infinite; }
.ticker-content-reverse { animation: marquee-reverse 35s linear infinite; }

.ticker-sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.4;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ===================== PLANOS ===================== */
.plans {
  position: relative;
  padding: 120px 24px;
  background: var(--bg);
  overflow: hidden;
}

.plans-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 95%);
  pointer-events: none;
}

.plans-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.plans-header {
  max-width: 720px;
  margin-bottom: 56px;
}

.plans-title {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 18px;
}

.plans-sub {
  font-size: 17px;
  color: var(--text-2);
  margin-top: 18px;
  max-width: 560px;
  line-height: 1.55;
}

.plans-includes {
  margin-bottom: 48px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.includes-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  padding-right: 28px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}

.plans-includes ul {
  list-style: none;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  flex: 1;
}

.plans-includes li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.plans-includes svg { color: var(--accent); flex-shrink: 0; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.plan {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.plan:hover {
  border-color: var(--line-strong);
  background: var(--bg-3);
}

/* destaque: linha verde sutil no topo + selo discreto + bg um tom acima */
.plan-featured {
  background: var(--bg-3);
  border-color: rgba(11,214,99,0.25);
  box-shadow: inset 0 1px 0 0 var(--accent);
}

.plan-featured:hover {
  border-color: rgba(11,214,99,0.45);
}

.plan-stamp {
  position: absolute;
  top: -10px;
  left: 28px;
  background: var(--accent);
  color: #07140b;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
}

.plan-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.plan-tag {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.plan-flag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.plan-flag-save {
  color: var(--accent);
  border-color: rgba(11,214,99,0.3);
  background: rgba(11,214,99,0.06);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 6px 0 4px;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
  font-variant-numeric: tabular-nums;
}

.plan-currency {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.5px;
}

.plan-amount {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.plan-frac {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: -0.02em;
}

.plan-unit {
  font-size: 14px;
  color: var(--text-3);
  margin-left: 4px;
}

.plan-note {
  font-size: 13px;
  color: var(--text-3);
  font-family: var(--mono);
  letter-spacing: 0.3px;
}

.plan-note strong {
  color: var(--text);
  font-weight: 500;
}

.plan-pitch {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  flex: 1;
}

.plan-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 18px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.plan-action:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.3);
}

.plan-action svg { transition: transform 0.2s ease; }
.plan-action:hover svg { transform: translateX(3px); }

.plan-action-featured {
  background: var(--accent);
  color: #07140b;
  border-color: var(--accent);
}

.plan-action-featured:hover {
  background: #18e870;
  border-color: #18e870;
}

.plans-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 56px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.8px;
  color: var(--text-3);
  text-transform: uppercase;
  flex-wrap: wrap;
}

.plans-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.plans-trust svg { opacity: 0.7; }

.trust-divider {
  width: 4px;
  height: 4px;
  background: var(--text-3);
  border-radius: 50%;
  opacity: 0.4;
}

/* ===================== TRANSFORM ===================== */
.transform {
  position: relative;
  padding: 120px 24px;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(12,15,20,0.92) 100%),
    url('../images/CAPA-PARTE-2-1.webp') no-repeat center center / cover;
}

.transform-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.transform-title {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 18px 0 24px;
}

.transform-desc {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.55;
}

.market-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.market-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.market-item:last-child { border-bottom: 1px solid var(--line); }

.market-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 1px;
  padding-top: 4px;
}

.market-item strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.market-item p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.55;
}

.transform-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transform-img {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-2);
}

.transform-img img { width: 100%; height: auto; display: block; }

.transform-caption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
}

.caption-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2.5s ease-out infinite;
}

/* ===================== FAQ ===================== */
.faq {
  background: var(--bg);
  padding: 120px 24px;
}

.faq-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: left;
}

.faq-header h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 18px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item { border-bottom: 1px solid var(--line); }

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  gap: 16px;
  align-items: center;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: opacity 0.2s ease;
}

.faq-question:hover { opacity: 0.85; }

.faq-q-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 1px;
}

.faq-chev {
  color: var(--text-2);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.is-open .faq-chev {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(.2,.7,.3,1);
}

.faq-answer > p {
  overflow: hidden;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  padding: 0 4px 4px 60px;
  max-width: 640px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 28px;
}

/* ===================== CTA FINAL ===================== */
.cta-final {
  position: relative;
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, #07140b 100%);
  text-align: center;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(11,214,99,0.18), transparent 70%);
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-final h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.cta-final p {
  color: var(--text-2);
  font-size: 16px;
  margin-bottom: 12px;
}

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

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg);
  padding: 60px 24px 24px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 360px; }

.footer-logo {
  width: 180px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.55;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--accent); }

.footer-bar {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.8px;
  color: var(--text-3);
  text-transform: uppercase;
}

.footer-bar a { color: var(--text-2); transition: color 0.2s ease; }
.footer-bar a:hover { color: var(--accent); }

/* ===================== RESPONSIVO ===================== */

/* ----- TABLET LANDSCAPE (≤ 1180px) ----- */
@media (max-width: 1180px) {
  .hero, .plans, .transform, .faq, .cta-final { padding-left: 5vw; padding-right: 5vw; }
  .plans, .transform, .faq { padding-top: 96px; padding-bottom: 96px; }
  .plans-grid { gap: 14px; }
  .plan { padding: 28px 24px; gap: 20px; }
  .plan-amount { font-size: 48px; }
  .plan-frac { font-size: 24px; }
  .transform-inner { gap: 56px; }
  .hero-foot { gap: 40px; }
}

/* ----- TABLET PORTRAIT (≤ 980px) ----- */
@media (max-width: 980px) {
  .hero-content { max-width: 100%; gap: 24px; }
  .hero-title { font-size: clamp(36px, 7vw, 56px); }
  .hero-num { font-size: clamp(60px, 12vw, 90px); }
  .hero-em { font-size: clamp(28px, 5vw, 42px); }
  .hero-rest { font-size: clamp(18px, 2.6vw, 22px); }

  .plans-grid { grid-template-columns: 1fr; gap: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }
  .plan { padding: 30px 28px; }
  .plan-featured { box-shadow: inset 0 1px 0 0 var(--accent); }
  .plan-stamp { top: -10px; left: 28px; right: auto; }

  .transform-inner { grid-template-columns: 1fr; gap: 48px; }
  .transform-media { max-width: 600px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 480px; }
}

/* ----- MOBILE (≤ 720px) ----- */
@media (max-width: 720px) {
  body { font-size: 15.5px; }

  .hero { padding: 18px 5vw 32px; min-height: 100svh; }
  .hero-nav { padding-bottom: 48px; }
  .hero-logo { width: 110px; height: auto; }
  .hero-content { gap: 22px; padding: 24px 0; }
  .hero-live { font-size: 10px; padding: 5px 11px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { gap: 10px; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { flex: 1 1 auto; justify-content: center; padding: 13px 16px; }

  .hero-foot { gap: 20px; padding-top: 24px; margin-top: 28px; }
  .stat-num { font-size: 22px; }
  .stat-lbl { font-size: 10px; }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(6,8,11,0.25) 0%, rgba(6,8,11,0.5) 55%, rgba(6,8,11,0.95) 100%),
      url('../images/CAPA-PARTE-1-CELULAR.webp') no-repeat center top / cover;
  }
  .hero-grid { background-size: 40px 40px; opacity: 0.5; }

  .ticker-section { padding: 28px 0; }
  .ticker { height: 40px; }
  .ticker-content, .ticker-content-reverse { font-size: 12px; letter-spacing: 1.8px; gap: 18px; padding-right: 18px; }

  .plans { padding: 72px 20px; }
  .plans-header { margin-bottom: 36px; }
  .plans-title { font-size: clamp(28px, 7vw, 38px); }
  .plans-sub { font-size: 15px; }

  .plans-includes { padding: 18px 20px; gap: 14px; flex-direction: column; align-items: flex-start; margin-bottom: 32px; }
  .includes-label { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 12px; width: 100%; }
  .plans-includes ul { gap: 10px 24px; }
  .plans-includes li { font-size: 13.5px; }

  .plan { padding: 26px 22px; gap: 18px; }
  .plan-tag { font-size: 18px; }
  .plan-amount { font-size: 44px; }
  .plan-frac { font-size: 22px; }
  .plan-pitch { font-size: 13.5px; padding-top: 16px; }
  .plan-action { padding: 13px 16px; font-size: 13.5px; }

  .plans-trust { gap: 12px; margin-top: 36px; font-size: 10.5px; }
  .trust-divider { display: none; }

  .transform { padding: 72px 20px; }
  .transform-title { font-size: clamp(28px, 7vw, 40px); }
  .transform-desc { font-size: 15px; }
  .market-item { grid-template-columns: 44px 1fr; padding: 18px 0; }
  .market-num { font-size: 11px; }
  .market-item strong { font-size: 16px; }
  .market-item p { font-size: 13.5px; }

  .faq { padding: 72px 20px; }
  .faq-header { margin-bottom: 36px; }
  .faq-header h2 { font-size: clamp(28px, 7vw, 38px); }
  .faq-question { grid-template-columns: 36px 1fr 20px; gap: 12px; font-size: 15px; padding: 20px 4px; }
  .faq-q-num { font-size: 11px; }
  .faq-answer > p { padding: 0 4px 4px 48px; font-size: 14.5px; line-height: 1.6; }
  .faq-item.is-open .faq-answer > p { padding-bottom: 22px; }

  .cta-final { padding: 72px 20px; }
  .cta-final h2 { font-size: clamp(26px, 6.5vw, 34px); }
  .cta-final p { font-size: 15px; }

  .footer { padding: 48px 20px 20px; }
  .footer-inner { padding-bottom: 36px; gap: 32px; }
  .footer-logo { width: 140px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 100%; }
  .footer-bar { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 10px; padding-top: 20px; }
}

/* ----- MOBILE PEQUENO (≤ 420px) ----- */
@media (max-width: 420px) {
  .hero-num { font-size: clamp(48px, 14vw, 70px); }
  .hero-em { font-size: clamp(22px, 6vw, 30px); }
  .hero-rest { font-size: 15px; }
  .hero-foot { gap: 14px; }
  .hero-stat { flex: 1 1 40%; }

  .plan-amount { font-size: 40px; }
  .plan-frac { font-size: 20px; }
  .plan-meta { flex-wrap: wrap; gap: 8px; }

  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand p { font-size: 13px; }
}

/* ----- DESKTOP LARGO (≥ 1440px) ----- */
@media (min-width: 1440px) {
  .plans-inner, .transform-inner, .footer-inner { max-width: 1280px; }
  .hero-content { max-width: 960px; }
}

/* ----- REDUÇÃO DE MOVIMENTO ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
