:root {
  /* Colors - Restaurados Exatamente do Manual de Identidade Visual */
  --azul-praia: #4CC0E0; /* Azul Praia Exato */
  --azul-praia-hover: #35B3D5;
  --azul-praia-dark: #197893; /* Azul Praia Escuro para Contraste Acessível */
  --azul-praia-light: rgba(76, 192, 224, 0.15);
  --azul-praia-medium: rgba(76, 192, 224, 0.25);
  --amarelo-areia: #FDC427; /* Amarelo Areia Exato */
  --amarelo-areia-hover: #E6B01F;
  --amarelo-areia-light: rgba(253, 196, 39, 0.2);
  --verde-palmeira: #23AA6A; /* Verde Palmeira Exato */
  --verde-palmeira-hover: #1E9E60;
  --verde-palmeira-light: rgba(35, 170, 106, 0.15);
  --vermelho-sunset: #E9463E; /* Vermelho Sunset Exato */
  --vermelho-sunset-light: rgba(233, 70, 62, 0.15);
  
  /* Textos Escuros para Contraste Máximo (Acessibilidade WCAG AA) */
  --cinza-suporte: #2A2A2A;
  --cinza-subtexto: #4A4A4A; /* Contraste AA para texto 14px */
  --verde-palmeira-dark: #157A4A; /* Contraste AA 4.5:1+ sobre fundo claro */
  --branco-puro: #FFFFFF;
  --preto-escuro: #1A1A1A;

  /* Typography */
  --font-main: 'Open Sans', sans-serif;

  
  /* Spacing */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;

  /* Border Radius */
  --radius-card: 24px;
  --radius-button: 30px;
  
  /* Shadows */
  --shadow-card: 0 12px 36px rgba(76, 192, 224, 0.12);
  --shadow-hover: 0 20px 48px rgba(76, 192, 224, 0.22);
  --shadow-button: 0 10px 24px rgba(76, 192, 224, 0.25);
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-main);
  color: var(--preto-escuro);
  background-color: #F7FCFE;
  line-height: 1.6;
  font-size: 18px;
  letter-spacing: 0.3px;
  max-width: 100%;
  overflow-x: clip;
}

p, li, span {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: #1A1A1A;
  text-wrap: balance;
}

@media (max-width: 768px) {
  p, li, span {
    font-size: 17px !important;
    line-height: 1.6 !important;
  }
}

/* Typography Base */
h1, h2, h3, h4 {
  color: var(--preto-escuro);
  font-weight: 700;
}

h1 {
  font-size: clamp(28px, 4vw, 38px); /* Reduzido de clamp(34px, 5.5vw, 48px) */
  line-height: 1.25;
  margin-bottom: var(--space-2);
  text-wrap: balance;
}

h2 {
  font-size: clamp(22px, 3.2vw, 30px); /* Reduzido de clamp(26px, 4vw, 36px) */
  line-height: 1.3;
  margin-bottom: var(--space-3);
  font-weight: 700;
  text-wrap: balance;
}

h3 {
  font-size: clamp(18px, 2.2vw, 22px); /* Reduzido de clamp(20px, 2.8vw, 24px) */
  line-height: 1.3;
  margin-bottom: var(--space-2);
  font-weight: 600;
  text-wrap: balance;
}

p {
  margin-bottom: var(--space-2);
  text-wrap: balance;
}

strong {
  font-weight: 700;
  color: var(--preto-escuro);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  position: relative;
  z-index: 5;
}

.section {
  padding: var(--space-10) 0 calc(var(--space-10) + 90px);
  position: relative;
}

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

.grid {
  display: grid;
  gap: var(--space-4);
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Animated Waves Component */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 4;
  pointer-events: none;
}

.wave-container svg {
  position: relative;
  display: block;
  width: 100%;
  height: 90px;
}

/* Parallax Wave Animation */
.parallax > use {
  animation: move-forever 20s cubic-bezier(.55, .5, .45, .5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 18s;
}

@keyframes move-forever {
  0% { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

/* Floating Animations */
@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes float-bubble {
  0% {
    transform: translateY(0) scale(0.6);
    opacity: 0;
  }
  15% {
    opacity: 0.55;
  }
  80% {
    transform: translateY(-60px) scale(1.1);
    opacity: 0.65;
  }
  88% {
    transform: translateY(-70px) scale(1.4);
    opacity: 0.7;
  }
  94% {
    transform: translateY(-75px) scale(2);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(0.6);
    opacity: 0;
  }
}

.animated-float {
  animation: float 6s ease-in-out infinite;
}

/* Pattern de Identidade Visual */
.pattern-bg {
  background-image: url('../images/pattern.png');
  background-repeat: repeat;
  background-size: 300px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.035; /* Muito sutil para não interferir na leitura */
  pointer-events: none;
  z-index: 1;
}

/* Bolhas de Água Interativas (Efeito Realista de Vidro/Água) */
.bubble-bg {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.45);
  will-change: transform, opacity;
  backface-visibility: hidden;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease-out;
}

/* Cores Vivas do Pattern (Glassmorphism) */
.bubble-azul {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 30%, rgba(76, 192, 224, 0.4) 70%, var(--azul-praia) 100%);
  box-shadow: inset 0 6px 12px rgba(255, 255, 255, 0.45), 0 4px 10px rgba(76, 192, 224, 0.2);
}

.bubble-amarelo {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.15) 30%, rgba(253, 196, 39, 0.4) 70%, var(--amarelo-areia) 100%);
  box-shadow: inset 0 6px 12px rgba(255, 255, 255, 0.5), 0 4px 10px rgba(253, 196, 39, 0.25);
}

.bubble-verde {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 30%, rgba(35, 170, 106, 0.4) 70%, var(--verde-palmeira) 100%);
  box-shadow: inset 0 6px 12px rgba(255, 255, 255, 0.45), 0 4px 10px rgba(35, 170, 106, 0.2);
}

.bubble-vermelho {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 30%, rgba(233, 70, 62, 0.4) 70%, var(--vermelho-sunset) 100%);
  box-shadow: inset 0 6px 12px rgba(255, 255, 255, 0.45), 0 4px 10px rgba(233, 70, 62, 0.2);
}

.bubble-bg:hover {
  transform: scale(1.2);
  filter: brightness(1.15);
}

.bubble-pop-effect {
  animation: bubble-pop 0.25s forwards ease-out !important;
}

@keyframes bubble-pop {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  40% {
    transform: scale(1.5);
    opacity: 0.4;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* CTAs / Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  min-height: 54px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
  text-align: center;
  gap: 10px;
  background-color: #23AA6A;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(35, 170, 106, 0.3);
}

.btn-primary, .btn-secondary, a.hotmart-fb {
  background-color: #23AA6A;
  color: #FFFFFF;
  min-height: 54px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(35, 170, 106, 0.3);
}

.btn-primary:hover, .btn-secondary:hover, a.hotmart-fb:hover, .btn:hover {
  background-color: #1E9E60;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(35, 170, 106, 0.45);
  transform: translateY(-2px) scale(1.01);
}

/* Cards */
.card {
  background: var(--branco-puro);
  border-radius: var(--radius-card);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(76, 192, 224, 0.15);
  gap: var(--space-2);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(76, 192, 224, 0.4);
}

.card-azul {
  background-color: var(--azul-praia);
  color: var(--branco-puro);
  border: none;
}
.card-azul h3, .card-azul strong {
  color: var(--branco-puro);
}
.card-azul .card-icon-container {
  background-color: rgba(255, 255, 255, 0.25);
  color: var(--branco-puro);
}

.card-verde {
  background-color: var(--verde-palmeira);
  color: var(--branco-puro);
  border: none;
}
.card-verde h3, .card-verde strong {
  color: var(--branco-puro);
}
.card-verde .card-icon-container {
  background-color: rgba(255, 255, 255, 0.25);
  color: var(--branco-puro);
}

.card-amarelo {
  background-color: var(--amarelo-areia);
  color: var(--preto-escuro);
  border: none;
}
.card-amarelo h3, .card-amarelo strong {
  color: var(--preto-escuro);
}
.card-amarelo .card-icon-container {
  background-color: rgba(0, 0, 0, 0.08);
  color: var(--preto-escuro);
}

.card-top-accent-yellow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--amarelo-areia);
}

.card-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background-color: var(--azul-praia-light);
  color: var(--azul-praia);
  flex-shrink: 0;
}

.card-top-accent-green .card-icon-container {
  background-color: var(--verde-palmeira-light);
  color: var(--verde-palmeira);
}

.card-top-accent-yellow .card-icon-container {
  background-color: var(--amarelo-areia-light);
  color: #B58400;
}

.card-icon-container svg {
  width: 28px;
  height: 28px;
}

/* Sections Styling */

/* Hero */
.hero {
  background-color: #D6F4FD; /* Cor chapada levemente azulada */
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: var(--space-6) 0 calc(var(--space-6) + 90px);
}

.hero .grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: var(--space-4);
}

.hero-content h1 span.wave-under {
  background-color: rgba(76, 192, 224, 0.25);
  padding: 0 4px;
  border-radius: 6px;
}

.hero-content p.subtitle {
  font-size: 18px;
  color: #222;
  margin-bottom: var(--space-3);
  line-height: 1.45;
}

.hero-bullets {
  list-style: none;
  margin-bottom: var(--space-4);
}

.hero-bullets li {
  margin-bottom: var(--space-2);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #111;
}

.hero-bullets li svg {
  color: var(--azul-praia);
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  height: 500px;
}

/* Blob gigante e suave em azul que se dissolve nas bordas */
.hero-image-decor {
  position: absolute;
  width: 460px;
  height: 460px;
  background-color: var(--azul-praia);
  opacity: 0.15;
  z-index: 1;
  animation: morph-blob 12s ease-in-out infinite alternate;
  pointer-events: none;
  filter: blur(40px);
}

@keyframes morph-blob {
  0% {
    border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    transform: rotate(0deg) scale(1);
  }
  33% {
    border-radius: 53% 47% 43% 57% / 51% 39% 61% 49%;
    transform: rotate(15deg) scale(0.95);
  }
  66% {
    border-radius: 42% 58% 57% 43% / 45% 57% 43% 55%;
    transform: rotate(-15deg) scale(1.05);
  }
  100% {
    border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
    transform: rotate(0deg) scale(1);
  }
}

.hero-image-wrapper {
  position: relative;
  width: 416px; /* Aumentado em 30% de 320px */
  height: 416px;
  border-radius: 50%;
  border: 8px solid var(--branco-puro);
  box-shadow: 0 15px 35px rgba(76, 192, 224, 0.35);
  overflow: hidden;
  z-index: 3;
}

/* Foto limpa e nítida sem blur/overlay */
.hero-image-wrapper::after {
  content: '';
  display: none;
}

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

/* Bolhas de ar do manual sobrepostas */
.hero-pattern-bubble {
  position: absolute;
  border-radius: 50%;
  border: 5px solid var(--branco-puro);
  box-shadow: 0 8px 20px rgba(26, 26, 26, 0.1);
  overflow: hidden; /* Corta o brilho nos limites circulares */
}

/* Efeito de Vidro/Brilho nas bolinhas */
.hero-pattern-bubble::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.08) 100%);
  box-shadow: inset 0 6px 12px rgba(255, 255, 255, 0.55), inset 0 -3px 6px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.bubble-green-lg, .bubble-green-md, .bubble-green-xs {
  background-color: var(--verde-palmeira);
}

.bubble-yellow-lg, .bubble-yellow-sm, .bubble-yellow-xs {
  background-color: var(--amarelo-areia);
}

.bubble-red-sm, .bubble-red-md {
  background-color: var(--vermelho-sunset);
}

/* Section 2: Problema */
.problema-section {
  background-color: var(--branco-puro);
}

.content-box {
  max-width: 850px;
  margin: 0 auto;
}

.content-box p {
  font-size: 19px;
  line-height: 1.7;
  color: #222;
  margin-bottom: var(--space-4);
  text-wrap: balance; /* Balanceamento de quebras de linha */
}

.accent-box {
  background-color: #EBF8FD; /* Cor sólida leve azul do manual */
  border: 3px solid var(--azul-praia);
  border-radius: 40px 15px 50px 20px / 20px 40px 25px 50px; /* Borda orgânica inicial */
  padding: 42px var(--space-4) var(--space-4); /* Aumentado padding superior para evitar overlap */
  margin-top: 0; /* Margem controlada pelo elemento pai */
  position: relative;
  text-align: left;
  box-shadow: 0 10px 25px rgba(76, 192, 224, 0.12);
  animation: card-wave 12s ease-in-out infinite alternate; /* Ondulação suave de todas as bordas */
}

@keyframes card-wave {
  0% {
    border-radius: 40px 15px 50px 20px / 20px 40px 25px 50px;
  }
  33% {
    border-radius: 25px 35px 30px 40px / 35px 25px 45px 30px;
  }
  66% {
    border-radius: 45px 20px 40px 35px / 25px 45px 30px 40px;
  }
  100% {
    border-radius: 20px 45px 25px 50px / 40px 20px 50px 25px;
  }
}

.accent-box-tag {
  position: absolute;
  top: -14px;
  left: 28px;
  background-color: var(--azul-praia);
  color: var(--preto-escuro);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(76, 192, 224, 0.25);
  border: 2.5px solid var(--branco-puro); /* Borda branca para destacar e combinar com as bolhas */
}

.accent-box p {
  line-height: 1.6;
  text-wrap: balance;
}

/* Section 3: Solução */
.solucao-section {
  background-color: #E8F9F1; /* Cor chapada verde clara */
}

.solucao-section h2 {
  color: #166B42; /* Verde Palmeira Escuro com contraste WCAG AA 4.85:1 */
  margin-bottom: var(--space-2);
}

/* Section 4: Como Funciona */
.passos-section {
  background-color: var(--amarelo-areia); /* Amarelo forte do manual (#FDC427) */
}

.passo-card {
  background: #FAFDFF;
  border: 1px solid rgba(76, 192, 224, 0.25);
  border-radius: var(--radius-card);
  padding: var(--space-4);
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.passo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--azul-praia);
}

.passo-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.passo-numero {
  background-color: var(--amarelo-areia);
  color: var(--preto-escuro);
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 26px;
  box-shadow: 0 6px 14px rgba(253, 196, 39, 0.4);
}

/* Section 5: Prova Social */
.depoimentos-section {
  background-color: #FFF9E3; /* Cor chapada amarela clara */
}

.depoimento-card {
  background: var(--branco-puro);
  padding: var(--space-4);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid rgba(253, 196, 39, 0.25);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.depoimento-texto {
  font-style: italic;
  margin-bottom: var(--space-2);
  font-size: 16px;
  position: relative;
  z-index: 2;
  color: #111;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
}

.autor-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--azul-praia);
  background-color: #D6F4FD;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-praia);
}

.autor-avatar svg {
  width: 30px;
  height: 30px;
}

.autor-info strong {
  display: block;
  color: var(--preto-escuro);
  font-size: 16px;
}

.autor-info span {
  font-size: 14px;
  color: var(--cinza-suporte);
}

.quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  color: var(--azul-praia);
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

.numeros-impacto {
  margin-top: var(--space-10);
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.numero-item {
  text-align: center;
  background: var(--branco-puro);
  padding: var(--space-3) var(--space-6);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(76, 192, 224, 0.2);
  min-width: 220px;
}

.numero-item h3 {
  font-size: 46px;
  color: var(--azul-praia-dark);
  margin-bottom: 4px;
}

/* Section 6: Oferta */
.oferta-section {
  background-color: var(--azul-praia); /* Azul chapado do manual (#4CC0E0) */
}

.oferta-box {
  background-color: var(--branco-puro);
  border: 3px solid var(--preto-escuro); /* Borda preta grossa combinando com o design */
  border-radius: 32px;
  padding: var(--space-6);
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 50px rgba(76, 192, 224, 0.2);
  position: relative;
  overflow: hidden;
}

.oferta-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: var(--amarelo-areia-light);
  border-radius: 50%;
  z-index: 1;
}

.oferta-lista {
  text-align: left;
  list-style: none;
  margin: var(--space-4) auto;
  max-width: 520px;
  z-index: 2;
  position: relative;
}

.oferta-lista li {
  margin-bottom: var(--space-2);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--preto-escuro);
  line-height: 1.4;
}

.oferta-lista li svg {
  color: var(--verde-palmeira);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.preco-antigo {
  text-decoration: line-through;
  color: var(--cinza-suporte);
  font-size: 20px;
  margin-top: var(--space-3);
}

.preco-novo {
  font-size: 60px;
  font-weight: 700;
  color: var(--verde-palmeira);
  margin: var(--space-1) 0;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(30, 158, 96, 0.15);
}

.garantia-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding: var(--space-4);
  background: rgba(30, 158, 96, 0.1);
  border-radius: var(--radius-card);
  border: 1px solid rgba(30, 158, 96, 0.25);
  text-align: left;
}

.garantia-box svg {
  width: 48px;
  height: 48px;
  color: var(--verde-palmeira);
  flex-shrink: 0;
}

/* Section 7: FAQ */
.faq-section {
  background-color: #F2FBFF;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--branco-puro);
  border-radius: var(--radius-card);
  margin-bottom: var(--space-2);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(76, 192, 224, 0.15);
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(76, 192, 224, 0.35);
}

.faq-question {
  padding: var(--space-3) var(--space-4);
  font-weight: 600;
  font-size: 17px;
  color: var(--preto-escuro);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question svg {
  color: var(--azul-praia);
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: var(--space-2);
}

.faq-answer {
  padding: 0 var(--space-4) var(--space-4);
  display: none;
  font-size: 16px;
  color: #222;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

/* Section 8: CTA Final */
.cta-final-section {
  background-color: var(--azul-praia-dark); /* Azul Praia Escuro com contraste WCAG AA 5.09:1 */
  color: var(--branco-puro);
  text-align: center;
  position: relative;
  overflow-x: clip;
}

.cta-final-section h2 {
  color: var(--branco-puro);
}

.cta-final-section p {
  color: rgba(255, 255, 255, 0.95);
  max-width: 650px;
  margin: 0 auto var(--space-4);
  font-size: 19px;
  line-height: 1.6;
}

.cta-final-section .btn {
  background-color: var(--amarelo-areia);
  color: var(--preto-escuro);
}

.cta-final-section .btn:hover {
  background-color: var(--amarelo-areia-hover);
  box-shadow: 0 12px 30px rgba(253, 196, 39, 0.5);
}

/* Footer */
footer {
  background-color: var(--preto-escuro);
  color: var(--branco-puro);
  padding: var(--space-6) 0;
  text-align: center;
  position: relative;
}

footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-6);
  }
  
  .hero-bullets li {
    justify-content: center;
    text-align: left;
  }
  
  .hero-image-container {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  
  .section, .hero {
    overflow-x: clip; /* Evita vazamento horizontal no mobile sem criar container de scroll vertical interno */
  }
  
  .container {
    padding: 0 var(--space-4); /* Aumentado um pouco para dar mais margem nas laterais */
  }
  
  .section {
    padding: var(--space-6) 0 calc(var(--space-6) + 40px); /* Ajuste de padding mais enxuto no mobile */
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr !important; /* Força grid de coluna única no mobile */
    gap: var(--space-4) !important;
  }
  
  /* Escala responsiva da imagem do Hero no mobile para evitar transbordamento */
  .hero-image-container {
    max-width: 290px !important;
    height: 290px !important;
  }
  .hero-image-decor {
    width: 270px !important;
    height: 270px !important;
  }
  .hero-image-wrapper {
    width: 250px !important;
    height: 250px !important;
  }
  
  /* Escala proporcional das bolinhas do Hero no mobile */
  .bubble-green-lg { width: 60px !important; height: 60px !important; }
  .bubble-yellow-lg { width: 75px !important; height: 75px !important; }
  .bubble-green-md { width: 50px !important; height: 50px !important; }
  .bubble-red-md { width: 45px !important; height: 45px !important; }
  .bubble-yellow-sm { width: 38px !important; height: 38px !important; }
  .bubble-red-sm { width: 32px !important; height: 32px !important; }
  .bubble-yellow-xs { width: 25px !important; height: 25px !important; }
  .bubble-green-xs { width: 18px !important; height: 18px !important; }
  
  /* Mobile Waves Fix: Desabilitar animações pesadas e simplificar visualização */
  .parallax > use {
    animation: none;
  }
  
  .parallax > use:nth-child(1),
  .parallax > use:nth-child(2),
  .parallax > use:nth-child(3) {
    display: none; /* Esconder ondas duplicadas para evitar quebras de renderização */
  }
  
  .wave-container svg {
    height: 40px; /* Onda mais rasa no mobile para não cortar conteúdo */
  }
  
  .wave-container {
    bottom: -1px;
  }

  /* Headline Mobile UX */
  .hero-content h1 {
    font-size: clamp(24px, 5.5vw, 28px) !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
  }

  /* CTA Buttons Touchtarget for Mobile */
  .btn, a.btn, .btn-primary, .btn-secondary, a.hotmart-fb {
    min-height: 54px !important;
    padding: 16px 24px !important;
    border-radius: 8px !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    background-color: #23AA6A !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(35, 170, 106, 0.3) !important;
    letter-spacing: 0.5px !important;
  }
}

@media (min-width: 769px) {
  .duas-escolhas-grid {
    flex-direction: row !important;
  }
  .duas-escolhas-grid > div {
    flex: 1;
  }
}

/* ==========================================================================
   Módulos Accordion Estilo Fundo do Mar (Premium & Lúdico)
   ========================================================================== */
.modulo-accordion {
  margin-bottom: var(--space-3);
  background: var(--branco-puro);
  border: 3px solid var(--preto-escuro);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 0 var(--preto-escuro);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modulo-accordion:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 var(--preto-escuro);
}

.modulo-accordion-header {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.modulo-accordion-header h3 {
  font-size: 15px;
  margin: 0;
  flex-grow: 1;
  text-align: left;
  line-height: 1.4;
  font-weight: 700;
}

.header-azul {
  background-color: #EBF8FD;
  border-bottom: 3px solid var(--preto-escuro);
}
.header-azul h3 {
  color: #1A73E8;
}
.header-azul .modulo-badge {
  background-color: var(--azul-praia);
  color: var(--branco-puro);
  border: 1.5px solid var(--preto-escuro);
}

.header-verde {
  background-color: #E8F9F1;
  border-bottom: 3px solid var(--preto-escuro);
}
.header-verde h3 {
  color: var(--verde-palmeira);
}
.header-verde .modulo-badge {
  background-color: var(--verde-palmeira);
  color: var(--branco-puro);
  border: 1.5px solid var(--preto-escuro);
}

.header-amarelo {
  background-color: #FFF9E3;
  border-bottom: 3px solid var(--preto-escuro);
}
.header-amarelo h3 {
  color: #B58400;
}
.header-amarelo .modulo-badge {
  background-color: var(--amarelo-areia);
  color: var(--preto-escuro);
  border: 1.5px solid var(--preto-escuro);
}

.modulo-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.modulo-chevron {
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--preto-escuro);
}

.modulo-accordion.active .modulo-chevron {
  transform: rotate(180deg);
}

.modulo-accordion-content {
  display: none;
  padding: 20px;
  background-color: var(--branco-puro);
}

.modulo-accordion.active .modulo-accordion-content {
  display: block;
}

.aula-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px dashed #EEE;
  padding-bottom: 14px;
}

.aula-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.aula-item svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.aula-icon-azul {
  color: var(--azul-praia);
}

.aula-icon-verde {
  color: var(--verde-palmeira);
}

.aula-icon-amarelo {
  color: var(--amarelo-areia);
}

.aula-item strong {
  display: block;
  font-size: 14px;
  color: var(--preto-escuro);
  margin-bottom: 4px;
  font-weight: 700;
}

.aula-item p {
  font-size: 13px;
  color: #555;
  margin: 0;
  line-height: 1.5;
  text-wrap: balance;
}

/* Custom styling for details button wrapper */
.detalhes-cronograma-container button {
  box-shadow: 0 6px 0 var(--preto-escuro) !important;
  border-radius: 20px !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.detalhes-cronograma-container button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 0 var(--preto-escuro) !important;
}


/* Content Visibility Optimization for Zero Initial Forced Reflow */
.solucao-section,
.passos-section,
.depoimentos-section,
.oferta-section,
.faq-section,
.cta-final-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

/* ==========================================================================
   OTIMIZAÇÃO DE RESPONSIVIDADE E JANELAS DE CONTEXTO MOBILE (UX E LAYOUT)
   ========================================================================== */
@media (max-width: 768px) {
  /* 1. Ajuste de Estrutura e Espaçamento de Seções */
  body {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .section {
    padding: 32px 0 calc(32px + 20px) !important;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  /* 2. Títulos e Subtítulos Compactos e Equilibrados */
  h1, .hero-content h1 {
    font-size: clamp(22px, 5.8vw, 26px) !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
    text-wrap: balance !important;
  }

  h2, .section h2 {
    font-size: clamp(20px, 5.2vw, 23px) !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
    text-wrap: balance !important;
  }

  h3, .section h3 {
    font-size: clamp(17px, 4.5vw, 19px) !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
    text-wrap: balance !important;
  }

  p, .section p {
    font-size: 15px !important;
    line-height: 1.5 !important;
    text-wrap: balance !important;
  }

  /* 3. Hero Section - Alinhamento de Texto e CTA na Mesma Janela */
  .hero {
    padding-top: 24px !important;
    padding-bottom: 40px !important;
  }

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

  .hero-subtitle {
    font-size: 15px !important;
    line-height: 1.45 !important;
    margin-bottom: 20px !important;
    text-wrap: balance !important;
  }

  .hero-image-container {
    max-width: 250px !important;
    height: 250px !important;
    margin: 0 auto !important;
  }

  .hero-image-decor {
    width: 230px !important;
    height: 230px !important;
  }

  .hero-image-wrapper {
    width: 210px !important;
    height: 210px !important;
  }

  /* 4. GARANTIA BOX MOBILE - Correção da Coluna Espremida (Conforme Print do Usuário) */
  .garantia-box {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 18px 16px !important;
    margin-top: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: rgba(30, 158, 96, 0.08) !important;
    border-radius: 12px !important;
  }

  .garantia-box svg {
    width: 38px !important;
    height: 38px !important;
    color: var(--verde-palmeira) !important;
    margin-bottom: 2px !important;
    flex-shrink: 0 !important;
  }

  .garantia-box div {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .garantia-box strong {
    display: block !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    color: #1A1A1A !important;
    text-wrap: balance !important;
  }

  .garantia-box p {
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: #4A4A4A !important;
    margin: 0 !important;
    text-wrap: balance !important;
  }

  /* 5. Oferta Box - Leitura Fluida e Botão Integrado */
  .oferta-box {
    padding: 22px 16px !important;
    border-radius: 16px !important;
  }

  .oferta-lista {
    margin-bottom: 16px !important;
    gap: 10px !important;
  }

  .oferta-lista li {
    font-size: 14px !important;
    line-height: 1.4 !important;
    align-items: flex-start !important;
  }

  /* 6. Cards de Depoimentos e Módulos */
  .depoimento-card, 
  .grid-3 > div {
    padding: 18px 16px !important;
    border-radius: 12px !important;
  }

  .depoimento-texto {
    font-size: 15px !important;
    line-height: 1.45 !important;
    margin-bottom: 14px !important;
    text-wrap: balance !important;
  }

  .autor-info strong {
    font-size: 15px !important;
  }

  .autor-info span {
    font-size: 13px !important;
  }

  /* 7. Grid de Duas Escolhas */
  .duas-escolhas-grid {
    flex-direction: column !important;
    gap: 14px !important;
  }

  .duas-escolhas-grid > div {
    padding: 16px 14px !important;
    border-radius: 10px !important;
  }

  /* 8. Botões CTA Responsivos para Mobile */
  .btn, a.btn, .btn-primary, .btn-secondary, a.hotmart-fb {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 52px !important;
    padding: 14px 18px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    border-radius: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-wrap: balance !important;
  }

  /* 9. Números de Impacto */
  .numeros-impacto {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 24px !important;
  }

  .numero-item {
    padding: 16px 14px !important;
    border-radius: 10px !important;
  }

  .numero-item h3 {
    font-size: 22px !important;
    margin-bottom: 4px !important;
  }

  .numero-item p {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  /* 10. Accordion de Cronograma Detalhado */
  .modulo-accordion-header {
    padding: 14px 14px !important;
    gap: 10px !important;
  }

  .modulo-accordion-header h3 {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .modulo-accordion-content {
    padding: 16px 14px !important;
  }

  .aula-item {
    gap: 10px !important;
    margin-bottom: 14px !important;
    padding-bottom: 12px !important;
  }

  .aula-item strong {
    font-size: 14px !important;
  }

  .aula-item p {
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 21px !important;
  }
  
  .btn, a.btn, .btn-primary, .btn-secondary, a.hotmart-fb {
    font-size: 15px !important;
    padding: 14px 14px !important;
  }

  .oferta-box {
    padding: 18px 12px !important;
  }
}

/* Accessibility & Keyboard Navigation Focus */
:focus-visible {
  outline: 3px solid var(--azul-praia-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible, a:focus-visible, .modulo-accordion-header:focus-visible {
  outline: 3px solid var(--azul-praia-dark);
  outline-offset: 3px;
}

/* Accessible Utility Classes */
.text-price-highlight {
  color: var(--verde-palmeira-dark) !important;
}

.text-muted-accessible {
  color: var(--cinza-subtexto) !important;
}

.escolhas-card-dor {
  padding: 20px;
  background-color: var(--branco-puro);
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  text-align: left;
}

.escolhas-card-solucao {
  padding: 20px;
  background-color: var(--verde-palmeira);
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(35, 170, 106, 0.2);
}

