/* ============================================================
   PROTOCOLO LISO CREDÍVEL - ESTILOS COMPARTILHADOS
   ============================================================ */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.625;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: 2.25rem;
  line-height: 1.22;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.29;
}

h3 {
  font-size: 1.375rem;
  line-height: 1.36;
}

p {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--text2);
}

.text-highlight {
  color: var(--primary);
  font-weight: 700;
}

/* ============================================================
   LAYOUT / CONTAINER
   ============================================================ */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 17.5px 0;
}

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

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px 0;
  transition: all 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.header-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   BOTÕES CTA
   ============================================================ */

.cta-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 18px 40px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.35);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.45);
}

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

.cta-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Pulse animation */
.cta-btn-pulse {
  animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
  0% { box-shadow: 0 4px 20px rgba(22, 163, 74, 0.35); }
  50% { box-shadow: 0 4px 40px rgba(22, 163, 74, 0.6); }
  100% { box-shadow: 0 4px 20px rgba(22, 163, 74, 0.35); }
}

/* Shake animation on click */
@keyframes ctaShake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.cta-shake {
  animation: ctaShake 0.4s ease;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  padding-top: 100px;
  padding-bottom: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--bg-alt) 0%, transparent 70%);
  z-index: -1;
}

.hero h1 {
  max-width: 720px;
  margin: 0 auto 40px;
}

.hero .subtitle {
  max-width: 640px;
  margin: 0 auto 35px;
  font-size: 1.0625rem;
  color: var(--text2);
  line-height: 1.7;
}

.hero-image-wrapper {
  max-width: 420px;
  margin: 40px auto 0;
  position: relative;
}

.hero-image-wrapper img {
  border-radius: 16px;
  width: 100%;
}

/* CORREÇÃO 1: Hero + Prova Social lado a lado */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 35px;
}

.hero-split-left {
  display: flex;
  justify-content: center;
}

.hero-split-left img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
}

.hero-split-right h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.hero-split-right .whatsapp-card {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.hero-split-right .whatsapp-card + .whatsapp-card {
  margin-top: 20px;
}

/* Video wrapper (sem overlay de play) */

/* Aluna 2 lado a lado */
.ba-side-by-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
}

.ba-side-by-side > div {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.ba-side-by-side img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.ba-side-by-side video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Aluna 1 lado a lado quadrado */
.ba-side-by-side-square {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
}

.ba-side-by-side-square > div,
.ba-side-by-side-square > .ba-video-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.ba-side-by-side-square .ba-slider-container {
  aspect-ratio: 1 / 1;
}

.ba-side-by-side-square .ba-video-container {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
}

.ba-side-by-side-square .ba-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Video containers genéricos (substituem video-play-wrapper) */
.ba-video-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.ba-video-container video {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Bio fotos lado a lado */
.bio-photos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 24px auto;
  max-width: 600px;
}

.photo-pinned {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.photo-pinned::before {
  display: none;
}

.photo-pinned::after {
  display: none;
}

.bio-photos-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  transition: transform 0.4s ease;
}

.bio-photos-grid img:hover {
  transform: scale(1.03);
}

.bio-photos-grid .bio-photo-right {
  object-position: center 15%;
}

/* ============================================================
   IMAGEM COM DEGRADÊ FUMAÇA
   ============================================================ */

.img-smoke {
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at center, black 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 85% at center, black 50%, transparent 100%);
}

.img-smoke-soft {
  -webkit-mask-image: radial-gradient(ellipse 95% 90% at center, black 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 95% 90% at center, black 60%, transparent 100%);
}

/* CORREÇÃO 2: Efeito gradiente transparente nas bordas */
.img-fade-edges {
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at center, black 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at center, black 50%, transparent 100%);
}

/* ============================================================
   PROVA SOCIAL (CARROSSEL DE DEPOIMENTOS WHATSAPP)
   ============================================================ */

.testimonials-section {
  padding: 48px 0;
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 19px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 16px 0;
  max-width: 100%;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track > * {
  scroll-snap-align: center;
  flex-shrink: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 19px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* WhatsApp Bubble Style */
.whatsapp-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  width: 340px;
  max-width: 85vw;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.whatsapp-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.whatsapp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #94a3b8, #64748b);
  filter: blur(6px);
  flex-shrink: 0;
}

.whatsapp-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #075e54;
  filter: blur(6px);
  user-select: none;
}

.whatsapp-bubble {
  background: #DCF8C6;
  border-radius: 0 12px 12px 12px;
  padding: 14px 16px;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #1a1a1a;
}

.whatsapp-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 10px 0;
  border-color: transparent #DCF8C6 transparent transparent;
}

.whatsapp-bubble .whatsapp-time {
  font-size: 0.6875rem;
  color: #999;
  text-align: right;
  margin-top: 8px;
}

/* ============================================================
   SEÇÃO IDENTIFICAÇÃO / PROBLEMA
   ============================================================ */

.problem-section {
  padding: 48px 0;
}

.problem-section .container {
  max-width: 900px;
}

.problem-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.problem-quote {
  font-style: italic;
  color: var(--primary);
  font-size: 1.0625rem;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
  margin: 16px 0;
}

.problem-text p {
  margin-bottom: 16px;
}

/* ============================================================
   SEÇÃO MECANISMO ÚNICO
   ============================================================ */

.mechanism-section {
  padding: 48px 0;
}

.mechanism-section .container {
  max-width: 900px;
}

.mechanism-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.mechanism-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.mechanism-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 0.9375rem;
}

/* ============================================================
   SEÇÃO APRESENTAÇÃO DO PROTOCOLO
   ============================================================ */

.presentation-section {
  padding: 48px 0;
}

.presentation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.presentation-text h2 {
  margin-bottom: 24px;
}

.presentation-text p {
  margin-bottom: 16px;
}

.presentation-text .imagine-block {
  margin-top: 24px;
}

.presentation-text .imagine-block p {
  color: var(--text);
  font-weight: 500;
}

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

.presentation-image img {
  border-radius: 16px;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

/* ============================================================
   ANTES E DEPOIS
   ============================================================ */

.before-after-section {
  padding: 32px 0;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.before-after-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ba-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
}

.ba-slider-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-img-before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.ba-img-after {
  z-index: 0;
}

.ba-slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: white;
  z-index: 2;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.ba-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 800;
}

.ba-label {
  position: absolute;
  top: 12px;
  z-index: 4;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  background: linear-gradient(135deg, var(--primary), rgba(109, 40, 217, 0.6));
  backdrop-filter: blur(4px);
}

.ba-label-before {
  left: 12px;
}

.ba-label-after {
  right: 12px;
}

/* Labels de antes/depois para seções genéricas (Aluna 2 etc.) */
.ba-overlay-label {
  position: absolute;
  top: 12px;
  z-index: 4;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  background: linear-gradient(135deg, var(--primary), rgba(109, 40, 217, 0.6));
  backdrop-filter: blur(4px);
}

.ba-overlay-label-left {
  left: 12px;
}

.ba-overlay-label-right {
  right: 12px;
}

/* Video wrapper */
.video-wrapper {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  border-radius: 12px;
}

/* ============================================================
   MÓDULOS / O QUE ESTÁ INCLUSO
   ============================================================ */

.modules-section {
  padding: 48px 0;
}

.modules-section h2 {
  text-align: center;
  margin-bottom: 35px;
}

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

.module-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.module-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.module-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}

.module-price {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg-alt);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
}

.module-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================================
   BÔNUS
   ============================================================ */

.bonus-section {
  padding: 48px 0;
}

.bonus-section h2 {
  text-align: center;
  margin-bottom: 35px;
}

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

.bonus-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.bonus-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 0 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bonus-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  padding-right: 80px;
}

.bonus-price {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.bonus-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.bonus-quote {
  font-style: italic;
  color: var(--primary);
  font-size: 0.9375rem;
}

/* ============================================================
   VALOR + GARANTIA + CTA
   ============================================================ */

.pricing-section {
  padding: 48px 0;
  text-align: center;
}

.pricing-section h2 {
  margin-bottom: 0;
}

.price-stack {
  max-width: 560px;
  margin: 0 auto;
}

.price-original {
  font-size: 1.25rem;
  color: var(--text2);
  margin-bottom: 8px;
}

.price-original span {
  text-decoration: line-through;
}

.price-current {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}

.price-installments {
  font-size: 1rem;
  color: var(--text2);
  margin-bottom: 24px;
}

.pricing-text {
  margin-bottom: 32px;
}

.pricing-text p {
  margin-bottom: 12px;
}

/* Garantia */
.guarantee-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 28px 0;
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 2px solid #16a34a;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.1);
}

.guarantee-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #16a34a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f0fdf4;
  flex-shrink: 0;
}

.guarantee-badge .days {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #16a34a;
  line-height: 1;
}

.guarantee-badge .badge-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  color: #166534;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guarantee-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 8px;
  text-align: center;
}

.guarantee-content p {
  font-size: 0.9375rem;
  text-align: center;
}

.risk-text {
  font-weight: 600;
  color: var(--text);
  margin-top: 16px;
}

/* Payment Icons */
.payment-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.payment-icon {
  width: 52px;
  height: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 700;
  color: #64748b;
  background: white;
}

/* ============================================================
   BIO / QUEM É A RENATA OMENA
   ============================================================ */

.bio-section {
  padding: 48px 0;
}

.bio-section .container {
  max-width: 720px;
}

.bio-section h2 {
  text-align: center;
  margin-bottom: 35px;
}

.bio-text p {
  margin-bottom: 16px;
}

.bio-image {
  margin: 32px 0;
  text-align: center;
}

.bio-image img {
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.bio-image figcaption {
  font-size: 0.875rem;
  color: var(--text2);
  font-style: italic;
  margin-top: 12px;
}

.bio-image-final {
  margin-top: 32px;
  text-align: center;
}

.bio-image-final img {
  border-radius: 16px;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-section {
  padding: 48px 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 35px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-question {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
  transition: background 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  padding-right: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 24px 18px;
}

.faq-answer-inner p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

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

/* ============================================================
   CTA FINAL
   ============================================================ */

.final-cta-section {
  padding: 48px 0;
  text-align: center;
}

.final-cta-section .container {
  max-width: 640px;
}

.final-cta-section p {
  margin-bottom: 16px;
  font-size: 1.0625rem;
}

.final-cta-section .price-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* Botao flutuante removido */

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--text2);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* ============================================================
   ANIMAÇÕES BASE (para GSAP)
   ============================================================ */

.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.anim-fade-left {
  opacity: 0;
  transform: translateX(-40px);
}

.anim-fade-right {
  opacity: 0;
  transform: translateX(40px);
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.9);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (min-width: 640px) {
  .whatsapp-card {
    width: 380px;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 32px 0;
  }

  .container {
    padding: 0 40px;
  }

  .presentation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .modules-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bonus-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .before-after-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-split-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 960px;
    margin: 35px auto 0;
  }

  .hero-split-right h2 {
    text-align: left;
  }

  .hero-split-right .whatsapp-card {
    margin: 0;
  }

  .ba-side-by-side {
    grid-template-columns: 1fr 1fr;
  }

  .ba-side-by-side-square {
    grid-template-columns: 1fr 1fr;
  }

  .bio-photos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guarantee-container {
    flex-direction: row;
  }

  .guarantee-content h3,
  .guarantee-content p {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .section {
    padding: 40px 0;
  }

  .hero {
    padding-top: 120px;
  }
}

@media (max-width: 767px) {
  .bonus-card h3 {
    padding-right: 0;
    margin-top: 24px;
  }
}
