/* =========================================
   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: 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: -50px;
  width: 100%;
  height: 70%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 1) 100%),
    url("aluno-unibe-esa.jpg") center top no-repeat;

  /* Brinque com este valor. 
     100% = Encosta nas bordas laterais.
     80% = Deixa o cara menor (mais distante).
     150% = Dá um super zoom. */
  background-size: 80% auto;
  z-index: -1;
}

.header-logo {
  padding: 2rem 0;
}

.logo-img {
  height: 100px;
  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: -20px;
  margin-bottom: 1.8rem;
  text-transform: none;
}

.highlight-gold {
  color: var(--color-gold);
}

.subheadline {
  font-size: 1rem;
  color: var(--color-text-gray);
  margin-bottom: 2rem;
  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);
  }
}

.play-button {
  position: relative;
  z-index: 3;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

/* =========================================
   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;
}

.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-secondary {
  background-color: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  margin-bottom: 0;
}

.cta-secondary:hover {
  background-color: rgba(242, 183, 5, 0.1);
}

.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É)
   ========================================= */
.trust-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-text-gray);
}

.badge-item svg {
  width: 14px;
  height: 14px;
  fill: var(--color-gold);
}

.badge-dot {
  color: var(--color-gold);
}

.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;
}

.highlight-card {
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  padding: 1.5rem;
  background-color: rgba(242, 183, 5, 0.05);
  box-shadow: 0 4px 20px rgba(242, 183, 5, 0.1);
}

/* =========================================
   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: 5 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);
}

.bonus-box {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-gray);
}

.bonus-icon {
  width: 32px;
  height: 32px;
  stroke: var(--color-gold);
  flex-shrink: 0;
}

/* =========================================
   BOTÕES DE CONTATO
   ========================================= */
.contact-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.8rem;
}

.contact-buttons a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border-radius: 8px;
  color: var(--color-text-white);
  transition: transform 0.2s;
  width: 48%;
  flex-direction: column;
  text-align: center;
  padding: 1rem 0.5rem;
  justify-content: center;
}

.contact-buttons a:hover {
  transform: translateY(-2px);
}

.contact-buttons svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.contact-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.contact-sub {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}

.btn-whatsapp {
  background-color: rgba(37, 211, 102, 0.15);
  border: 1px solid #25d366;
}
.btn-whatsapp svg {
  color: #25d366;
}

.btn-email {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-email svg {
  stroke: var(--color-text-white);
}

/* =========================================
   SEÇÃO 5: O SISTEMA (PLATAFORMA)
   ========================================= */
.system-section {
  padding: 4rem 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;
}

/* =========================================
   RODAPÉ DA SEÇÃO (CTA E BADGES)
   ========================================= */
.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;
}

.arrow-right {
  margin-left: 5px;
  font-family: var(--font-body);
}

.badges-detailed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.badge-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 8px;
  text-align: left;
}

.badge-box svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text-white);
  letter-spacing: 0.5px;
  line-height: 1.1;
  font-weight: 500;
}

.badge-text span {
  font-size: 0.8rem;
  color: var(--color-text-gray);
}

/* =========================================
   SEÇÃO 6: COMPARAÇÃO E BENEFÍCIOS
   ========================================= */
.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: 1rem;
  margin-bottom: 5rem;
}

.compare-card {
  width: 100%;
  border-radius: 12px;
  padding: 2rem 1.5rem;
}

/* O Jeito Antigo (Ruim) */
.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;
}

/* O Nosso Jeito (Bom) */
.good-way {
  background-color: rgba(242, 183, 5, 0.03);
  border: 1px 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);
}

/* Estrutura Interna dos Cards de Comparação */
.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;
}

/* Selo VS */
.vs-badge {
  width: 60px;
  height: 60px;
  background-color: var(--color-bg);
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  margin: -1.5rem 0;
}

/* Seção de Investimento/Benefícios */
.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;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-white);
  font-weight: 500;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.4;
}

/* Box de Destaque Final */
.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;
}

.highlight-buy-box span {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-white);
  margin-bottom: 0.3rem;
}

.highlight-buy-box strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.1;
  display: block;
  font-weight: 500;
}

/* =========================================
   SEÇÃO 7: OFERTA, PREÇO, BÔNUS E GARANTIA
   ========================================= */
.offer-section {
  padding: 4rem 0 2rem 0;
  background-color: var(--color-bg);
}

.pricing-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.price-card {
  width: 100%;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.price-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.price-header svg {
  width: 28px;
  height: 28px;
}

.price-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  margin-top: 5px;
}

.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);
}

/* Preço Ruim (Presencial) */
.bad-price {
  background-color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.red-strike {
  color: var(--color-red-alert);
  text-decoration: line-through;
}

/* Preço Bom (Operação) */
.good-price {
  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);
  padding-top: 2.5rem;
}

.best-choice-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: 1rem;
  padding: 4px 15px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* =========================================
   BENEFÍCIOS E SEGURANÇA
   ========================================= */
.offer-benefits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(242, 183, 5, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.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);
}

.secure-text {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 3rem;
}

.secure-text svg {
  width: 16px;
  height: 16px;
}

/* =========================================
   BÔNUS
   ========================================= */
.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;
}

.highlight-green {
  color: var(--color-green-cta);
  font-size: 1.2rem;
  font-weight: bold;
}

.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
   ========================================= */
.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);
}

/* =================================================================
   🖥️ MASTER DESKTOP LAYOUT (TELAS MAIORES QUE 1024PX)
   ================================================================= */
@media (min-width: 1024px) {
  /* 1. Container Geral (Aumentado para destacar o vídeo) */
  .container {
    max-width: 1250px;
  }

  /* 2. Hero Section (Vídeo maior) */
  .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: 1rem 5rem;
    padding-top: 2rem;
  }
  .header-logo {
    grid-area: logo;
    margin-bottom: 2rem;
  }
  .headline {
    grid-area: head;
    font-size: 3.8rem;
    margin-bottom: 1rem;
  }
  .subheadline {
    grid-area: sub;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .video-container {
    grid-area: video;
    margin: 0;
    max-width: 100%;
  }
  .hero .cta-button {
    grid-area: btn;
    max-width: 400px;
    margin-bottom: 0;
  }
  .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;
  }

  /* Card de Destaque preenche o espaço da direita */
  .highlight-card {
    grid-column: auto;
    width: 100%;
    margin: 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 5 Pilares */
  .pillars-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 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;
  }
  .badges-detailed {
    display: flex;
    justify-content: center;
    gap: 3rem;
  }
  .badge-box {
    width: auto;
  }

  /* 7. Comparação */
  .compare-wrapper {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }
  .compare-card {
    width: 45%;
  }
  .vs-badge {
    margin: auto -30px;
  }
  .benefits-grid {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }
  .benefit-card {
    width: 30%;
  }
  .highlight-buy-box {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    justify-content: center;
  }
  .comparison-section .cta-button {
    max-width: 600px;
    margin: 0 auto 2rem auto;
  }

  /* 8. Oferta, Bônus e Garantia */
  .pricing-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
  }
  .price-card {
    width: 40%;
  }
  .btn-green {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.5rem;
    padding: 1.5rem;
  }
  .offer-benefits {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    padding: 1.5rem;
  }
  .offer-benefit-item {
    font-size: 0.9rem;
  }

  .bonus-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }
  .bonus-card {
    width: 33.33%;
  }

  /* Preço Total do Bônus ancorado no canto superior direito no PC */
  .bonus-total {
    display: block; /* Volta a aparecer no PC */
    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;
  }

  .guarantee-content {
    flex-direction: row;
    justify-content: center;
    text-align: left;
    gap: 5rem;
  }
  .guarantee-titles {
    max-width: 500px;
  }
  .cta-secondary {
    max-width: 600px;
    margin: 0 auto;
  }

  /* Badges Rodapé */
  .footer-blindado {
    gap: 30px !important;
  }
  .footer-blindado .badge-item {
    font-size: 13px !important;
  }
  .footer-blindado .badge-item svg {
    width: 18px !important;
    height: 18px !important;
  }

  /* Botões Contato */
  .contact-buttons {
    flex-direction: row !important;
    justify-content: center;
    gap: 2rem;
  }
  .contact-buttons a {
    width: 40%;
    flex-direction: row;
    text-align: left;
    padding: 1.2rem;
  }
  .contact-buttons svg {
    margin-bottom: 0;
    margin-right: 15px;
  }
}
