/* =========================================================
   MESTRA YUKI — Sales Page v3
   Font: Playfair Display + Inter
   Palette: Forest green + Gold + Cream
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* Backgrounds */
  --bg:         #FAF8F2;
  --bg-alt:     #F0ECE2;
  --white:      #FFFFFF;

  /* Dark (forest) */
  --dark:       #1B2E1B;
  --dark-2:     #263826;
  --dark-3:     #111D11;

  /* Text */
  --text:       #1A1A1A;
  --text-2:     #555555;
  --text-3:     #8A8A8A;

  /* Accent */
  --green:      #2A6B3F;
  --green-hover:#1E5530;
  --green-light:rgba(42,107,63,0.08);
  --gold:       #B8963E;
  --gold-soft:  #D4B86A;
  --gold-bg:    rgba(184,150,62,0.08);
  --amber:      #C97B1A;

  /* Utility */
  --border:     rgba(0,0,0,0.07);
  --border-2:   rgba(0,0,0,0.12);
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  /* Fonts */
  --heading: 'Playfair Display', Georgia, serif;
  --body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease:     cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.05), 0 12px 28px rgba(0,0,0,0.07);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.06), 0 20px 48px rgba(0,0,0,0.10);
  --shadow-xl: 0 8px 24px rgba(0,0,0,0.08), 0 32px 64px rgba(0,0,0,0.14);
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 80px;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }
.container.narrow { max-width: 820px; }
.center { text-align: center; }

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3 {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 { font-size: clamp(36px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4.5vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--green);
}

.section-head { margin-bottom: 56px; }
.section-head h2 { margin-bottom: 16px; }
.section-head.center { max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head.center .sub { margin-left: auto; margin-right: auto; }

.sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-2);
  line-height: 1.65;
  max-width: 60ch;
}
.sub.light { color: rgba(255,255,255,0.7); }
.sub strong { color: var(--text); font-weight: 600; }

.label {
  display: inline-block;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid rgba(42,107,63,0.15);
  border-radius: 999px;
  margin-bottom: 20px;
}
.label.light {
  color: var(--gold-soft);
  background: rgba(212,184,106,0.1);
  border-color: rgba(212,184,106,0.2);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(42,107,63,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  background: var(--green-hover);
  box-shadow: 0 6px 24px rgba(42,107,63,0.4);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark-3);
  box-shadow: 0 4px 16px rgba(184,150,62,0.3);
}
.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-sm { padding: 12px 24px; font-size: 13px; }
.btn-full { width: 100%; }

@media (max-width: 480px) {
  .btn-lg { padding: 16px 28px; font-size: 15px; }
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 90;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(250,248,242,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) { .nav-inner { padding: 0 40px; } }

.nav-logo {
  font-family: var(--heading);
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  color: var(--dark);
  margin-right: auto;
}

.nav-links {
  display: none;
  gap: 4px;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-alt); }

.nav-btn {
  padding: 9px 18px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-btn:hover { background: var(--green-hover); }
@media (max-width: 480px) { .nav-btn { font-size: 12px; padding: 8px 14px; } }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}
@media (max-width: 768px) { .hero { padding: 110px 0 56px; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.3fr 1fr; gap: 72px; } }

.hero-copy h1 { margin-bottom: 24px; }

.hero-lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-2);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 28px;
}
.hero-lead strong { color: var(--text); }
.hero-lead em { color: var(--green); font-style: italic; }

.badge {
  display: inline-block;
  padding: 8px 18px;
  background: var(--green-light);
  border: 1px solid rgba(42,107,63,0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  margin-bottom: 24px;
}

/* Check list */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-2);
}
.check-list li strong { color: var(--text); font-weight: 600; }
.check-list li::before {
  content: "✓";
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 32px;
}
.cta-micro {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  padding-left: 4px;
}
.cta-micro.light { color: rgba(255,255,255,0.5); }

/* Social proof mini */
.social-proof-mini {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 12px;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.sp-dots {
  display: flex;
}
.sp-dots img {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  object-fit: cover;
}
.sp-dots img:first-child { margin-left: 0; }
.social-proof-mini > span {
  font-size: 13px;
  color: var(--text-2);
}
.social-proof-mini strong {
  color: var(--green);
  font-weight: 700;
}

/* eBook visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 900px) { .hero-visual { max-width: 340px; margin: 0 auto; } }

.ebook-frame {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 10px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.ebook-frame img {
  border-radius: calc(var(--radius-xl) - 6px);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.ebook-frame:hover img { transform: scale(1.03); }

.ebook-tag {
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-3);
  text-transform: uppercase;
}

/* =========================================================
   PROBLEM SECTION
   ========================================================= */
.problem {
  padding: 120px 0;
  background: var(--white);
}
@media (max-width: 768px) { .problem { padding: 80px 0; } }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 600px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }

.pain-card {
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.pain-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.pain-card h3 {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0;
}
.pain-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}

.problem-callout {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 36px;
  background: var(--green-light);
  border: 1px solid rgba(42,107,63,0.12);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
}
.problem-callout p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}
.problem-callout p + p { margin-top: 12px; color: var(--text-2); }
.problem-callout strong { color: var(--green); font-weight: 700; }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--dark);
  padding: 48px 0;
}
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 600px) {
  .stats-grid { gap: 24px; }
  .stat-divider { display: none; }
  .stat { min-width: 100px; }
}

/* =========================================================
   PREVIEW MATERIAL (Carrossel Infinito)
   ========================================================= */
.preview-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}
@media (max-width: 768px) { .preview-section { padding: 64px 0; } }

.preview-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}
.preview-carousel-wrapper::before,
.preview-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.preview-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.preview-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.preview-track.infinite-track-preview {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: preview-scroll 45s linear infinite;
}
.preview-track.infinite-track-preview:hover {
  animation-play-state: paused;
}

@keyframes preview-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

.preview-card {
  flex: 0 0 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.preview-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--bg);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.preview-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-card span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  display: block;
}

/* =========================================================
   PROTOCOLS
   ========================================================= */
.protocols {
  padding: 120px 0;
  background: var(--bg);
}
@media (max-width: 768px) { .protocols { padding: 80px 0; } }

.proto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .proto-grid { grid-template-columns: repeat(3, 1fr); } }

.proto-card {
  position: relative;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.proto-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.proto-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), var(--shadow-md);
}

.proto-popular {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  border-radius: 999px;
  white-space: nowrap;
}

.proto-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.proto-card h3 {
  margin-bottom: 12px;
}

.proto-card > p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.proto-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.proto-list li {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}
.proto-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.proto-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-3);
  font-weight: 600;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  padding: 120px 0;
  background: var(--dark);
}
@media (max-width: 768px) { .testimonials { padding: 80px 0; } }

.testimonials h2 { color: #fff; }
.testimonials h2 em { color: var(--gold-soft); }

.testi-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.testi-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s var(--ease);
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.testi-header-tag {
  margin-bottom: 12px;
  display: flex;
}

.testi-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
}
.testi-tag.gold {
  color: var(--dark-3);
  background: var(--gold);
  border-color: var(--gold);
}

.testi-img-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.testi-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.testi-footer {
  margin-top: 14px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

/* Mid CTA */
.mid-cta {
  text-align: center;
  margin-top: 56px;
  padding: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .mid-cta {
    padding: 28px 16px;
    border-radius: var(--radius-lg);
  }
  .mid-cta .btn {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    white-space: normal;
    line-height: 1.35;
    text-align: center;
  }
}
.mid-cta-text {
  font-family: var(--heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}
.mid-cta-text em { font-style: italic; color: var(--gold-soft); }

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding: 120px 0;
  background: var(--white);
}
@media (max-width: 768px) { .about { padding: 80px 0; } }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.2fr; gap: 64px; } }

.about-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
}
.about-badge strong {
  font-family: var(--heading);
  font-style: italic;
  font-size: 15px;
  display: block;
}
.about-badge span { font-size: 11px; color: var(--text-3); }

.about-copy h2 { margin-bottom: 20px; }
.about-copy p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-copy p strong { color: var(--text); }

.about-copy blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  font-family: var(--heading);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
  line-height: 1.4;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.about-stats div {
  text-align: center;
  padding: 16px 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-stats strong {
  font-family: var(--heading);
  font-size: clamp(28px, 3vw, 36px);
  color: var(--green);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.about-stats span {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================================================
   OFFER
   ========================================================= */
.offer {
  padding: 120px 0;
  background: var(--bg);
}
@media (max-width: 768px) { .offer { padding: 80px 0; } }

.offer-card {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 0 auto;
}

.offer-top {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.offer-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) { .offer-body { grid-template-columns: 1.2fr 1fr; } }

.offer-left {
  padding: 40px 36px;
}
@media (max-width: 768px) { .offer-left { padding: 28px 24px; } }

.offer-left h3 {
  margin-bottom: 28px;
  font-size: clamp(22px, 3vw, 28px);
}

/* Value stack */
.value-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-item.bonus {
  background: var(--gold-bg);
  margin: 8px -12px 0;
  padding: 14px 12px;
  border-radius: var(--radius);
  border-bottom: none;
}

.vi-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item.bonus .vi-check {
  background: none;
  width: auto; height: auto;
  font-size: 18px;
}

.value-item div {
  flex: 1;
}
.value-item strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
}
.value-item span {
  font-size: 12px;
  color: var(--text-3);
}

.vi-price {
  font-size: 13px;
  color: var(--text-3);
  text-decoration: line-through;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 3px;
}

.value-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 2px dashed var(--border-2);
  font-size: 15px;
  color: var(--text-2);
}
.value-total strong {
  font-size: 18px;
  color: var(--text);
  text-decoration: line-through;
}

/* Offer price box */
.offer-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: 40px 36px;
}
@media (max-width: 768px) { .offer-right { padding: 36px 24px; } }

.offer-price-box {
  text-align: center;
  width: 100%;
  max-width: 360px;
}

/* Timer de Urgência na Oferta */
.urgency-timer-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 24px;
}
.ut-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}
.ut-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cd-item {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 54px;
  text-align: center;
}
.cd-item span {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-soft);
  display: block;
  line-height: 1;
}
.cd-item label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}
.cd-sep {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-soft);
}

.scarcity-badge-final {
  display: inline-block;
  background: rgba(201, 123, 26, 0.15);
  border: 1px solid rgba(201, 123, 26, 0.3);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.opb-from {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 8px;
}
.opb-from s { text-decoration: line-through; }

.opb-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  margin-bottom: 8px;
  line-height: 0.85;
}
.opb-coin {
  font-family: var(--heading);
  font-size: 28px;
  margin-top: 14px;
  margin-right: 4px;
}
.opb-value {
  font-family: var(--heading);
  font-size: clamp(72px, 10vw, 96px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.opb-cents {
  font-family: var(--heading);
  font-size: 28px;
  margin-top: 14px;
}

.opb-parcelas {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 28px;
}
.opb-parcelas strong { color: #fff; }

.trust-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.trust-row span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* =========================================================
   GUARANTEE
   ========================================================= */
.guarantee {
  padding: 100px 0;
  background: var(--white);
}
@media (max-width: 768px) { .guarantee { padding: 64px 0; } }

.guar-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 40px;
  border: 2px solid var(--green);
  border-radius: var(--radius-xl);
  background: var(--green-light);
}
@media (min-width: 768px) {
  .guar-box { flex-direction: row; text-align: left; gap: 40px; padding: 56px 48px; }
}
@media (max-width: 480px) { .guar-box { padding: 36px 24px; } }

.guar-number {
  font-family: var(--heading);
  font-size: clamp(80px, 14vw, 120px);
  font-weight: 800;
  color: var(--green);
  line-height: 0.85;
  flex-shrink: 0;
}

.guar-content h2 { margin-bottom: 16px; font-size: clamp(24px, 3vw, 32px); }
.guar-content p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}
.guar-content p + p { margin-top: 12px; }
.guar-content strong { color: var(--text); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 100px 0;
  background: var(--bg);
}
@media (max-width: 768px) { .faq { padding: 64px 0; } }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
}
.faq-icon {
  font-size: 20px;
  color: var(--green);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  padding: 120px 0;
  background: var(--dark);
  text-align: center;
}
@media (max-width: 768px) { .final-cta { padding: 80px 0; } }

.final-cta h2 { color: #fff; margin-bottom: 16px; }
.final-cta h2 em { color: var(--gold-soft); }

.final-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.final-price {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  margin-bottom: 28px;
}
.fp-old {
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.fp-new {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-soft);
}

.final-trust {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--dark-3);
  padding: 48px 0;
  text-align: center;
}
.footer-logo {
  font-family: var(--heading);
  font-style: italic;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 20px;
}
.footer-disc {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }

/* =========================================================
   STICKY BAR (MOBILE)
   ========================================================= */
.sticky {
  display: block;
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border-2);
  padding: 12px 20px;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transition: opacity 0.3s, transform 0.3s;
}
@media (min-width: 768px) { .sticky { display: none; } }

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

/* =========================================================
   LEGAL PAGES (PRIVACIDADE & TERMOS)
   ========================================================= */
.legal-page {
  padding: 140px 0 100px;
  background: var(--bg);
}
@media (max-width: 768px) { .legal-page { padding: 100px 0 64px; } }

.legal-header {
  text-align: center;
  margin-bottom: 48px;
}
.legal-header h1 {
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 48px);
}
.legal-header .sub {
  font-size: 14px;
  color: var(--text-3);
}

.legal-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 600px) { .legal-content { padding: 28px 20px; } }

.legal-block h2 {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0;
}

.legal-block p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}
.legal-block p + p { margin-top: 12px; }

.legal-block ul {
  margin: 14px 0 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-block ul li {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

