/* =====================================================
   ECOM247 — Mentoria em Grupo · Landing Page
   Author: ECOM247
   ===================================================== */

/* ----- VARIABLES ----- */
:root {
  --orange: #FF6803;
  --orange-dark: #E55B00;
  --orange-light: #FF8534;
  --black: #000000;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.16);
  --shadow-orange: 0 12px 32px rgba(255,104,3,0.32);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-y: clamp(56px, 8vw, 120px);
  --container-x: clamp(20px, 5vw, 48px);
  --max-width: 1200px;
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 110px; /* sticky bar space (mobile 2 linhas) */
}
@media (min-width: 640px) {
  body { padding-bottom: 72px; }
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul { list-style: none; }
section { padding: var(--section-y) 0; position: relative; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-x);
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
.text-orange { color: var(--orange); }
.text-dark { color: var(--gray-900); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1.5px solid var(--orange);
  border-radius: 999px;
}
.eyebrow-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}

.section-title {
  font-size: clamp(28px, 4.5vw, 52px);
  text-align: center;
  margin-bottom: 16px;
  color: var(--gray-900);
}
.section-title-light { color: var(--white); }

.section-subtitle {
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray-700);
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-subtitle-light { color: var(--gray-300); }

/* ----- LOGO ----- */
.logo-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  line-height: 1;
}
.logo-text-light { color: var(--white); }
.logo-icon {
  height: 38px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  text-align: center;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255,104,3,0.45);
}
.btn-dark {
  background: var(--gray-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.btn-dark:hover {
  background: var(--black);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 38px; font-size: 16px; }
.btn-xl { padding: 22px 44px; font-size: 17px; }
.btn-xxl {
  padding: 26px 54px;
  font-size: 19px;
  border-radius: 999px;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
  font-weight: 400;
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-pulse {
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(255,104,3,0.32), 0 0 0 0 rgba(255,104,3,0.5); }
  50% { box-shadow: 0 12px 32px rgba(255,104,3,0.45), 0 0 0 16px rgba(255,104,3,0); }
}

.cta-center { text-align: center; margin-top: 40px; }

/* ----- HEADER ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  padding: 12px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-cta {
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.02em;
}
@media (min-width: 640px) {
  .header-cta { padding: 10px 20px; font-size: 13px; }
}

/* Em telas bem pequenas (≤360px), encurta o texto via CSS */
@media (max-width: 380px) {
  .header-cta { font-size: 10px; padding: 7px 11px; }
}

/* ============================================
   1. HERO
============================================ */
.hero {
  background: var(--orange);
  padding-top: clamp(100px, 12vw, 140px);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
  position: relative;
}
.hero-bg-pattern {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 30px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 60px;
  border: 30px solid rgba(0,0,0,0.04);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; gap: 64px; }
}
.hero-title {
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-subtitle strong { color: var(--white); font-weight: 700; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 36px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}
.hero-badges li { display: flex; align-items: center; gap: 8px; }
.hero-badges .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--white);
  color: var(--orange);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}
.hero-micro {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}

/* Hero mentors card */
.hero-mentors-card {
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-mentor {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.mentor-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  background: var(--gray-800);
}
.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.mentor-label { color: var(--white); }
.mentor-label strong { display: block; font-size: 17px; font-weight: 700; }
.mentor-label small { font-size: 13px; color: var(--gray-400); }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-800);
}
.hero-stats > div:not(.divider) {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--white);
  flex: 1;
}
.hero-stats strong { font-size: clamp(18px, 2.5vw, 24px); color: var(--orange); font-weight: 800; }
.hero-stats span { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.hero-stats .divider {
  width: 1px;
  height: 32px;
  background: var(--gray-800);
}

/* ============================================
   2. MARKETPLACES
============================================ */
.marketplaces {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-100);
}
.marketplaces-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray-500);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.marketplaces-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.ml-logo, .shopee-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--gray-100);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-700);
}
.ml-icon, .shopee-icon { font-size: 22px; }

/* ============================================
   3. DOR
============================================ */
.dor { background: var(--gray-50); }
.dor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.dor-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--gray-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.dor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.dor-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.dor-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.dor-card p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}
.dor-transition {
  text-align: center;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--gray-700);
  margin-top: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.dor-transition strong { color: var(--orange); }

/* ============================================
   4. QUEBRA DE MITO
============================================ */
.quebra-mito {
  background: var(--gray-900);
  color: var(--white);
  text-align: center;
}
.quebra-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.quebra-title {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 32px;
  color: var(--white);
  letter-spacing: -0.025em;
}
.quebra-text {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-300);
  margin-bottom: 56px;
}
.quebra-text p { margin-bottom: 20px; }
.quebra-text strong { color: var(--white); }
.quebra-subtitle {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--orange);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.quebra-final {
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--white);
}
.quebra-final strong { color: var(--orange); }

/* ============================================
   5. SOLUÇÃO
============================================ */
.solucao { background: var(--white); text-align: center; }
.solucao .eyebrow, .solucao .section-title { display: block; margin-left: auto; margin-right: auto; }
.solucao-text {
  font-size: 18px;
  color: var(--gray-700);
  max-width: 700px;
  margin: 0 auto 56px;
}
.solucao-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.solucao-card {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  transition: all 0.3s ease;
}
.solucao-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.solucao-icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.solucao-card h4 {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.solucao-card p {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============================================
   6. MENTORES
============================================ */
.mentores {
  background: var(--gray-900);
  color: var(--white);
}
.mentores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 56px 0 40px;
}
@media (min-width: 880px) {
  .mentores-grid { grid-template-columns: 1fr 1fr; }
}
.mentor-card {
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid var(--gray-700);
  transition: all 0.4s ease;
}
.mentor-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.mentor-card-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 4px solid var(--orange);
  box-shadow: var(--shadow-md);
  background: var(--gray-800);
}
.mentor-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.mentor-card-info { flex: 1; min-width: 0; }
.mentor-card-role {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}
.mentor-card-name {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}
.mentor-card-bio {
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.mentor-card-bio strong { color: var(--orange); font-weight: 600; }
.mentor-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mentor-card-tags span {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255,104,3,0.12);
  color: var(--orange);
  border-radius: 999px;
  font-weight: 600;
}
.mentores-fechamento {
  text-align: center;
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--gray-300);
  margin-top: 32px;
}
.mentores-fechamento strong { color: var(--orange); }

/* ============================================
   7. PILARES
============================================ */
.pilares { background: var(--white); }
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.pilar {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: relative;
  transition: all 0.3s ease;
}
.pilar:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pilar-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 13px;
  font-weight: 900;
  color: var(--gray-200);
  letter-spacing: 0.05em;
}
.pilar:hover .pilar-num { color: var(--orange); }
.pilar-icon {
  font-size: 30px;
  margin-bottom: 14px;
}
.pilar h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.pilar p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ============================================
   8. COMO FUNCIONA
============================================ */
.funciona { background: var(--gray-50); }
.funciona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 48px 0;
}
.funciona-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.funciona-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.funciona-num {
  font-size: 56px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.funciona-icon-big {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 8px;
}
.funciona-card strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--gray-900);
  font-weight: 800;
  margin-bottom: 6px;
}
.funciona-card p {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============================================
   9. PROVAS SOCIAIS
============================================ */
.provas { background: var(--gray-900); color: var(--white); }
.provas-numeros {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .provas-numeros { grid-template-columns: repeat(4, 1fr); }
}
.numero strong {
  display: block;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.numero strong small { font-size: 0.5em; color: var(--gray-400); font-weight: 700; }
.numero span {
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.provas-subtitle {
  text-align: center;
  margin: 32px 0 20px;
  font-size: 16px;
  color: var(--gray-300);
}
/* Grid 2x2 — provas uniformes e centralizadas */
.provas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 40px;
}
@media (min-width: 640px) {
  .provas-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.prova {
  margin: 0;
  aspect-ratio: 1 / 1;
  background: var(--gray-800);
  border: 2px solid var(--gray-700);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.prova:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.prova img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
/* ============================================
   10. ANCORAGEM
============================================ */
.ancoragem { background: var(--white); text-align: center; }
.ancoragem .eyebrow, .ancoragem .section-title { display: block; }
.ancoragem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  margin: 48px 0;
}
@media (min-width: 880px) {
  .ancoragem-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }
}
.ancoragem-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: all 0.3s ease;
}
.ancoragem-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.ancoragem-icon { font-size: 40px; margin-bottom: 12px; }
.ancoragem-card h4 { font-size: 17px; margin-bottom: 6px; color: var(--gray-900); }
.ancoragem-card p { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
.ancoragem-preco {
  font-size: 28px;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}
.plus {
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  text-align: center;
}
.ancoragem-total {
  background: var(--gray-900);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}
.ancoragem-total span {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.ancoragem-total strong {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--orange);
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* ============================================
   11. OFERTA
============================================ */
.oferta {
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.oferta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border: 20px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.oferta .container { position: relative; z-index: 2; }
.oferta .eyebrow {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
}
.oferta-de {
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.oferta-de s { color: rgba(255,255,255,0.6); }
.oferta-titulo {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 32px;
}
.oferta-preco-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 720px) {
  .oferta-preco-wrap {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
}
.oferta-preco-principal {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--white);
}
.oferta-preco-principal .moeda {
  font-size: 32px;
  font-weight: 700;
}
.oferta-preco-principal .valor {
  font-size: clamp(72px, 12vw, 128px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.oferta-preco-principal .vista {
  font-size: 18px;
  font-weight: 600;
  align-self: flex-end;
  margin-bottom: 16px;
}
.oferta-divider {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.oferta-preco-secundario {
  background: rgba(0,0,0,0.18);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.oferta-preco-secundario strong {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
}
.oferta-preco-secundario small {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-top: 2px;
}
.oferta-economia {
  display: inline-block;
  background: var(--gray-900);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  margin-bottom: 36px;
  font-weight: 600;
}
.oferta-economia strong { color: var(--orange); }
.oferta-pagamento {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  color: rgba(255,255,255,0.95);
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   12. BÔNUS
============================================ */
.bonus {
  background: var(--gray-900);
  color: var(--white);
}
.bonus-destaque {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 48px 0 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.bonus-destaque::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border: 12px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}
.bonus-destaque-tag {
  display: inline-block;
  background: var(--gray-900);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.bonus-destaque h3 {
  font-size: clamp(24px, 3.5vw, 32px);
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.bonus-destaque ul {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.bonus-destaque ul li {
  padding: 8px 0;
  font-size: 16px;
  color: rgba(255,255,255,0.95);
}
.bonus-destaque ul li strong { color: var(--white); }
.bonus-valor {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 2;
}
.bonus-valor strong {
  background: var(--white);
  color: var(--orange);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 800;
  margin-left: 4px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.bonus-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s ease;
}
.bonus-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.bonus-tag {
  display: inline-block;
  background: rgba(255,104,3,0.16);
  color: var(--orange);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.bonus-card h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.bonus-card p {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 14px;
  line-height: 1.55;
}
.bonus-card .bonus-valor {
  color: var(--gray-400);
}
.bonus-card .bonus-valor strong {
  background: rgba(255,104,3,0.16);
  color: var(--orange);
}

.bonus-total {
  background: var(--gray-800);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  text-align: center;
}
@media (min-width: 640px) {
  .bonus-total {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}
.bonus-total > div {
  display: flex;
  flex-direction: column;
}
.bonus-total span {
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.bonus-total strong {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}
.bonus-total-valor { color: var(--orange) !important; }

/* ============================================
   13. GARANTIA
============================================ */
.garantia {
  background: var(--gray-50);
  padding: clamp(56px, 8vw, 100px) 0;
}
.garantia-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  max-width: 920px;
}
@media (min-width: 760px) {
  .garantia-inner { grid-template-columns: 200px 1fr; gap: 48px; }
}
.garantia-selo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.garantia-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.garantia-circle::after {
  content: '';
  position: absolute;
  inset: -16px;
  border: 2px dashed var(--orange);
  border-radius: 50%;
  opacity: 0.4;
}
.garantia-circle span {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.garantia-circle small {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.garantia-selo-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--orange);
  text-transform: uppercase;
  text-align: center;
}
.garantia-texto h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
  color: var(--gray-900);
}
.garantia-texto p {
  font-size: 16px;
  color: var(--gray-700);
  margin-bottom: 12px;
  line-height: 1.7;
}
.garantia-texto strong { color: var(--gray-900); }
.garantia-assinatura {
  margin-top: 20px;
  font-style: italic;
  color: var(--gray-500);
}

/* ============================================
   14. PARA QUEM
============================================ */
.para-quem { background: var(--white); }
.para-quem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 760px) {
  .para-quem-grid { grid-template-columns: 1fr 1fr; }
}
.para-quem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid var(--gray-100);
}
.para-quem-sim { border-color: #10b981; background: linear-gradient(180deg, #ecfdf5 0%, var(--white) 100%); }
.para-quem-nao { border-color: #ef4444; background: linear-gradient(180deg, #fef2f2 0%, var(--white) 100%); }
.para-quem-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--gray-900);
}
.para-quem-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.55;
}
.para-quem-card ul li:last-child { border-bottom: 0; }

/* ============================================
   15. EMOCIONAL
============================================ */
.emocional {
  background: var(--gray-900);
  color: var(--white);
  text-align: center;
  padding: clamp(72px, 10vw, 140px) 0;
}
.emocional-inner { max-width: 800px; margin: 0 auto; }
.emocional-titulo {
  font-size: clamp(36px, 6vw, 72px);
  margin-bottom: 32px;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.emocional-texto {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-300);
  margin-bottom: 40px;
}
.emocional-texto p { margin-bottom: 16px; }
.emocional-texto strong { color: var(--white); }
.emocional-quote {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--orange);
  font-style: italic;
  margin: 40px 0;
  padding: 0 24px;
  border-left: 4px solid var(--orange);
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.emocional-quote strong { color: var(--white); }

/* ============================================
   16. FAQ
============================================ */
.faq { background: var(--gray-50); }
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}
.faq-item {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.faq-item[open] {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 56px;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--orange);
  color: var(--white);
}
.faq-item summary:hover { color: var(--orange); }
.faq-item p {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ============================================
   17. CTA FINAL
============================================ */
.cta-final {
  background: var(--gray-900);
  color: var(--white);
  text-align: center;
  padding: clamp(72px, 10vw, 120px) 0;
}
.cta-final-inner { max-width: 720px; margin: 0 auto; }
.cta-final-titulo {
  font-size: clamp(28px, 4.5vw, 48px);
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.cta-final-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gray-300);
  margin-bottom: 40px;
}
.cta-final-sub strong { color: var(--orange); }
.cta-final-card {
  background: var(--white);
  color: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--orange);
}
.cta-final-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.cta-final-card ul {
  text-align: left;
  margin-bottom: 28px;
}
.cta-final-card ul li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.cta-final-card ul li:last-child { border-bottom: 0; }
.cta-final-preco {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}
.cta-final-preco strong {
  display: block;
  font-size: clamp(32px, 5vw, 44px);
  color: var(--orange);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.cta-final-preco span {
  display: block;
  font-size: 14px;
  color: var(--gray-700);
  margin-top: 4px;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: var(--black);
  color: var(--gray-400);
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
}
.footer-brand p {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
  color: var(--gray-500);
}
.footer-links h5, .footer-contato h5 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-links a, .footer-contato a {
  display: block;
  padding: 6px 0;
  color: var(--gray-400);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contato a:hover { color: var(--orange); }
.footer-social {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-legal {
  border-top: 1px solid var(--gray-800);
  padding: 20px 0;
  font-size: 12px;
  color: var(--gray-500);
}
.footer-legal .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-legal .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-links-legal a { margin: 0 4px; color: var(--gray-400); }
.footer-links-legal a:hover { color: var(--orange); }

/* ============================================
   STICKY BAR
============================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--gray-900);
  color: var(--white);
  padding: 12px 0;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
@media (min-width: 640px) {
  .sticky-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.sticky-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
}
.sticky-text strong { color: var(--orange); }

/* ============================================
   ANIMATIONS / REVEAL
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-delay { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn-pulse { animation: none; }
}
