/* Reset e base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* NÔMADE TRADER — Branding oficial */
:root {
  /* Cor Primária — Azul Profundo (Background) #0B1C2D */
  --bg-dark: #0B1C2D;
  --bg-hero: #0B1C2D;
  /* Cor Secundária — Dourado Premium (Logo e Destaques) #C9A44C */
  --gold: #C9A44C;
  --gold-hover: #b8923a;
  /* Verde — Botões de venda e acesso */
  --green-cta: #22c55e;
  --green-cta-hover: #16a34a;
  /* Cor de Apoio — Branco Neutro */
  --text: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.85);
  /* Tipografia: Montserrat (leitura e CTAs) */
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --gray-bar: #0f2438;
  --border-accent: #C9A44C;
}

html {
  scroll-behavior: smooth;
}

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

/* Hero - Primeira Dobra: imagem ocupa toda a section, texto dentro dela */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("primeira dobra.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0.5;
  background: linear-gradient(to right, rgba(11, 28, 45, 0.88) 0%, rgba(11, 28, 45, 0.5) 45%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.brand-tagline {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  text-transform: none;
}

.badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  color: #0B1C2D;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.badge-icon {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
}

.badge-text {
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-text .hero-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--text);
}

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

.hero-text .hero-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.icon-calendar {
  flex-shrink: 0;
}

.hero-text .hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.cta-btn {
  display: inline-block;
  background: var(--green-cta);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
}

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

.hero-text .hero-warning {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-text .hero-warning .arrow {
  color: var(--gold);
  font-weight: 700;
}

/* Blocos de seção (O que você vai aprender, Para quem é, Sobre) */
.section-block {
  padding: 3.5rem 1.5rem;
  background: var(--bg-dark);
  max-width: 720px;
  margin: 0 auto;
}

.section-block .section-title {
  font-family: var(--font);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.list-block {
  list-style: none;
}

.list-block li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.list-block li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.section-sobre .sobre-texto {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.section-sobre .sobre-texto p {
  margin-bottom: 1rem;
}

.section-sobre .sobre-texto p:last-child {
  margin-bottom: 0;
}

/* Depoimentos */
.depoimentos {
  padding: 4rem 1.5rem;
  background: var(--bg-dark);
}

.depoimentos .section-title {
  font-family: var(--font);
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.depoimentos .section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

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

.depoimentos-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depoimentos-grid-videos {
  max-width: 900px;
  grid-template-columns: repeat(2, 1fr);
}

.depoimento-card {
  border: 2px solid var(--border-accent);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--gray-bar);
}

.depoimento-video .depoimento-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
}

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

.depoimento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.depoimento-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
  position: relative;
}

.depoimento-label {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.depoimento-label.adl {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.depoimento-2 {
  background: linear-gradient(180deg, #0f2438 0%, #0B1C2D 100%);
}

/* Resultados (imagens) */
.resultados {
  padding: 4rem 1.5rem;
  background: var(--bg-dark);
}

.resultados .section-title {
  font-family: var(--font);
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

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

.resultados .section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.resultados-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.resultado-card {
  border: 2px solid var(--border-accent);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--gray-bar);
}

.resultado-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

/* Oferta - Escolha Online ou Presencial */
.oferta {
  padding: 4rem 1.5rem;
  background: var(--bg-dark);
}

.oferta-escolha-titulo {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
  color: var(--text);
}

.oferta-escolha-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.oferta-opcoes {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.oferta-card {
  border: 2px solid var(--border-accent);
  border-radius: 12px;
  padding: 2rem;
  background: rgba(15, 36, 56, 0.8);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.oferta-card-titulo {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.oferta-card-badge {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.oferta-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.oferta-card .cta-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.oferta-box {
  max-width: 560px;
  margin: 0 auto;
  border: 2px solid var(--border-accent);
  border-radius: 12px;
  padding: 2.5rem;
  background: rgba(15, 36, 56, 0.8);
}

.oferta-title {
  font-family: var(--font);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.oferta-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.oferta-beneficios {
  list-style: none;
  margin-bottom: 1.5rem;
}

.oferta-beneficios li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.oferta-beneficios .check {
  color: var(--gold);
  font-weight: 700;
}

.oferta-preco {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.preco-antigo {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
}

.preco-label {
  font-size: 1rem;
  color: var(--text);
}

.preco-atual {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  width: 100%;
}

.oferta-box .cta-btn {
  width: 100%;
  text-align: center;
}

.oferta-presencial {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 164, 76, 0.3);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.oferta-presencial strong {
  color: var(--text);
}

.cta-btn-large {
  padding: 1.15rem 2rem;
  font-size: 1.05rem;
}

.cta-btn-outline {
  display: block;
  margin-top: 1rem;
  background: transparent;
  color: var(--green-cta);
  border: 2px solid var(--green-cta);
  text-align: center;
}

.cta-btn-outline:hover {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green-cta-hover);
  border-color: var(--green-cta-hover);
}

/* Footer */
.footer {
  background: var(--gray-bar);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-brand {
  font-family: var(--font);
  font-weight: 600;
  color: var(--gold);
  font-size: 1rem;
}

.copyright {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 900px) {
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(11, 28, 45, 0.85) 0%, rgba(11, 28, 45, 0.7) 100%);
  }

  .hero-content {
    justify-content: center;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-desc {
    max-width: 100%;
  }

  .badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-date {
    justify-content: center;
  }

  .hero-warning {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .depoimentos-grid,
  .resultados-grid,
  .depoimentos-grid-videos {
    grid-template-columns: 1fr;
  }

  .oferta-opcoes {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }
}
