/* --- Reset Básico & Configurações Globais --- */
:root {
  --primary-color: #063f5e; /* Azul forte */
  --secondary-color: #022b33; /* Azul claro */
  --accent-color: #fca311; /* Amarelo/Laranja para CTAs */
  --dark-color: #14213d; /* Texto principal */
  --light-color: #ffffff;
  --gray-color: #f4f4f4;
}

/* --- Animações para Efeito Neon --- */
@keyframes neonPulse {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0.6),
      0 0 30px rgba(255, 255, 255, 0.4), 0 0 45px rgba(255, 255, 255, 0.2),
      inset 0 0 15px rgba(255, 255, 255, 0.1);
  }
  25% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.8),
      0 0 40px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.4),
      inset 0 0 20px rgba(255, 255, 255, 0.15);
  }
  50% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 25px rgba(255, 255, 255, 1),
      0 0 50px rgba(255, 255, 255, 0.8), 0 0 75px rgba(255, 255, 255, 0.6),
      0 0 100px rgba(255, 255, 255, 0.4),
      inset 0 0 25px rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.8),
      0 0 40px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.4),
      inset 0 0 20px rgba(255, 255, 255, 0.15);
  }
}

@keyframes neonGlow {
  0%,
  100% {
    opacity: 0.6;
    filter: blur(6px);
  }
  25% {
    opacity: 0.8;
    filter: blur(8px);
  }
  50% {
    opacity: 1;
    filter: blur(10px);
  }
  75% {
    opacity: 0.8;
    filter: blur(8px);
  }
}

/* Melhorar renderização de texto e previnir overflow */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
  /* Melhorar renderização de fontes globalmente */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Estilo para vídeos verticais */
.vertical-video {
  width: 100%;
  max-width: 300px;
  height: 533px;
  margin: 10px auto;
  display: block;
}

/* Melhorar contraste de texto em fundos escuros */
body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark-color);
  line-height: 1.6;
  background: linear-gradient(
    135deg,
    #0b63a1 0%,
    #0b5a9b 20%,
    #064274 40%,
    #032c4e 60%,
    #011f38 80%,
    #010f1b 100%
  );
  /* Propriedades adicionais para renderização de fonte */
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-variant-ligatures: normal;
  font-optical-sizing: auto;
}

/* Melhorar legibilidade do texto */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

p,
li,
span {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Garantir que mídias não causem overflow */
img,
video {
  max-width: 100% !important;
  height: auto !important;
}

/* Garantir que os iframes funcionem corretamente */
iframe {
  border: none;
  display: block;
}

/* Estilo específico para vídeos */
.horizontal-video {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.vertical-video {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* --- Navegação fixa --- */
.scroll-navigation {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 119, 182, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
}

.nav-dot:hover {
  background: var(--secondary-color);
  transform: scale(1.2);
}

.nav-dot::after {
  content: attr(data-section);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-color);
  color: var(--light-color);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-dot:hover::after {
  opacity: 1;
}

/* --- Animações de entrada --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.fade-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.fade-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease;
}

.scale-in.animate {
  opacity: 1;
  transform: scale(1);
}

/* --- Estrutura e Container --- */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section,
header {
  padding: 40px 0;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

header {
  padding-top: 40px;
  padding-bottom: 20px;
  min-height: auto;
}

section:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.95);
}

section:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.85);
}

/* --- Tipografia --- */
h1,
h2,
h3 {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark-color);
}

h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: -10px auto 30px auto;
  font-size: 1.1rem;
}

/* --- Botão (CTA) --- */
.cta-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  padding: 18px 25px;
  background-color: var(--accent-color);
  color: var(--dark-color);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* --- Seção 1: Hero Redesenhado --- */
#hero {
  background: linear-gradient(
      135deg,
      rgba(33, 150, 243, 0.9),
      rgba(100, 181, 246, 0.8)
    ),
    url("https://images.unsplash.com/photo-1563502912-390382a38214?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w1NTA3fDB8MXxzZWFyY2h8Mnx8c3dpbW1pbmclMjBwb29sfGVufDB8fHx8MTcyMTc4MjE4OXww&ixlib=rb-4.0.3&q=80&w=1080")
      no-repeat center center/cover;
  min-height: auto;
  padding: 60px 0;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.hero-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

/* Estilização para o vídeo na seção hero */
.video-presentation-hero {
  width: 100%;
  max-width: 700px;
  margin: 30px 0;
}

.video-presentation-hero .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: #000;
  width: 100%;
}

.video-presentation-hero .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pool-icon {
  font-size: 1.2rem;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1976d2;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
  background: linear-gradient(45deg, #ffd54f, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 500px;
  margin: 10px auto;
}

.cta-primary {
  background: linear-gradient(45deg, #ff9800, #f57c00);
  color: #fff;
}

.cta-secondary {
  background: linear-gradient(45deg, #ff6b35, #ff4500, #ff6b35);
  color: #fff;
  position: relative;
  animation: neonPulse 3.5s ease-in-out infinite;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.1);
  font-weight: 900;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.cta-secondary::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6b35, #ff4500, #ff6b35);
  border-radius: 52px;
  z-index: -1;
  filter: blur(6px);
  opacity: 0.6;
  animation: neonGlow 3.5s ease-in-out infinite;
}

.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 25px rgba(255, 255, 255, 1),
    0 0 50px rgba(255, 255, 255, 0.8), 0 0 75px rgba(255, 255, 255, 0.6);
  animation-duration: 2s;
}

.cta-icon {
  font-size: 1.2rem;
}

/* --- Seção de Vídeo --- */
#video-presentation {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 0;
  text-align: center;
  width: 100%;
}

#video-presentation .container {
  display: block;
  text-align: center;
}

#video-presentation h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

#video-presentation .section-subtitle {
  color: #333;
  margin-bottom: 40px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  margin: 20px auto;
  max-width: 800px;
  background: #000;
  width: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-benefits {
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-benefits h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: left;
}

.video-points {
  list-style: none;
  padding: 0;
}

.video-points li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.video-points li:last-child {
  border-bottom: none;
}

/* Container para vídeo horizontal */
.video-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 20px;
  margin: 20px 0;
  border-radius: 12px;
}

.video-section .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  max-width: 800px;
  background: #000;
}

.video-section .video-wrapper iframe,
.video-section .horizontal-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- Seção 2: Autoridade & Prova Social --- */
#instructor {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

/* Seção de depoimentos */
#testimonials-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 0;
  width: 100%;
}

#testimonials-section .container {
  display: block;
  max-width: 1200px;
}

.testimonials-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
  width: 100%;
}

.instructor-image {
  position: relative;
  text-align: center;
}

.instructor-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--secondary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.instructor-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.instructor-badge span {
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#instructor .bio {
  max-width: 600px;
  text-align: center;
}

.credentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 25px;
}

.credential-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.credential-item .icon {
  font-size: 1.5rem;
}

#testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
  width: 100%;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-left: 5px solid var(--secondary-color);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  max-width: 100%;
  display: block;
  visibility: visible;
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  gap: 15px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.client-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.client-details {
  flex: 1;
}

.client-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.client-role {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
}

.testimonial-icon {
  font-size: 1.8rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 118, 182, 0.3);
}

.video-testimonial-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 177.77%; /* 9:16 aspect ratio para vertical */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 20px auto; /* Centered */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: block;
  visibility: visible;
}

.video-testimonial-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  visibility: visible;
}

.video-testimonial {
  border-left-color: #ff6b35;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1rem;
  color: #333;
}

.results {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.result-item {
  background: linear-gradient(135deg, var(--accent-color), #ff9800);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(252, 163, 17, 0.3);
}

.stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* --- Seção 3: Conteúdo do Curso --- */
#course-content .modules,
#course-content .bonuses {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

#course-content li {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-left: 5px solid var(--secondary-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#course-content li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.module-icon,
.bonus-icon {
  font-size: 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 118, 182, 0.3);
}

#course-content li strong {
  display: block;
  font-family: "Montserrat";
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.bonus-title {
  text-align: center;
  margin-top: 50px;
}

/* --- Seção 4: Oferta --- */
#offer .price-box {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--light-color);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  margin: 0 auto 30px auto;
  box-shadow: 0 8px 25px rgba(0, 118, 182, 0.4);
  position: relative;
  overflow: hidden;
}

.price-header {
  margin-bottom: 20px;
}

.offer-badge {
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 900;
  font-size: 0.9rem;
  display: inline-block;
  animation: pulse 2s infinite;
}

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

#offer .price-box .strikethrough {
  text-decoration: line-through;
  opacity: 0.8;
  font-size: 1.2rem;
}
#offer .price-box .main-price {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin: 10px 0;
}
#offer .price-box .installments {
  font-size: 1.5rem;
  font-weight: 700;
}
#offer .price-box .info {
  margin-top: 10px;
  font-size: 0.9rem;
}

.price-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit-item {
  font-size: 0.9rem;
  font-weight: 600;
}

#offer .guarantee-box {
  max-width: 500px;
  margin: 30px auto 0 auto;
  text-align: center;
  padding: 20px;
  border: 2px dashed var(--secondary-color);
  border-radius: 12px;
  background: rgba(248, 249, 250, 0.9);
  backdrop-filter: blur(10px);
  position: relative;
}

.guarantee-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

#offer .guarantee-box h3 {
  color: var(--dark-color);
}

/* --- Seção 5: FAQ --- */
#faq .faq-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(221, 221, 221, 0.5);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}
#faq .faq-item summary {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  padding: 15px;
  cursor: pointer;
  outline: none;
  position: relative;
}
#faq .faq-item summary::after {
  content: "+";
  font-size: 1.8rem;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s;
}
#faq .faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
#faq .faq-item .faq-answer {
  padding: 0 15px 15px 15px;
}

/* --- Seção 6: Reforço Final --- */
#final-call {
  text-align: center;
}

/* --- Extras --- */
.extras-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: flex-start;
}
.benefits-list {
  list-style: none;
  padding-left: 0;
}
.benefits-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.benefits-list li::before {
  content: "✅";
  font-size: 1.2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}
.comparison-table th {
  background-color: var(--gray-color);
  font-family: "Montserrat";
}

/* --- Footer --- */
footer {
  background: rgba(20, 33, 61, 0.95);
  backdrop-filter: blur(10px);
  color: var(--light-color);
  text-align: center;
  padding: 20px;
}
.trust-seals {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.trust-seals span {
  background: #2a3a5a;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
}

/* --- Media Queries para Responsividade --- */

/* Mobile (até 767px) */
@media (max-width: 767px) {
  .scroll-navigation {
    display: none;
  }

  section,
  header {
    padding: 30px 0;
  }

  .container {
    padding: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  #instructor .instructor-image img {
    width: 150px;
    height: 150px;
  }

  #testimonials {
    gap: 20px;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-icon {
    align-self: flex-end; /* Move icon to the right */
  }

  #course-content li {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 15px;
  }

  .module-icon,
  .bonus-icon {
    margin: 0 auto;
  }

  #offer .price-box .main-price {
    font-size: 2.8rem;
  }

  /* Ajuste para depoimentos no mobile */
  .testimonials-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px;
    width: 100%;
  }

  .testimonial-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .video-testimonial-wrapper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 750px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .video-container {
    grid-template-columns: 1fr;
  }

  #instructor {
    flex-direction: column;
    text-align: center;
  }

  #instructor .bio {
    text-align: center;
  }

  #testimonials {
    grid-template-columns: 1fr;
  }
}

/* Desktop (a partir de 1024px) */
@media (min-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2.5rem;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    max-width: 900px;
  }

  .video-container {
    grid-template-columns: 3fr 2fr;
    gap: 50px;
  }

  #instructor {
    flex-direction: row;
    text-align: left;
    gap: 50px;
  }

  #instructor .bio {
    text-align: left;
  }

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

  .credential-item {
    justify-content: flex-start;
  }

  #testimonials {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
  }

  .testimonials-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
  }

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

  .price-benefits {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

/* --- Barra fixa e Botão Flutuante --- */

/* Barra fixa para desktop */
.fixed-buy-bar {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  z-index: 1000;
}

.fixed-buy-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.fixed-buy-bar .buy-button {
  background-color: #ff5722;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.fixed-buy-bar .buy-button:hover {
  background-color: #e64a19;
}

/* Barra flutuante para mobile */
.floating-buy-bar {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ff5722;
  text-align: center;
  padding: 10px;
  z-index: 1000;
}

.floating-buy-bar .buy-button {
  display: block;
  color: #fff;
  background-color: #e64a19;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.floating-buy-bar .buy-button:hover {
  background-color: #d64513;
}

/* Responsividade da barra/botão de compra */
@media (min-width: 768px) {
  .fixed-buy-bar.visible {
    display: block;
  }
}

@media (max-width: 767px) {
  .floating-buy-bar.visible {
    display: block;
  }
}
