/* ==========================================================
   Reduprime — Brand Hub Design System
   Brand palette: black + deep purple + gold accent
   ========================================================== */

:root {
  --bg: #08050d;
  --bg-1: #0d0817;
  --bg-2: #14102a;
  --bg-3: #1d1638;
  --purple: #7B3CC0;
  --purple-lt: #a45cd9;
  --purple-dk: #4a1f73;
  --purple-deep: #2a0f4a;
  --purple-glow: rgba(123,60,192,.35);
  --gold: #d4af37;
  --gold-lt: #f0cf6b;
  --gold-dk: #9b7e1a;
  --red: #e11d2e;
  --red-lt: #ff2a3b;
  --white: #ffffff;
  --g100: #f5f5f5;
  --g200: #d4d4d4;
  --g300: #a3a3a3;
  --g400: #737373;
  --g600: #404040;
  --line: rgba(123,60,192,.25);
  --line-strong: rgba(123,60,192,.5);
  --r: 12px;
  --r-lg: 18px;
  --shadow-purple: 0 12px 40px rgba(123,60,192,.30);
  --shadow-gold: 0 8px 28px rgba(212,175,55,.25);
  --fh: 'Playfair Display', Georgia, serif;
  --fb: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --fd: 'Bebas Neue', 'Oswald', 'Arial Narrow', Impact, sans-serif;
}

/* Visually hidden (still readable by screen readers / SEO) */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin-inline: auto; padding-inline: 20px; }
.container-narrow { max-width: 880px; margin-inline: auto; padding-inline: 20px; }
.tc { text-align: center; }

/* ==========================================================
   Typography
   ========================================================== */
h1, h2, h3, h4 { font-family: var(--fh); font-weight: 900; line-height: 1.1; letter-spacing: -.01em; }
.tag {
  display: inline-block;
  background: rgba(123,60,192,.18);
  border: 1px solid var(--line-strong);
  color: var(--gold-lt);
  font-family: var(--fb);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 2px;
  margin-block: 22px;
}
.divider.c { margin-inline: auto; }
.tg { color: var(--gold); }
.tp { color: var(--purple-lt); }

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--fb);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  color: #fff;
  transition: transform .18s, filter .18s;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-purple {
  background: linear-gradient(135deg, var(--purple-dk), var(--purple) 50%, var(--purple-lt));
  box-shadow: var(--shadow-purple);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold-lt) 50%, var(--gold-dk));
  background-size: 200%;
  color: #1a1a1a;
  box-shadow: var(--shadow-gold);
  animation: shimmer 4s infinite;
}
@keyframes shimmer { 0%{background-position:200% center} 100%{background-position:-200% center} }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(212,175,55,.08); }
.btn-sm { font-size: 14px; padding: 10px 22px; }

/* ==========================================================
   Header
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,5,13,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  max-width: 1180px;
  margin-inline: auto;
}
.logo {
  color: var(--white);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.logo .mark {
  display: inline-block;
  width: 88px;
  height: 66px;
  background: url('/assets/img/shared/logo.png?v=20260511.3') no-repeat center / contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
  flex-shrink: 0;
}
.logo .mark::after { content: none; }
.logo small {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 11px;
  color: var(--purple-lt);
  letter-spacing: .22em;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .logo .mark { width: 64px; height: 48px; }
  .logo small {
    font-size: 9px;
    letter-spacing: .15em;
    white-space: normal;
    max-width: 12ch;
  }
}
.nav { display: none; margin-left: auto; gap: 28px; }
.nav a {
  color: var(--g200);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav a:hover { color: var(--gold); }
.header-cta { margin-left: auto; font-size: 13px; padding: 10px 20px; }
@media (min-width: 880px) {
  .nav { display: flex; }
  .header-cta { margin-left: 0; }
}
@media (max-width: 600px) {
  .header-cta {
    font-size: 11px;
    padding: 8px 14px;
    letter-spacing: .04em;
    white-space: nowrap;
  }
  .header-inner { gap: 10px; padding: 10px 14px; }
}

/* ==========================================================
   Hero (hub)
   ========================================================== */
.hub-hero {
  position: relative;
  padding: 90px 20px 70px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top, rgba(123,60,192,.32), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(212,175,55,.10), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
}
@media (max-width: 880px) {
  .hub-hero { padding: 0 0 50px; }
}
.hub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212,175,55,.05) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.hub-hero-inner {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
}
.hero-kicker {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold-lt);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hub-hero h1 {
  /* Unified — matches Turbo hero h1 / all section titles */
  font-family: var(--fb);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.005em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hub-hero h1 .tg {
  font-family: var(--fb);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
@media (max-width: 480px) {
  .hub-hero h1 .tg { white-space: normal !important; }
}
.hub-hero p.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--g200);
  max-width: 620px;
  margin: 0 auto 36px;
}
.hub-hero p.lead strong { color: var(--white); }

/* ==========================================================
   Sections
   ========================================================== */
.section { padding-block: 80px; }
.s0 { background: var(--bg); }
.s1 { background: var(--bg-1); }
.s2 { background: var(--bg-2); }

/* Light section variant — uses lighter tones from product label palette
   (white potes + lavender label tint) */
.s-light {
  background:
    radial-gradient(ellipse 1200px 600px at 50% 0%, rgba(123,60,192,.10), transparent 70%),
    linear-gradient(180deg, #f5f0ff 0%, #ede4ff 50%, #f5f0ff 100%);
  color: #1a0d2e;
  position: relative;
}
.s-light::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,60,192,.4), transparent);
}
.s-light .tag {
  background: rgba(123,60,192,.12);
  border-color: rgba(123,60,192,.35);
  color: #5a2999;
}
.s-light .section-title { color: #1a0d2e; }
.s-light .section-title .tg { color: var(--gold-dk); }
.s-light .section-lead { color: #4a3863; }
.s-light .section-lead strong { color: #1a0d2e; }
.s-light .divider { background: linear-gradient(90deg, var(--purple), var(--gold-dk)); }

/* Cream/cream variant — alternate light background using soft gold tint */
.s-cream {
  background:
    radial-gradient(ellipse 800px 500px at 50% 0%, rgba(212,175,55,.10), transparent 70%),
    linear-gradient(180deg, #fbf6e8 0%, #f6efd5 100%);
  color: #1a0d2e;
}
.s-cream .tag { background: rgba(212,175,55,.18); border-color: rgba(212,175,55,.40); color: #7a5a0a; }
.s-cream .section-title { color: #1a0d2e; }
.s-cream .section-title .tg { color: var(--purple-dk); }
.s-cream .section-lead { color: #4a3863; }
.s-cream .section-lead strong { color: #1a0d2e; }
.s-cream .divider { background: linear-gradient(90deg, var(--purple), var(--gold-dk)); }

/* Check-list overrides on light/cream backgrounds */
.s-light .check-item,
.s-cream .check-item { border-bottom-color: rgba(123,60,192,.18); }
.s-light .check-item h4,
.s-cream .check-item h4 { color: #5a2999; }
.s-light .check-item p,
.s-cream .check-item p { color: #4a3863; }
.s-light .check-mark,
.s-cream .check-mark { box-shadow: 0 6px 18px rgba(123,60,192,.25); }

/* ==========================================================
   Store badges (Apple Store + Google Play)
   ========================================================== */
.store-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.store-badge {
  display: inline-block;
  transition: transform .2s ease, filter .2s ease;
  border-radius: 10px;
  overflow: hidden;
}
.store-badge img,
.store-badge svg { display: block; height: 54px; width: auto; }
.store-badge:hover { transform: translateY(-2px); filter: drop-shadow(0 8px 20px rgba(0,0,0,.35)); }
.store-badges-note {
  font-size: 12px;
  color: var(--g300);
  margin-top: 10px;
  font-style: italic;
}
.s-light .store-badges-note,
.s-cream .store-badges-note { color: #6b5a85; }
@media (max-width: 600px) {
  .store-badge img,
  .store-badge svg { height: 48px; }
}

/* ==========================================================
   Free app teaser (hub pages)
   ========================================================== */
.app-teaser {
  background:
    radial-gradient(ellipse 900px 500px at 80% 50%, rgba(123,60,192,.30), transparent 70%),
    linear-gradient(135deg, var(--purple-deep) 0%, #1a0d2e 100%);
  padding-block: 80px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.app-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212,175,55,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.app-teaser .container { position: relative; }
.app-teaser-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.app-teaser-text h2 {
  /* Unified — matches Turbo hero h1 / all section titles */
  font-family: var(--fb);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--white);
}
.app-teaser-text h2 .tg { color: var(--gold); }
.app-teaser-text .lead {
  color: var(--g200);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.app-teaser-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 28px;
  list-style: none;
  padding: 0;
}
.app-teaser-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--g100);
}
.app-teaser-features .ico {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.app-teaser-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.app-teaser-mock {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-teaser-mock-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9/19;
  border-radius: 36px;
  background: linear-gradient(180deg, #14102a 0%, #0d0817 100%);
  border: 3px solid #2a1a4d;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 8px rgba(20,16,42,.5);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.app-teaser-mock-row {
  background: linear-gradient(135deg, rgba(123,60,192,.25), rgba(123,60,192,.10));
  border: 1px solid rgba(123,60,192,.30);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 12px;
}
.app-teaser-mock-row.gold {
  background: linear-gradient(135deg, rgba(212,175,55,.20), rgba(212,175,55,.05));
  border-color: rgba(212,175,55,.40);
}
.app-teaser-mock-row strong { display: block; color: var(--white); font-size: 14px; margin-bottom: 4px; }
.app-teaser-mock-row span { color: var(--g300); font-size: 11px; letter-spacing: .04em; }
@media (max-width: 880px) {
  .app-teaser { padding-block: 60px; }
  .app-teaser-grid { grid-template-columns: 1fr; gap: 36px; }
  .app-teaser-mock { order: -1; }
  .app-teaser-mock-frame { max-width: 260px; }
  .app-teaser-features { grid-template-columns: 1fr; }
}

/* ==========================================================
   Floating bottle (Por que REDUPRIME section)
   ========================================================== */
.float-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 30px;
}
.float-stage::before {
  content: '';
  position: absolute;
  bottom: 8%;
  left: 50%;
  width: 60%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(45,18,90,.35) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateX(-50%);
  filter: blur(10px);
  animation: floatShadow 4.5s ease-in-out infinite;
  z-index: 0;
}
.float-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,.22), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.float-bottle {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 520px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 36px rgba(45,18,90,.30)) drop-shadow(0 6px 12px rgba(225,29,46,.20));
  animation: floatBottle 4.5s ease-in-out infinite;
  will-change: transform;
}
@keyframes floatBottle {
  0%, 100% { transform: translateY(0) rotate(-0.3deg); }
  50%      { transform: translateY(-18px) rotate(0.3deg); }
}
@keyframes floatShadow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .55; }
  50%      { transform: translateX(-50%) scale(0.82); opacity: .35; }
}
@media (prefers-reduced-motion: reduce) {
  .float-bottle, .float-stage::before { animation: none; }
}
@media (max-width: 600px) {
  .float-stage { min-height: 380px; padding: 20px; }
  .float-bottle { max-height: 380px; }
}

/* ==========================================================
   Thank-you pages (PIX, Cartão)
   ========================================================== */
.thanks-hero {
  position: relative;
  padding: 60px 20px 50px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.22), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(123,60,192,.18), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
}
.thanks-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212,175,55,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.thanks-hero .container {
  position: relative;
  max-width: 760px;
}
.thanks-checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  margin-bottom: 22px;
  position: relative;
  box-shadow: 0 16px 40px rgba(212,175,55,.40), 0 0 0 6px rgba(212,175,55,.12);
  animation: checkPop .6s cubic-bezier(.34,1.56,.64,1) both;
}
.thanks-checkmark::after {
  content: '';
  width: 36px;
  height: 18px;
  border-left: 6px solid #1a1a1a;
  border-bottom: 6px solid #1a1a1a;
  transform: rotate(-45deg) translate(2px, -3px);
  margin-top: -8px;
}
@keyframes checkPop {
  0%   { transform: scale(0) rotate(-15deg); opacity: 0; }
  60%  { transform: scale(1.15) rotate(0); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.thanks-hero h1 {
  font-family: var(--fb);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.thanks-hero h1 .tg { color: var(--gold); }
.thanks-hero .lead {
  font-size: 17px;
  color: var(--g200);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 26px;
}
.thanks-hero .lead strong { color: var(--gold-lt); }
.thanks-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  background: rgba(123,60,192,.12);
  border: 1px solid var(--line-strong);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 13px;
  color: var(--g100);
}
.thanks-meta strong { color: var(--gold-lt); font-weight: 700; }

/* Next steps timeline */
.thanks-steps {
  padding: 60px 0;
  background: var(--bg);
}
.thanks-steps .container { max-width: 880px; }
.thanks-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.thanks-step {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  position: relative;
}
.thanks-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dk));
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 14px;
}
.thanks-step h3 {
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.thanks-step p { color: var(--g300); font-size: 14px; line-height: 1.55; }
.thanks-step.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  box-shadow: var(--shadow-gold);
}
.thanks-step.featured .thanks-step-num {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: #1a1a1a;
}

/* WhatsApp green CTA card */
.thanks-whatsapp {
  padding: 50px 0;
  background: var(--bg-1);
}
.thanks-whatsapp .container { max-width: 720px; }
.thanks-whatsapp-card {
  background: linear-gradient(135deg, #1f6e3d 0%, #25D366 100%);
  border-radius: var(--r-lg);
  padding: 28px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 18px 50px rgba(37,211,102,.30);
}
.thanks-whatsapp-icon {
  font-size: 42px;
  flex-shrink: 0;
}
.thanks-whatsapp-text { flex: 1; }
.thanks-whatsapp-text h3 {
  font-family: var(--fb);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.thanks-whatsapp-text p { color: rgba(255,255,255,.92); font-size: 14px; margin: 0; line-height: 1.5; }
.thanks-whatsapp .btn {
  background: #fff;
  color: #1f6e3d;
  flex-shrink: 0;
  font-weight: 900;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
}
.thanks-whatsapp .btn:hover { background: #f0fff5; }
@media (max-width: 600px) {
  .thanks-whatsapp-card { flex-direction: column; text-align: center; padding: 22px 18px; }
  .thanks-whatsapp .btn { width: 100%; }
}

/* ==========================================================
   Product grid (the line)
   ========================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  opacity: 0;
  transition: opacity .25s ease;
}
.product-card:hover::before { opacity: 1; }
.product-card.feat { border-color: var(--gold-dk); }
.product-card.feat::before { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); opacity: 1; }
.product-card.feat:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.product-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}
.product-img {
  background: radial-gradient(ellipse at center, rgba(123,60,192,.15), transparent 70%);
  border-radius: var(--r);
  padding: 18px;
  margin-bottom: 18px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img { max-height: 260px; margin: 0 auto; filter: drop-shadow(0 12px 30px rgba(0,0,0,.5)); }
.product-card h3 {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 6px;
  color: var(--white);
}
.product-form {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold-lt);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.product-card p {
  font-size: 14.5px;
  color: var(--g200);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.product-cta {
  margin-top: auto;
}
.product-cta .btn { width: 100%; padding: 12px 18px; font-size: 13.5px; }

/* Product card on light backgrounds (s-light, s-cream) */
.s-light .product-card,
.s-cream .product-card {
  background: #ffffff;
  border-color: rgba(123,60,192,.18);
  box-shadow: 0 4px 14px rgba(45,18,90,.08);
}
.s-light .product-card:hover,
.s-cream .product-card:hover {
  border-color: var(--purple);
  box-shadow: 0 16px 40px rgba(123,60,192,.22);
}
.s-light .product-card.feat,
.s-cream .product-card.feat {
  background: linear-gradient(180deg, #ffffff 0%, #fff8e0 100%);
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(212,175,55,.20);
}
.s-light .product-card.feat:hover,
.s-cream .product-card.feat:hover {
  box-shadow: 0 16px 40px rgba(212,175,55,.30);
}
.s-light .product-img,
.s-cream .product-img {
  background: radial-gradient(ellipse at center, rgba(123,60,192,.08), transparent 70%);
}
.s-light .product-img img,
.s-cream .product-img img {
  filter: drop-shadow(0 12px 24px rgba(45,18,90,.20));
}
.s-light .product-card h3,
.s-cream .product-card h3 { color: #1a0d2e; }
.s-light .product-card p,
.s-cream .product-card p { color: #4a3863; }
.s-light .product-form,
.s-cream .product-form { color: var(--purple); }
.s-light .product-card.feat .product-form,
.s-cream .product-card.feat .product-form { color: var(--gold-dk); }

/* ==========================================================
   Two-column section
   ========================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
}

/* ==========================================================
   Check list
   ========================================================== */
.check-list { list-style: none; }
.check-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.check-item:last-child { border-bottom: none; }
.check-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--purple), var(--purple-lt));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  box-shadow: var(--shadow-purple);
}
.check-item h4 {
  font-family: var(--fb);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 4px;
}
.check-item p { color: var(--g200); font-size: 14.5px; line-height: 1.55; }

/* ==========================================================
   Guarantee strip — light variant (cream + soft gold)
   ========================================================== */
.guar {
  background:
    radial-gradient(circle at 30% 50%, rgba(212,175,55,.18), transparent 55%),
    linear-gradient(135deg, #fbf6e8 0%, #f3e9c8 100%);
  padding-block: 80px;
  position: relative;
  overflow: hidden;
  color: #1a0d2e;
}
.guar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.5), transparent);
  pointer-events: none;
}
.guar .tag {
  background: rgba(212,175,55,.18);
  border-color: rgba(212,175,55,.45);
  color: #7a5a0a;
}
.guar .section-title { color: #1a0d2e; }
.guar .section-title .tg { color: var(--purple-dk); }
.guar p { color: #4a3863 !important; }
.guar .divider { background: linear-gradient(90deg, var(--purple), var(--gold-dk)); }
.guar .btn-ghost {
  color: #1a0d2e;
  border-color: rgba(123,60,192,.4);
}
.guar .btn-ghost:hover { background: rgba(123,60,192,.08); border-color: var(--purple); color: var(--purple-dk); }
.guar .gi {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
}
.guar .gbadge-img {
  border-radius: 50%;
  border: 4px solid var(--gold);
  background: #fff;
  box-shadow: 0 12px 36px rgba(212,175,55,.30);
}
@media (max-width: 880px) {
  .guar .gi { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .guar .gbadge-img { max-width: 200px; margin: 0 auto; }
}

/* ==========================================================
   Footer
   ========================================================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
  margin-bottom: 36px;
}
.foot-col h4 {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.foot-col p { color: var(--g300); font-size: 14px; margin-bottom: 6px; }
.foot-col a { color: var(--g200); transition: color .15s ease; }
.foot-col a:hover { color: var(--gold); }
.flogo {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.lang-switcher {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.lang-switcher a {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--g200);
  transition: border-color .15s ease, color .15s ease;
}
.lang-switcher a:hover { border-color: var(--gold); color: var(--gold); }
.flegal {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
}
.flegal p { color: var(--g400); font-size: 12px; line-height: 1.6; margin-bottom: 10px; }
.flegal strong { color: var(--g200); }
.fcopy { color: var(--g400); font-size: 12px; }

@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ==========================================================
   Section title
   ========================================================== */
.section-title {
  /* Unified across all pages — matches Turbo hero h1 */
  font-family: var(--fb);
  text-align: center;
  font-size: clamp(22px, 2.6vw, 34px);
  margin-bottom: 14px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.005em;
  text-transform: uppercase;
}
.section-lead {
  color: var(--g200);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: center;
  line-height: 1.65;
}

/* ==========================================================
   Por que REDUPRIME — adapted for wide linha-completa image
   ========================================================== */
.check-list--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  list-style: none;
  max-width: 920px;
  margin: 28px auto 0;
  padding: 0;
}
.check-list--grid .check-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(123,60,192,.18);
}
.check-list--grid .check-item:last-child,
.check-list--grid .check-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
@media (max-width: 720px) {
  .check-list--grid { grid-template-columns: 1fr; gap: 0; }
  .check-list--grid .check-item:last-child { border-bottom: none; }
  .check-list--grid .check-item:nth-last-child(2):nth-child(odd) {
    border-bottom: 1px solid rgba(123,60,192,.18);
  }
}
.line-stage {
  margin: 44px auto 0;
  max-width: 1100px;
  padding: 0 8px;
}
.line-stage img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(45,18,90,.22), 0 0 0 1px rgba(123,60,192,.18);
  display: block;
}
@media (max-width: 600px) {
  .line-stage { margin-top: 28px; padding: 0; }
  .line-stage img { border-radius: 8px; }
}


/* ==========================================================
   App teaser — two-tier comparison (Free vs Premium IA)
   ========================================================== */
.app-teaser-header { max-width: 720px; margin: 0 auto 32px; }
.app-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.app-tier-card {
  background: rgba(20,16,42,.6);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(4px);
}
.app-tier-card.premium {
  background: linear-gradient(135deg, var(--purple-deep) 0%, rgba(20,16,42,.7) 100%);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.app-tier-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: rgba(123,60,192,.25);
  color: var(--purple-lt);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}
.app-tier-badge.gold {
  background: rgba(212,175,55,.20);
  color: var(--gold-lt);
  border: 1px solid rgba(212,175,55,.35);
}
.app-tier-card h3 {
  font-family: var(--fb);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.005em;
  margin-bottom: 16px;
  color: var(--white);
  line-height: 1.2;
}
.app-tier-card ul { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.app-tier-card li {
  padding: 9px 0;
  font-size: 14.5px;
  color: var(--g100);
  border-bottom: 1px solid rgba(123,60,192,.10);
  line-height: 1.5;
}
.app-tier-card li:last-child { border-bottom: none; }
.app-tier-card li strong { color: var(--gold-lt); }
.app-tier-card.premium li strong { color: var(--gold); }
.app-tier-card .btn { width: 100%; }
@media (max-width: 720px) {
  .app-tier-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   App screens row — phone mockups carousel
   ========================================================== */
.app-screens-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--purple) transparent;
  padding: 14px 8px 22px;
  margin: 28px -8px 0;
  mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.app-screens-row::-webkit-scrollbar { height: 6px; }
.app-screens-row::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }
.app-screen {
  flex: 0 0 auto;
  width: 220px;
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: 0 24px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(123,60,192,.30), 0 0 50px rgba(123,60,192,.18);
  transition: transform .3s ease, box-shadow .3s ease;
  background: #08050d;
}
.app-screen:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,.6), 0 0 0 1px var(--gold), 0 0 60px rgba(212,175,55,.20);
}
.app-screen img { display: block; width: 100%; height: auto; }
.app-screen-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold-lt);
  padding: 10px 6px 0;
  text-transform: uppercase;
}
@media (min-width: 880px) {
  .app-screens-row {
    justify-content: center;
    overflow-x: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .app-screen { width: 200px; }
}
@media (max-width: 600px) {
  .app-screen { width: 200px; }
}

/* Manual activation banner (WhatsApp/email flow) */
.activation-banner {
  background: linear-gradient(135deg, rgba(34,197,94,.18), rgba(34,197,94,.06));
  border: 1px solid rgba(34,197,94,.35);
  border-radius: 14px;
  padding: 16px 20px;
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
  color: #d1f5dd;
  line-height: 1.6;
}
.activation-banner strong { color: #7ee3a3; }
.activation-banner a { color: #7ee3a3; text-decoration: underline; font-weight: 700; }

/* App page — welcome showcase mobile fix */
@media (max-width: 720px) {
  .app-section [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    text-align: center;
  }
  .app-section [style*="grid-template-columns:1fr 1fr"] h2 { text-align: center !important; }
  .app-section [style*="grid-template-columns:1fr 1fr"] .divider { margin-inline: auto; }
}

/* ==========================================================
   App screens row — auto-scroll on mobile (marquee)
   Activated by main.js when viewport ≤880px (.is-auto class
   added after the items are wrapped in .app-screens-track and
   cloned 2× so the loop is seamless).
   ========================================================== */
@media (max-width: 880px) {
  .app-screens-row.is-auto {
    overflow: hidden;
    scroll-snap-type: none;
  }
  .app-screens-row.is-auto .app-screens-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: appScreensScroll 28s linear infinite;
    will-change: transform;
  }
  .app-screens-row.is-auto:hover .app-screens-track,
  .app-screens-row.is-auto:focus-within .app-screens-track,
  .app-screens-row.is-auto:active .app-screens-track {
    animation-play-state: paused;
  }
  @keyframes appScreensScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .app-screens-row.is-auto .app-screens-track { animation: none; }
  }
}
