/* =========================================
   VARIÁVEIS OFICIAIS
   ========================================= */
:root {
  --color-gold: #f2b705;
  --color-gold-hover: #ffd84d;
  --color-bg: #000000;
  --color-text-white: #ffffff;
  --color-text-gray: #d1d1d1;
  --color-green-cta: #1fae4b;
  --color-green-hover: #27c95a;
  --color-red-alert: #ff3b30;
  --font-heading: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* =========================================
   RESET E ESTRUTURA
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-white);
  font-family: var(--font-body);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 450px; /* Largura mobile */
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-bottom: 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%; /* Aumentei um pouco para o degradê sumir mais suavemente */
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 1) 100%),
    url("aluno-unibe-esa.jpg") right top no-repeat; /* O SEGREDO: Ancorado na direita */
  
  background-size: 85% auto; /* Tamanho ajustado para o celular */
  z-index: -1;
}

.header-logo {
  padding: 1.5rem 0;
}

.logo-img {
  height: 80px;
  display: block;
}

/* =========================================
   TIPOGRAFIA
   ========================================= */
.headline {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-top: -10px;
  margin-bottom: 1.5rem;
  text-transform: none;
}

.highlight-gold {
  color: var(--color-gold);
}

.highlight-green {
  color: var(--color-green-cta) !important;
}

.subheadline {
  font-size: 1rem;
  color: var(--color-text-gray);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.bold-gold {
  color: var(--color-gold);
  font-weight: 700;
}

/* =========================================
   VÍDEO COM LINHA DOURADA ANIMADA
   ========================================= */
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  margin-bottom: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a0a0a;
}

.video-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 70%,
    rgba(242, 183, 5, 0.4) 85%,
    var(--color-gold) 100%
  );
  animation: rotateBorder 3.5s linear infinite;
  z-index: 1;
}

.video-container::after {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #111;
  border-radius: 10px;
  z-index: 2;
}

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

/* =========================================
   BOTÃO CTA (DOURADO E VERDE)
   ========================================= */
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--color-gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: bold;
  padding: 1.2rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
}

.cta-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-right: 12px;
}

.cta-text {
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.cta-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 12px;
}

.btn-green {
  background-color: var(--color-green-cta);
  color: #fff;
  box-shadow: 0 4px 25px rgba(31, 174, 75, 0.4);
  margin-bottom: 1.5rem;
}

.btn-green:hover {
  background-color: var(--color-green-hover);
}

.cta-text-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-text-stacked .cta-text {
  font-size: 1.4rem;
  line-height: 1;
}

.cta-text-stacked .cta-sub {
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 4px;
}

/* =========================================
   BADGES (RODAPÉ)
   ========================================= */
.footer-blindado {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
  width: 100% !important;
  margin-bottom: 2rem !important;
  padding: 0 5px !important;
}

.footer-blindado .badge-item {
  display: flex !important;
  align-items: center !important;
  gap: 3px !important;
  font-size: 9px !important;
  font-weight: bold !important;
  white-space: nowrap !important;
  color: var(--color-text-gray) !important;
}

.footer-blindado .badge-item svg {
  width: 12px !important;
  height: 12px !important;
  fill: var(--color-gold) !important;
  flex-shrink: 0 !important;
}

.footer-blindado .badge-dot {
  font-size: 10px !important;
  color: var(--color-gold) !important;
  margin: 0 !important;
}

/* =========================================
   SEÇÃO 2: DORES / REALIDADES
   ========================================= */
.pain-points {
  position: relative;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pain-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.8) 50%, #000 100%),
    url("bg-meditacao-cidade.jpg") center / cover;
  opacity: 0.6;
  z-index: -1;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.1;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.pain-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.pain-icon {
  width: 32px;
  height: 32px;
  stroke: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.pain-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.pain-text p {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.4;
}

/* =========================================
   SEÇÃO 3: A VIRADA / SOLUÇÃO
   ========================================= */
.solution-esa {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(242, 183, 5, 0.2);
}

.solution-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 600;
}

.solution-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-gray);
  margin-bottom: 2rem;
}

.bold-white {
  color: var(--color-text-white);
  font-weight: 700;
}

.divider-star {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.divider-star span {
  height: 1px;
  width: 60px;
  background-color: var(--color-gold);
}

.divider-star svg {
  width: 24px;
  height: 24px;
}

.enter-operation {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.enter-operation .bold-white {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.operation-desc {
  color: var(--color-text-gray);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.check-list-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-gray);
}

.check-item svg {
  width: 20px;
  height: 20px;
}

.highlight-phrase {
  font-size: 1.1rem;
  line-height: 1.5;
  padding: 0 1rem;
}

/* =========================================
   SEÇÃO 4: PILARES E CTA
   ========================================= */
.pillars {
  padding: 2rem 0 5rem 0;
}

.pillars-box {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  position: relative;
  margin-bottom: 2.5rem;
}

.pillars-box-title {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-bg);
  padding: 0 15px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text-white);
  white-space: nowrap;
}

.pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  stroke: var(--color-gold);
  margin-bottom: 1rem;
}

.pillar-item h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  font-weight: 500;
}

.pillar-item p {
  font-size: 0.9rem;
  color: var(--color-text-gray);
}

/* =========================================
   SEÇÃO 5: O SISTEMA (PLATAFORMA)
   ========================================= */
.system-section {
  padding: 3rem 0;
  background-color: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.system-header {
  text-align: center;
  margin-bottom: 3rem;
}

.shield-icon-large {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.system-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.system-subtitle {
  font-size: 1rem;
  color: var(--color-text-gray);
  line-height: 1.5;
}

/* Tratamento dos Mockups */
.mockup-wrapper {
  margin-bottom: 3rem;
  width: 100%;
}

.mockup-wrapper.small-margin {
  margin-top: 1.5rem;
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ui-mockup-img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  display: block;
}

.mockup-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-gray);
  text-align: center;
}

.mockup-caption.left-align {
  justify-content: flex-start;
  text-align: left;
}

.mockup-caption svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =========================================
   GRADE DE PASSOS (CARDS)
   ========================================= */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.step-card {
  background-color: #0f0f0f;
  border: 1px solid rgba(242, 183, 5, 0.2);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  position: relative;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.step-icon-box {
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-gold);
  background-color: rgba(242, 183, 5, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon-box svg {
  width: 24px;
  height: 24px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.step-num {
  color: var(--color-text-white);
}

.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.4;
}

.step-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-extra-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  padding: 0.8rem;
  background-color: rgba(242, 183, 5, 0.08);
  border-radius: 8px;
  text-align: center;
}

.system-footer {
  text-align: center;
  border-top: 1px solid rgba(242, 183, 5, 0.2);
  padding-top: 3rem;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--color-text-white);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.closing-highlight {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  display: block;
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
}


/* =========================================
   SEÇÃO 6: PROVA SOCIAL / AVALIAÇÕES
   ========================================= */
.reviews-section {
  position: relative;
  padding: 4rem 0 3.5rem;
  background:
    radial-gradient(circle at top, rgba(242, 183, 5, 0.1) 0%, rgba(0, 0, 0, 0) 45%),
    #000;
  border-top: 1px solid rgba(242, 183, 5, 0.18);
  overflow: hidden;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(520px, 90%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.7;
}

.reviews-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.reviews-kicker {
  display: inline-block;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.reviews-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: 1px;
  font-weight: 600;
}

.reviews-carousel {
  position: relative;
  min-height: 285px;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  min-height: 285px;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(7, 7, 7, 0.98) 100%);
  border: 1px solid rgba(242, 183, 5, 0.2);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
  position: absolute;
  inset: 0;
}

.review-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  position: relative;
}

.review-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 0 14px rgba(242, 183, 5, 0.22);
}

.review-text {
  color: var(--color-text-white);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1450a3, #27c95a);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.review-avatar-photo {
  background: linear-gradient(135deg, #7b2cbf, #f2b705);
}

.review-avatar-alt {
  background: linear-gradient(135deg, #292929, #a1a1a1);
}

.review-avatar-green {
  background: linear-gradient(135deg, #0d5f2a, #27c95a);
}

.review-avatar-purple {
  background: linear-gradient(135deg, #5a189a, #9d4edd);
}

.review-author strong {
  display: block;
  font-size: 0.98rem;
  color: #fff;
  line-height: 1.1;
}

.review-author span {
  display: block;
  color: var(--color-text-gray);
  font-size: 0.75rem;
  margin-top: 3px;
}

.review-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 1.3rem;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}

.review-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--color-gold);
}

.promo-limited {
  margin-top: 0.45rem;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (prefers-reduced-motion: reduce) {
  .review-card {
    transition: none;
  }
}

/* =========================================
   SEÇÃO 6: COMPARAÇÃO E OFERTA
   ========================================= */
.comparison-section {
  position: relative;
  padding: 4rem 0;
  background-color: var(--color-bg);
}

.comparison-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 0;
}

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

.compare-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 5rem;
}

.compare-card {
  width: 100%;
  border-radius: 12px;
  padding: 2rem 1.5rem;
}

.bad-way {
  background-color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bad-way h3,
.bad-way strong {
  color: var(--color-text-gray);
}
.bad-way p {
  color: #666;
}
.gray-icon svg {
  stroke: #666;
}
.bad-way .compare-list svg {
  stroke: #666;
}

.good-way {
  background-color: rgba(242, 183, 5, 0.03);
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 30px rgba(242, 183, 5, 0.15);
}
.gold-text h3,
.good-way strong {
  color: var(--color-gold);
}
.gold-icon svg {
  stroke: var(--color-gold);
}
.gold-list svg {
  stroke: var(--color-gold);
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-icon-title {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compare-icon-title svg {
  width: 20px;
  height: 20px;
}

.compare-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.compare-list li svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.compare-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.compare-list p {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Preços Inseridos no Card */
.price-in-card {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.good-way .price-in-card {
  border-top: 1px solid rgba(242, 183, 5, 0.2);
}
.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-gray);
  margin-bottom: 0.2rem;
}
.price-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.price-subtext {
  font-size: 0.85rem;
  color: var(--color-text-gray);
}
.red-strike {
  color: var(--color-red-alert);
  text-decoration: line-through;
}

/* Benefícios Dentro do Card Dourado */
.offer-benefits.inside-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0a0a0a;
  border: 1px solid rgba(242, 183, 5, 0.3);
  margin: 1.5rem 0;
  padding: 1rem;
  border-radius: 8px;
}

.offer-benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  line-height: 1.2;
  text-align: left;
}

.offer-benefit-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.offer-benefit-item strong {
  color: var(--color-gold);
}

.benefit-divider {
  color: rgba(255, 255, 255, 0.2);
}

.inside-card-cta {
  margin-bottom: 0;
  width: 100%;
}

/* Invest Section / Highlight */
.invest-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem;
  text-align: center;
}
.invest-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 3rem;
  letter-spacing: 0.5px;
}
.highlight-buy-box {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--color-gold);
  border-radius: 8px;
  background-color: rgba(242, 183, 5, 0.05);
  margin-bottom: 3rem;
}
.highlight-buy-box svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* =========================================
   SEÇÃO 7: BÔNUS
   ========================================= */
.offer-section {
  padding: 1rem 0 2rem 0;
  background-color: var(--color-bg);
}

.bonus-section {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  background-color: #0a0a0a;
}

.bonus-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.gift-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.bonus-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 1px;
  line-height: 1;
}

.bonus-subtitle {
  display: block;
  font-size: 0.85rem;
  color: var(--color-green-cta);
  margin-bottom: 1rem;
  font-weight: 600;
}

.bonus-total {
  display: none;
}

.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bonus-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #111;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
}

.bonus-num {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-green-cta);
  color: var(--color-green-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.bonus-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.bonus-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.bonus-card p {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  margin-bottom: 1rem;
}

.bonus-value {
  display: inline-block;
  background-color: rgba(31, 174, 75, 0.1);
  color: var(--color-green-cta);
  border: 1px solid var(--color-green-cta);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* =========================================
   GARANTIA E FORMULÁRIO DE CONTATO
   ========================================= */
.guarantee-section {
  background: linear-gradient(
    180deg,
    rgba(242, 183, 5, 0.05) 0%,
    rgba(242, 183, 5, 0.15) 100%
  );
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.guarantee-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.guarantee-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.guarantee-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 5px;
}

.guarantee-titles h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.guarantee-titles p {
  font-size: 0.95rem;
  color: var(--color-text-white);
}

.guarantee-seal-placeholder {
  width: 120px;
  height: 120px;
  background-color: rgba(242, 183, 5, 0.1);
  border-radius: 50%;
  border: 2px dashed var(--color-gold);
}

/* =========================================
   BOTÃO DISCRETO (RODAPÉ) E MODAL DE CONTATO
   ========================================= */
.contact-footer-trigger {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
}

.btn-discreet {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-gray);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.btn-discreet:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-gold);
  color: #fff;
}

.btn-discreet svg {
  width: 24px;
  height: 24px;
}
.btn-discreet .btn-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: #fff;
}
.btn-discreet .btn-text span {
  font-size: 0.8rem;
}

/* Modal / Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.modal-content {
  background: #0f0f0f;
  border: 1px solid var(--color-gold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.modal-overlay.hidden .modal-content {
  transform: translateY(20px);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #888;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.close-btn:hover {
  color: var(--color-red-alert);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-align: center;
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  text-align: center;
  color: var(--color-text-gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Campos do formulário */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1a1a1a;
  color: #fff;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.lead-form textarea {
  resize: none;
}

.lead-form button {
  background: var(--color-gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition:
    transform 0.2s,
    background 0.3s;
}
.lead-form button:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
}

/* =================================================================
   🖥️ MASTER DESKTOP LAYOUT (TELAS MAIORES QUE 1024PX)
   ================================================================= */
@media (min-width: 1024px) {
  /* 1. Container Geral */
  .container {
    max-width: 1250px;
  }



/* Ajuste do Jovem (Hero BG) no Desktop */
  .hero-bg {
    background-position: right top; /* Alinha na direita, mas deixa uma leve margem para não colar na tela */
    background-size: 35% auto; /* Mantém ele bem contido, do tamanho exato para aparecer o corpo e rosto atrás do vídeo */
  }

  /* 2. Hero Section (Ultra Compactado para o 1º Scroll) */
  .hero {
    min-height: auto;
    padding-bottom: 1.5rem;
  }
  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    grid-template-areas:
      "logo logo"
      "head video"
      "sub video"
      "btn video"
      "badges video";
    align-items: center;
    gap: 0.5rem 3rem; /* Espaço vertical entre as linhas bem reduzido */
    padding-top: 0.5rem; /* Menos espaço sobrando no topo */
  }
  .header-logo {
    grid-area: logo;
    margin-bottom: 0.5rem;
  }
  .logo-img {
    height: 80px; /* Logo um pouco menor */
  }
  .headline {
    grid-area: head;
    font-size: 2.9rem; /* Fonte levemente reduzida (era 3.4rem) */
    line-height: 1.05;
    margin-bottom: 0;
    margin-top: 0;
  }
  .subheadline {
    grid-area: sub;
    font-size: 1.05rem;
    margin-bottom: 0.5rem; /* Menos espaço acima do botão */
  }
  .video-container {
    grid-area: video;
    margin: 0;
    max-width: 100%;
  }
  .hero .cta-button {
    grid-area: btn;
    max-width: 400px;
    margin-bottom: 0.5rem; /* Aproxima os selos de garantia do botão */
    padding: 1rem; /* Deixa o botão levemente mais fino na altura */
    font-size: 1.2rem;
  }
  .hero .footer-blindado {
    grid-area: badges;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }

  /* 3. Dores / Realidades */
  .section-title {
    font-size: 2.8rem;
  }
  .pain-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .pain-item {
    width: 100%;
    padding: 0;
  }

  /* 4. Solução / Operação Sargento */
  .solution-title {
    font-size: 3.2rem;
  }
  .check-list-row {
    flex-direction: row !important;
    justify-content: center;
    gap: 3rem;
  }

  /* 5. Os Pilares */
  .pillars-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .pillar-item {
    width: 100%;
  }
  .pillar-item h4 {
    font-size: 1.1rem;
  }
  .pillars .cta-button {
    max-width: 500px;
    margin: 0 auto 2rem auto;
  }

  /* 6. Plataforma / O Sistema */
  .system-title {
    font-size: 2.8rem;
  }
  .mockup-wrapper {
    max-width: 800px;
    margin: 0 auto 4rem auto;
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
  .system-section .cta-button {
    max-width: 600px;
    margin: 0 auto 2rem auto;
  }
  .system-section .footer-blindado {
    justify-content: center !important;
    margin-bottom: 1rem !important;
  }


  /* Prova social / avaliações */
  .reviews-section {
    padding: 5rem 0 4.5rem;
  }
  .reviews-title {
    font-size: 3rem;
  }
  .reviews-carousel {
    max-width: 760px;
    min-height: 245px;
    margin: 0 auto;
  }
  .review-card {
    min-height: 245px;
    padding: 2rem;
  }
  .review-text {
    font-size: 1.08rem;
  }

  /* 7. Comparação e Oferta Interna */
  .compare-wrapper {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }
  .compare-card {
    width: 45%;
  }
  .highlight-buy-box {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    justify-content: center;
  }

  /* Bônus */
  .bonus-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }
  .bonus-card {
    width: 33.33%;
  }

  .bonus-total {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.7rem;
    text-align: right;
    line-height: 1.3;
    background-color: #111;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }
  .bonus-total .highlight-green {
    display: block;
    font-size: 1.6rem;
    margin-top: 4px;
  }

  /* Garantia */
  .guarantee-content {
    flex-direction: row;
    justify-content: center;
    text-align: left;
    gap: 5rem;
  }
  .guarantee-titles {
    max-width: 500px;
  }
  .btn-green[style*="margin-bottom: 0"] {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* =========================================
   SEÇÃO: AULAS DEMONSTRATIVAS
   ========================================= */
.sample-lessons-section {
  position: relative;
  padding: 4rem 0 3.5rem;
  background:
    radial-gradient(circle at top, rgba(31, 174, 75, 0.1) 0%, rgba(0, 0, 0, 0) 48%),
    #000;
  border-top: 1px solid rgba(242, 183, 5, 0.18);
  overflow: hidden;
}

.sample-lessons-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(520px, 90%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--color-green-cta), transparent);
  opacity: 0.75;
}

.sample-lessons-header {
  text-align: center;
  margin-bottom: 2rem;
}

.sample-lessons-kicker {
  display: inline-block;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.sample-lessons-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sample-lessons-subtitle {
  color: var(--color-text-gray);
  font-size: 0.98rem;
  line-height: 1.5;
}

.sample-lessons-grid {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.sample-lesson-card {
  position: relative;
  padding: 1.35rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(7, 7, 7, 0.98) 100%);
  border: 1px solid rgba(242, 183, 5, 0.18);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.sample-lesson-card::after {
  content: "";
  position: absolute;
  top: -35px;
  right: -35px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(242, 183, 5, 0.08);
  pointer-events: none;
}

.sample-lesson-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.sample-lesson-tag,
.sample-lesson-duration {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.sample-lesson-tag {
  color: #000;
  background: var(--color-gold);
  padding: 0.45rem 0.65rem;
}

.sample-lesson-duration {
  color: var(--color-text-gray);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.42rem 0.6rem;
}

.sample-lesson-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.sample-lesson-card p {
  position: relative;
  z-index: 1;
  color: var(--color-text-gray);
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: 1.2rem;
}

.sample-play-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(31, 174, 75, 0.7);
  border-radius: 10px;
  background: rgba(31, 174, 75, 0.13);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.sample-play-btn:hover {
  background: rgba(31, 174, 75, 0.22);
  border-color: var(--color-green-hover);
  transform: translateY(-2px);
}

.sample-play-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.sample-lessons-cta {
  margin-bottom: 0;
}

.sample-video-modal.hidden {
  display: none;
}

.sample-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.sample-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(6px);
}

.sample-video-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  background: #080808;
  border: 1px solid rgba(242, 183, 5, 0.4);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.sample-video-dialog h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.5px;
  color: #fff;
  padding: 0 2.5rem 0.9rem 0;
}

.sample-video-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.sample-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
}

.sample-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.video-modal-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .sample-lessons-section {
    padding: 5rem 0 4.5rem;
  }

  .sample-lessons-section .container {
    max-width: 1120px;
  }

  .sample-lessons-title {
    font-size: 3rem;
  }

  .sample-lessons-subtitle {
    max-width: 720px;
    margin: 0 auto;
  }

  .sample-lessons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .sample-lesson-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
  }

  .sample-lesson-card p {
    flex: 1;
  }

  .sample-lessons-cta {
    max-width: 520px;
    margin: 0 auto;
  }

  .sample-video-dialog {
    padding: 1.25rem;
  }

  .sample-video-dialog h3 {
    font-size: 1.65rem;
  }
}

