/* ============================================================
   IMERSÃO DESIGNER 360 — style.css
   Estética dark premium cósmico/galáctico
   Mobile-first · Playfair Display + Inter + Cormorant Garamond
   ============================================================ */

/* === RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }
button { font-family: inherit; }

/* ============================================================
   CSS VARIABLES (paleta do briefing)
   ============================================================ */
:root {
  /* Fundos */
  --bg-primary:      #0A0A12;
  --bg-secondary:    #15151F;
  --bg-card:         #1C1C28;
  --bg-card-hover:   #252533;

  /* Tipografia */
  --text-primary:    #FFFFFF;
  --text-secondary:  #C5C5D2;
  --text-muted:      #8A8A99;

  /* Dourado */
  --gold-primary:    #D4A537;
  --gold-bright:     #E8BE52;
  --gold-dark:       #A87E1A;
  --gold-glow:       rgba(212, 165, 55, 0.3);

  /* Cores dos 5 Pilares */
  --pilar-mentalidade:   #D4A537;
  --pilar-tecnica:       #C0C0CC;
  --pilar-marketing:     #4A90E2;
  --pilar-vendas:        #2ECC71;
  --pilar-posicionamento:#B87A6B;

  /* CTA */
  --cta-primary:          #D4A537;
  --cta-hover:            #E8BE52;
  --cta-secondary:        #2ECC71;
  --cta-secondary-hover:  #27AE60;

  /* Bordas e sombras */
  --border-subtle:   rgba(212, 165, 55, 0.2);
  --border-card:     rgba(255, 255, 255, 0.08);
  --shadow-card:     0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow:     0 0 40px rgba(212, 165, 55, 0.2);

  /* Fontes */
  --font-display:  'Playfair Display', serif;
  --font-body:     'Inter', sans-serif;
  --font-cursive:  'Cormorant Garamond', serif;

  /* Layout */
  --container-max:    1200px;
  --section-padding:  64px 0;
}

/* ============================================================
   LAYOUT BASE
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================================
   ANIMAÇÕES ON SCROLL
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FUNDO CÓSMICO — ESTRELAS
   ============================================================ */
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  min-height: 52px;
  line-height: 1.2;
  text-align: center;
}

/* CTA principal (verde) — hero, oferta, final */
.btn-hero,
.btn-oferta,
.btn-cta-final {
  background: var(--cta-secondary);
  color: #fff;
  width: 100%;
  font-size: 1.05rem;
  padding: 20px 28px;
  box-shadow: 0 4px 24px rgba(46, 204, 113, 0.3);
  animation: pulse-green 3s ease-in-out infinite;
}
.btn-hero:hover,
.btn-oferta:hover,
.btn-cta-final:hover {
  background: var(--cta-secondary-hover);
  box-shadow: 0 6px 36px rgba(46, 204, 113, 0.5);
  transform: translateY(-2px);
}

/* CTA sticky */
.btn-sticky {
  background: var(--cta-primary);
  color: #000;
  font-size: 0.8rem;
  padding: 10px 16px;
  min-height: 38px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-sticky:hover {
  background: var(--cta-hover);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 24px rgba(46, 204, 113, 0.3); }
  50%       { box-shadow: 0 4px 44px rgba(46, 204, 113, 0.55); }
}

/* ============================================================
   TÍTULOS E SUBTÍTULOS DE SEÇÃO
   ============================================================ */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-title.text-left {
  text-align: left;
}

.section-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: var(--text-secondary);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

/* ============================================================
   SEÇÃO 1 — TOPO STICKY
   ============================================================ */
#sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 165, 55, 0.3);
  padding: 8px 0;
}

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sticky-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
}
.sticky-logo-cursive {
  font-family: var(--font-cursive);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--gold-primary);
  display: none; /* oculto no mobile, aparece em tablet+ */
}
.sticky-logo-bold {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
  white-space: nowrap;
}

.sticky-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
.countdown-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: none;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 3px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 3px 5px;
  min-width: 32px;
}
.countdown-unit span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-primary);
  line-height: 1;
}
.countdown-unit small {
  font-size: 0.5rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 1px;
}
.countdown-sep {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.9rem;
  padding-bottom: 6px;
}

/* ============================================================
   SEÇÃO 2 — HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  padding-top: 62px; /* altura da sticky bar */
  background: radial-gradient(ellipse at 60% 40%, #1A1A2E 0%, #0A0A12 70%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 48px 16px 64px;
  width: 100%;
}

/* Mobile: imagem no topo */
.hero-image {
  order: -1;
}
.hero-banner-img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.hero-tag {
  font-family: var(--font-cursive);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 4px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  line-height: 1;
  margin-bottom: 20px;
  /* Gradiente dourado metálico */
  background: linear-gradient(135deg, #E8BE52 0%, #FFD974 30%, #D4A537 60%, #A87E1A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Glow pulsante */
  filter: drop-shadow(0 0 12px rgba(212, 165, 55, 0.55))
          drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  animation: hero-title-glow 3.5s ease-in-out infinite;
}

@keyframes hero-title-glow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(212, 165, 55, 0.45))
            drop-shadow(0 0 28px rgba(212, 165, 55, 0.2))
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(232, 190, 82, 0.75))
            drop-shadow(0 0 50px rgba(212, 165, 55, 0.4))
            drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
  }
}

.hero-360 {
  display: inline;
}

.hero-divider {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright));
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-subheadline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.35;
}

.hero-description {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.hero-detail-item span {
  color: var(--text-primary);
  font-weight: 500;
}

.hero-price-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 165, 55, 0.2); }
  50%       { box-shadow: 0 0 44px rgba(212, 165, 55, 0.45); }
}
.price-lote {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 6px;
}
.price-value {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
  margin-bottom: 6px;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-primary);
  padding-top: 8px;
}
.price-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 4rem);
  font-weight: 900;
  color: var(--gold-primary);
}
.price-installments {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-urgency {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 500;
  margin-top: 14px;
}

/* ============================================================
   SEÇÃO 3 — DIAGNÓSTICO
   ============================================================ */
#diagnostico {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}
#diagnostico .container { padding-top: 64px; padding-bottom: 64px; }

.diagnostico-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.diagnostico-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-left: 3px solid var(--card-border, var(--gold-primary));
  border-radius: 12px;
  padding: 22px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.diagnostico-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.4);
}
.diagnostico-card-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.diagnostico-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.diagnostico-card-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-bright);
  margin-bottom: 10px;
  line-height: 1.5;
}
.diagnostico-card-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.diagnostico-transicao {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.diagnostico-transicao-text {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.65;
}
.diagnostico-transicao-text em {
  color: var(--gold-primary);
  font-style: normal;
  font-weight: 700;
}
.diagnostico-impacto {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.85rem);
  font-weight: 700;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--bg-card), #1A1A2E);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 28px 24px;
  line-height: 1.45;
}

/* ============================================================
   SEÇÃO 4 — CONCEITO DESIGNER 360
   ============================================================ */
#conceito {
  background: var(--bg-primary);
}
#conceito .container { padding-top: 64px; padding-bottom: 64px; }

.conceito-banner-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.conceito-banner {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  margin-bottom: 16px;
}
.conceito-legenda {
  font-family: var(--font-cursive);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-primary);
  line-height: 1.65;
}

/* ============================================================
   SEÇÃO 5 — OS 5 PILARES
   ============================================================ */
#pilares {
  background: var(--bg-secondary);
}
#pilares .container { padding-top: 64px; padding-bottom: 64px; }

.pilares-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.pilar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pilar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pilar-color, var(--gold-primary));
  border-radius: 16px 16px 0 0;
}
.pilar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.pilar-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.pilar-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pilar-color, var(--gold-primary));
  margin-bottom: 8px;
}
.pilar-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.pilar-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.pilar-arrow {
  font-size: 0.88rem;
  color: var(--gold-primary);
  font-style: italic;
  font-weight: 500;
  border-left: 2px solid var(--gold-primary);
  padding-left: 12px;
  line-height: 1.55;
}

.pilares-fecho {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3vw, 1.4rem);
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.55;
}
.pilares-fecho strong {
  color: var(--gold-primary);
}

/* ============================================================
   SEÇÃO 6 — PROGRAMAÇÃO DAS 2 NOITES
   ============================================================ */
#programacao {
  background: var(--bg-primary);
}
#programacao .container { padding-top: 64px; padding-bottom: 64px; }

.programacao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.noite-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-left: 4px solid var(--gold-primary);
  border-radius: 16px;
  padding: 28px 24px;
}
.noite-card-2 {
  border-left-color: var(--gold-dark);
}

.noite-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.noite-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.noite-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 4px;
}
.noite-data {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}
.noite-tema {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-bright);
  line-height: 1.4;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-card);
}
.noite-intro {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.noite-lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.noite-lista li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.noite-lista li::before {
  content: '✓';
  color: var(--gold-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.programacao-quote {
  background: var(--bg-secondary);
  border-left: 4px solid var(--gold-primary);
  border-radius: 0 14px 14px 0;
  padding: 28px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto;
}
.programacao-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold-primary);
}

/* ============================================================
   SEÇÃO 7 — QUEM É DAIANE MACHADO
   ============================================================ */
#daiane {
  background: var(--bg-primary);
}
#daiane .container { padding-top: 64px; padding-bottom: 64px; }

.daiane-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.daiane-foto-wrap {
  display: flex;
  justify-content: center;
}
.daiane-foto {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-glow);
  object-fit: cover;
  aspect-ratio: 3/4;
  background: var(--bg-card); /* fallback se imagem não carregou */
}

.daiane-descricao {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}
.daiane-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.35;
}
.daiane-fechamento {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   SEÇÃO 8 — DEPOIMENTOS
   ============================================================ */
#depoimentos {
  background: var(--bg-secondary);
}
#depoimentos .container { padding-top: 64px; padding-bottom: 64px; }

.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Card base — agora é um <a> clicável */
.depoimento-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.depoimento-card:hover {
  transform: scale(1.02);
  border-color: rgba(212, 165, 55, 0.5);
  box-shadow: 0 0 24px rgba(212, 165, 55, 0.18), 0 8px 32px rgba(0,0,0,0.4);
}

/* Print — imagem contida para prints de WhatsApp aparecerem inteiros */
.depoimento-print {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  max-height: auto;
}
.depoimento-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: top;
}

/* ============================================================
   SEÇÃO 9 — BÔNUS
   ============================================================ */
#bonus {
  background: var(--bg-primary);
}
#bonus .container { padding-top: 64px; padding-bottom: 64px; }

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 8px 32px rgba(212,165,55,0.12);
}
.bonus-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}
.bonus-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
}
.bonus-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.bonus-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   SEÇÃO 10 — PRA QUEM É / NÃO É
   ============================================================ */
#publico {
  background: var(--bg-secondary);
}
#publico .container { padding-top: 64px; padding-bottom: 64px; }

.publico-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.publico-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 28px 24px;
}
.publico-sim {
  border-left: 4px solid var(--pilar-vendas);
}
.publico-nao {
  border-left: 4px solid #A0312E;
}
.publico-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.35;
}
.publico-sim-title { color: var(--pilar-vendas); }
.publico-nao-title { color: #C0504A; }

.publico-lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.publico-lista li {
  display: flex;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.publico-lista li::before {
  content: '✓';
  color: var(--pilar-vendas);
  font-weight: 700;
  flex-shrink: 0;
}
.publico-lista-nao li::before {
  content: '✗';
  color: #C0504A;
}

/* ============================================================
   SEÇÃO 11 — OFERTA E PREÇO
   ============================================================ */
#oferta {
  background: var(--bg-primary);
}
#oferta .container { padding-top: 64px; padding-bottom: 64px; }

.oferta-card {
  max-width: 580px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1C1C28 0%, #252533 100%);
  border: 1px solid var(--gold-primary);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 0 60px rgba(212, 165, 55, 0.18);
}

.oferta-lote {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(212, 165, 55, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 20px;
  animation: blink-lote 2s ease-in-out infinite;
}
@keyframes blink-lote {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}

.oferta-preco {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.oferta-currency {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  padding-top: 12px;
}
.oferta-valor {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 5.5rem);
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
}
.oferta-parcelado {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.oferta-incluso {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
}
.oferta-incluso li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.oferta-countdown-wrap {
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}
.oferta-countdown-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.countdown-oferta {
  justify-content: center;
}
.countdown-oferta .countdown-unit {
  min-width: 46px;
  padding: 6px 8px;
}
.countdown-oferta .countdown-unit span {
  font-size: 1.25rem;
}

.btn-oferta {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.oferta-seguranca {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   SEÇÃO 12 — GARANTIA
   ============================================================ */
#garantia {
  background: var(--bg-secondary);
}
#garantia .container { padding-top: 64px; padding-bottom: 64px; }

.garantia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}
.garantia-selo {
  display: flex;
  justify-content: center;
}
.selo-outer {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 3px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: selo-glow 3s ease-in-out infinite;
}
@keyframes selo-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(212,165,55,0.3); }
  50%       { box-shadow: 0 0 55px rgba(212,165,55,0.55); }
}
.selo-inner {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  background: radial-gradient(circle, #1C1C28, #0A0A12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
}
.selo-text-top,
.selo-text-bottom {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-primary);
}
.selo-days {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
}
.selo-sub {
  font-size: 0.52rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.garantia-texto {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.garantia-destaque {
  font-size: 1rem;
  color: var(--gold-primary);
  font-style: italic;
  font-weight: 500;
  line-height: 1.65;
}

/* ============================================================
   SEÇÃO 13 — FAQ
   ============================================================ */
#faq {
  background: var(--bg-primary);
}
#faq .container { padding-top: 64px; padding-bottom: 64px; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.active {
  border-color: rgba(212, 165, 55, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.25s ease;
  line-height: 1.4;
}
.faq-question:hover {
  color: var(--gold-primary);
}
.faq-item.active .faq-question {
  color: var(--gold-primary);
  border-bottom: 1px solid rgba(212, 165, 55, 0.2);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
}
.faq-answer p {
  padding: 16px 20px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   SEÇÃO 14 — CTA FINAL
   ============================================================ */
#cta-final {
  position: relative;
  padding: 80px 0;
  background: radial-gradient(ellipse at center, #1A1A2E 0%, #0A0A12 75%);
  overflow: hidden;
  text-align: center;
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 16px;
}
.cta-final-titulo {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 0 50px rgba(212,165,55,0.2);
}
.cta-final-texto {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.cta-final-urgencia {
  font-size: 1rem;
  color: var(--gold-primary);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 32px;
}
.btn-cta-final {
  max-width: 500px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
}
.cta-final-info {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   SEÇÃO 15 — FOOTER
   ============================================================ */
#footer {
  background: #07070E;
  padding: 48px 0 32px;
  border-top: 1px solid var(--border-card);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.25;
}
.footer-logo-cursive {
  font-family: var(--font-cursive);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-primary);
}
.footer-logo-bold {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--gold-primary); }
.footer-legal p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.65;
  opacity: 0.65;
}

/* ============================================================
   RESPONSIVE — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .sticky-logo-cursive { display: block; }
  .countdown-label    { display: block; }

  .countdown-unit { min-width: 42px; padding: 5px 8px; }
  .countdown-unit span { font-size: 1.1rem; }

  .hero-inner { padding: 72px 32px 80px; }
  .hero-details { flex-direction: row; flex-wrap: wrap; gap: 12px 24px; }

  .diagnostico-grid { grid-template-columns: repeat(2, 1fr); }
  .pilares-grid     { grid-template-columns: repeat(2, 1fr); }
  .programacao-grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
  .depoimento-print { max-height: 420px; }
  .bonus-grid       { grid-template-columns: repeat(3, 1fr); }
  .publico-grid     { grid-template-columns: repeat(2, 1fr); }

  .daiane-grid { grid-template-columns: 1fr 1fr; align-items: start; }

  .garantia-grid { grid-template-columns: auto 1fr; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .container { padding: 0 48px; }

  /* Hero lado a lado */
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    padding: 100px 48px;
  }
  .hero-image {
    order: 1;
    flex: 0 0 46%;
  }
  .hero-banner-img { max-width: 100%; }
  .hero-content {
    order: 0;
    flex: 1;
  }

  /* Diagnóstico — 5 colunas */
  .diagnostico-grid { grid-template-columns: repeat(5, 1fr); }

  /* Pilares — 3 colunas */
  .pilares-grid { grid-template-columns: repeat(3, 1fr); }

  /* Depoimentos — 3 colunas, altura máxima nos cards */
  .depoimentos-grid { grid-template-columns: repeat(3, 1fr); }
  .depoimento-print { max-height: 500px; }
}

/* ============================================================
   RESPONSIVE — LARGE DESKTOP (1440px+)
   ============================================================ */
@media (min-width: 1440px) {
  :root { --container-max: 1280px; }
}
