/* RESET & VARIABLES */
:root {
  --bg-main: #FFFFFF;
  --bg-light: #F8FAFC;
  --text-main: #0F172A;
  --text-muted: #475569;
  --brand-primary: #1E3A8A;
  --btn-bg: #2563EB;
  --btn-hover: #1D4ED8;
  --green: #16A34A;
  --border: #E2E8F0;
  
  --font-family: 'Inter', sans-serif;
  --spacing-sm: 16px;
  --spacing-md: 32px;
  --spacing-lg: 48px;
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px; /* Space for the fixed CTA */
  
  /* Proteções Anti-Clone */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container {
  padding: var(--spacing-lg) var(--spacing-sm);
  max-width: 480px;
  margin: 0 auto;
}

.bg-light {
  background-color: var(--bg-light);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-main);
}

.section-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* BUTTONS */
.btn {
  display: block;
  width: 100%;
  padding: 18px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  user-select: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-primary {
  background-color: var(--btn-bg);
  color: #FFFFFF;
}

.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.15);
  background-color: var(--btn-hover);
}

/* FIXED BOTTOM CTA */
.fixed-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  z-index: 999;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fixed-bottom-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.btn-fixed {
  max-width: 448px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

/* MICRO-INTERACTIONS */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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



.icon-check-green {
  color: var(--green);
  font-weight: bold;
  margin-right: 8px;
}

/* IDENTIFICAÇÃO */
.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-small {
  background-color: var(--bg-main);
  padding: 16px;
  border-radius: var(--border-radius);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}

.icon-x {
  color: #EF4444; /* Vermelho um pouco mais suave */
  margin-right: 12px;
  font-weight: bold;
  font-size: 14px;
}

/* MINDSET / VOCÊ NÃO PRECISA NASCER BONITO */
.marquee-swiper {
  width: 100%;
  overflow: hidden;
}

.marquee-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide.marquee-slide {
  width: 55%;
  max-width: 196px;
}

.before-after-wrapper.single {
  display: block;
}

.ba-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  background-color: var(--bg-light);
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(15, 23, 42, 0.85);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

/* VÍDEO DE TRANSFORMAÇÕES */
.video-marquee-swiper {
  width: 100%;
  overflow: hidden;
}

.video-marquee-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide.video-marquee-slide {
  width: 210px;
}

.video-wrapper {
  width: 100%;
  max-width: 210px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  aspect-ratio: 9/16;
}

.vertical-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BENEFÍCIOS & OUTCOMES */
.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.benefit-card {
  background-color: var(--bg-light);
  padding: 16px;
  border-radius: var(--border-radius);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
}

.outcomes-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--bg-light);
  padding: 24px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
}

.outcomes-list li {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
}

/* SWIPER CAROUSELS */
.mySwiper, .marquee-swiper, .video-marquee-swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 24px;
}
.swiper-slide {
  width: 280px !important;
  flex-shrink: 0;
}
.video-marquee-swiper .swiper-slide {
  width: 210px !important;
}
.snap-image {
  width: 100%;
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  display: block;
}

/* BÔNUS */
.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bonus-icon {
  font-size: 28px;
  background-color: var(--bg-main);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.bonus-content {
  text-align: left;
}

.bonus-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.bonus-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.4;
}

.bonus-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

.bonus-value s {
  color: var(--text-muted);
}

/* IMAGEM DOS 26 MÓDULOS */
.modules-image-wrapper {
  margin: 0 auto 16px auto;
  max-width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.modules-image {
  width: 100%;
  display: block;
  height: auto;
}

.inside-footer {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
}

/* OFERTA PREMIUM */
.pricing-card {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 32px 24px;
  color: #fff;
  position: relative;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.4);
  margin-bottom: 0;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  white-space: nowrap;
}

.price-stack {
  background-color: transparent;
  border: none;
  padding: 0;
  margin-bottom: 24px;
}

.stack-item {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 12px;
}

.stack-item span {
  color: #cbd5e1;
}

.stack-divider {
  height: 1px;
  background-color: #334155;
  margin: 16px 0;
}

.stack-total {
  font-size: 16px;
  font-weight: 700;
  color: #e2e8f0;
}

.stack-total s {
  color: #64748b;
}

.price-today {
  color: #cbd5e1;
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 600;
}

.price-value {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
  line-height: 1;
}

.btn-glow {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
  border: none;
}

.price-security {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 16px;
  font-weight: 500;
}

/* GARANTIA */
.pricing .container {
  padding-bottom: 0;
}

.guarantee {
  padding-top: 24px;
  padding-bottom: var(--spacing-md);
}

.guarantee .container {
  padding-top: 0;
  padding-bottom: 0;
}

.guarantee-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.guarantee-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-main);
}

.guarantee-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA FINAL */
.final-cta {
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-top: 1px solid var(--border);
}

.final-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--text-muted);
}

/* HOVER DESKTOP */
@media (hover: hover) {
  .btn-primary:hover {
    transform: scale(1.02);
    background-color: var(--btn-hover);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
  }
}

/* DOWNSELL MODAL */
.downsell-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.downsell-modal-overlay.active {
  display: flex;
  animation: fadeInModal 0.3s ease-out forwards;
}

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

.downsell-modal-content {
  position: relative;
  max-width: 400px;
  width: 100%;
  background-color: transparent;
  border-radius: 16px;
  transform: scale(0.95);
  animation: scaleInModal 0.3s ease-out forwards;
}

@keyframes scaleInModal {
  from { transform: scale(0.95); }
  to { transform: scale(1); }
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.2s;
  background: rgba(255, 255, 255, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-modal:hover {
  color: #ccc;
  background: rgba(255, 255, 255, 0.2);
}

.downsell-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.downsell-img:hover {
  transform: scale(1.02);
}

/* FAQ */
.faq {
  padding-bottom: var(--spacing-lg);
}

.faq-item {
  background-color: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 24px;
  margin-bottom: 16px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.faq-question::before {
  content: "Q:";
  color: var(--btn-bg);
  font-weight: 800;
  margin-right: 8px;
}

.faq-answer {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 24px;
}

/* MAIN HEADLINE RESPONSIVE */
.main-headline {
  font-size: clamp(20px, 6vw, 28px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.3;
  color: var(--text-main);
  word-wrap: break-word;
  padding: 0 4px;
}
