:root {
  --primary: #0026ff;
  --accent: #e53935;
  --dark: #2b3038;
  --gray: #6b7280;
  --light: #f5f6f8;
  --secondary: #eef1ff;
  --border: #e5e7eb;
  --shadow: 0 8px 30px -8px rgba(0,38,255,.15);
  --shadow-lg: 0 12px 40px -10px rgba(0,38,255,.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--dark);
  background: #fff;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; border: 0; }

.site-header {
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.logo, .footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-family: Sora, sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -1px;
}

.logo-bars {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo-bars span {
  width: 20px;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
  display: block;
}

.header-icons {
  display: flex;
  gap: 10px;
}

.header-icons button {
  width: 34px;
  height: 34px;
  background: transparent;
  color: white;
  display: grid;
  place-items: center;
}

.header-icons svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 80px 20px 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
}

.hero h1 {
  font-family: Sora, sans-serif;
  font-size: clamp(32px, 7vw, 48px);
  line-height: 1.05;
  margin: 0 auto 14px;
  max-width: 720px;
}

.hero p {
  margin: 0 auto 24px;
  font-size: 17px;
  max-width: 520px;
  opacity: .94;
}

.hero-img {
  width: 100%;
  max-width: 380px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 20px;
  padding: 16px 22px;
  font-weight: 800;
  transition: transform .18s ease, opacity .18s ease;
}

.btn:hover { transform: scale(1.02); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: var(--primary);
  color: white;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.section {
  padding: 44px 18px;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: -4px;
}

.card {
  background: white;
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229,231,235,.7);
}

.benefit {
  text-align: center;
}

.icon-circle {
  width: 52px;
  height: 52px;
  background: var(--secondary);
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--primary);
}

.icon-circle svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.card h2, .card h3, .pre h2, .page-title {
  font-family: Sora, sans-serif;
}

.pre-wrap {
  background: rgba(238,241,255,.55);
}

.pre {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.pre img {
  width: 190px;
  max-width: 70%;
}

.pre h2 {
  color: var(--primary);
  font-size: 34px;
  margin: 0 0 10px;
}

.pre p {
  color: var(--gray);
  margin: 0 0 18px;
  font-size: 17px;
}

.site-footer {
  background: var(--primary);
  color: white;
  padding: 36px 18px 22px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.footer-grid p {
  opacity: .86;
  line-height: 1.5;
}

.footer-grid h3 {
  font-family: Sora, sans-serif;
  margin: 0 0 12px;
}

.footer-grid a {
  display: block;
  opacity: .9;
  margin: 8px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.2);
  max-width: 1080px;
  margin: 28px auto 0;
  padding-top: 18px;
  font-size: 13px;
  opacity: .86;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 34px 18px 52px;
}

.page-title {
  text-align: center;
  font-size: 32px;
  margin: 0 0 12px;
}

.muted {
  color: var(--gray);
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin: 18px 0 26px;
  color: var(--gray);
  font-weight: 700;
}

.steps .active {
  color: var(--primary);
}

.form-card {
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: white;
}

.input {
  width: 100%;
  background: var(--light);
  border: 0;
  border-radius: 20px;
  padding: 17px 18px;
  font-size: 19px;
  outline: none;
  margin: 12px 0 10px;
}

.input:focus {
  box-shadow: 0 0 0 3px rgba(0,38,255,.2);
}

.error {
  color: #dc2626;
  font-size: 14px;
  min-height: 22px;
}

.back {
  color: var(--primary);
  background: transparent;
  font-weight: 800;
  margin-bottom: 12px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.plan {
  border: 2px solid var(--border);
  border-radius: 22px;
  background: white;
  padding: 14px 8px;
  text-align: center;
  color: var(--dark);
  position: relative;
}

.plan strong {
  display: block;
  color: var(--primary);
  font-family: Sora, sans-serif;
  font-size: 23px;
}

.plan span {
  color: var(--gray);
  font-size: 13px;
}

.plan.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.plan.selected strong, .plan.selected span {
  color: white;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  padding: 0;
}

.modal {
  background: white;
  border-radius: 30px 30px 0 0;
  width: 100%;
  max-width: 520px;
  padding: 22px;
  animation: slide .2s ease;
  max-height: 92vh;
  overflow: auto;
}

@keyframes slide {
  from { transform: translateY(30px); opacity: .7; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-head h2 {
  margin: 0;
  font-family: Sora, sans-serif;
}

.close {
  background: var(--light);
  width: 38px;
  height: 38px;
  border-radius: 14px;
  font-size: 22px;
}

.price {
  font-family: Sora, sans-serif;
  color: var(--primary);
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin: 14px 0;
}

.qr {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  border: 2px solid var(--border);
  display: block;
  margin: 0 auto 18px;
}

.instructions {
  color: var(--gray);
  line-height: 1.8;
  padding-left: 22px;
}

.pix-code {
  border: 2px dashed rgba(0,38,255,.28);
  border-radius: 20px;
  padding: 14px;
  font-family: monospace;
  font-size: 12px;
  word-break: break-all;
  background: rgba(238,241,255,.45);
  margin: 14px 0;
}

.expire {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
}

.legal h2 {
  font-family: Sora, sans-serif;
  margin-top: 28px;
}

.legal p, .legal li {
  color: var(--gray);
  line-height: 1.7;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: #111827;
  color: white;
  padding: 13px 16px;
  border-radius: 14px;
  z-index: 200;
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
}

.hidden { display: none !important; }

.loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.45);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (min-width: 760px) {
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .pre { flex-direction: row; justify-content: center; text-align: left; }
  .pre img { width: 260px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .plans { grid-template-columns: repeat(4, 1fr); }
  .modal-overlay { align-items: center; padding: 20px; }
  .modal { border-radius: 30px; }
}

/* ── Hero novo ── */
.hero-eyebrow {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  margin: 0 auto 28px;
  max-width: 520px;
  line-height: 1.2;
}

/* ── Bonus Section ── */
.bonus-section {
  padding: 40px 20px;
}
.bonus-section h2 {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 700;
  margin: 8px 0 24px;
}
.bonus-card {
  background: white;
  border-radius: 12px;
  padding: 28px 20px;
  margin-bottom: 20px;
  text-align: center;
}
.bonus-card h3 { font-weight: 700; margin: 12px 0 8px; }
.bonus-card p { color: #555; margin-bottom: 20px; }
.bonus-card.secondary { background: #f5f5f5; }
.bonus-icon { margin-bottom: 12px; color: var(--primary); }
.link-underline { color: var(--primary); text-decoration: underline; font-weight: 600; }

/* ── Dark Section ── */
.dark-section {
  background: #0a1628;
  color: white;
  padding: 48px 20px;
}
.dark-section h2 { font-size: clamp(22px, 5vw, 30px); font-weight: 700; margin: 8px 0 28px; }
.dark-section p { color: #aab; }
.dark-section .link-underline { color: #7eb3ff; }
.beta-card {
  background: #162035;
  border-radius: 12px;
  padding: 24px 20px;
  margin-bottom: 16px;
}
.beta-card h3 { font-weight: 700; margin: 8px 0 8px; font-size: 16px; }
.beta-icon { font-size: 24px; margin-bottom: 8px; }
.app-download { margin-top: 32px; text-align: center; }
.app-download p { color: white; font-weight: 700; font-size: 18px; margin-bottom: 16px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: white;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 12px 20px;
  margin: 10px auto;
  max-width: 220px;
  font-weight: 600;
  justify-content: center;
}

/* ── Blue FAQ Section ── */
.blue-section {
  background: var(--primary);
  color: white;
  padding: 48px 20px;
}
.blue-section h2 { font-size: clamp(26px, 6vw, 36px); font-weight: 800; margin: 8px 0 24px; }
.section-eyebrow { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; opacity: .8; margin-bottom: 6px; }
.section-eyebrow.light { color: rgba(255,255,255,.7); }
.section-label { font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 30px;
  padding: 12px 20px;
  gap: 10px;
}
.search-box svg { color: #888; flex-shrink: 0; }
.search-input { border: none; outline: none; width: 100%; font-size: 15px; color: #333; background: transparent; }
.faq { border-top: 1px solid rgba(255,255,255,.2); margin-top: 8px; }
.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  font-size: 15px;
  cursor: pointer;
}
.faq-item svg { stroke: white; flex-shrink: 0; }
.faq-more { background: white; border-radius: 12px; padding: 20px; margin-top: 32px; }
.faq-more h3 { font-weight: 700; margin-bottom: 12px; color: #111; }
.faq-item.white { border-bottom: 1px solid #eee; color: #111; }
.faq-item.white svg { stroke: #111; }

/* ══════════════════════════════
   TIM PRE BONUS – Layout exato
══════════════════════════════ */

/* Hero */
.hero h1 {
  font-size: clamp(24px, 6vw, 38px);
  font-weight: 700;
  max-width: 340px;
  margin: 0 auto 28px;
  line-height: 1.15;
}

/* Sections */
.tim-section {
  padding: 40px 20px;
  background: #fff;
}
.tim-section.dark {
  background: #0d1b2e;
  color: white;
}
.tim-section.blue {
  background: var(--primary);
  color: white;
}

.tim-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #888;
  margin-bottom: 6px;
}
.tim-eyebrow.white { color: rgba(255,255,255,.75); }

.tim-h2 {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 800;
  color: #111;
  margin: 0 0 24px;
  line-height: 1.2;
}
.tim-h2.white { color: white; }

/* Cards */
.tim-card {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 24px 20px;
  margin-bottom: 16px;
}
.tim-card.dark {
  background: #162035;
  color: white;
}
.tim-card strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}
.tim-card.dark strong { color: white; }
.tim-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.5;
}
.tim-card.dark p { color: #aab4c8; }
.tim-card-icon {
  width: 44px;
  height: 44px;
  background: #f0e9ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.tim-card-icon.red { background: #2a1a1e; }

.tim-link-btn {
  display: inline-block;
  color: #e4002b;
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}
.tim-underline {
  color: #e4002b;
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}
.tim-section.dark .tim-underline { color: #7eb3ff; }

/* App download */
.tim-app-download {
  margin-top: 32px;
  text-align: center;
}
.tim-app-download p {
  color: white;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 16px;
}
.tim-store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #111;
  color: white;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 12px 20px;
  margin: 10px auto;
  max-width: 230px;
  text-decoration: none;
}

/* FAQ */
.tim-label {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  color: #111;
}
.tim-label.white { color: white; }

.tim-search {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 30px;
  padding: 12px 18px;
  gap: 10px;
}
.tim-search-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  color: #333;
  background: transparent;
}

.tim-faq {
  border-top: 1px solid rgba(255,255,255,.25);
}
.tim-faq-item { border-bottom: 1px solid rgba(255,255,255,.25); }
.tim-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  font-size: 15px;
  color: white;
  gap: 12px;
}
.tim-faq-arrow { transition: transform .2s; flex-shrink: 0; }
.tim-faq-a {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  padding-bottom: 16px;
  line-height: 1.6;
}
.tim-faq-a.hidden { display: none; }

.tim-faq-more {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-top: 28px;
}
.tim-faq-more h3 {
  font-weight: 700;
  font-size: 16px;
  color: #111;
  margin-bottom: 12px;
}
.tim-faq-more-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid #eee;
  font-size: 15px;
  color: #111;
  cursor: pointer;
}

.tim-bonus-img {
  width: 200px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto 16px;
}
