/* ============================================================
   BRANDING DARK OVERRIDES
   Sobrescreve estilos do style.css para tema escuro premium
   Protocolo Liso Credivel
   ============================================================ */

/* ============================================================
   GLOBAL: Prevenir overflow horizontal em QUALQUER dispositivo
   ============================================================ */

html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* WRAPPER DEFINITIVO: envolve TODO o conteúdo */
.page-wrapper {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

/* Container: respeita max-width no desktop, overflow controlado */
.container {
  overflow: hidden;
}

/* Cada seção contém seus filhos */
.section, section {
  overflow: hidden !important;
  max-width: 100% !important;
}

/* Header: texto nunca corta */
.site-header .brand {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100vw - 40px);
}

/* Highlights nunca transbordam */
.highlight-purple,
.scribble-underline-wave,
.scribble-underline,
.font-switch {
  display: inline;
  white-space: normal !important;
}

/* Imagens e vídeos GLOBAIS */
img, video, iframe, svg {
  max-width: 100% !important;
}

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

body {
  font-family: 'Space Grotesk', sans-serif;
  color: #FFFFFF;
  background-color: #090014;
  overflow-x: hidden;
  max-width: 100vw;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
}

p {
  color: #FFFFFF;
}

/* Reset h2 margin-top para espaçamento consistente entre seções */
h2 {
  margin-top: 0;
}

/* Font Switch: Roboto Slab italic para palavras de impacto */
.font-switch {
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  color: #E0C9FE;
}

/* ============================================================
   ESPACAMENTO PADRAO ENTRE SECOES
   ============================================================ */

.section {
  padding: 17.5px 0;
  position: relative;
}

/* Eliminar margins extras nas bordas das seções */
.section > .container > :first-child {
  margin-top: 0;
}
.section > .container > :last-child {
  margin-bottom: 0;
}
.section > .container > :last-child > :last-child {
  margin-bottom: 0;
}

/* ============================================================
   GRADIENTES DE TRANSICAO ENTRE SECOES
   ============================================================ */

/* Hero -> Identificacao (removido, mesma cor de fundo) */

/* Identificacao -> Mecanismo */
#mecanismo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, #090014, transparent);
  pointer-events: none;
  z-index: 1;
}

/* Mecanismo -> Apresentacao */
#mecanismo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, transparent, #090014);
  pointer-events: none;
  z-index: 1;
}

/* Apresentacao -> Prova Social 2 */
#apresentacao::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, transparent, #18082C);
  pointer-events: none;
  z-index: 1;
}

/* Prova Social 2 -> Modulos */
#prova-social-2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, transparent, #19092E);
  pointer-events: none;
  z-index: 1;
}

/* Modulos -> Bonus */
#modulos::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, transparent, #160D20);
  pointer-events: none;
  z-index: 1;
}

/* Bonus -> Preco */
#bonus::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, transparent, #090014);
  pointer-events: none;
  z-index: 1;
}

/* Preco -> Bio */
#preco::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, transparent, #18082C);
  pointer-events: none;
  z-index: 1;
}

/* Bio -> FAQ */
#bio::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, transparent, #19092E);
  pointer-events: none;
  z-index: 1;
}

/* FAQ -> CTA Final */
#faq::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, transparent, #090014);
  pointer-events: none;
  z-index: 1;
}

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

.site-header {
  background: rgba(9, 0, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header .brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.header-scrolled {
  box-shadow: 0 2px 20px rgba(136, 54, 248, 0.15);
}

/* ============================================================
   BOTOES CTA (VERDE NEUTRO, TEXTO BRANCO)
   ============================================================ */

.cta-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(180deg, #61CE70 0%, #239232 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(35, 146, 50, 0.35);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(35, 146, 50, 0.50);
  background: linear-gradient(180deg, #61CE70 0%, #239232 100%);
}

.cta-btn::after {
  background: rgba(255, 255, 255, 0.15);
}

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

@keyframes ctaPulseDark {
  0%   { box-shadow: 0 4px 20px rgba(35, 146, 50, 0.35); }
  50%  { box-shadow: 0 4px 40px rgba(35, 146, 50, 0.65); }
  100% { box-shadow: 0 4px 20px rgba(35, 146, 50, 0.35); }
}

/* Focus states acessibilidade */
.cta-btn:focus-visible {
  outline: 3px solid #61CE70;
  outline-offset: 4px;
}

a:focus-visible {
  outline: 2px solid #8836F8;
  outline-offset: 2px;
}

/* ============================================================
   SECAO 1: HERO
   ============================================================ */

.hero {
  background: #090014;
}

.hero::before {
  background: radial-gradient(ellipse at 50% 0%, #401F6D 0%, transparent 70%);
}

.hero .subtitle {
  color: #E0C9FE;
}

.hero h1 {
  max-width: min(800px, 100%);
  margin: 0 auto 35px;
}

/* ============================================================
   SECAO 2: IDENTIFICACAO / PROBLEMA
   ============================================================ */

.problem-section {
  background: #090014;
  overflow: hidden;

}

/* Radial glow de profundidade na seção */
.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(176, 40, 221, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.problem-section > .container {
  position: relative;
  z-index: 1;
}

.problem-quote {
  color: #c69bfd;
  border-left: 3px solid #8836F8;
}

/* ---- IDENTIFICACAO: Headline ---- */
.id-headline {
  text-align: center;
  margin-bottom: 32px;
}

/* ---- IDENTIFICACAO: Paragrafos normais ---- */
.id-paragraph {
  color: #FFFFFF;
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.id-paragraph strong {
  color: #E0C9FE;
}

/* ---- IDENTIFICACAO: Grupo de citações ---- */
.id-quotes-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

/* ---- IDENTIFICACAO: Card de citação glassmorphism ---- */
.id-quote-card {
  position: relative;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #B028DD;
  border-radius: 12px;
  padding: 16px 24px;
  transition: border-left-color 0.3s ease, box-shadow 0.3s ease;
}

.id-quote-card:hover {
  box-shadow: 0 4px 20px rgba(176, 40, 221, 0.15);
}

/* Aspas decorativas */
.id-quote-deco {
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 3rem;
  font-family: 'Roboto Slab', serif;
  color: #B028DD;
  opacity: 0.3;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Texto da citação */
.id-quote-text {
  color: #E0C9FE;
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding-left: 20px;
}

/* ---- IDENTIFICACAO: Keyword SEQUÊNCIA ---- */
.id-keyword-sequence {
  display: inline-block;
  background: #8836F8;
  color: #FFFFFF;
  padding: 2px 12px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
  animation: keyword-glow 3.6s ease-in-out infinite;
}

/* ============================================================
   CSS @keyframes (substituem anime.js)
   ============================================================ */

@keyframes guarantee-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes number-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(136, 54, 248, 0.3); }
  50% { box-shadow: 0 0 35px rgba(136, 54, 248, 0.7); }
}

@keyframes border-opacity-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes quote-border-pulse {
  0%, 100% { border-left-color: rgba(176, 40, 221, 0.6); }
  50% { border-left-color: rgba(176, 40, 221, 1); }
}

@keyframes keyword-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(136, 54, 248, 0.3); }
  50% { box-shadow: 0 0 20px rgba(136, 54, 248, 0.6); }
}

.guarantee-badge {
  animation: guarantee-pulse 2s ease-in-out infinite;
}

.mec-number-glow {
  animation: number-glow 4.5s ease-in-out infinite;
}

.mec-number-glow:nth-child(2) { animation-delay: 0.3s; }
.mec-number-glow:nth-child(3) { animation-delay: 0.6s; }

.mec-card-border-glow {
  animation: border-opacity-pulse 6s ease-in-out infinite;
}

.mec-card-border-glow:nth-child(2) { animation-delay: 0.2s; }
.mec-card-border-glow:nth-child(3) { animation-delay: 0.4s; }

.id-quote-card {
  animation: quote-border-pulse 4.5s ease-in-out infinite;
}

.id-quote-card:nth-child(2) { animation-delay: 0.2s; }
.id-quote-card:nth-child(3) { animation-delay: 0.4s; }

/* ---- IDENTIFICACAO: Parágrafos de fechamento ---- */
.id-paragraph-closing {
  margin-top: 35px;
}

/* ---- IDENTIFICACAO: Responsivo ---- */
@media (min-width: 768px) {
  .id-quotes-group {
    gap: 14px;
    margin: 28px 0;
  }

  .id-quote-card {
    padding: 18px 28px;
  }

  .id-quote-deco {
    font-size: 3.5rem;
  }
}

/* ============================================================
   SECAO 3: MECANISMO UNICO
   ============================================================ */

.mechanism-section {
  background: linear-gradient(180deg, #1B1E34 0%, #090014 100%);
}

.section-alt {
  background: #18082C;
}

.mechanism-step {
  background: var(--glass-card);
  border-radius: 12px;
  border: 1px solid var(--glass-card-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Step number: fundo roxo solido, texto branco */
.step-number {
  background: #8836F8;
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
}

.step-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #FFFFFF;
}

.step-content p {
  color: #FFFFFF;
}

/* ============================================================
   SECAO 3: MECANISMO - CARDS PREMIUM
   ============================================================ */

/* Container dos steps premium */
.mec-steps-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}

/* Card premium com glassmorphism */
.mec-card-premium {
  position: relative;
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-left: none !important;
  border-radius: 16px !important;
  padding: 24px 24px 24px 28px !important;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  /* Estado inicial para animação GSAP */
  opacity: 0;
  transform: translateX(-40px) rotateY(-5deg) scale(0.95);
  transform-origin: left center;
}

.mec-card-premium:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 40px rgba(136, 54, 248, 0.25),
              0 0 60px rgba(136, 54, 248, 0.08);
}

/* Borda esquerda gradiente (pseudo-elemento) */
.mec-card-border-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #8836F8 0%, #B028DD 100%);
  border-radius: 16px 0 0 16px;
  opacity: 0.8;
}

/* Números com gradiente radial e glow */
.mec-number-glow {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px;
  border-radius: 50% !important;
  background: radial-gradient(circle at 40% 35%, #8836F8 0%, #B028DD 100%) !important;
  color: #FFFFFF !important;
  font-weight: 900 !important;
  font-size: 1.5rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(136, 54, 248, 0.4);
  flex-shrink: 0;
  /* Estado inicial para animação GSAP bounce */
  opacity: 0;
  transform: scale(0);
}

/* Step content dentro do card premium */
.mec-card-premium .step-content h3 {
  margin-bottom: 6px;
}

.mec-card-premium .step-content h3 .highlight-purple {
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
}

.mec-card-premium .step-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #FFFFFF;
}

/* Texto de fechamento */
.mec-closing-text {
  opacity: 0;
  transform: translateY(20px);
}

.mec-closing-text .highlight-purple {
  font-size: 1.0625rem;
}

/* Palavras stagger (estado inicial: invisíveis) */
.mec-stagger-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
}

/* Responsivo mec-card: movido para media queries finais */

/* ============================================================
   SECAO 4: APRESENTACAO DO PROTOCOLO
   ============================================================ */

.presentation-section {
  background: #090014;
}

.presentation-text .imagine-block p {
  color: #FFFFFF;
  font-weight: 500;
}

/* ============================================================
   SECAO 5: PROVA SOCIAL 2 / CAROUSEL
   ============================================================ */

.testimonials-section {
  background: #18082C;
}

/* Reset padding da before-after-section (style.css define 32px) */
.before-after-section {
  padding: 0;
}

.carousel-dot {
  background: #362A5A;
}

/* Dot ativo: roxo, NAO verde */
.carousel-dot.active {
  background: #8836F8;
}

/* ============================================================
   WHATSAPP CARDS (TEMA ESCURO)
   ============================================================ */

.whatsapp-card {
  background: var(--glass-card);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--glass-card-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.whatsapp-card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-avatar {
  background: linear-gradient(135deg, #8836F8, #B028DD);
  filter: blur(6px);
}

.whatsapp-name {
  color: #c69bfd;
  filter: blur(6px);
}

/* Depoimentos: Roboto Slab para narrativa */
.whatsapp-bubble {
  font-family: 'Roboto Slab', serif;
  background: rgba(136, 54, 248, 0.08);
  border-radius: 0 12px 12px 12px;
  color: #FFFFFF;
}

.whatsapp-bubble::before {
  border-color: transparent rgba(136, 54, 248, 0.08) transparent transparent;
}

.whatsapp-bubble .whatsapp-time {
  color: #B5B5B5;
}

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

.before-after-card {
  background: var(--glass-card);
  border-radius: 16px;
  border: 1px solid var(--glass-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.30);
}

/* ANTES: mesmo estilo do DEPOIS mas cores invertidas */
.ba-label-before,
.ba-overlay-label-before {
  background: #FFFFFF !important;
  color: #8836F8 !important;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 6px;
  left: 12px !important;
  right: auto !important;
}
.ba-label-before::after,
.ba-overlay-label-before::after {
  display: none;
}

/* DEPOIS: marcador roxo sólido, canto direito */
.ba-label-after,
.ba-overlay-label-after {
  background: #8836F8 !important;
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 6px;
  right: 12px !important;
  left: auto !important;
}

/* Fallback para labels sem classe especifica */
.ba-label,
.ba-overlay-label {
  background: linear-gradient(135deg, #8836F8, rgba(176, 40, 221, 0.7));
  color: #FFFFFF;
}

.ba-slider-handle {
  background: #FFFFFF;
  color: #8836F8;
}

/* ============================================================
   SECAO 6: MODULOS
   ============================================================ */

.modules-section {
  background: #19092E;
  position: relative;
}

.modules-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #401F6D 0%, transparent 70%);
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.modules-section .container {
  position: relative;
  z-index: 1;
}

.module-card {
  background: var(--glass-card);
  border-radius: 12px;
  border: 1px solid var(--glass-card-border);
  border-left: 4px solid #8836F8;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(136, 54, 248, 0.20);
  border-color: rgba(222, 218, 242, 0.12);
  border-left-color: #8836F8;
}

.module-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #FFFFFF;
}

.module-card p {
  color: #FFFFFF;
}

/* Precos dos modulos: verde neutro (valor monetario) */
.module-price {
  font-family: 'Space Grotesk', sans-serif;
  color: #2BB826;
  background: rgba(35, 146, 50, 0.10);
  border: 1px solid rgba(35, 146, 50, 0.20);
}

/* ============================================================
   SECAO 7: BONUS
   ============================================================ */

.bonus-section {
  background: #160D20;
}

.bonus-card {
  background: var(--glass-card);
  border-radius: 12px;
  border: 2px solid #B028DD;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

.bonus-badge {
  background: linear-gradient(135deg, #8836F8, #B028DD);
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
}

.bonus-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #FFFFFF;
}

/* Precos dos bonus: verde neutro (valor monetario) */
.bonus-price {
  font-family: 'Space Grotesk', sans-serif;
  color: #2BB826;
  font-weight: 700;
}

.bonus-card p {
  color: #FFFFFF;
}

.bonus-quote {
  font-style: italic;
  color: #c69bfd;
}

/* ============================================================
   SECAO 8: VALOR + GARANTIA + CTA
   ============================================================ */

.pricing-section {
  background: #090014;
  position: relative;
}

/* Overlay radial sutil roxo */
.pricing-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(176, 40, 221, 0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.pricing-section .container {
  position: relative;
  z-index: 1;
}

/* Estilos legado (ocultos, substituidos pelo pricing-card) */
.price-original {
  color: #B5B5B5;
}

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

.price-current {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(180deg, #61CE70 0%, #239232 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-installments {
  color: #FFFFFF;
}

.pricing-text p {
  color: #FFFFFF;
}

/* Garantia antiga: ocultar */
.guarantee-container {
  display: none;
}

/* ---- GARANTIA NOVO: Selo circular + texto ---- */
.guarantee-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin: 32px auto;
  max-width: 640px;
}

@media (min-width: 768px) {
  .guarantee-new {
    flex-direction: row;
    gap: 36px;
  }
}

/* Selo circular */
.guarantee-seal {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 30px rgba(136, 54, 248, 0.25));
}

/* Anel externo com texto SVG girando */
.guarantee-seal-ring {
  position: absolute;
  inset: 0;
  animation: sealSpin 20s linear infinite;
}

.guarantee-seal-text-svg {
  width: 100%;
  height: 100%;
}

@keyframes sealSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Centro do selo */
.guarantee-seal-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFFFFF 0%, #e8e0f0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15), inset 0 2px 4px rgba(0,0,0,0.1);
}

.guarantee-seal-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #090014;
  line-height: 1;
}

.guarantee-seal-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.5625rem;
  font-weight: 600;
  color: #090014;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guarantee-seal-label strong {
  font-weight: 900;
  font-size: 0.625rem;
}

.guarantee-seal-stars {
  font-size: 0.5rem;
  color: #090014;
  letter-spacing: 2px;
  margin-top: 2px;
}

/* Texto da garantia */
.guarantee-new-content {
  text-align: center;
}

@media (min-width: 768px) {
  .guarantee-new-content {
    text-align: left;
  }
}

.guarantee-new-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.guarantee-new-content p {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.7;
}

.risk-text {
  font-weight: 600;
  color: #FFFFFF;
}

/* ---- PRICING CARD GLASSMORPHISM ---- */
.pricing-card {
  max-width: 520px;
  margin: 35px auto 0;
  background: rgba(222, 218, 242, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* Texto introdutorio com preco riscado */
.pricing-card-intro {
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
  color: #B5B5B5;
  margin-bottom: 8px;
  line-height: 1.5;
}

.pricing-card-intro .text-strikethrough {
  color: #D61818;
  text-decoration: line-through;
  font-weight: 700;
}

/* Preco principal GIGANTE */
.pricing-card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(180deg, #61CE70 0%, #239232 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 0 0 0;
}

/* Parcelamento lilas claro */
.pricing-card-installments {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  color: #E0C9FE;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
}

/* A vista destaque (entre intro e preço gigante) */
.pricing-card-cash-highlight {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #FFFFFF;
  text-align: center;
  margin: 12px 0 2px;
  letter-spacing: 0.02em;
}

/* A vista, secundario */
.pricing-card-cash {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  color: #B5B5B5;
  margin-bottom: 0;
}

/* Icones de pagamento reais (SVG) */
.payment-icons-real {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.payment-text-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #B5B5B5;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 6px 16px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.payment-icons-real svg {
  width: 48px;
  height: 32px;
  fill: #B5B5B5;
  color: #B5B5B5;
  opacity: 0.7;
  flex-shrink: 0;
}

/* Selos de seguranca */
.security-seals {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
}

.security-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.security-seal-icon {
  width: 28px;
  height: 28px;
  fill: #61CE70;
  opacity: 0.8;
}

.security-seal-text {
  font-family: 'Roboto', sans-serif;
  font-size: 0.6875rem;
  color: #B5B5B5;
  text-align: center;
  line-height: 1.3;
}

/* Desktop: pricing card maior */
@media (min-width: 768px) {
  .pricing-card {
    padding: 48px 40px;
  }

  .pricing-card-price {
    font-size: 7rem;
  }

  .pricing-card-installments {
    font-size: 1.375rem;
  }
}

/* Ocultar payment-icons antigos (fallback) */
.payment-icons {
  display: none !important;
}

/* Payment icons tema escuro (legado) */
.payment-icon {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #B5B5B5;
  background: rgba(222, 218, 242, 0.10);
}

/* ============================================================
   SECAO 9: BIO
   ============================================================ */

.bio-section {
  background: #18082C;
}

.bio-section h2 {
  color: #FFFFFF;
}

.bio-text p {
  color: #FFFFFF;
}

figcaption {
  color: #B5B5B5;
  font-style: italic;
}

.bio-photos-grid img {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.40));
}

/* ============================================================
   SECAO 10: FAQ
   ============================================================ */

.faq-section {
  background: #19092E;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(136, 54, 248, 0.15);
}

.faq-question {
  background: var(--glass-card);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.faq-question:hover {
  background: rgba(222, 218, 242, 0.15);
}

.faq-question span {
  font-family: 'Space Grotesk', sans-serif;
  color: #FFFFFF;
}

/* FAQ icon: roxo, NAO verde */
.faq-icon {
  background: #8836F8;
  color: #FFFFFF;
}

.faq-answer-inner {
  background: rgba(222, 218, 242, 0.05);
}

.faq-answer-inner p {
  color: #FFFFFF;
}

.faq-question:focus-visible {
  outline: 2px solid #8836F8;
  outline-offset: 2px;
}

/* ============================================================
   SECAO 11: CTA FINAL
   ============================================================ */

.final-cta-section {
  background: #090014;
  position: relative;
  overflow: hidden;
}

/* Glow radial roxo (nao verde) */
.final-cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(136, 54, 248, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.final-cta-section .container {
  position: relative;
  z-index: 1;
}

.final-cta-section p {
  color: #FFFFFF;
}

/* Preco no CTA final: verde neutro (valor monetario) */
.final-cta-section .price-text {
  font-family: 'Space Grotesk', sans-serif;
  color: #2BB826;
  font-weight: 700;
}

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

.site-footer {
  background: #090014;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 0;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem !important;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-copy {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem !important;
  color: #B5B5B5;
  letter-spacing: 1px;
}

/* Botao flutuante removido */

/* ============================================================
   IMAGENS COM FADE PARA FUNDO ESCURO
   ============================================================ */

.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%);
}

/* ============================================================
   CLASSES DE DESTAQUE DE TEXTO
   ============================================================ */

/* Marcador roxo (SUBSTITUI highlight-green) */
.highlight-purple {
  background: #8836F8;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
}

/* Manter .highlight-green como fallback com estilo roxo */
.highlight-green {
  background: #8836F8;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
}

/* Texto destaque roxo (mais claro para melhor contraste em fundo escuro) */
.text-purple {
  color: #c69bfd;
  font-weight: 700;
}

/* text-neon agora e roxo claro (legibilidade em fundo escuro) */
.text-neon {
  color: #c69bfd;
  font-weight: 700;
}

.text-lilac-bold {
  color: #E0C9FE;
  font-weight: 700;
}

.text-strikethrough {
  color: #D61818;
  text-decoration: line-through;
}

.text-lilac-medium {
  color: #c69bfd;
  font-weight: 700;
}

/* ============================================================
   COLOR SWITCH - INTERCALACAO DE CORES EM TEXTOS
   ============================================================ */

.text-lilac {
  color: #E0C9FE;
}

.text-purple-light {
  color: #c69bfd;
  font-weight: 600;
}

/* ============================================================
   SUBLINHADO SIMPLES - DESTAQUE DE FRASE
   ============================================================ */

.text-underline {
  text-decoration: underline;
  text-decoration-color: #c69bfd;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.text-underline-subtle {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: #8836F8;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

/* ============================================================
   RABISCO ONDA LILÁS (estilo wave suave)
   ============================================================ */

.scribble-underline-wave {
  position: relative;
  display: inline-block;
  color: #E0C9FE;
}

.scribble-underline-wave::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -2%;
  width: 104%;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 14'%3E%3Cpath d='M2 7 Q30 0 60 7 Q90 14 120 7 Q150 0 180 7 Q210 14 240 7 Q270 0 298 7' fill='none' stroke='%23c69bfd' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* ============================================================
   RABISCO DECORATIVO - SVG SOB PALAVRAS DE DESTAQUE
   ============================================================ */

.scribble-underline {
  position: relative;
  display: inline-block;
}

.scribble-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -5%;
  width: 110%;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'%3E%3Cpath d='M2 8 Q25 2 50 8 Q75 14 100 6 Q125 -2 150 8 Q175 14 198 4' fill='none' stroke='%23c69bfd' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* ============================================================
   FALLBACK: Garantir visibilidade se GSAP não carregar
   ============================================================ */

.anim-fade-up,
.anim-fade-left,
.anim-fade-right,
.anim-scale-in,
.id-headline,
.id-paragraph,
.id-quote-card,
.module-card,
.bonus-card {
  opacity: 1 !important;
  transform: none !important;
}

.mec-card-premium {
  opacity: 1 !important;
  transform: none !important;
}

.mec-number-glow {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.mec-closing-text {
  opacity: 1 !important;
  transform: none !important;
}

.mec-stagger-word {
  opacity: 1 !important;
  transform: none !important;
}

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

@media (min-width: 768px) {
  .section {
    padding: 17.5px 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 17.5px 0;
  }

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

/* ============================================================
   TABLET: iPad (768px) e iPad Air (820px)
   Faixa intermediaria que precisa de ajustes especificos
   ============================================================ */

@media (min-width: 768px) and (max-width: 1023px) {

  .hero {
    padding-top: 90px !important;
    padding-bottom: 16px !important;
  }

  .hero h1 {
    margin-bottom: 16px !important;
  }

  .hero .subtitle {
    margin-bottom: 16px !important;
  }

  .hero-split-grid {
    margin-top: 24px !important;
    gap: 24px !important;
  }

  /* Carousel no tablet: cards menores para mostrar peek do proximo */
  .carousel-track {
    gap: 16px !important;
    padding: 8px 0 !important;
  }

  .carousel-track > .whatsapp-card {
    width: 65vw !important;
    max-width: 500px !important;
    flex-shrink: 0 !important;
  }

  /* Inline margins proporcionais para tablet */
  [style*="margin-top:32px"],
  [style*="margin-top: 32px"] {
    margin-top: 24px !important;
  }

  [style*="margin-top:28px"],
  [style*="margin-top: 28px"] {
    margin-top: 22px !important;
  }

  .before-after-section[style*="margin-top"] {
    margin-top: 16px !important;
  }

  /* Mecanismo: melhor espacamento */
  .mec-closing-text {
    margin-top: 24px !important;
  }

  /* Bonus grid: 2 colunas no tablet para melhor legibilidade */
  .bonus-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  /* Bio section: fotos grid com gap adequado */
  .bio-photos-grid {
    gap: 20px !important;
    max-width: 500px !important;
  }

  /* Garantia: row layout mas com gap menor */
  .guarantee-new {
    gap: 24px !important;
  }

  .guarantee-seal {
    width: 150px !important;
    height: 150px !important;
  }

  .guarantee-seal-center {
    width: 95px !important;
    height: 95px !important;
  }
}

/* ============================================================
   RESPONSIVIDADE MOBILE UNIVERSAL
   Compativel com: iPhone SE (320px), Android pequeno (360px),
   iPhone 12/13/14 (390px), Android medio (412px),
   iPhone 14 Pro Max (430px), iPad (768px), iPad Pro (1024px)
   ============================================================ */

/* ---- BASE MOBILE (ate 767px) ---- */
@media (max-width: 767px) {

  /* Prevenir overflow horizontal em QUALQUER dispositivo */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
  }

  /* Sem padding extra no body */
  body {
    padding-bottom: 0 !important;
  }

  .container {
    padding: 0 16px !important;
    max-width: 100% !important;
  }

  .section {
    padding: 17.5px 0 !important;
  }

  /* Tipografia mobile */
  h1 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }

  h2 {
    font-size: 1.375rem !important;
    line-height: 1.3 !important;
  }

  h3 {
    font-size: 1.125rem !important;
  }

  p {
    font-size: 0.9375rem !important;
    line-height: 1.65 !important;
  }

  /* TODOS os grids para 1 coluna */
  .hero-split-grid,
  .presentation-grid,
  .ba-side-by-side,
  .ba-side-by-side-square,
  .bio-photos-grid,
  .modules-grid,
  .bonus-grid,
  .before-after-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* Imagens e videos NUNCA transbordam */
  img, video, iframe {
    max-width: 100% !important;
    height: auto !important;
  }

  video {
    width: 100% !important;
  }

  /* Safari fix para backdrop-filter */
  .mec-card-premium,
  .whatsapp-card,
  .module-card,
  .bonus-card,
  .id-quote-card,
  .faq-question,
  .pricing-card,
  .guarantee-new {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  /* ---- Hero ---- */
  .hero {
    padding-top: 80px !important;
    padding-bottom: 16px !important;
  }

  .hero h1 {
    max-width: 100% !important;
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    margin-bottom: 12px !important;
  }

  .hero .subtitle {
    font-size: 0.9375rem !important;
    line-height: 1.65 !important;
    max-width: 100% !important;
    margin-bottom: 16px !important;
  }

  .hero-split-grid {
    gap: 20px !important;
    margin-top: 20px !important;
  }

  /* Reduzir inline margins no mobile */
  .hero h2[style*="margin-top"],
  .section h2[style*="margin-top"] {
    margin-top: 16px !important;
  }

  /* Inline margin-top reducao geral para mobile */
  [style*="margin-top:32px"],
  [style*="margin-top: 32px"] {
    margin-top: 20px !important;
  }

  [style*="margin-top:28px"],
  [style*="margin-top: 28px"] {
    margin-top: 18px !important;
  }

  [style*="margin-top:24px"],
  [style*="margin-top: 24px"] {
    margin-top: 16px !important;
  }

  .before-after-section[style*="margin-top"] {
    margin-top: 10px !important;
  }

  .hero-split-left img {
    max-width: 100% !important;
  }

  .hero-split-right h2 {
    text-align: center !important;
    font-size: 1.25rem !important;
    margin-bottom: 16px !important;
  }

  /* ---- CTAs ---- */
  .cta-btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px 20px !important;
    font-size: 0.875rem !important;
    box-sizing: border-box !important;
  }

  /* ---- WhatsApp cards (fora do carousel) ---- */
  .hero-split-right .whatsapp-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

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

  /* Carousel cards: controlados pelo carousel-track > * */
  .carousel-track .whatsapp-card {
    min-width: 0 !important;
  }

  .whatsapp-bubble {
    font-size: 0.875rem !important;
    padding: 12px 14px !important;
    line-height: 1.55 !important;
  }

  .whatsapp-name {
    font-size: 0.75rem !important;
  }

  /* ---- Carousel ---- */
  .carousel-container {
    overflow: hidden !important;
    max-width: calc(100vw - 32px) !important;
    margin: 0 auto !important;
  }

  .carousel-track {
    max-width: 100% !important;
    gap: 12px !important;
    padding: 8px 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  .carousel-track > * {
    width: 82vw !important;
    max-width: 82vw !important;
    min-width: 0 !important;
    flex-shrink: 0 !important;
  }

  /* Carousel no iPad: cards maiores para nao ficarem cortados */
  .carousel-track .whatsapp-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ---- Antes/Depois ---- */
  .ba-side-by-side,
  .ba-side-by-side-square {
    gap: 12px !important;
    padding: 12px !important;
  }

  .before-after-card {
    border-radius: 12px !important;
  }

  .ba-slider-container {
    max-width: 100% !important;
  }

  .ba-video-container video,
  .ba-side-by-side video {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* ---- Identificacao / Problema ---- */
  .id-headline {
    font-size: 1.375rem !important;
    margin-bottom: 20px !important;
  }

  .id-paragraph {
    font-size: 0.9375rem !important;
    line-height: 1.65 !important;
  }

  .id-quote-card {
    padding: 14px 16px !important;
  }

  .id-quote-text {
    font-size: 0.875rem !important;
    padding-left: 16px !important;
  }

  .id-quote-deco {
    font-size: 2.25rem !important;
    top: 4px !important;
    left: 8px !important;
  }

  .id-quotes-group {
    gap: 10px !important;
    margin: 16px 0 !important;
  }

  /* ---- Mecanismo ---- */
  .mec-steps-premium {
    gap: 16px !important;
    margin: 20px 0 !important;
  }

  .mec-card-premium {
    padding: 18px 16px 18px 20px !important;
    gap: 14px !important;
    flex-direction: row !important;
  }

  .mec-number-glow {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    font-size: 1.125rem !important;
  }

  .mec-card-premium .step-content h3 .highlight-purple {
    font-size: 0.9375rem !important;
  }

  .mec-card-premium .step-content p {
    font-size: 0.875rem !important;
  }

  .mec-closing-text p {
    font-size: 0.9375rem !important;
  }

  .mec-closing-text {
    margin-top: 20px !important;
  }

  /* Pricing text margin reducao */
  .pricing-text {
    margin: 20px auto !important;
  }

  /* CTA final margin */
  .final-cta-section .anim-scale-in {
    margin-top: 20px !important;
  }

  .final-cta-section p[style*="margin-bottom:24px"] {
    margin-bottom: 16px !important;
  }

  /* ---- Apresentacao ---- */
  .presentation-image img {
    max-width: 100% !important;
  }

  /* ---- Modulos ---- */
  .module-card, .bonus-card {
    padding: 16px !important;
  }

  .module-card-header {
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
  }

  .module-card h3 {
    font-size: 0.9375rem !important;
  }

  .module-price {
    margin-left: 0 !important;
  }

  /* ---- Bonus ---- */
  .bonus-card h3 {
    font-size: 0.9375rem !important;
    padding-right: 0 !important;
    margin-top: 24px !important;
  }

  /* ---- Pricing card ---- */
  .pricing-card {
    padding: 24px 16px !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    border-radius: 18px !important;
  }

  .pricing-card-cash-highlight {
    font-size: 1.75rem !important;
  }

  .pricing-card-intro {
    font-size: 0.9375rem !important;
  }

  .pricing-card-price {
    font-size: 3.5rem !important;
  }

  .pricing-card-installments {
    font-size: 1rem !important;
  }

  .pricing-text p {
    font-size: 0.9375rem !important;
  }

  /* ---- Payment icons ---- */
  .payment-icons-real {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  .payment-text-icon {
    font-size: 0.75rem !important;
    padding: 4px 12px !important;
  }

  /* ---- Security seals ---- */
  .security-seals {
    flex-wrap: wrap !important;
    gap: 16px !important;
  }

  .security-seal-icon {
    width: 22px !important;
    height: 22px !important;
  }

  .security-seal-text {
    font-size: 0.5625rem !important;
  }

  /* ---- Garantia selo ---- */
  .guarantee-seal {
    width: 130px !important;
    height: 130px !important;
  }

  .guarantee-seal-center {
    width: 85px !important;
    height: 85px !important;
  }

  .guarantee-seal-number {
    font-size: 2rem !important;
  }

  .guarantee-seal-label {
    font-size: 0.4375rem !important;
  }

  .guarantee-seal-label strong {
    font-size: 0.5rem !important;
  }

  .guarantee-seal-stars {
    font-size: 0.375rem !important;
  }

  .guarantee-seal-text-svg text {
    font-size: 11px !important;
  }

  .guarantee-new {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 24px auto !important;
  }

  .guarantee-new-content {
    text-align: center !important;
  }

  .guarantee-new-content h3 {
    font-size: 1.125rem !important;
  }

  .guarantee-new-content p {
    font-size: 0.9375rem !important;
  }

  /* ---- Bio fotos ---- */
  .bio-photos-grid {
    max-width: 100% !important;
  }

  .bio-text p {
    font-size: 0.9375rem !important;
  }

  /* ---- FAQ ---- */
  .faq-question {
    padding: 14px 16px !important;
  }

  .faq-question span {
    font-size: 0.875rem !important;
    padding-right: 12px !important;
  }

  .faq-icon {
    width: 24px !important;
    height: 24px !important;
    font-size: 1rem !important;
  }

  .faq-answer-inner {
    padding: 0 16px 14px !important;
  }

  .faq-answer-inner p {
    font-size: 0.875rem !important;
  }

  .faq-item {
    margin-bottom: 10px !important;
  }

  /* ---- CTA Final ---- */
  .final-cta-section p {
    font-size: 0.9375rem !important;
  }

  .final-cta-section p[style*="font-size:1.5rem"] {
    font-size: 1.25rem !important;
  }

  .risk-text {
    font-size: 1rem !important;
  }

  /* ---- Footer ---- */
  .footer-links {
    gap: 16px !important;
  }

  .footer-links a {
    font-size: 0.75rem !important;
  }

  /* ---- Highlight purple: nao quebrar ---- */
  .highlight-purple {
    white-space: normal !important;
    display: inline !important;
    padding: 1px 6px !important;
    font-size: inherit !important;
  }

  /* ---- Scribble: ajustar ---- */
  .scribble-underline-wave::after {
    height: 8px !important;
    bottom: -6px !important;
  }

  .scribble-underline::after {
    height: 8px !important;
    bottom: -6px !important;
  }
}

/* ---- MOBILE PEQUENO (ate 480px) ---- */
@media (max-width: 480px) {

  .container {
    padding: 0 12px !important;
  }

  h1 {
    font-size: 1.5rem !important;
  }

  h2 {
    font-size: 1.25rem !important;
  }

  .hero {
    padding-top: 64px !important;
    padding-bottom: 12px !important;
  }

  .hero .subtitle {
    font-size: 0.875rem !important;
    margin-bottom: 12px !important;
  }

  .hero h1 {
    margin-bottom: 10px !important;
  }

  .hero-split-grid {
    gap: 16px !important;
    margin-top: 16px !important;
  }

  /* Reducao extra de inline margins */
  [style*="margin-top:32px"],
  [style*="margin-top: 32px"] {
    margin-top: 16px !important;
  }

  [style*="margin-top:28px"],
  [style*="margin-top: 28px"] {
    margin-top: 14px !important;
  }

  [style*="margin-top:24px"],
  [style*="margin-top: 24px"] {
    margin-top: 12px !important;
  }

  [style*="margin-top:16px"],
  [style*="margin-top: 16px"] {
    margin-top: 10px !important;
  }

  .before-after-section[style*="margin-top"] {
    margin-top: 8px !important;
  }

  /* CTA mais compacto */
  .cta-btn {
    font-size: 0.8125rem !important;
    padding: 12px 16px !important;
  }

  /* WhatsApp cards */
  .whatsapp-bubble {
    font-size: 0.8125rem !important;
    padding: 10px 12px !important;
  }

  .whatsapp-card {
    padding: 14px !important;
  }

  .carousel-track > * {
    width: 90vw !important;
    max-width: 90vw !important;
  }

  /* Quote cards */
  .id-quote-card {
    padding: 10px 12px !important;
  }

  .id-quote-text {
    font-size: 0.8125rem !important;
    padding-left: 12px !important;
  }

  /* Garantia seal menor */
  .guarantee-seal {
    width: 110px !important;
    height: 110px !important;
  }

  .guarantee-seal-center {
    width: 72px !important;
    height: 72px !important;
  }

  .guarantee-seal-number {
    font-size: 1.75rem !important;
  }

  .guarantee-seal-label {
    font-size: 0.375rem !important;
  }

  .guarantee-seal-stars {
    font-size: 0.3125rem !important;
  }

  /* Pricing */
  .pricing-card {
    padding: 24px 12px !important;
    margin: 20px 4px 0 !important;
  }

  .pricing-card-cash-highlight {
    font-size: 1.5rem !important;
  }

  .pricing-card-price {
    font-size: 3rem !important;
  }

  .pricing-card-installments {
    font-size: 0.9375rem !important;
  }

  .payment-text-icon {
    font-size: 0.625rem !important;
    padding: 3px 8px !important;
  }

  /* Mec cards */
  .mec-card-premium {
    padding: 14px 12px 14px 16px !important;
    gap: 10px !important;
  }

  .mec-number-glow {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.25rem !important;
  }

  .mec-closing-text {
    margin-top: 16px !important;
  }

  /* Module/Bonus cards */
  .module-card {
    padding: 14px 12px !important;
  }

  .bonus-card {
    padding: 16px 12px !important;
  }

  /* FAQ */
  .faq-question {
    padding: 12px 12px !important;
  }

  .faq-question span {
    font-size: 0.8125rem !important;
  }

  /* Pricing text */
  .pricing-text {
    margin: 16px auto !important;
  }

  /* CTA final */
  .final-cta-section .anim-scale-in {
    margin-top: 16px !important;
  }

  .final-cta-section p[style*="margin-bottom:24px"] {
    margin-bottom: 12px !important;
  }

  /* Garantia: mais compacta */
  .guarantee-new {
    margin: 16px auto !important;
    gap: 16px !important;
  }
}

/* ---- iPhone SE e androids muito pequenos (ate 360px) ---- */
/* CORRECAO QA: breakpoint alterado de 375px para 360px.
   iPhone 12/13/14 (375px) nao deve receber estilos ultra-compactos. */
@media (max-width: 360px) {

  .container {
    padding: 0 10px !important;
  }

  h1 {
    font-size: 1.375rem !important;
  }

  h2 {
    font-size: 1.125rem !important;
  }

  p {
    font-size: 0.875rem !important;
  }

  .hero {
    padding-top: 56px !important;
    padding-bottom: 10px !important;
  }

  .hero h1 {
    font-size: 1.375rem !important;
    margin-bottom: 8px !important;
  }

  .hero .subtitle {
    font-size: 0.8125rem !important;
    margin-bottom: 10px !important;
  }

  .hero-split-grid {
    gap: 14px !important;
    margin-top: 14px !important;
  }

  .cta-btn {
    font-size: 0.75rem !important;
    padding: 12px 14px !important;
  }

  .whatsapp-card {
    width: 92vw !important;
  }

  .carousel-track > * {
    width: 92vw !important;
    max-width: 92vw !important;
  }

  .whatsapp-bubble {
    font-size: 0.75rem !important;
    padding: 8px 10px !important;
  }

  /* Margins inline minimos */
  [style*="margin-top:32px"],
  [style*="margin-top: 32px"],
  [style*="margin-top:28px"],
  [style*="margin-top: 28px"],
  [style*="margin-top:24px"],
  [style*="margin-top: 24px"] {
    margin-top: 10px !important;
  }

  [style*="margin-top:16px"],
  [style*="margin-top: 16px"] {
    margin-top: 8px !important;
  }

  .payment-text-icon {
    font-size: 0.6875rem !important;
    padding: 3px 8px !important;
  }

  .security-seals {
    gap: 12px !important;
  }

  .security-seal-text {
    font-size: 0.5625rem !important;
  }

  .pricing-card-cash-highlight {
    font-size: 1.375rem !important;
  }

  .guarantee-seal {
    width: 100px !important;
    height: 100px !important;
  }

  .guarantee-seal-center {
    width: 64px !important;
    height: 64px !important;
  }

  .guarantee-seal-number {
    font-size: 1.5rem !important;
  }

  .id-quote-text {
    font-size: 0.75rem !important;
  }

  .mec-number-glow {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    font-size: 1rem !important;
  }

  .mec-closing-text {
    margin-top: 12px !important;
  }

  /* Pricing text */
  .pricing-text {
    margin: 12px auto !important;
  }

  /* CTA final */
  .final-cta-section .anim-scale-in {
    margin-top: 14px !important;
  }

  /* Garantia */
  .guarantee-new {
    margin: 14px auto !important;
    gap: 14px !important;
  }
}

/* ============================================================
   CORRECOES QA: Responsividade cross-device
   Aplicadas em 2026-04-12 por Quinn (QA)
   ============================================================ */

/* ---- FIX 1: Carousel dots touch target (TODOS os viewports) ---- */
/* Os dots visuais ficam 10-12px mas a area tocavel deve ser >= 44px */
.carousel-dot {
  position: relative;
  min-width: 10px;
  min-height: 10px;
}

/* Area tocavel expandida via pseudo-elemento */
.carousel-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

/* ---- FIX 2: Textos muito pequenos no guarantee seal ---- */
/* Garantir legibilidade minima de 10px em qualquer dispositivo */
.guarantee-seal-label {
  font-size: 0.625rem !important; /* 10px */
  line-height: 1.3;
}

.guarantee-seal-label strong {
  font-size: 0.6875rem !important; /* 11px */
}

.guarantee-seal-stars {
  font-size: 0.5625rem !important; /* 9px min */
}

/* ---- FIX 3: Security seal text legibilidade ---- */
.security-seal-text {
  font-size: 0.6875rem !important; /* 11px */
  line-height: 1.4;
}

/* ---- FIX 4: H2 margins consistentes por viewport ---- */
/* Desktop (>= 1024px): h2 margins ja estao corretos, nao alterar */

/* Tablet (768-1023px): h2 mb padronizado em 25px */
@media (min-width: 768px) and (max-width: 1023px) {
  .problem-section h2,
  .mechanism-section h2,
  .presentation-text h2,
  .bio-section h2,
  .faq-section h2,
  .modules-section h2,
  .bonus-section h2 {
    margin-bottom: 25px !important;
  }

  .testimonials-section h2 {
    margin-bottom: 16px !important;
  }

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

/* Mobile (< 768px): h2 mb padronizado em 20px */
@media (max-width: 767px) {
  .problem-section h2,
  .mechanism-section h2,
  .presentation-text h2,
  .bio-section h2,
  .faq-section h2,
  .modules-section h2,
  .bonus-section h2 {
    margin-bottom: 20px !important;
  }

  .testimonials-section h2 {
    margin-bottom: 14px !important;
  }

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

/* Mobile pequeno (<= 360px): h2 mb padronizado em 16px */
/* CORRECAO QA: breakpoint de 375px -> 360px */
@media (max-width: 360px) {
  .problem-section h2,
  .mechanism-section h2,
  .presentation-text h2,
  .bio-section h2,
  .faq-section h2,
  .modules-section h2,
  .bonus-section h2 {
    margin-bottom: 16px !important;
  }

  .testimonials-section h2 {
    margin-bottom: 12px !important;
  }
}

/* ---- FIX 5: Guarantee seal tamanho minimo legivel ---- */
/* Mobile <= 360px: o seal ficava com label de 6px, ilegivel */
/* CORRECAO QA: breakpoint de 375px -> 360px */
@media (max-width: 360px) {
  .guarantee-seal {
    width: 110px !important;
    height: 110px !important;
  }

  .guarantee-seal-center {
    width: 72px !important;
    height: 72px !important;
  }

  .guarantee-seal-label {
    font-size: 0.5625rem !important; /* 9px, minimo legivel */
  }

  .guarantee-seal-label strong {
    font-size: 0.625rem !important; /* 10px */
  }

  .guarantee-seal-stars {
    font-size: 0.4375rem !important; /* 7px, decorativo aceito */
  }

  .guarantee-seal-number {
    font-size: 1.625rem !important;
  }

  .guarantee-seal-text-svg text {
    font-size: 10px !important;
  }
}

/* Mobile <= 480px: textos do seal garantia minima */
@media (max-width: 480px) {
  .guarantee-seal-label {
    font-size: 0.5625rem !important; /* 9px */
  }

  .guarantee-seal-label strong {
    font-size: 0.625rem !important; /* 10px */
  }

  .guarantee-seal-stars {
    font-size: 0.4375rem !important; /* 7px, decorativo */
  }

  .security-seal-text {
    font-size: 0.625rem !important; /* 10px */
  }
}

/* ---- FIX 6: Espaçamento proporcional sections mobile/tablet ---- */
/* Section padding: desktop=17.5px (35px total), tablet=14px (28px total), mobile=12px (24px total), small=10px (20px total) */

/* Tablet (768-1023px): 28px total entre secoes */
@media (min-width: 768px) and (max-width: 1023px) {
  .section {
    padding: 14px 0 !important;
  }

  /* Hero mantem padding proprio */
  .hero {
    padding-top: 90px !important;
    padding-bottom: 14px !important;
  }
}

/* Mobile (< 768px): 24px total entre secoes */
@media (max-width: 767px) {
  .section {
    padding: 12px 0 !important;
  }

  .hero {
    padding-top: 72px !important;
    padding-bottom: 12px !important;
  }
}

/* Mobile medio (381-480px): 24px total */
@media (min-width: 381px) and (max-width: 480px) {
  .section {
    padding: 12px 0 !important;
  }

  .hero {
    padding-top: 64px !important;
    padding-bottom: 12px !important;
  }
}

/* Mobile pequeno (<= 360px): 20px total entre secoes */
/* CORRECAO QA: breakpoint alterado de 380px para 360px.
   375px (iPhone 12/13/14) deve receber 12px (=24px gap),
   nao 10px (=20px gap). O 380px incluia erroneamente o iPhone. */
@media (max-width: 360px) {
  .section {
    padding: 10px 0 !important;
  }

  .hero {
    padding-top: 56px !important;
    padding-bottom: 10px !important;
  }
}

/* ---- FIX 7: "Site para computador" (980px viewport) ---- */
/* Quando celular ativa "Site para computador", renderiza em 980px */
/* Este viewport cai no range tablet (768-1023px), que ja esta coberto acima */

/* ---- FIX 8: Hero spacing proporcional por viewport ---- */
/* Desktop: h1 mb=35, sub mb=35, grid mt=35 (NAO ALTERAR) */
/* Tablet: h1 mb=24, sub mb=24, grid mt=28 */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero h1 {
    margin-bottom: 24px !important;
  }

  .hero .subtitle {
    margin-bottom: 24px !important;
  }

  .hero-split-grid {
    margin-top: 28px !important;
  }
}

/* Mobile (431-767px): h1 mb=16, sub mb=16, grid mt=20 */
@media (min-width: 431px) and (max-width: 767px) {
  .hero h1 {
    margin-bottom: 16px !important;
  }

  .hero .subtitle {
    margin-bottom: 16px !important;
  }

  .hero-split-grid {
    margin-top: 20px !important;
  }
}

/* Mobile medio (381-430px): h1 mb=12, sub mb=14, grid mt=18 */
@media (min-width: 381px) and (max-width: 430px) {
  .hero h1 {
    margin-bottom: 12px !important;
  }

  .hero .subtitle {
    margin-bottom: 14px !important;
  }

  .hero-split-grid {
    margin-top: 18px !important;
  }
}

/* Mobile pequeno (<= 380px): h1 mb=10, sub mb=12, grid mt=14 */
@media (max-width: 380px) {
  .hero h1 {
    margin-bottom: 10px !important;
  }

  .hero .subtitle {
    margin-bottom: 12px !important;
  }

  .hero-split-grid {
    margin-top: 14px !important;
  }
}
