/* ═══════════════════════════════════════════════════════
   RESET™ LIMPEZA — Design System
   Versão: 1.0
   ═══════════════════════════════════════════════════════ */

/* ─── VARIÁVEIS ─────────────────────────────────────── */
:root {
  --bg-primary:    #0B0D10;
  --bg-secondary:  #0E1115;
  --bg-card:       #11151A;
  --bg-card-hover: #141920;
  --border:        #1B1F24;
  --border-light:  #252A32;

  --text-primary:   #EDEDED;
  --text-secondary: #8A8F98;
  --text-muted:     #555B66;

  --gold:          #C8A24A;
  --gold-light:    #D4B060;
  --gold-dark:     #A8843A;
  --gold-glow:     rgba(200, 162, 74, 0.15);
  --gold-glow-sm:  rgba(200, 162, 74, 0.08);

  --red-accent:    #E05252;
  --green-accent:  #4CAF7D;

  --font-primary:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display:  'Space Grotesk', 'Inter', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 40px rgba(200, 162, 74, 0.2);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ─── TIPOGRAFIA ────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.accent {
  color: var(--gold);
}

.brand-gold {
  color: var(--gold);
  font-style: italic;
}

.headline-accent {
  color: var(--gold);
  display: block;
}

/* ─── LAYOUT ────────────────────────────────────────── */
.section-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAVBAR ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 13, 16, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}

.logo-tm {
  color: var(--gold);
  font-size: 0.65em;
  vertical-align: super;
}

.logo-sub {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 0.75em;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.nav-active::after {
  width: 100%;
}

.btn-nav {
  padding: 8px 20px;
  background: var(--gold);
  color: #0B0D10;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 162, 74, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}

.nav-mobile a {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-mobile a:hover {
  color: var(--text-primary);
  padding-left: 8px;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.btn-cta-full {
  margin-top: 8px;
  padding: 14px;
  background: var(--gold);
  color: #0B0D10;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-align: center;
}

/* ─── URGENCY BAR ───────────────────────────────────── */
.urgency-bar {
  background: linear-gradient(90deg, #1A1400, #1F1800, #1A1400);
  border-bottom: 1px solid rgba(200, 162, 74, 0.2);
  padding: 10px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 64px;
  letter-spacing: 0.02em;
}

.urgency-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ─── BOTÕES CTA ────────────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta-primary {
  background: var(--gold);
  color: #0B0D10;
  box-shadow: 0 4px 20px rgba(200, 162, 74, 0.25);
}

.btn-cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 162, 74, 0.4);
}

.btn-cta-primary:active {
  transform: translateY(0);
}

.btn-cta-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-cta-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.btn-cta-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-cta-outline:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-cta-large {
  padding: 20px 48px;
  font-size: 1.05rem;
}

/* ─── SECTION BADGES ────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--gold-glow-sm);
  border: 1px solid rgba(200, 162, 74, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-badge-red {
  background: rgba(224, 82, 82, 0.08);
  border-color: rgba(224, 82, 82, 0.2);
  color: var(--red-accent);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 162, 74, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 162, 74, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200, 162, 74, 0.06) 0%, transparent 70%);
}

.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-left: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gold-glow-sm);
  border: 1px solid rgba(200, 162, 74, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.br-desktop { display: inline; }

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-sep {
  color: var(--border-light);
  font-size: 0.8rem;
}

/* ─── HERO VISUAL (BEFORE/AFTER) ────────────────────── */
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 520px;
  padding-right: 48px;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.before-after-hero {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  height: 380px;
}

.ba-side {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-before {
  background: linear-gradient(135deg, #1A1200, #0F0E0C);
}

.ba-after {
  background: linear-gradient(135deg, #0E1510, #0B0D10);
}

.ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

.ba-label-after {
  color: var(--gold);
  border-color: rgba(200, 162, 74, 0.3);
  background: rgba(200, 162, 74, 0.08);
}

.ba-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-dirty-effect {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.dirt-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(80,60,20,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 70% 30%, rgba(60,40,10,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(40,30,10,0.2) 0%, transparent 80%);
}

.ba-clean-effect {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.shine-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 70% 40%, rgba(200, 162, 74, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 30% 70%, rgba(200, 162, 74, 0.06) 0%, transparent 60%);
}

.ba-divider {
  width: 2px;
  background: var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ba-divider-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.ba-divider-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  flex-shrink: 0;
}

/* ─── SOCIAL PROOF BAR ──────────────────────────────── */
.social-proof-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  background: var(--bg-secondary);
}

.sp-container {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}

.sp-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sp-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}

.sp-logo-item {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.6;
  transition: var(--transition);
}

.sp-logo-item:hover {
  opacity: 1;
  color: var(--text-secondary);
}

/* ─── VIDEO SECTION ─────────────────────────────────── */
.video-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.video-placeholder:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(200,162,74,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at center, rgba(200,162,74,0.08) 0%, transparent 70%);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.play-btn {
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B0D10;
  transition: var(--transition);
  box-shadow: 0 0 0 0 rgba(200, 162, 74, 0.4);
  animation: pulse-ring 2.5s infinite;
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--gold-light);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(200, 162, 74, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(200, 162, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 162, 74, 0); }
}

.video-caption {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.video-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vstat {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.vstat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.vstat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.vstat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── PROBLEM SECTION ───────────────────────────────── */
.problem-section {
  padding: 100px 0;
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  transition: var(--transition);
}

.problem-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 52px;
  height: 52px;
  background: rgba(224, 82, 82, 0.08);
  border: 1px solid rgba(224, 82, 82, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.problem-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.problem-cta-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ─── SOLUTION SECTION ──────────────────────────────── */
.solution-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.solution-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-product-mockup {
  position: relative;
  width: 280px;
  height: 280px;
}

.product-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(200, 162, 74, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.product-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A1500, #0F0D08, #1A1500);
  border: 2px solid rgba(200, 162, 74, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow:
    inset 0 0 60px rgba(200, 162, 74, 0.05),
    0 0 60px rgba(200, 162, 74, 0.1);
}

.product-circle-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.product-circle-text sup {
  font-size: 0.5em;
  vertical-align: super;
}

.product-circle-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.solution-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-check {
  width: 32px;
  height: 32px;
  background: var(--gold-glow-sm);
  border: 1px solid rgba(200, 162, 74, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.benefit-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── PROOF SECTION ─────────────────────────────────── */
.proof-section {
  padding: 100px 0;
  text-align: center;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.ba-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ba-card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 180px;
}

.ba-card-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ba-card-before {
  background: linear-gradient(135deg, #1A1200, #0F0E0C);
}

.ba-card-after {
  background: linear-gradient(135deg, #0E1510, #0B0D10);
}

.ba-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: rgba(0,0,0,0.6);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

.ba-tag-after {
  color: var(--gold);
  border-color: rgba(200, 162, 74, 0.3);
  background: rgba(200, 162, 74, 0.1);
}

.ba-placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-placeholder-img.dirty {
  background:
    radial-gradient(ellipse at 40% 60%, rgba(80,60,20,0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(60,40,10,0.4) 0%, transparent 50%);
}

.ba-placeholder-img.clean {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(200,162,74,0.1) 0%, transparent 60%);
}

.ba-card-info {
  padding: 16px 20px;
  text-align: left;
  border-top: 1px solid var(--border);
}

.ba-card-location {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.ba-card-time {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
}

/* ─── TESTEMUNHOS ───────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(200, 162, 74, 0.2);
  transform: translateY(-4px);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  background: var(--gold-glow);
  border: 1px solid rgba(200, 162, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── PRICING ───────────────────────────────────────── */
.offer-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: left;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card-featured {
  background: linear-gradient(135deg, #131A10, #0E1510, #0B0D10);
  border-color: rgba(200, 162, 74, 0.35);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.pricing-card-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 60px rgba(200, 162, 74, 0.25), var(--shadow-lg);
}

.featured-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0B0D10;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.kit-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-glow-sm);
  border: 1px solid rgba(200, 162, 74, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.kit-badge-gold {
  color: var(--gold);
  border-color: rgba(200, 162, 74, 0.3);
  background: var(--gold-glow);
}

.kit-name {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.kit-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.price-old {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.price-current {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.kit-save {
  font-size: 0.78rem;
  color: var(--green-accent);
  font-weight: 600;
  margin-bottom: 28px;
}

.kit-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.kit-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.kit-items li svg {
  flex-shrink: 0;
}

.kit-item-disabled {
  opacity: 0.35;
}

.btn-buy {
  width: 100%;
  padding: 16px;
  background: rgba(200, 162, 74, 0.1);
  border: 1.5px solid rgba(200, 162, 74, 0.3);
  color: var(--gold);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  margin-bottom: 12px;
}

.btn-buy:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-buy-featured {
  background: var(--gold);
  color: #0B0D10;
  border-color: var(--gold);
}

.btn-buy-featured:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(200, 162, 74, 0.4);
}

.kit-guarantee {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.compare-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
}

.compare-note strong {
  color: var(--gold);
}

/* ─── GUARANTEE ─────────────────────────────────────── */
.guarantee-section {
  padding: 100px 0;
  text-align: center;
}

.guarantee-box {
  background: linear-gradient(135deg, #131A10, #0E1510, #0B0D10);
  border: 1px solid rgba(200, 162, 74, 0.25);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  text-align: left;
  box-shadow: var(--shadow-gold);
}

.guarantee-icon {
  flex-shrink: 0;
}

.guarantee-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.guarantee-main {
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.5;
}

.guarantee-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.guarantee-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.g-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ─── FAQ ───────────────────────────────────────────── */
.faq-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(200, 162, 74, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ─── FINAL CTA ─────────────────────────────────────── */
.final-cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200, 162, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.final-cta-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── CART TOAST ────────────────────────────────────── */
.cart-toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-toast.show {
  transform: translateX(0);
}

.cart-toast-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(200, 162, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* ─── STICKY CTA MOBILE ─────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 16px;
  background: rgba(11, 13, 16, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  display: none;
}

.sticky-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 14px 24px;
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

.footer-links {
  display: contents;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-payment {
  display: flex;
  gap: 8px;
}

.payment-icon {
  padding: 4px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════
   PÁGINAS SECUNDÁRIAS
   ═══════════════════════════════════════════════════════ */

/* ─── PAGE HERO ─────────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* ─── AFFILIATE HERO ────────────────────────────────── */
.affiliate-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.aff-stat {
  flex: 1;
  padding: 24px 20px;
  text-align: center;
}

.aff-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.aff-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.aff-stat-sep {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── HOW SECTION ───────────────────────────────────── */
.aff-how-section {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.how-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.how-step:hover {
  border-color: rgba(200, 162, 74, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.how-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--border-light);
  font-family: var(--font-display);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 16px;
}

.how-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-glow-sm);
  border: 1px solid rgba(200, 162, 74, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.how-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.how-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── BENEFITS 2COL ─────────────────────────────────── */
.aff-benefits-section {
  padding: 100px 0;
  text-align: center;
}

.benefits-grid-2col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.benefit-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.benefit-block:hover {
  border-color: rgba(200, 162, 74, 0.2);
  transform: translateY(-4px);
}

.benefit-block-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-glow-sm);
  border: 1px solid rgba(200, 162, 74, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-block h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-block p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── COMMISSION TABLE ──────────────────────────────── */
.aff-commission-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.commission-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.commission-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}

.commission-table th {
  padding: 16px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.commission-table td {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.commission-table tr:last-child td {
  border-bottom: none;
}

.commission-highlight {
  color: var(--gold) !important;
  font-weight: 700;
}

.commission-featured-row {
  background: rgba(200, 162, 74, 0.04);
}

.commission-featured-row td {
  color: var(--text-primary) !important;
}

.commission-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── AFFILIATE FORM ────────────────────────────────── */
.aff-form-section {
  padding: 100px 0;
  text-align: center;
}

.aff-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.aff-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 162, 74, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select option {
  background: var(--bg-card);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-form-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 1rem;
}

.form-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.form-note a {
  color: var(--gold);
  text-decoration: underline;
}

.form-success {
  background: var(--bg-card);
  border: 1px solid rgba(200, 162, 74, 0.3);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-glow);
  border: 2px solid rgba(200, 162, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ─── CHALLENGE HERO ────────────────────────────────── */
.challenge-hero {
  background: var(--bg-secondary);
}

.challenge-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.challenge-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ─── CHALLENGE INTRO ───────────────────────────────── */
.challenge-intro {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.challenge-intro-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.challenge-intro-box h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.challenge-intro-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.intro-cta-inline {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.intro-cta-inline p {
  margin: 0;
  color: var(--text-primary);
}

/* ─── CHALLENGE DAYS ────────────────────────────────── */
.challenge-days {
  padding: 100px 0;
  text-align: center;
}

.day-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
  text-align: left;
}

.day-card:hover {
  border-color: var(--border-light);
}

.day-card-final {
  border-color: rgba(200, 162, 74, 0.2);
  background: linear-gradient(135deg, #131A10, #0E1510, #0B0D10);
}

.day-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  cursor: pointer;
}

.day-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.day-number-gold {
  background: var(--gold-glow);
  border-color: rgba(200, 162, 74, 0.3);
}

.day-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.day-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
}

.day-info {
  flex: 1;
}

.day-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.day-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.day-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.day-toggle {
  width: 36px;
  height: 36px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}

.day-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.day-card.open .day-toggle svg {
  transform: rotate(180deg);
}

.day-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  border-top: 0px solid var(--border);
}

.day-card.open .day-content {
  max-height: 1000px;
  border-top: 1px solid var(--border);
  padding: 28px;
}

.day-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.day-tasks h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.task-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.task-item:last-child {
  border-bottom: none;
}

.task-check {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.task-item label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  cursor: pointer;
}

.task-item label strong {
  color: var(--text-primary);
}

.day-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(200, 162, 74, 0.05);
  border: 1px solid rgba(200, 162, 74, 0.15);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.day-tip svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.day-result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--green-accent);
}

.day-result-final {
  color: var(--gold);
}

/* ─── CHALLENGE PROGRESS ────────────────────────────── */
.challenge-progress-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.progress-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.progress-box h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.progress-box > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.progress-days {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.prog-day {
  width: 44px;
  height: 44px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}

.prog-day.completed {
  background: var(--gold-glow);
  border-color: rgba(200, 162, 74, 0.4);
  color: var(--gold);
}

.progress-bar-wrapper {
  height: 6px;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.progress-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   ANIMAÇÕES
   ═══════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px) translateY(-50%); }
  to   { opacity: 1; transform: translateX(0) translateY(-50%); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVO — TABLET
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container {
    max-width: 100%;
    padding: 0 24px;
  }

  .hero-visual {
    display: none;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .solution-visual {
    order: -1;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .problem-grid,
  .ba-grid,
  .testimonials,
  .pricing-grid,
  .how-grid,
  .benefits-grid-2col {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    transform: none;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }

  .guarantee-badges {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .intro-cta-inline {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVO — MOBILE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .nav-links,
  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile.open {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .br-desktop {
    display: none;
  }

  .urgency-bar {
    font-size: 0.72rem;
    padding: 8px 16px;
  }

  .section-container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .video-section,
  .problem-section,
  .solution-section,
  .proof-section,
  .offer-section,
  .guarantee-section,
  .faq-section,
  .final-cta-section {
    padding: 72px 0;
  }

  .aff-form {
    padding: 28px 20px;
  }

  .challenge-intro-box {
    padding: 28px 20px;
  }

  .progress-box {
    padding: 28px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta {
    display: block;
  }

  .sp-logos {
    gap: 24px;
  }

  .sp-label {
    display: none;
  }

  .affiliate-hero-stats {
    flex-direction: column;
    gap: 0;
  }

  .aff-stat-sep {
    width: 100%;
    height: 1px;
  }

  .day-header {
    padding: 16px 20px;
    gap: 16px;
  }

  .progress-days {
    gap: 6px;
  }

  .prog-day {
    width: 36px;
    height: 36px;
    font-size: 0.68rem;
  }

  .commission-table th,
  .commission-table td {
    padding: 12px 14px;
    font-size: 0.8rem;
  }
}

/* ─── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ─── SELECTION ─────────────────────────────────────── */
::selection {
  background: rgba(200, 162, 74, 0.25);
  color: var(--text-primary);
}
