/* =========================================================
   Afiliera Landing — design system portado do afiliera-web
   Identidade: laranja #ff6b35, accent verde, fundo #f5f5f7,
   radius iOS, sombras suaves, Inter + Poppins.
   ========================================================= */

:root {
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-poppins: 'Poppins', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --color-bg: #f5f5f7;
  --color-fg: #1d1d1f;
  --color-card: #ffffff;
  --color-card-fg: #1d1d1f;

  --color-sidebar: #1c1c1e;
  --color-sidebar-fg: #f5f5f7;
  --color-sidebar-border: #2c2c2e;

  --color-primary: #ff6b35;
  --color-primary-fg: #ffffff;
  --color-primary-soft: #fff1e8;

  --color-secondary: #f2f2f7;
  --color-secondary-fg: #1d1d1f;

  --color-muted: #e5e5ea;
  --color-muted-fg: #8e8e93;

  --color-accent: #30d158;
  --color-accent-fg: #ffffff;
  --color-accent-soft: #e8fff0;

  --color-blue: #0a84ff;
  --color-blue-soft: #e8f1ff;
  --color-purple: #bf5af2;
  --color-purple-soft: #f3e8ff;
  --color-red: #ff453a;

  --color-border: rgba(0, 0, 0, 0.08);
  --color-ring: #0a84ff;

  --radius-sm: 0.625rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  --shadow-ios: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-ios-lg: 0 8px 30px rgba(0, 0, 0, 0.10);
  --shadow-ios-xl: 0 20px 60px rgba(0, 0, 0, 0.12);

  --container: 1120px;
}

/* ============== Reset / base ============== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

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

/* ============== Botões ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .15s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease;
  border: 1px solid transparent;
}
.btn:active { transform: scale(0.98); }
.btn-lg { height: 52px; padding: 0 26px; font-size: 15.5px; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-primary-fg);
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.32);
}
.btn-primary:hover { background: #f25c25; }

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-secondary-fg);
}
.btn-secondary:hover { background: #e6e6ec; }
.btn[aria-disabled="true"] {
  background: #f0f0f3;
  color: var(--color-muted-fg);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

.btn-ghost {
  background: transparent;
  color: var(--color-fg);
}
.btn-ghost:hover { background: rgba(0,0,0,0.05); }

/* ============== Header ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 245, 247, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}
.site-header.scrolled {
  border-color: var(--color-border);
  background: rgba(245, 245, 247, 0.92);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  color: var(--color-fg);
}
.brand-logo {
  display: block;
  width: 40px;
  height: 40px;
}
.brand-name { font-weight: inherit; }

.nav-links {
  display: flex;
  gap: 4px;
  margin: 0 auto;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-fg);
  border-radius: var(--radius-sm);
  transition: background-color .15s ease, color .15s ease;
}
.nav-links a:hover { background: rgba(0,0,0,0.05); }

.nav-cta { display: flex; gap: 8px; align-items: center; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-fg);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--color-border);
}
.nav-mobile a {
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-md);
}
.nav-mobile a:hover { background: rgba(0,0,0,0.05); }
.nav-mobile .btn { margin-top: 8px; height: 48px; }

/* ============== Eyebrow ============== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.eyebrow-center { display: inline-flex; }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 9999px;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.15);
}

/* ============== Hero ============== */
.hero {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.16), transparent 65%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: 50px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(48,209,88,0.10), transparent 65%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-title {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.grad {
  background: linear-gradient(120deg, #ff6b35 10%, #ff9a5a 50%, #ff6b35 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  color: var(--color-muted-fg);
  max-width: 540px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-bullets {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: 14px;
  color: var(--color-muted-fg);
}
.hero-bullets li { display: inline-flex; align-items: center; gap: 8px; }
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 9999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  position: relative;
  flex-shrink: 0;
}
.check::after {
  content: "";
  width: 8px; height: 4px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg) translate(1px, -1px);
}
.x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 9999px;
  background: var(--color-muted);
  color: var(--color-muted-fg);
  position: relative;
  flex-shrink: 0;
}
.x::before, .x::after {
  content: ""; position: absolute; width: 9px; height: 2px;
  background: var(--color-muted-fg);
}
.x::before { transform: rotate(45deg); }
.x::after { transform: rotate(-45deg); }

/* Hero visual mockup */
.hero-visual {
  position: relative;
  height: 460px;
}
.float-card {
  position: absolute;
  background: var(--color-card);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-ios-xl);
  border: 1px solid var(--color-border);
}
.card-app {
  inset: 0;
  padding: 20px;
  display: flex; flex-direction: column;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}
.app-head {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}
.app-head .dot {
  width: 10px; height: 10px; border-radius: 9999px;
  background: var(--color-muted);
}
.app-head .d1 { background: #ff5f57; }
.app-head .d2 { background: #ffbd2e; }
.app-head .d3 { background: #28ca42; }
.app-title {
  margin-left: 10px;
  font-size: 13px; font-weight: 600; color: var(--color-muted-fg);
}
.app-list { display: flex; flex-direction: column; gap: 10px; }
.app-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  transition: transform .2s ease, background-color .2s ease;
}
.app-item:hover { transform: translateX(2px); background: #ececf0; }
.app-item .thumb {
  width: 44px; height: 44px; border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.app-item .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.app-item .t-main { font-size: 14px; font-weight: 600; color: var(--color-fg); }
.app-item .t-sub { font-size: 12px; color: var(--color-muted-fg); margin-top: 2px; }
.tag {
  display: inline-flex; align-items: center;
  height: 24px; padding: 0 10px;
  border-radius: 9999px;
  font-size: 11.5px; font-weight: 600;
}
.tag-green { background: var(--color-accent-soft); color: #1f8a3d; }
.tag-orange { background: var(--color-primary-soft); color: #c44a1a; }

.card-stat {
  padding: 14px 18px;
  animation: float 6s ease-in-out infinite;
  animation-delay: 1.5s;
}
.card-stat-1 {
  top: -16px; left: -30px;
  font-weight: 700;
}
.card-stat-1 .stat-num { font-size: 26px; letter-spacing: -0.03em; }
.card-stat-1 .stat-lbl { font-size: 12px; color: var(--color-muted-fg); }
.card-stat-2 {
  bottom: 30px; right: -24px;
  animation-delay: 3s;
}
.card-stat-2 .stat-row { display: flex; align-items: center; gap: 12px; }
.card-stat-2 .stat-num-sm { font-size: 18px; font-weight: 700; }
.card-stat-2 .stat-lbl-sm { font-size: 11.5px; color: var(--color-muted-fg); }
.card-stat-2 .ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
}
.card-stat-2 .ic-green { background: var(--color-accent-soft); color: var(--color-accent); }
.card-stat-2 .ic-green svg { width: 18px; height: 18px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Marquee */
.hero-marquee {
  margin-top: 70px;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 36px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  color: var(--color-muted-fg);
  font-size: 14px;
  font-weight: 500;
}
.marquee-track span:first-child { color: var(--color-fg); font-weight: 600; }
.marquee-track img {
  height: 22px;
  width: auto;
  min-width: 70px;
  object-fit: contain;
  display: inline-block;
  filter: grayscale(0.2);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== Logos / stores pills ============== */
.logos { padding: 60px 0 0; }
.logos-title {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
  margin-bottom: 24px;
}
.logos-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.logo-pill {
  padding: 14px 26px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  display: inline-flex; align-items: center;
  box-shadow: var(--shadow-ios);
}
.pill-logo { height: 22px; width: auto; display: block; }

/* ============== Sections ============== */
.section { padding: 110px 0; }
.section-alt {
  background: linear-gradient(180deg, transparent, #ffffff 30%, #ffffff 70%, transparent);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.section-sub {
  margin-top: 14px;
  font-size: 17px;
  color: var(--color-muted-fg);
  line-height: 1.55;
}

/* ============== Features grid ============== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--color-card);
  border-radius: var(--radius-2xl);
  padding: 30px;
  box-shadow: var(--shadow-ios);
  border: 1px solid var(--color-border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-ios-lg); }
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 16px 0 8px;
}
.feature-card p { font-size: 14.5px; color: var(--color-muted-fg); line-height: 1.6; }
.feature-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
}
.feature-ic svg { width: 22px; height: 22px; }
.ic-orange { background: var(--color-primary-soft); color: var(--color-primary); }
.ic-blue { background: var(--color-blue-soft); color: var(--color-blue); }
.ic-green { background: var(--color-accent-soft); color: #1f8a3d; }
.ic-purple { background: var(--color-purple-soft); color: var(--color-purple); }

/* ============== Steps ============== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--color-card);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: var(--shadow-ios);
  border: 1px solid var(--color-border);
}
.step h3 { font-size: 18px; font-weight: 700; margin-top: 20px; letter-spacing: -0.02em; }
.step p { margin-top: 8px; color: var(--color-muted-fg); font-size: 14.5px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary), #ff9a5a);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(255,107,53,0.30);
}

/* ============== Stores grid ============== */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.store-card {
  background: var(--color-card);
  border-radius: var(--radius-2xl);
  padding: 30px;
  box-shadow: var(--shadow-ios);
  border: 1px solid var(--color-border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.store-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-ios-lg); }
.store-logo {
  width: 72px; height: 72px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}
.store-logo img { max-width: 80%; max-height: 80%; width: auto; height: auto; object-fit: contain; display: block; }
.store-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.store-card p { margin-top: 8px; color: var(--color-muted-fg); font-size: 14.5px; }
.store-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 14px;
}
.store-tags li {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 9999px;
  background: var(--color-bg);
  color: var(--color-muted-fg);
  font-weight: 500;
}
.store-card-cta {
  background: linear-gradient(135deg, var(--color-primary), #ff9a5a);
  color: #fff;
  border: 0;
  display: flex; flex-direction: column;
}
.store-card-cta h3 { color: #fff; }
.store-card-cta p { color: rgba(255,255,255,0.85); }
.store-card-cta .btn { margin-top: auto; }
.store-card-cta .btn-primary {
  background: #fff;
  color: var(--color-primary);
  box-shadow: none;
}
.store-card-cta .btn-primary:hover { background: rgba(255,255,255,0.9); }

/* ============== Pricing ============== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: var(--color-card);
  border-radius: var(--radius-2xl);
  padding: 36px;
  box-shadow: var(--shadow-ios);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.price-card.highlight {
  border: 2px solid var(--color-primary);
  box-shadow: 0 12px 40px rgba(255,107,53,0.18);
  transform: translateY(-6px);
}

.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-primary-fg);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
  box-shadow: 0 6px 16px rgba(255,107,53,0.35);
}
.price-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.price-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 107, 53, 0.12);
  color: var(--color-primary);
  flex: 0 0 auto;
}
.price-icon svg { width: 22px; height: 22px; }
.price-head > div { display: flex; flex-direction: column; gap: 2px; }
.price-head h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.price-head p { color: var(--color-muted-fg); font-size: 14px; }
.price {
  display: flex; align-items: baseline;
  gap: 4px;
  margin: 24px 0 26px;
  color: var(--color-fg);
}
.price .currency { font-size: 18px; font-weight: 600; color: var(--color-muted-fg); }
.price .amount { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.price .cents { font-size: 24px; font-weight: 700; }
.price .period { font-size: 14.5px; color: var(--color-muted-fg); margin-left: 4px; }

.price-list {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 28px;
  font-size: 14.5px;
}
.price-list li { display: flex; align-items: center; gap: 10px; }
.price-list li.off { color: var(--color-muted-fg); }
.pricing-foot {
  text-align: center;
  margin-top: 36px;
  color: var(--color-muted-fg);
  font-size: 14px;
}

/* ============== Testimonials ============== */
.testimonial {
  background: var(--color-card);
  border-radius: var(--radius-2xl);
  padding: 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-ios);
  display: flex; flex-direction: column; gap: 18px;
}
.stars { color: #ffb020; font-size: 16px; letter-spacing: 2px; }
.testimonial p { color: var(--color-fg); font-size: 15.5px; line-height: 1.6; }
.who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px;
}
.who strong { display: block; font-size: 14.5px; }
.who span { display: block; font-size: 13px; color: var(--color-muted-fg); }

/* ============== FAQ ============== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 4px 22px;
  box-shadow: var(--shadow-ios);
  transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-ios-lg); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--color-fg);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 9999px;
  background: var(--color-bg);
  position: relative;
  flex-shrink: 0;
  transition: background-color .2s ease, transform .2s ease;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute;
  background: var(--color-fg);
  border-radius: 2px;
}
.faq-icon::before { top: 50%; left: 8px; right: 8px; height: 2px; transform: translateY(-50%); }
.faq-icon::after { top: 8px; bottom: 8px; left: 50%; width: 2px; transform: translateX(-50%); transition: transform .2s ease; }
.faq-item[open] .faq-icon { background: var(--color-primary); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: #fff; }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-body {
  padding: 0 0 18px;
  color: var(--color-muted-fg);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 640px;
}

/* ============== CTA final ============== */
.cta {
  background: linear-gradient(135deg, #1c1c1e, #2c2c2e);
  color: #fff;
  border-radius: var(--radius-3xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-ios-xl);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,0.35), transparent 70%);
  filter: blur(20px);
}
.cta-copy { position: relative; }
.cta-copy h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.cta-copy p { margin-top: 12px; color: rgba(255,255,255,0.7); font-size: 16px; }
.cta-actions {
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.cta-actions .btn-ghost { color: #fff; }
.cta-actions .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ============== Footer ============== */
.site-footer {
  background: #1c1c1e;
  color: #f5f5f7;
  padding: 70px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand { color: #fff; }
.footer-brand p {
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 14.5px;
  max-width: 320px;
  line-height: 1.6;
}
.site-footer h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a {
  color: rgba(255,255,255,0.75);
  font-size: 14.5px;
  transition: color .15s ease;
}
.site-footer ul a:hover { color: var(--color-primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding-top: 24px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .made { color: rgba(255,255,255,0.6); }

/* ============== Reveal animation ============== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== Responsivo ============== */
@media (max-width: 980px) {
  .hero { padding: 60px 0 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 380px; max-width: 480px; margin: 0 auto; width: 100%; }
  .grid-3, .steps, .stores-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card.highlight { transform: none; }
  .cta { grid-template-columns: 1fr; padding: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .section { padding: 80px 0; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-mobile.open { display: flex; }
  .grid-3, .steps, .stores-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 70px 0; }
  .hero-marquee { margin-top: 40px; }
  .card-stat-1 { left: 0; top: -10px; }
  .card-stat-2 { right: 0; bottom: 10px; }
  .cta { padding: 32px 24px; }
}

@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;
  }
}
