/* 1. CONFIGURAÇÕES GLOBAIS E VARIÁVEIS */
:root {
  --bg-color: #000; /* == PONTO 3: Fundo preto por completo == */
  --text-primary: #ffffff;
  --text-secondary: #c0c0c0;
  --accent-purple: #fb2c37; /* Vermelho (conforme seu código) */
  --accent-green: #00f9a0;
  --card-bg: #1a1a1a; /* Usado para cards secundários */
  --border-color: #2a2a2a; /* Cinza para bordas e traçados */

  --gradient-purple: linear-gradient(
    90deg,
    #ff3c00,
    #fb2c37
  ); /* Gradiente vermelho */
  --gradient-green: linear-gradient(90deg, #00f97c, #00c452);

  /* Novas variáveis para o contador */
  --countdown-box-bg: #110e15;
  --countdown-border: #4d4d4d;
  --countdown-colon-color: #6a6a6a;

  /* == PONTO 1: VARIÁVEIS DE FONTE == */
  --fs-h1: 2rem;
  --fs-h2: 1.8rem;
  --fs-h3: 1.4rem;
  --fs-p: 1rem;
  --fs-large: 0.9rem;
  --fs-price: 5rem;
  --fs-price-new: 2.5rem;
  --fs-countdown: 3.5rem;

  /* Novas cores para os planos de preço */
  --pricing-card-bg: #1a1a1a;
  --pricing-card-border: #3a3a3a;
  --pricing-card-header-bg: linear-gradient(90deg, #5b0062, #6a0071);
  --pricing-card-recommended-header-bg: linear-gradient(
    90deg,
    #00c452,
    #00f97c
  );
  --pricing-toggle-bg: #333;
  --pricing-toggle-thumb: #fff;
  --pricing-toggle-active: var(--accent-purple);
  --pricing-toggle-active-thumb: #fff; /* Cor do thumb quando ativo */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-color); /* == PONTO 3: Fundo preto == */
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden; /* Impede scroll horizontal geral */
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

/* Aplicando variáveis de fonte */
h1 {
  font-size: var(--fs-h1);
}
h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}
h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.5rem;
}
p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: var(--fs-p);
}

/* 2. CLASSES UTILITÁRIAS (Containers, Botões, Textos) */
.container {
  /* display: flex; (removido para não quebrar o layout) */
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
}

.small-container {
  max-width: 700px;
  margin: 0 auto; /* Garante centralização */
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

/* == PONTO 1: Ajuste para o botão "Garantir meu acesso exclusivo agora" == */
.countdown-btn {
  white-space: nowrap; /* Evita quebra de linha do texto do botão */
  padding: 18px 30px; /* Reduz um pouco o padding para caber */
  font-size: 1.1rem; /* Reduz um pouco o tamanho da fonte */
  max-width: 90%; /* Limita a largura para mobile */
}

.btn-gradient-purple {
  background: var(--gradient-purple);
}

.btn-gradient-green {
  width: 100%;
  background: var(--gradient-green);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 249, 160, 0.4);
}

.btn-solid-green {
  background: var(--accent-green);
  color: #000;
  width: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.btn-gradient-green:hover {
  box-shadow: 0 0 25px rgba(0, 249, 160, 0.6);
}

.text-gradient-purple {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 900;
}

.text-purple {
  color: var(--accent-purple);
}
.text-green {
  color: var(--accent-green);
}
.highlight-green {
  color: var(--accent-green);
  font-weight: 700;
}

.highlight {
  color: var(--accent-purple);
  font-weight: 700;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(42, 42, 42, 0.5); /* == PONTO 2: Fundo cinza sutil == */
  border: 1px solid var(--border-color); /* == PONTO 2: Borda cinza == */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.icon-wrapper i {
  font-size: 2rem;
  color: var(--text-secondary); /* Cor cinza para o ícone */
}

/* 3. ESTILOS DAS SEÇÕES */

/* Hero Section */
.hero-section {
  padding: 2rem 0;
  text-align: center;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  margin-bottom: 2rem;
  width: 180px;
  margin-left: auto; /* Centraliza o logo */
  margin-right: auto; /* Centraliza o logo */
}

.hero-section h1 {
  max-width: 800px;
  margin: 0 auto 1rem auto;
}

.hero-section .subtitle {
  font-size: var(--fs-large);
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.hero-section .sub-button-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.scroll-icon {
  margin-top: 3rem;
  color: var(--text-secondary);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0.7;
  animation: bounce 2s infinite;
}
.scroll-icon i {
  font-size: 1.5rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Countdown Section */
.alert-tag {
  background: var(--gradient-purple);
  color: var(--text-primary);
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 10px rgba(251, 44, 55, 0.5); /* Brilho vermelho */
}

.countdown-text {
  font-size: var(--fs-large);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.time-box {
  background-color: var(--countdown-box-bg);
  border: 1px solid var(--countdown-border);
  border-radius: 8px;
  padding: 15px 25px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.time-box span:first-child {
  font-size: var(--fs-countdown);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.time-box .label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 5px;
}

.countdown-timer .colon {
  font-size: var(--fs-countdown);
  color: var(--countdown-colon-color);
  font-weight: 700;
  line-height: 1;
}

/* .countdown-btn já ajustado em .btn-large */

.separed-button {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 60%;
}

.social-proof {
  background-color: var(--card-bg);
  border-radius: 10px;
  margin-top: 1rem;
  padding: 0.8rem;
  display: inline-block;
  max-width: 450px;
  width: 90%; /* Garante que não ultrapasse o container */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
}

.social-proof p {
  font-size: var(--fs-large);
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.social-proof .stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.social-proof .stars i {
  color: #ffd700;
  font-size: 1.5rem;
}

.social-proof .stars span {
  font-size: var(--fs-large);
  font-weight: 600;
  color: var(--text-primary);
  margin-left: 5px;
}

/* == PONTO 2: SEÇÃO "COMO FUNCIONA" (GRID) == */
.feature-grid-section {
  /* padding: 4rem 0; */
  text-align: center;
}
.feature-grid-section .container {
  display: block; /* Sobrescreve o flex do .container */
}

.feature-grid {
  display: flex; /* Usando Flexbox para centralizar a última linha */
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  flex-basis: 350px; /* Base para 3 colunas */
  flex-grow: 1; /* Permite crescer */
  max-width: 400px; /* Limite de largura */

  border: 2px solid var(--border-color); /* == PONTO 2: Borda cinza == */
  border-radius: 10px;
  padding: 2.5rem 2rem;
  background: var(--card-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(42, 42, 42, 0.3); /* Sombra mais sutil */
}

/* Feature Sections (Seções Padrão) */
.feature-section {
  padding: 4rem 0;
  text-align: center;
}
.feature-section .container {
  display: block; /* Garante que containers normais funcionem */
}
.feature-section .container.small-container {
  max-width: 700px; /* Mantém o small-container */
}

.feature-section .sub-button-text-alt {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--accent-purple);
}

/* == PONTO 3: NOVA SEÇÃO "MINHA HISTÓRIA" == */
.story-section {
  padding: 4rem 0;
  text-align: center;
}
.story-section .container.small-container {
  display: block;
}

.story-video-wrapper {
  display: inline-block;
  padding: 3px; /* == PONTO 2: Traçado mais fino == */
  border: 1px solid var(--border-color); /* == PONTO 2: Borda cinza == */
  border-radius: 20px; /* Bordas arredondadas */
  margin: 2rem auto;
  background: transparent; /* == PONTO 2: Fundo da borda transparente == */
}
.story-video {
  width: 270px; /* Largura de story (proporção 9:16) */
  height: 480px; /* Altura de story */
  border-radius: 12px; /* Arredondar o vídeo interno */
  overflow: hidden;
  background: #000;
}
.story-video img,
.story-video video,
.story-video iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.story-text {
  font-size: var(--fs-large);
  max-width: 600px;
  margin: 1.5rem auto 0 auto;
  color: var(--text-secondary);
}

/* == PONTO 4: NOVA SEÇÃO "QUEM JÁ ESTÁ LUCRANDO" (CAROUSEL) == */
.social-proof-carousel-section {
  padding: 4rem 0;
  text-align: center;
  overflow-x: hidden;
}
.social-proof-carousel-section .container {
  display: block;
  margin-bottom: 3rem;
}
.proof-carousel-container {
  width: 100%;
  overflow: hidden;
  /* Efeito de fade nas laterais */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.proof-carousel-track {
  display: flex;
  /* (Largura + Gap) * (Nº de Slides * 2) */
  /* (250px + 20px) * (6 * 2) = 270px * 12 = 3240px */
  width: calc(270px * 12);
  animation: scroll 40s linear infinite;
}
.proof-slide {
  width: 250px;
  height: 444px; /* Proporção 9:16 */
  margin: 0 10px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
}
.proof-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-270px * 6));
  } /* Metade da largura */
}

/* == PONTO 5: NOVA SEÇÃO "CÍRCULO SECRETO" == */
.secret-circle-section {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--bg-color); /* == PONTO 3: Fundo preto == */
}
.secret-circle-section .container {
  display: block;
}
.secret-circle-section h2 {
  margin-bottom: 1.5rem;
  display: flex; /* Para alinhar o ícone com o texto */
  justify-content: center;
  align-items: center;
  gap: 10px; /* Espaço entre o título e o ícone */
}
/* == PONTO 4: Ícone da comunidade == */
.secret-circle-section h2 .bx.bxs-group {
  font-size: var(--fs-h2);
  color: var(--accent-purple);
}
.secret-circle-section .section-subtitle {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: var(--fs-large);
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}
.comparison-box {
  background: var(--bg-color);
  padding: 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}
.comparison-box h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.comparison-box.negative-box {
  border-left: 4px solid var(--accent-purple);
}
.comparison-box.positive-box {
  border-left: 4px solid var(--accent-green);
}
.comparison-box.negative-box h3 strong {
  color: var(--accent-purple); /* Vermelho */
}
.comparison-box.positive-box h3 strong {
  color: var(--accent-green);
}
.comparison-box ul {
  list-style: none;
}
.comparison-box ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-large);
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}
.comparison-box ul li i {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.icon-red {
  color: var(--accent-purple); /* Vermelho */
}
.icon-green {
  color: var(--accent-green);
}

/* SEÇÕES EXISTENTES (Bonus, Oferta, etc.) */

/* Bonus Section */
.bonus-section {
  padding: 4rem 0;
  text-align: center;
}
.bonus-section .container {
  display: block;
}
.bonus-section .subtitle {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3rem;
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}
.bonus-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}
.bonus-card ul {
  list-style: none;
  margin-top: 1.5rem;
}
.bonus-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-large);
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.bonus-card ul li i {
  font-size: 1.5rem;
  color: var(--accent-green);
}

/* Seção de Oferta Antiga Removida */
.offer-section {
  display: none;
} /* Oculta a antiga seção de oferta */

/* == PONTO 6: SEÇÃO DE GARANTIA V2 (NOVO DESIGN) == */
.guarantee-section-v2 {
  padding: 4rem 0;
  background-color: var(--bg-color);
  text-align: center;
}
.guarantee-section-v2 .container {
  display: block;
  max-width: 900px;
}
.guarantee-content {
  background: #111; /* Fundo mais escuro que o card-bg */
  border-radius: 10px;
  border: 1px solid var(--border-color);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Ajusta espaçamento entre os elementos */
  flex-wrap: wrap; /* Permite quebrar linha em mobile */
  gap: 2rem; /* Espaço entre os blocos */
}
.guarantee-icon-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1; /* Permite que o bloco ocupe espaço flexível */
  min-width: 250px; /* Largura mínima para o bloco de ícone/texto */
}
.guarantee-icon-text i {
  font-size: 3.5rem;
  color: var(--accent-green);
}
.guarantee-icon-text h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  text-align: left;
}
.guarantee-icon-text p {
  font-size: var(--fs-p);
  margin: 0;
  text-align: left;
}
.guarantee-description {
  flex: 2; /* Permite que a descrição ocupe mais espaço */
  font-size: var(--fs-large);
  color: var(--text-secondary);
  margin: 0;
  text-align: left;
}
.guarantee-description .highlight-green {
  color: var(--accent-green);
}

/* == PONTO 5: SEÇÃO DE PLANOS DE PREÇO V2 (NOVO DESIGN) == */
.pricing-section-v2 {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--bg-color); /* Fundo preto */
}
.pricing-section-v2 .container {
  display: block;
}

.pricing-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center; /* Centraliza cards em telas maiores */
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.pricing-card-v2 {
  background-color: var(--pricing-card-bg);
  border-radius: 10px;
  border: 1px solid var(--pricing-card-border);
  padding: 0; /* Padding inicial removido, será nos sub-elementos */
  text-align: center;
  position: relative;
  overflow: hidden; /* Para o header arredondado */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.pricing-card-v2.recommended-v2 {
  border-color: var(--accent-purple); /* Borda roxa/vermelha */
}

.recommend-badge-v2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 5px 15px;
  border-radius: 0 0 10px 10px; /* Somente borda inferior */
  z-index: 10;
}

.card-header-v2 {
  background: var(--gradient-purple); /* Fundo gradiente roxo/vermelho */
  padding: 2.5rem 1.5rem 1.5rem 1.5rem; /* Mais padding no topo para o badge */
  border-radius: 10px 10px 0 0;
  color: var(--text-primary);
}
.pricing-card-v2.recommended-v2 .card-header-v2 {
  background: var(
    --gradient-purple
  ); /* Fundo gradiente roxo/vermelho para o recomendado */
}

.card-header-v2 h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.card-header-v2 p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.toggle-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 1.5rem 0;
  padding: 0 1.5rem;
}

.toggle-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.toggle-input {
  display: none;
}

.toggle-slider {
  width: 60px;
  height: 30px;
  background-color: var(--pricing-toggle-bg);
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--pricing-toggle-thumb);
  top: 3px;
  left: 3px;
  transition: transform 0.3s, background-color 0.3s;
}

.toggle-input:checked + .toggle-slider {
  background-color: var(--accent-purple); /* Fundo roxo/vermelho quando ativo */
}

.toggle-input:checked + .toggle-slider::before {
  transform: translateX(30px);
  background-color: var(--pricing-toggle-active-thumb);
}

/* == PONTO 2: ESTILOS DE PREÇO ATUALIZADOS == */
.price-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
  min-height: 70px; /* Altura mínima para evitar "pulos" */
}

.price-main {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-purple);
  line-height: 1;
  margin: 0 0 0.5rem 0;
  transition: all 0.3s ease;
}

.price-secondary {
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  margin: 0;
}

/* Estado Trocado (Parcelado) */
.price-display.js-toggled-installments {
  flex-direction: column-reverse; /* INVERTE A ORDEM */
}

.price-display.js-toggled-installments .price-main {
  /* Vira o texto secundário (ou R$ 697) */
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.price-display.js-toggled-installments .price-secondary {
  /* Vira o texto principal (10x de R$ 69,70) */
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-purple);
  line-height: 1;
  margin-bottom: 0.5rem;
}
/* FIM DA ATUALIZAÇÃO DO PONTO 2 */

.features-list-v2 {
  list-style: none;
  padding: 0 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.features-list-v2 li {
  font-size: var(--fs-p);
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.features-list-v2 li:last-child {
  margin-bottom: 0;
}
.exclusive-feature {
  color: var(
    --accent-purple
  ) !important; /* Cor vermelha para features exclusivas */
  font-weight: 600;
}
.exclusive-feature span {
  font-weight: 700;
}

.pricing-card-v2 .btn {
  width: calc(100% - 3rem); /* Ocupa a largura total menos padding */
  margin-bottom: 1.5rem;
}

/* == PONTO 1: SEÇÃO FAQ ATUALIZADA == */
.faq-section {
  padding: 4rem 0;
}
.faq-section .container.small-container {
  display: block;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-item {
  border-bottom: 1px solid var(--border-color); /* Linha cinza separadora */
}
.faq-item summary {
  padding: 1.5rem 0;
  font-size: 1.1rem; /* Fonte levemente menor para melhor encaixe */
  font-weight: 600;
  cursor: pointer;
  list-style: none; /* Remove default marker */
  position: relative;
  padding-right: 2rem; /* Espaço para o ícone '+' */
}
.faq-item summary::-webkit-details-marker {
  display: none; /* Chrome */
}
.faq-item summary::after {
  /* Custom marker */
  content: "+";
  font-size: 1.8rem;
  color: var(--accent-purple);
  position: absolute;
  right: 5px; /* Alinha à direita */
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%);
}
.faq-item p {
  padding: 0 0 1.5rem 0; /* Padding inferior para a resposta */
  color: var(--text-secondary);
  line-height: 1.7;
}
/* FIM DA ATUALIZAÇÃO DO PONTO 1 */

/* Footer Section */
.footer-section {
  padding: 3rem 0;
  background: #000;
  text-align: center;
  color: var(--text-secondary);
}
.footer-section .container {
  display: block;
}
.footer-section .logo {
  margin-bottom: 1rem;
  font-size: 1rem;
  display: flex; /* Para centralizar o logo no footer */
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.footer-section .logo img {
  width: 40px;
  height: 40px;
}
.footer-section p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 5px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--text-primary);
}
.footer-links span {
  margin: 0 5px;
}

/* 4. RESPONSIVIDADE (Tablet e Mobile) */

/* == Breakpoint para Tablets (<= 992px) == */
@media (max-width: 992px) {
  /* Ajusta o grid de features para 2 colunas */
  .feature-card {
    flex-basis: 300px; /* Base menor para 2 colunas */
  }

  /* Ajusta grids de 2 colunas para 1 coluna */
  .bonus-grid,
  .comparison-grid,
  .pricing-grid-v2 {
    /* == PONTO 5: Grid de preços vira 1 coluna == */
    grid-template-columns: 1fr;
  }
  .pricing-card-v2 {
    max-width: 450px; /* Limita a largura dos cards em columa única */
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.recommended {
    transform: scale(1); /* Tira o scale no tablet */
  }

  /* Garantia V2 */
  .guarantee-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .guarantee-icon-text {
    min-width: unset;
    justify-content: center;
  }
  .guarantee-icon-text h3,
  .guarantee-icon-text p {
    text-align: center;
  }
  .guarantee-description {
    text-align: center;
  }
}

/* == Breakpoint para Tablets e Mobiles (<= 768px) == */
@media (max-width: 768px) {
  /* Ajustes de Fonte */
  :root {
    --fs-h1: 2.2rem;
    --fs-h2: 1.8rem;
    --fs-price: 4rem;
    --fs-countdown: 2.5rem;
  }

  /* == PONTO 1: Botão do Hero - Ajuste para caber em telas menores == */
  .countdown-btn {
    padding: 15px 25px; /* Reduz padding */
    font-size: 1rem; /* Reduz fonte */
    max-width: 100%; /* Pode ocupar mais largura */
  }

  /* Grid "Como Funciona" vira 1 coluna */
  .feature-grid {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    flex-basis: 100%; /* Full width */
    max-width: 450px; /* Limita a largura */
  }

  /* Carrossel de Prova Social (Ponto 4) - CORRIGIDO */
  .social-proof-carousel-section {
    padding: 2rem 0;
  }
  .proof-carousel-container {
    overflow: hidden; /* Mude de 'auto' para 'hidden' */
    /* Adiciona o efeito de fade (sumiço) nas laterais de volta */
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      black 10%,
      black 90%,
      transparent
    );
    mask-image: linear-gradient(
      to right,
      transparent,
      black 10%,
      black 90%,
      transparent
    );
    scroll-snap-type: none; /* Remove o "snap" do scroll manual */
    padding: 0; /* Remove o padding lateral */
  }
  .proof-carousel-track {
    /* Recalcula a largura total da faixa para a animação mobile:
      Slide (225px) + Margem (8px * 2) = 241px por slide
      241px * 12 slides (6 reais + 6 clones) = 2892px
    */
    width: calc(241px * 12);
    /* Ativa a animação 'scroll' (que será redefinida logo abaixo) */
    animation: scroll 40s linear infinite;
  }
  .proof-slide {
    width: 225px;
    height: 400px;
    scroll-snap-align: none; /* Remove o "snap" */
    margin: 0 8px;
  }
  .social-proof-carousel-section h2 {
    margin-bottom: 2rem;
  }

  /* Redefine a animação 'scroll' DENTRO do media query 
    para usar as medidas do slide mobile
  */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      /* Move a faixa o equivalente a 6 slides (241px * 6 = 1446px) */
      transform: translateX(calc(-241px * 6));
    }
  }

  /* Vídeo Story */
  .story-video-wrapper {
    margin: 1.5rem auto;
  }
  .story-video {
    width: 225px;
    height: 400px;
  }

  /* Contador */
  .countdown-timer {
    gap: 0.8rem;
  }
  .time-box {
    min-width: 80px;
    padding: 10px 15px;
  }
  .countdown-timer .colon {
    font-size: var(--fs-countdown);
  }
  .social-proof {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .separed-button {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

/* == Breakpoint para Mobiles Pequenos (<= 480px) == */
@media (max-width: 480px) {
  /* Ajustes de Fonte */
  :root {
    --fs-h1: 1.9rem;
    --fs-h2: 1.6rem;
    --fs-price: 3.5rem;
    --fs-countdown: 2rem;
  }
  .btn {
    width: 100%;
    padding: 14px 20px;
  }
  .btn-large {
    padding: 16px 20px;
    font-size: 1.1rem;
  }

  /* Contador */
  .time-box {
    min-width: 70px;
    padding: 8px 10px;
  }
  .time-box .label {
    font-size: 0.6rem;
  }

  /* Prova social hero */
  .social-proof {
    padding: 1rem;
  }
  .social-proof .stars i {
    font-size: 1.2rem;
  }
  .social-proof .stars span {
    font-size: 1rem;
  }

  /* Bônus/Comparação */
  .bonus-card,
  .comparison-box {
    padding: 2rem 1.5rem;
  }
  .secret-circle-section h2 .bx.bxs-group {
    font-size: 1.6rem; /* Ajusta o tamanho do ícone com o h2 */
  }

  /* Preços V2 (Toggle) */
  .price-main,
  .price-display.js-toggled-installments .price-secondary {
    font-size: 2.5rem; /* Fonte menor para o preço principal em mobile */
  }
}
