/* Fontes carregadas no index.html */

/* ===== QUIZ OVERLAY ===== */
.quiz-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 10000;
  background: linear-gradient(160deg, #0A1A12 0%, #0D2818 30%, #1B4332 60%, #14532D 100%);
  display: flex; align-items: center; justify-content: center;
  overflow-y: auto; overflow-x: hidden;
  will-change: opacity, transform;
  transition: opacity 0.6s ease, transform 0.6s ease;
  contain: layout style;
}
.quiz-overlay.quiz-hidden {
  opacity: 0; transform: scale(1.05); pointer-events: none;
  will-change: auto;
}

.quiz-particles-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(82,183,136,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(116,198,157,0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(52,211,153,0.05) 0%, transparent 60%);
  animation: quizBgPulse 8s ease-in-out infinite alternate;
}
@keyframes quizBgPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.quiz-container {
  position: relative; z-index: 2; width: 100%; max-width: 620px;
  padding: 40px 28px; margin: auto;
}

/* Quiz Screens */
.quiz-screen {
  display: none;
  animation: quizFadeIn 0.5s ease forwards;
}
.quiz-screen.quiz-active { display: block; }

@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== INTRO SCREEN ===== */
.quiz-intro-badge {
  display: inline-block;
  padding: 8px 22px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(52,211,153,0.15); border: 1px solid rgba(52,211,153,0.3);
  color: #6EE7B7;
  margin-bottom: 28px;
  animation: quizBadgePulse 2s ease-in-out infinite;
}
@keyframes quizBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(52,211,153,0); }
}

.quiz-intro-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900; color: #fff;
  line-height: 1.15; margin-bottom: 20px;
}
.quiz-highlight {
  background: linear-gradient(135deg, #34D399, #6EE7B7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}

.quiz-intro-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 32px; max-width: 500px;
}

.quiz-intro-stats {
  display: flex; gap: 32px; margin-bottom: 36px; flex-wrap: wrap;
}
.quiz-intro-stat {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
  padding: 16px 24px;
}
.quiz-intro-stat-num {
  font-size: 1.4rem; font-weight: 800; color: #6EE7B7;
}
.quiz-intro-stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 2px;
}

.quiz-start-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 48px; border-radius: 60px; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: 1px;
  background: linear-gradient(135deg, #059669, #34D399);
  box-shadow: 0 8px 40px rgba(5,150,105,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden;
  animation: quizCtaPulse 2.5s ease-in-out infinite;
  will-change: transform;
}
.quiz-start-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 50px rgba(5,150,105,0.5), 0 0 100px rgba(52,211,153,0.2);
}
.quiz-start-btn::after {
  content: ''; position: absolute; top: -50%; left: -60%; width: 200%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: rotate(25deg); animation: btnShine 3s ease-in-out infinite;
}
@keyframes quizCtaPulse {
  0%, 100% { box-shadow: 0 8px 40px rgba(5,150,105,0.4); }
  50% { box-shadow: 0 8px 60px rgba(52,211,153,0.6), 0 0 100px rgba(52,211,153,0.2); }
}

.quiz-btn-arrow {
  font-size: 1.2rem; transition: transform 0.3s ease;
}
.quiz-start-btn:hover .quiz-btn-arrow,
.quiz-result-cta:hover .quiz-btn-arrow {
  transform: translateX(4px);
}

.quiz-intro-disclaimer {
  font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 16px;
}

/* ===== PROGRESS BAR ===== */
.quiz-progress-bar {
  width: 100%; height: 6px; border-radius: 10px;
  background: rgba(255,255,255,0.08); overflow: hidden; margin-bottom: 8px;
}
.quiz-progress-fill {
  width: 0%; height: 100%; border-radius: 10px;
  background: linear-gradient(90deg, #059669, #34D399, #6EE7B7);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width;
}
.quiz-progress-text {
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
}
.quiz-progress-text strong { color: #6EE7B7; }

/* ===== QUESTIONS ===== */
.quiz-question {
  display: none;
  animation: questionSlideIn 0.45s ease forwards;
}
.quiz-question.quiz-question-active { display: block; }

@keyframes questionSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.quiz-q-icon {
  font-size: 3rem; margin-bottom: 16px;
  animation: quizIconBounce 2s ease-in-out infinite;
}
@keyframes quizIconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.quiz-q-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3.5vw, 1.65rem);
  font-weight: 800; color: #fff;
  line-height: 1.3; margin-bottom: 28px;
}

/* ===== OPTIONS ===== */
.quiz-options { display: flex; flex-direction: column; gap: 14px; }

.quiz-option {
  display: flex; align-items: center; gap: 16px;
  width: 100%; padding: 18px 22px; border-radius: 16px; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500;
  color: rgba(255,255,255,0.85); text-align: left;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.quiz-option:hover {
  background: rgba(52,211,153,0.1);
  border-color: rgba(52,211,153,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.quiz-option:active {
  transform: scale(0.98);
}

.quiz-option.quiz-option-selected {
  background: rgba(52,211,153,0.15);
  border-color: #34D399;
  box-shadow: 0 0 25px rgba(52,211,153,0.2);
}
.quiz-option.quiz-option-selected .quiz-option-letter {
  background: linear-gradient(135deg, #059669, #34D399);
  color: #fff; border-color: transparent;
}

.quiz-option-letter {
  width: 38px; height: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}

.quiz-option-text { line-height: 1.5; }

/* ===== RESULT SCREEN ===== */
.quiz-result-analyzing {
  text-align: center; padding: 60px 0;
}
.quiz-spinner {
  width: 56px; height: 56px; border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.1);
  border-top-color: #34D399;
  animation: quizSpin 0.8s linear infinite;
  margin: 0 auto 20px;
}
@keyframes quizSpin {
  to { transform: rotate(360deg); }
}
.quiz-analyzing-text {
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  animation: quizTextPulse 1.5s ease-in-out infinite;
}
@keyframes quizTextPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.quiz-result-content {
  animation: quizResultReveal 0.6s ease forwards;
}
@keyframes quizResultReveal {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.quiz-result-badge {
  display: inline-block;
  padding: 8px 22px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.quiz-result-badge.badge-high {
  background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3);
  color: #FCA5A5;
}
.quiz-result-badge.badge-medium {
  background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3);
  color: #FCD34D;
}
.quiz-result-badge.badge-low {
  background: rgba(52,211,153,0.15); border: 1px solid rgba(52,211,153,0.3);
  color: #6EE7B7;
}

/* Result Meter */
.quiz-result-meter {
  margin-bottom: 32px;
}
.quiz-meter-bar {
  width: 100%; height: 14px; border-radius: 10px;
  background: rgba(255,255,255,0.08); overflow: hidden;
  position: relative;
}
.quiz-meter-fill {
  height: 100%; border-radius: 10px;
  width: 0%; transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.quiz-meter-fill.meter-low {
  background: linear-gradient(90deg, #10B981, #34D399);
  box-shadow: 0 0 20px rgba(16,185,129,0.5);
}
.quiz-meter-fill.meter-medium {
  background: linear-gradient(90deg, #F59E0B, #FBBF24);
  box-shadow: 0 0 20px rgba(245,158,11,0.5);
}
.quiz-meter-fill.meter-high {
  background: linear-gradient(90deg, #EF4444, #F87171);
  box-shadow: 0 0 20px rgba(239,68,68,0.5);
}
.quiz-meter-fill.meter-critical {
  background: linear-gradient(90deg, #DC2626, #EF4444);
  box-shadow: 0 0 20px rgba(220,38,38,0.5);
  animation: meterPulse 1.5s ease-in-out infinite;
}
@keyframes meterPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(220,38,38,0.5); }
  50% { box-shadow: 0 0 40px rgba(220,38,38,0.8); }
}

.quiz-meter-labels {
  display: flex; justify-content: space-between;
  margin-top: 8px; font-size: 0.7rem; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.5px;
}

.quiz-result-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800; color: #fff;
  line-height: 1.25; margin-bottom: 16px;
}

.quiz-result-desc {
  font-size: 1rem; color: rgba(255,255,255,0.6);
  line-height: 1.7; margin-bottom: 28px;
}

/* Result Items */
.quiz-result-items {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 36px;
}
.quiz-result-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 16px 18px;
  font-size: 0.92rem; color: rgba(255,255,255,0.8);
  animation: resultItemIn 0.4s ease forwards;
  opacity: 0; transform: translateX(-20px);
}
.quiz-result-item:nth-child(1) { animation-delay: 0.1s; }
.quiz-result-item:nth-child(2) { animation-delay: 0.2s; }
.quiz-result-item:nth-child(3) { animation-delay: 0.3s; }
@keyframes resultItemIn {
  to { opacity: 1; transform: translateX(0); }
}
.quiz-result-item-icon {
  font-size: 1.4rem; flex-shrink: 0;
}

/* Result CTA */
.quiz-result-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 48px; border-radius: 60px; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: 1px;
  background: linear-gradient(135deg, #059669, #34D399);
  box-shadow: 0 8px 40px rgba(5,150,105,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden;
  animation: quizCtaPulse 2.5s ease-in-out infinite;
  will-change: transform;
}
.quiz-result-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 50px rgba(5,150,105,0.5);
}
.quiz-result-cta::after {
  content: ''; position: absolute; top: -50%; left: -60%; width: 200%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: rotate(25deg); animation: btnShine 3s ease-in-out infinite;
}

.quiz-result-disclaimer {
  font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 16px;
}

/* ===== QUIZ RESPONSIVE ===== */
@media (max-width: 768px) {
  .quiz-container { padding: 32px 20px; }
  .quiz-intro-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .quiz-intro-sub { font-size: 0.95rem; }
  .quiz-intro-stats { gap: 14px; }
  .quiz-intro-stat { padding: 12px 18px; flex: 1; min-width: 130px; }
  .quiz-intro-stat-num { font-size: 1.2rem; }
  .quiz-start-btn { padding: 18px 36px; font-size: 0.95rem; }
  .quiz-q-icon { font-size: 2.4rem; }
  .quiz-q-title { font-size: clamp(1.1rem, 4vw, 1.4rem); margin-bottom: 22px; }
  .quiz-option { padding: 16px 18px; font-size: 0.88rem; gap: 12px; }
  .quiz-option-letter { width: 34px; height: 34px; font-size: 0.8rem; }
  .quiz-result-cta { padding: 18px 36px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .quiz-container { padding: 24px 16px; }
  .quiz-intro-title { font-size: 1.4rem; }
  .quiz-intro-sub { font-size: 0.88rem; }
  .quiz-start-btn { padding: 16px 28px; font-size: 0.88rem; width: 100%; justify-content: center; }
  .quiz-q-title { font-size: 1.05rem; }
  .quiz-option { padding: 14px 14px; font-size: 0.85rem; border-radius: 14px; }
  .quiz-option-letter { width: 30px; height: 30px; font-size: 0.75rem; border-radius: 10px; }
  .quiz-result-cta { padding: 16px 24px; font-size: 0.88rem; width: 100%; justify-content: center; }
  .quiz-result-title { font-size: 1.25rem; }
  .quiz-result-item { padding: 14px; font-size: 0.85rem; }
}

:root {
  --green-primary: #2D6A4F;
  --green-dark: #1B4332;
  --green-light: #52B788;
  --green-accent: #40916C;
  --green-glow: #74C69D;
  --beige: #FAF3E0;
  --beige-dark: #E8D5B7;
  --white: #FFFFFF;
  --dark: #1A1A2E;
  --dark-soft: #2D2D44;
  --text-dark: #2C2C2C;
  --text-muted: #6B7280;
  --gold: #D4A017;
  --gold-light: #F0D060;
  --red-urgency: #E63946;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-medium: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-strong: 0 12px 60px rgba(0,0,0,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--beige);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ===== UTILITY ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }

.badge {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
  color: var(--white); margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--green-dark); margin-bottom: 16px; line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem; color: var(--text-muted); max-width: 650px;
  margin: 0 auto 50px; line-height: 1.7;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--green-dark); color: var(--white); text-align: center;
  padding: 10px 20px; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.5px; position: relative; z-index: 100;
}
.topbar span { color: var(--gold-light); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(160deg, #0D1F17 0%, #1B4332 40%, #2D6A4F 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -30%; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(82,183,136,0.15) 0%, transparent 70%);
  border-radius: 50%; animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(116,198,157,0.1) 0%, transparent 70%);
  border-radius: 50%; animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.2) translate(30px, -20px); }
}

.hero-content { position: relative; z-index: 2; text-align: center; padding: 60px 20px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50px;
  padding: 8px 20px; font-size: 0.8rem; color: var(--green-glow);
  font-weight: 600; margin-bottom: 24px; letter-spacing: 0.5px;
}

.hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white); line-height: 1.15; max-width: 800px; margin: 0 auto 20px;
  font-weight: 900;
}
.hero h1 em {
  font-style: normal; color: var(--green-glow);
  text-shadow: 0 0 30px rgba(116,198,157,0.4);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.75);
  max-width: 600px; margin: 0 auto 32px; line-height: 1.7;
}

.hero-stats {
  display: flex; justify-content: center; gap: 40px; margin-bottom: 36px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-number {
  font-size: 1.6rem; font-weight: 800; color: var(--green-glow);
  text-shadow: 0 0 20px rgba(116,198,157,0.3);
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ===== VSL ===== */
.vsl-wrapper {
  max-width: 340px; margin: 40px auto 0; border-radius: 24px;
  overflow: hidden; position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,0.4);
  border: 6px solid #111;
  background: #000;
}
.vsl-wrapper .video-placeholder {
  position: relative; padding-bottom: 177.77%; height: 0;
}
.vsl-wrapper iframe, .vsl-wrapper video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 42px; border-radius: 60px; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700;
  color: var(--white); text-decoration: none; text-transform: uppercase;
  letter-spacing: 1px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  box-shadow: 0 8px 30px rgba(45,106,79,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: ctaPulse 2.5s ease-in-out infinite;
  will-change: transform;
}
.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(45,106,79,0.5);
}
.cta-btn::after {
  content: ''; position: absolute; top: -50%; left: -60%; width: 200%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: rotate(25deg); animation: btnShine 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(45,106,79,0.4); }
  50% { box-shadow: 0 8px 50px rgba(82,183,136,0.6); }
}
@keyframes btnShine {
  0% { left: -60%; }
  100% { left: 120%; }
}

.cta-btn-large {
  padding: 22px 56px; font-size: 1.15rem;
  background: linear-gradient(135deg, #1B7A42, #34D399);
  box-shadow: 0 10px 40px rgba(27,122,66,0.5);
}

.cta-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 12px; }

/* ===== SOCIAL PROOF COUNTER ===== */
.social-proof-bar {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm);
  padding: 14px 28px; margin-top: 30px; display: inline-flex;
  align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.7);
}
.social-proof-bar .dot {
  width: 8px; height: 8px; background: #34D399; border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ===== CARROSSEL DE RELATOS (IMAGENS) ===== */
.relatos-carousel-section {
  background: linear-gradient(160deg, #F0FFF4 0%, #E8F5E9 30%, #F8FFF5 100%);
  position: relative;
  overflow: hidden;
}
.relatos-carousel-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(82,183,136,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.relatos-carousel-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45,106,79,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.relatos-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.relatos-viewport {
  overflow: hidden;
  border-radius: 20px;
  flex: 1;
  cursor: grab;
  touch-action: pan-y;
}
.relatos-viewport:active {
  cursor: grabbing;
}

.relatos-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 10px 0;
}
.relatos-track.is-dragging {
  transition: none;
  cursor: grabbing;
}

.relato-slide {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}

.relato-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  aspect-ratio: auto;
}
.relato-img-wrapper:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 50px rgba(45,106,79,0.18), 0 4px 12px rgba(0,0,0,0.08);
}

.relato-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.relato-img-wrapper:hover .relato-img {
  transform: scale(1.03);
}

.relato-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(27,67,50,0.6) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.relato-img-wrapper:hover .relato-img-overlay {
  opacity: 1;
}

.relato-zoom-icon {
  font-size: 1.4rem;
  background: rgba(255,255,255,0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(10px);
  transition: transform 0.35s ease;
}
.relato-img-wrapper:hover .relato-zoom-icon {
  transform: translateY(0);
}

/* Setas de navegação */
.relatos-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--green-primary);
  background: var(--white);
  color: var(--green-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  z-index: 2;
}
.relatos-arrow:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(45,106,79,0.3);
}
.relatos-arrow:active {
  transform: scale(0.95);
}

/* Dots / Indicadores */
.relatos-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.relatos-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(45,106,79,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.relatos-dot:hover {
  background: rgba(45,106,79,0.4);
  transform: scale(1.2);
}
.relatos-dot.active {
  background: var(--green-primary);
  width: 28px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(45,106,79,0.3);
}

/* Contador */
.relatos-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 24px;
  background: rgba(45,106,79,0.08);
  border: 1px solid rgba(45,106,79,0.15);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--green-dark);
  font-weight: 500;
}
.relatos-counter strong {
  color: var(--green-primary);
  font-weight: 800;
}

/* ===== LIGHTBOX ===== */
.relato-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.relato-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.relato-lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: rotate(90deg) scale(1.1);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.lightbox-arrow:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== CARROSSEL RESPONSIVO ===== */
@media (max-width: 768px) {
  .relato-slide {
    flex: 0 0 calc(50% - 10px);
  }
  .relatos-arrow {
    width: 38px;
    height: 38px;
  }
  .relatos-arrow svg {
    width: 16px;
    height: 16px;
  }
  .relatos-carousel {
    gap: 10px;
  }
  .relatos-track {
    gap: 14px;
  }
  .relato-img-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 70%, rgba(27,67,50,0.4) 100%);
  }
  .lightbox-arrow {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 480px) {
  .relato-slide {
    flex: 0 0 calc(100% - 0px);
  }
  .relatos-arrow {
    display: none;
  }
  .relatos-carousel {
    gap: 0;
  }
  .relatos-track {
    gap: 12px;
  }
  .relatos-counter {
    font-size: 0.82rem;
    padding: 10px 18px;
  }
  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* ===== MINI CTA PLANO COMPLETO ===== */
.mini-cta-section {
  background: linear-gradient(160deg, #1B4332 0%, #0D2818 50%, #14532D 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.mini-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52,211,153,0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.mini-cta-box {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(116,198,157,0.25);
  border-radius: 24px;
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2), 0 0 80px rgba(116,198,157,0.08);
}
.mini-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--green-glow), var(--green-light));
  opacity: 0.6;
}

.mini-cta-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.mini-cta-left {
  flex: 1;
}

.mini-cta-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(240,208,96,0.15));
  border: 1px solid rgba(212,160,23,0.35);
  color: var(--gold-light);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mini-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

.mini-cta-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mini-cta-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.mini-cta-features .check {
  color: var(--green-glow);
  font-weight: 700;
  flex-shrink: 0;
}
.mini-cta-features strong {
  color: #fff;
}

.mini-cta-right {
  text-align: center;
  flex-shrink: 0;
  min-width: 240px;
}

.mini-cta-price-from {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.mini-cta-price-from s {
  color: rgba(255,255,255,0.4);
}

.mini-cta-price {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--green-glow);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 30px rgba(116,198,157,0.3);
}
.mini-cta-currency {
  font-size: 1.2rem;
  vertical-align: super;
  font-weight: 800;
}

.mini-cta-price-info {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}

.mini-cta-btn {
  display: inline-block;
  width: 100%;
  padding: 16px 28px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(135deg, #059669, #34D399);
  box-shadow: 0 8px 30px rgba(5,150,105,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: ctaPulse 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.mini-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(5,150,105,0.5), 0 0 60px rgba(52,211,153,0.15);
}
.mini-cta-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: rotate(25deg);
  animation: btnShine 3s ease-in-out infinite;
}

.mini-cta-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 10px;
}

/* Mini CTA Responsivo */
@media (max-width: 768px) {
  .mini-cta-section {
    padding: 48px 0;
  }
  .mini-cta-box {
    padding: 30px 24px;
    border-radius: 20px;
  }
  .mini-cta-content {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .mini-cta-left {
    text-align: center;
  }
  .mini-cta-features li {
    justify-content: center;
  }
  .mini-cta-right {
    min-width: unset;
    width: 100%;
  }
  .mini-cta-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .mini-cta-section {
    padding: 40px 0;
  }
  .mini-cta-box {
    padding: 24px 18px;
    border-radius: 16px;
  }
  .mini-cta-content {
    gap: 22px;
  }
  .mini-cta-title {
    font-size: 1.25rem;
  }
  .mini-cta-features li {
    font-size: 0.82rem;
  }
  .mini-cta-price {
    font-size: 2.8rem;
  }
  .mini-cta-btn {
    padding: 14px 24px;
    font-size: 0.82rem;
  }
}

/* ===== DOR SECTION ===== */
.pain-section {
  background: var(--white); position: relative;
}
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 40px;
}
.pain-card {
  background: #FFF9F0; border: 1px solid #F0E6D2; border-radius: var(--radius);
  padding: 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.pain-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-medium);
  border-color: var(--green-light);
}
.pain-card-icon { font-size: 2.2rem; margin-bottom: 12px; }
.pain-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.pain-card p { font-size: 0.92rem; color: var(--text-muted); }

.story-box {
  max-width: 700px; margin: 50px auto 0; padding: 36px;
  background: linear-gradient(135deg, #FFF9F0, #FFF5E6);
  border-left: 4px solid var(--green-primary); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem; color: var(--text-dark); line-height: 1.8; font-style: italic;
}

/* ===== BELIEF BREAK ===== */
.belief-section {
  background: linear-gradient(160deg, var(--green-dark), #0D1F17);
  color: var(--white); position: relative; overflow: hidden;
}
.belief-section::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.belief-content { position: relative; z-index: 1; }
.belief-section .section-title { color: var(--white); }

.belief-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 40px;
}
.belief-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius);
  padding: 30px; transition: var(--transition);
}
.belief-card:hover {
  background: rgba(255,255,255,0.1); transform: translateY(-4px);
  border-color: var(--green-glow);
}
.belief-card-icon { font-size: 2rem; margin-bottom: 14px; }
.belief-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--green-glow); }
.belief-card p { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ===== METHOD ===== */
.method-section { background: var(--beige); }
.method-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px; margin-top: 40px;
}
.method-step {
  background: var(--white); border-radius: var(--radius); padding: 32px 24px;
  text-align: center; position: relative; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06); transition: var(--transition);
}
.method-step:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-medium);
  border-color: var(--green-light);
}
.method-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; margin: 0 auto 18px;
}
.method-step h4 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.method-step p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== BENEFITS ===== */
.benefits-section { background: var(--white); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 40px;
}
.benefit-card {
  background: linear-gradient(135deg, #F0FFF4, #ECFDF5);
  border: 1px solid rgba(45,106,79,0.1); border-radius: var(--radius);
  padding: 30px; text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-medium); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 14px; }
.benefit-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.benefit-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(160deg, #F8FFF5, var(--beige));
}
.testimonials-carousel { overflow: hidden; position: relative; margin-top: 40px; }
.testimonials-track {
  display: flex; gap: 24px; transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 340px; background: var(--white); border-radius: var(--radius);
  padding: 30px; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft); flex-shrink: 0;
}
.testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
}
.testimonial-info h5 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }
.testimonial-info span { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 10px; }
.testimonial-text { font-size: 0.92rem; color: var(--text-dark); line-height: 1.7; font-style: italic; }
.carousel-controls { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--green-primary);
  background: transparent; color: var(--green-primary); cursor: pointer;
  font-size: 1.1rem; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: var(--green-primary); color: var(--white); }

/* ===== PRICING ===== */
.pricing-section {
  background: linear-gradient(160deg, var(--green-dark), #0D1F17);
  color: var(--white); position: relative; overflow: hidden;
}
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  max-width: 900px; margin: 0 auto; align-items: start;
}

.pricing-card {
  border-radius: 20px; padding: 36px; position: relative; overflow: hidden;
  transition: var(--transition);
}

/* Basic Plan */
.pricing-card.basic {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

/* Complete Plan */
.pricing-card.complete {
  background: linear-gradient(160deg, rgba(82,183,136,0.15), rgba(45,106,79,0.2));
  border: 2px solid var(--green-glow);
  box-shadow: 0 0 60px rgba(116,198,157,0.2), 0 0 120px rgba(116,198,157,0.1);
  transform: scale(1.05);
  animation: glowPlan 3s ease-in-out infinite alternate;
}

@keyframes glowPlan {
  0% { box-shadow: 0 0 40px rgba(116,198,157,0.15), 0 0 80px rgba(116,198,157,0.08); }
  100% { box-shadow: 0 0 80px rgba(116,198,157,0.3), 0 0 160px rgba(116,198,157,0.15); }
}

.plan-tag {
  position: absolute; top: 20px; right: -30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark); padding: 6px 40px; font-size: 0.7rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  transform: rotate(35deg);
}

.plan-header { margin-bottom: 24px; }
.plan-name { font-size: 1.1rem; font-weight: 600; opacity: 0.8; margin-bottom: 4px; }
.plan-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; }

.plan-price { margin-bottom: 24px; }
.price-from { font-size: 0.85rem; opacity: 0.6; text-decoration: line-through; }
.price-current { font-size: 2.8rem; font-weight: 900; color: var(--green-glow); }
.price-current .currency { font-size: 1.2rem; vertical-align: super; }
.price-installment { font-size: 0.82rem; opacity: 0.6; margin-top: 4px; }

.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  padding: 8px 0; font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features .check { color: var(--green-glow); font-weight: 700; flex-shrink: 0; }
.plan-features .cross { color: rgba(255,255,255,0.3); font-weight: 700; flex-shrink: 0; }

.plan-bonus {
  background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.3);
  border-radius: var(--radius-sm); padding: 16px; margin-bottom: 24px;
}
.plan-bonus h5 { color: var(--gold-light); font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; }
.plan-bonus ul { list-style: none; }
.plan-bonus li { font-size: 0.82rem; opacity: 0.8; padding: 3px 0; }
.plan-bonus li::before { content: '🎁 '; }

.plan-value-stack {
  background: rgba(255,255,255,0.05); border-radius: var(--radius-sm);
  padding: 16px; margin-bottom: 24px;
}
.plan-value-stack h5 { font-size: 0.85rem; font-weight: 700; color: var(--green-glow); margin-bottom: 10px; }
.value-item {
  display: flex; justify-content: space-between; padding: 4px 0;
  font-size: 0.82rem; opacity: 0.7;
}
.value-item .val-price { text-decoration: line-through; }
.value-total {
  display: flex; justify-content: space-between; padding-top: 10px;
  margin-top: 8px; border-top: 1px solid rgba(255,255,255,0.15);
  font-weight: 700; font-size: 0.95rem; color: var(--green-glow);
}

.plan-cta {
  width: 100%; padding: 16px; border-radius: 60px; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; transition: var(--transition);
  text-decoration: none; display: block; text-align: center;
}
.plan-cta.basic-cta {
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.plan-cta.basic-cta:hover { background: rgba(255,255,255,0.2); }
.plan-cta.complete-cta {
  background: linear-gradient(135deg, var(--green-primary), #34D399);
  color: var(--white); box-shadow: 0 8px 30px rgba(45,106,79,0.4);
  animation: ctaPulse 2.5s ease-in-out infinite;
}
.plan-cta.complete-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(45,106,79,0.5); }

/* ===== FAQ / OBJECTIONS ===== */
.faq-section { background: var(--white); }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--green-primary); box-shadow: var(--shadow-soft); }
.faq-question {
  padding: 20px 24px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 0.98rem; color: var(--text-dark);
  background: var(--white); transition: var(--transition);
}
.faq-question:hover { background: #F8FFF5; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px; font-size: 0.92rem; color: var(--text-muted); line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ===== GUARANTEE ===== */
.guarantee-section {
  background: linear-gradient(135deg, #F0FFF4, #ECFDF5);
}
.guarantee-box {
  max-width: 700px; margin: 0 auto; text-align: center;
  background: var(--white); border-radius: 20px; padding: 50px 40px;
  border: 2px solid var(--green-light); box-shadow: var(--shadow-medium);
}
.guarantee-shield { font-size: 4rem; margin-bottom: 16px; }
.guarantee-box h3 {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  color: var(--green-dark); margin-bottom: 16px;
}
.guarantee-box p { font-size: 1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* ===== URGENCY ===== */
.urgency-section {
  background: linear-gradient(135deg, var(--red-urgency), #C1121F);
  color: var(--white); text-align: center;
}
.urgency-section .section-title { color: var(--white); }
.countdown {
  display: flex; justify-content: center; gap: 16px; margin: 30px 0; flex-wrap: wrap;
}
.countdown-item {
  background: rgba(0,0,0,0.35);
  border-radius: var(--radius-sm); padding: 16px 22px; min-width: 80px;
  text-align: center;
}
.countdown-number { font-size: 2.2rem; font-weight: 900; display: block; }
.countdown-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }

.urgency-text { font-size: 1.05rem; opacity: 0.9; margin-bottom: 30px; }

/* ===== FINAL CTA ===== */
.final-cta-section {
  background: linear-gradient(160deg, var(--green-dark), #0D1F17);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
}
.final-cta-section .section-title { color: var(--white); }
.final-cta-section .section-subtitle { color: rgba(255,255,255,0.7); }

/* ===== FOOTER ===== */
.footer {
  background: #0A0F1A; color: rgba(255,255,255,0.5);
  text-align: center; padding: 30px 20px; font-size: 0.82rem;
}

/* ===== ANIMATION CLASSES ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== MOCKUP DO PRODUTO ===== */
.mockup-wrapper {
  max-width: 800px; margin: 40px auto; position: relative;
}
.product-mockup {
  width: 100%; height: auto; display: block; border-radius: 12px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
  transition: transform 0.5s ease;
}
.product-mockup:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.25));
}

/* ===== PERFORMANCE ===== */
.relatos-carousel-section, .pain-section, .belief-section, .method-section, .benefits-section,
.testimonials-section, .pricing-section, .faq-section, .guarantee-section,
.urgency-section, .final-cta-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
  contain: layout style paint;
}

/* GPU acceleration hints for animated elements */
.quiz-particles-bg, .quiz-spinner, .quiz-q-icon,
.hero::before, .hero::after {
  will-change: transform;
}
.quiz-progress-fill, .quiz-meter-fill {
  will-change: width;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 768px) {
  html { font-size: 15px; }

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

  /* Hero */
  .hero { min-height: auto; }
  .hero-content { padding: 40px 16px 50px; }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
  .hero h1 { font-size: 1.65rem; margin-bottom: 16px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-stats { gap: 20px; }
  .hero-stat-number { font-size: 1.3rem; }
  .hero-stat-label { font-size: 0.72rem; }
  .hero::before, .hero::after { display: none; }

  /* VSL */
  .vsl-wrapper { max-width: 300px; margin: 24px auto 0; border-width: 4px; border-radius: 20px; }

  /* CTA */
  .cta-btn { padding: 16px 28px; font-size: 0.88rem; letter-spacing: 0.5px; }
  .cta-btn-large { padding: 18px 32px; font-size: 0.95rem; }
  .cta-sub { font-size: 0.72rem; }

  /* Social proof */
  .social-proof-bar { padding: 10px 18px; font-size: 0.8rem; margin-top: 20px; }

  /* Pain */
  .pain-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .pain-card { padding: 20px 16px; }
  .pain-card-icon { font-size: 1.8rem; margin-bottom: 8px; }
  .pain-card h4 { font-size: 0.95rem; }
  .pain-card p { font-size: 0.85rem; }
  .story-box { padding: 24px; font-size: 0.95rem; margin-top: 36px; }

  /* Belief */
  .belief-cards { grid-template-columns: 1fr; gap: 16px; }
  .belief-card { padding: 24px; }

  /* Method */
  .method-steps { grid-template-columns: 1fr; gap: 16px; }
  .method-step { padding: 24px 20px; }

  /* Mockup */
  .mockup-wrapper { max-width: 100%; margin: 30px auto; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .benefit-card { padding: 22px 16px; }
  .benefit-icon { font-size: 2rem; margin-bottom: 10px; }
  .benefit-card h4 { font-size: 0.95rem; }
  .benefit-card p { font-size: 0.85rem; }

  /* Testimonials */
  .testimonial-card { min-width: 0; width: 100%; flex: 0 0 calc(100vw - 32px); padding: 22px; }
  .testimonial-text { font-size: 0.88rem; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; max-width: 420px; }
  .pricing-card { padding: 28px 22px; }
  .pricing-card.complete { transform: scale(1); order: -1; }
  .plan-title { font-size: 1.4rem; }
  .price-current { font-size: 2.4rem; }
  .plan-value-stack { padding: 14px; }
  .value-item { font-size: 0.78rem; }

  /* Guarantee */
  .guarantee-box { padding: 36px 24px; }
  .guarantee-shield { font-size: 3rem; }
  .guarantee-box h3 { font-size: 1.5rem; }
  .guarantee-box p { font-size: 0.92rem; }

  /* Countdown */
  .countdown { gap: 12px; }
  .countdown-item { min-width: 65px; padding: 12px 14px; }
  .countdown-number { font-size: 1.6rem; }

  /* FAQ */
  .faq-question { padding: 16px 18px; font-size: 0.92rem; }
  .faq-answer { font-size: 0.88rem; }

  /* Section titles */
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); margin-bottom: 12px; }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 36px; }
  .badge { font-size: 0.7rem; padding: 5px 14px; }
}

/* ===== RESPONSIVE — MOBILE SMALL ===== */
@media (max-width: 480px) {
  html { font-size: 14px; }

  .container { padding: 0 14px; }
  .section-padding { padding: 50px 0; }

  /* Hero */
  .hero-content { padding: 32px 12px 40px; }
  .hero h1 { font-size: 1.5rem; line-height: 1.25; }
  .hero-sub { font-size: 0.88rem; line-height: 1.6; }
  .hero-stats { gap: 16px; }
  .hero-stat-number { font-size: 1.15rem; }

  /* VSL */
  .vsl-wrapper { max-width: 260px; border-radius: 16px; border-width: 3px; }

  /* CTA */
  .cta-btn { padding: 14px 24px; font-size: 0.82rem; border-radius: 50px; }
  .cta-btn-large { padding: 16px 28px; font-size: 0.88rem; }

  /* Grids single column */
  .pain-grid, .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .pain-card { padding: 18px 14px; }
  .benefit-card { padding: 20px 14px; }

  /* Testimonials */
  .testimonial-card { min-width: 0; flex: 0 0 calc(100vw - 28px); padding: 18px; width: 100%; }
  .testimonial-avatar { width: 42px; height: 42px; font-size: 0.9rem; }
  .testimonial-info h5 { font-size: 0.88rem; }

  /* Cards text */
  .pain-card p, .belief-card p, .method-step p, .benefit-card p { font-size: 0.82rem; }

  /* Pricing */
  .pricing-card { padding: 24px 18px; border-radius: 16px; }
  .plan-tag { font-size: 0.65rem; padding: 5px 36px; top: 16px; right: -32px; }
  .plan-title { font-size: 1.3rem; }
  .price-current { font-size: 2.2rem; }
  .plan-cta { padding: 14px; font-size: 0.85rem; }
  .plan-bonus { padding: 12px; }
  .plan-bonus li { font-size: 0.78rem; }

  /* Guarantee */
  .guarantee-box { padding: 28px 18px; border-radius: 16px; }
  .guarantee-shield { font-size: 2.5rem; }
  .guarantee-box h3 { font-size: 1.3rem; }

  /* Countdown */
  .countdown-item { min-width: 58px; padding: 10px 12px; }
  .countdown-number { font-size: 1.4rem; }
  .countdown-label { font-size: 0.6rem; }

  /* Topbar */
  .topbar { font-size: 0.72rem; padding: 8px 12px; }

  /* Footer */
  .footer { padding: 20px 14px; font-size: 0.75rem; }
}

/* ===== RESPONSIVE — VERY SMALL ===== */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.35rem; }
  .hero-sub { font-size: 0.82rem; }
  .vsl-wrapper { max-width: 240px; }
  .cta-btn { padding: 13px 20px; font-size: 0.78rem; }
  .cta-btn-large { padding: 14px 22px; font-size: 0.82rem; }
  .section-title { font-size: 1.2rem; }
  .pricing-card { padding: 20px 14px; }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
  .pain-card:hover, .benefit-card:hover, .method-step:hover,
  .belief-card:hover, .product-mockup:hover {
    transform: none;
    box-shadow: var(--shadow-soft);
  }
  .benefit-card:hover::before { transform: scaleX(0); }
  .plan-cta.complete-cta:hover { transform: none; }
  .cta-btn:hover { transform: none; }
  .cta-btn { -webkit-tap-highlight-color: transparent; }
  * { -webkit-tap-highlight-color: transparent; }
}
