/* ==========================================================================
   Método Emprego Blindado — Instrutor Bruno Moises
   Personalize as variáveis abaixo para ajustar cor, largura e tipografia.
   ========================================================================== */

:root {
  --ouro: #d4960a;
  --ouro-claro: #f0ab0e;
  --vermelho: #c0202d;
  --vermelho-claro: #e63946;
  --vermelho-escuro: #6f0b13;
  --verde: #2ecc71;

  --preto: #0b0c0e;
  --preto-puro: #000;
  --superficie: #111316;
  --superficie-alta: #181b1f;
  --superficie-topo: #1e2228;
  --borda: #2a2f38;

  --texto: #edeae4;
  --texto-medio: #9098a3;
  --texto-fraco: #555e6a;

  --largura: 1024px;
  --raio: 12px;
  --gap-carrossel: 20px;
  /* Altura estimada da barra fixa por faixa de tela. O JS mede a real depois;
     começar perto do valor certo evita o salto de layout (CLS) no carregamento. */
  --barra-altura: 115px;

  --fonte-titulo: 'Bebas Neue', Impact, sans-serif;
  --fonte-texto: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --easing: cubic-bezier(.16, 1, .3, 1);
}

@media (min-width: 620px) { :root { --barra-altura: 104px; } }
@media (min-width: 1000px) { :root { --barra-altura: 60px; } }

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--barra-altura) + 16px);
}

body {
  margin: 0;
  padding-top: var(--barra-altura);
  background: var(--preto);
  color: var(--texto);
  font-family: var(--fonte-texto);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--ouro);
  outline-offset: 3px;
}

.pular-para-conteudo {
  position: absolute;
  top: -100px;
  left: 50%;
  z-index: 100000;
  padding: .75rem 1.25rem;
  background: var(--ouro);
  color: var(--preto);
  font-weight: 800;
  border-radius: 0 0 8px 8px;
  transform: translateX(-50%);
  transition: top .2s ease;
}
.pular-para-conteudo:focus { top: 0; }

/* ============ BARRA FIXA DE OFERTA ============ */
.barra-oferta {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9999;
  width: 100%;
  padding: max(.75rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) .75rem max(1rem, env(safe-area-inset-left));
  background: linear-gradient(180deg, var(--vermelho) 0%, var(--vermelho-claro) 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 26px rgb(31 20 22 / .18);
}
.barra-oferta__conteudo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(100%, 1320px);
  margin-inline: auto;
  font-size: clamp(.75rem, .68rem + .35vw, .875rem);
  font-weight: 700;
}
.barra-oferta__grupo,
.barra-oferta__preco,
.barra-oferta__contagem { display: inline-flex; align-items: center; }
.barra-oferta__grupo { gap: .5rem; }
.barra-oferta__contagem {
  gap: 3px;
  padding: 2px 8px;
  font-variant-numeric: tabular-nums;
  background: rgb(0 0 0 / .25);
  border: 1px solid rgb(255 255 255 / .15);
  border-radius: 6px;
}
.barra-oferta__numero { min-width: 2ch; font-weight: 800; text-align: right; }
.barra-oferta__preco { gap: 6px; }
.barra-oferta__antigo { font-weight: 400; text-decoration: line-through; opacity: .75; }
.barra-oferta__atual { font-size: clamp(.8125rem, .76rem + .25vw, .9375rem); font-weight: 800; }
.barra-oferta__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: .35rem 1rem;
  background: #fff;
  color: var(--vermelho-claro);
  font-size: clamp(.625rem, .58rem + .25vw, .8rem);
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.4;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  transition: transform .2s ease, background-color .2s ease;
}
.barra-oferta__cta:hover { background: #ffe8ea; color: #e63948; transform: scale(1.03); }

@media (min-width: 1024px) { .barra-oferta__conteudo { gap: 1.5rem; } }
@media (max-width: 767px) {
  .barra-oferta { padding: max(.5rem, env(safe-area-inset-top)) .5rem .5rem; }
  .barra-oferta__conteudo { flex-direction: column; gap: .4rem; }
  .barra-oferta__cta { width: min(100%, 300px); min-height: 38px; padding: .5rem; margin-top: 2px; }
}

/* ============ ESTRUTURA ============ */
.secao { padding: clamp(2.5rem, 5vw, 4.25rem) clamp(1rem, 3vw, 1.5rem); }
.secao--escura { background: var(--preto); }
.secao--clara { background: var(--superficie); }
.secao--hero { padding-top: clamp(1.5rem, 3vw, 2.5rem); background: var(--preto-puro); }

.container { width: min(100%, var(--largura)); margin-inline: auto; }
.container--estreito { width: min(100%, 773px); }
.container--medio { width: min(100%, 1024px); }
.container--largo { width: min(100%, 1157px); }
.container--centro { text-align: center; }

.rotulo {
  margin: 0 0 .75rem;
  color: var(--ouro);
  font-size: clamp(.75rem, .72rem + .15vw, .875rem);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.titulo {
  margin: 0 0 1rem;
  font-family: var(--fonte-titulo);
  font-size: clamp(2.25rem, 1.4rem + 2.8vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .02em;
  color: var(--texto);
  text-transform: uppercase;
  text-wrap: balance;
}
.titulo--grande { font-size: clamp(2.75rem, 1.5rem + 4.4vw, 5rem); line-height: 1; }
.destaque { color: var(--ouro); }

.risco {
  display: block;
  height: 3px;
  margin: 0 0 2.5rem;
  background: var(--ouro);
}
.risco--174 { width: min(174px, 55%); }
.risco--259 { width: min(259px, 65%); }
.risco--268 { width: min(268px, 70%); }
.risco--338 { width: min(338px, 75%); }
.risco--375 { width: min(375px, 80%); }
.risco--492 { width: min(492px, 85%); }
.container--centro .risco { margin-inline: auto; }

.apoio {
  margin: 0 auto 2rem;
  max-width: 62ch;
  color: var(--texto-medio);
  font-size: clamp(1rem, .96rem + .2vw, 1.125rem);
}
.apoio strong { color: var(--texto); font-weight: 700; }

/* ============ HERO ============ */
.hero { display: grid; justify-items: center; width: min(100%, 1251px); margin-inline: auto; }

.selo-atencao {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1.5rem;
  padding: 6px 16px;
  border: 1px solid rgb(212 150 10 / .3);
  border-radius: 9999px;
  background: rgb(212 150 10 / .12);
  color: var(--ouro);
  font-size: clamp(.7rem, .64rem + .25vw, .75rem);
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}
.selo-atencao__ponto {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulso 1.5s ease-in-out infinite;
}
@keyframes pulso { 50% { opacity: .2; } }

.hero__reforco {
  margin: 1rem 0 0;
  color: var(--texto-medio);
  font-size: clamp(.8125rem, .78rem + .15vw, .95rem);
  text-align: center;
}

/* ============ PLAYER DA VSL ============ */
.player {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 10px;
  background: rgb(255 255 255 / .03);
  border: 1px solid rgb(255 255 255 / .1);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / .5);
}
.player__palco {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  cursor: pointer;
}
.player__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.player__som {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgb(255 255 255 / .1);
  border-radius: 99px;
  background: rgb(0 0 0 / .6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  animation: flutuar 3s infinite ease-in-out;
  transition: opacity .3s ease, transform .3s ease;
}
.player__som.oculto { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.player__onda { display: flex; align-items: flex-end; gap: 2px; height: 12px; }
.player__onda i {
  width: 2px;
  height: 12px;
  background: var(--ouro);
  transform: scaleY(.34);
  transform-origin: bottom;
  animation: onda 1s infinite ease-in-out;
}
.player__onda i:nth-child(2) { animation-delay: .2s; }
.player__onda i:nth-child(3) { animation-delay: .4s; }
@keyframes onda { 0%, 100% { transform: scaleY(.34); } 50% { transform: scaleY(1); } }
@keyframes flutuar { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

@media (max-width: 767px) {
  .player { border-radius: 16px; padding: 6px; }
  .player__som { top: 15px; right: 15px; font-size: 11px; }
}

/* ============ BOTÕES ============ */
.botao-ouro {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 68px;
  padding: 1rem 2.5rem;
  background: var(--ouro);
  color: var(--preto);
  font-weight: 800;
  letter-spacing: .03em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgb(212 150 10 / .3);
  transition: background-color .2s ease, transform .2s var(--easing), box-shadow .2s ease;
}
.botao-ouro:hover,
.botao-ouro:focus-visible {
  background: var(--ouro-claro);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgb(212 150 10 / .5);
}
.botao-ouro:active { transform: translateY(0); }
.botao-ouro__principal { font-size: clamp(1.125rem, 1rem + .6vw, 1.5rem); line-height: 1.1; }
.botao-ouro__apoio {
  font-size: clamp(.6875rem, .65rem + .2vw, .875rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  opacity: .85;
}
.botao-ouro--duplo { padding-inline: clamp(1.5rem, 6vw, 5rem); }

/* ============ BÔNUS ============ */
.bonus {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bonus__cartao {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: var(--superficie);
  border: 1px solid var(--borda);
  border-radius: 16px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.bonus__cartao::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ouro), rgb(212 150 10 / .2));
}
.bonus__cartao:hover {
  border-color: rgb(212 150 10 / .4);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgb(212 150 10 / .08);
}
.bonus__marca {
  display: inline-block;
  margin-bottom: 1rem;
  padding: .25rem .75rem;
  background: rgb(46 204 113 / .12);
  border-radius: 9999px;
  color: var(--verde);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}
.bonus__icone {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  background: rgb(212 150 10 / .12);
  border-radius: 12px;
  font-size: 22px;
  line-height: 1;
}
.bonus__cartao h3 {
  margin: 0 0 .5rem;
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 800;
  color: var(--texto);
}
.bonus__cartao p { margin: 0; color: var(--texto-medio); font-size: clamp(.875rem, .9vw, 1rem); }

@media (min-width: 769px) {
  .bonus { grid-template-columns: repeat(2, 1fr); }
}

/* ============ DORES ============ */
.dores {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dor {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--superficie);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.dor:hover {
  border-color: rgb(230 57 70 / .4);
  box-shadow: 0 4px 20px rgb(230 57 70 / .07);
}
.dor__icone {
  display: grid;
  place-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background: rgb(230 57 70 / .35);
  border-radius: 8px;
  font-size: 18px;
  line-height: 1;
}
.dor h3 {
  margin: 0 0 4px;
  font-size: clamp(.875rem, 1vw, 1rem);
  font-weight: 700;
  color: var(--texto);
}
.dor p { margin: 0; color: var(--texto-medio); font-size: clamp(.8rem, .9vw, .9rem); }

@media (min-width: 641px) {
  .dores { grid-template-columns: repeat(2, 1fr); }
}

/* ============ O MÉTODO ============ */
.ebook {
  width: min(188px, 45%);
  height: auto;
  margin: 0 auto 1.5rem;
  border-radius: 8px;
  transition: transform .4s var(--easing);
}
.ebook:hover { transform: scale(1.1); }

/* ============ O QUE VAI APRENDER ============ */
.vantagens {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.vantagem {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--superficie);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.vantagem:hover {
  border-color: rgb(212 150 10 / .3);
  box-shadow: 0 4px 20px rgb(212 150 10 / .08);
}
.vantagem__num {
  min-width: 2.5rem;
  font-family: var(--fonte-titulo);
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  line-height: 1;
  letter-spacing: .02em;
  color: rgb(212 150 10 / .35);
}
.vantagem h3 {
  margin: 0 0 .25rem;
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 700;
  color: var(--texto);
}
.vantagem p { margin: 0; color: var(--texto-medio); font-size: clamp(.875rem, .9vw, 1rem); }

@media (min-width: 769px) {
  .vantagens { grid-template-columns: repeat(2, 1fr); }
}

/* ============ CARROSSEL ============ */
.carrossel {
  --por-tela: 1;
  position: relative;
  width: 100%;
  padding: 1rem clamp(0rem, 4vw, 4rem);
  margin-block: clamp(1rem, 3vw, 2.5rem);
  overflow: hidden;
  user-select: none;
}
.carrossel__janela { width: 100%; overflow: visible; }
.carrossel__trilho {
  display: flex;
  gap: var(--gap-carrossel);
  transition: transform 1s var(--easing);
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
}
.carrossel__trilho.arrastando { cursor: grabbing; transition: none; }
.carrossel__trilho > * {
  flex: 0 0 calc((100% - (var(--gap-carrossel) * (var(--por-tela) - 1))) / var(--por-tela));
  margin: 0;
}
.carrossel--videos { width: min(100%, 1240px); margin-inline: auto; }

.carrossel__seta {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / .1);
  border-radius: 50%;
  background: rgb(255 255 255 / .05);
  color: var(--texto);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: background-color .3s var(--easing), transform .3s var(--easing), box-shadow .3s ease;
}
.carrossel__seta svg { width: 20px; height: 20px; fill: currentColor; }
.carrossel__seta:hover {
  background: var(--ouro);
  border-color: var(--ouro);
  color: var(--preto);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgb(212 150 10 / .4);
}
.carrossel__seta--ant { left: clamp(.25rem, 1vw, 1rem); }
.carrossel__seta--prox { right: clamp(.25rem, 1vw, 1rem); }

.cartao-video { transition: transform .4s ease; }
.cartao-video:hover { transform: translateY(-8px); }
.cartao-video__midia {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / .05);
  border-radius: 16px;
  background: #000;
  cursor: pointer;
}
.cartao-video__midia img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.cartao-video:hover .cartao-video__midia img { transform: scale(1.05); }
.cartao-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgb(255 255 255 / .15);
  border-radius: 50%;
  background: rgb(255 255 255 / .1);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 18px;
  transform: translate(-50%, -50%);
  transition: background-color .4s ease, border-color .4s ease, box-shadow .4s ease, transform .4s ease;
}
.cartao-video:hover .cartao-video__play {
  background: rgb(255 255 255 / .25);
  border-color: rgb(255 255 255 / .4);
  box-shadow: 0 0 30px rgb(255 255 255 / .15);
  transform: translate(-50%, -50%) scale(1.15);
}

@media (min-width: 481px) { .carrossel { --por-tela: 2; } }
@media (min-width: 769px) { .carrossel { --por-tela: 3; } }
@media (min-width: 1025px) { .carrossel { --por-tela: 4; } }
@media (min-width: 1201px) { .carrossel { --por-tela: 5; } }
@media (max-width: 480px) {
  .carrossel { --gap-carrossel: 14px; padding-inline: 1.25rem; }
  .carrossel__janela { overflow: hidden; }
  .carrossel__seta { display: none; }
}

/* ============ CARTÃO DE PREÇO ============ */
.cartao-preco {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  background: var(--superficie);
  border: 2px solid rgb(212 150 10 / .4);
  border-radius: 16px;
  text-align: left;
}
.cartao-preco::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgb(212 150 10 / .05) 0%, transparent 70%);
  pointer-events: none;
}
.cartao-preco__selo {
  display: block;
  width: fit-content;
  margin: 0 auto 1.5rem;
  padding: 6px 16px;
  border: 1px solid rgb(212 150 10 / .3);
  border-radius: 9999px;
  background: rgb(212 150 10 / .12);
  color: var(--ouro);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cartao-preco__titulo {
  margin: 0 0 1.5rem;
  font-family: var(--fonte-titulo);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cartao-preco__itens {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.cartao-preco__itens li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--texto-medio);
  font-size: clamp(.92rem, 1vw, 1rem);
}
.cartao-preco__itens strong { color: var(--texto); }
.cartao-preco__check { flex-shrink: 0; margin-top: 1px; color: var(--verde); font-size: 18px; line-height: 1.2; }
.cartao-preco__linha { margin: 0 0 2rem; border: 0; border-top: 1px solid var(--borda); }
.cartao-preco__rotulo {
  margin: 0 0 .5rem;
  color: var(--texto-fraco);
  font-size: 12px;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}
.cartao-preco__antigo {
  margin: 0 0 .25rem;
  color: var(--texto-fraco);
  text-align: center;
  text-decoration: line-through;
}
.cartao-preco__valor {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: .15rem;
  margin: 0 0 1.5rem;
}
.cartao-preco__moeda { margin-bottom: 8px; color: var(--texto-medio); font-size: 1.25rem; font-weight: 700; }
.cartao-preco__numero {
  font-family: var(--fonte-titulo);
  font-size: clamp(4rem, 9vw, 6rem);
  line-height: 1;
  letter-spacing: .01em;
  color: var(--ouro);
}
.cartao-preco__centavos { margin-bottom: 10px; color: var(--ouro); font-size: 1.5rem; font-weight: 700; }
.cartao-preco__botao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 68px;
  margin-top: .5rem;
  padding: 1rem 1.5rem;
  background: var(--ouro);
  color: var(--preto);
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 800;
  letter-spacing: .03em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: var(--raio);
  box-shadow: 0 4px 24px rgb(212 150 10 / .4);
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.cartao-preco__botao:hover {
  background: var(--ouro-claro);
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgb(212 150 10 / .6);
}
.cartao-preco__botao-apoio {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  opacity: .8;
}
.cartao-preco__nota { margin: 1rem 0 0; color: var(--texto-fraco); font-size: 12px; text-align: center; }

.garantia {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--superficie-topo);
  border: 1px solid var(--borda);
  border-radius: 8px;
}
.garantia__icone { flex-shrink: 0; font-size: 1.5rem; }
.garantia p { margin: 0; color: var(--texto-medio); font-size: .9rem; }
.garantia strong { color: var(--texto); }

/* ============ INSTRUTOR ============ */
.instrutor {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  justify-items: center;
  text-align: center;
}
.instrutor__foto {
  width: min(210px, 60%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgb(212 150 10 / .5);
  border-radius: var(--raio);
}
.instrutor__texto p:not(.rotulo) { margin: 0 0 1rem; color: #8398a3; font-size: clamp(1rem, .95rem + .3vw, 1.25rem); }
.instrutor__texto strong { color: #fff; font-weight: 700; }

@media (min-width: 861px) {
  .instrutor { grid-template-columns: 210px 1fr; justify-items: start; text-align: left; }
  .instrutor__foto { width: 210px; }
}

/* ============ FAQ ============ */
.faq {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.faq__item {
  overflow: hidden;
  background: var(--superficie-alta);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  transition: border-color .18s ease;
}
.faq__item:hover { border-color: rgb(212 150 10 / .3); }
.faq__item h3 { margin: 0; font-size: 1rem; }
.faq__pergunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 0;
  background: none;
  color: var(--texto);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.faq__icone {
  flex-shrink: 0;
  color: var(--ouro);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}
.faq__pergunta[aria-expanded="true"] .faq__icone { transform: rotate(45deg); }
.faq__resposta {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--borda);
  color: var(--texto-medio);
  font-size: .95rem;
  line-height: 1.7;
}
.faq__resposta p { margin: 1rem 0 0; }

/* ============ RODAPÉ ============ */
.rodape {
  padding: clamp(2rem, 4vw, 3rem) 1.25rem;
  background: var(--superficie);
  text-align: center;
}
.rodape p { margin: 0 0 .75rem; color: var(--texto-fraco); font-size: 14px; }
.rodape p.rodape__marca {
  margin-bottom: 1.25rem;
  color: var(--ouro);
  font-family: var(--fonte-titulo);
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  letter-spacing: .08em;
  line-height: 1.1;
  text-transform: uppercase;
}
.rodape a { color: var(--texto-fraco); text-decoration: underline; }
.rodape a:hover { color: var(--ouro); }
/* precisa vencer o margin do seletor .rodape p, senão o bloco encosta à esquerda */
.rodape p.rodape__legal { max-width: 70ch; margin-inline: auto; }

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgb(0 0 0 / .95);
  backdrop-filter: blur(15px);
  opacity: 0;
  transition: opacity .3s ease;
}
.modal[hidden] { display: none; }
.modal.aberto { opacity: 1; }
.modal__caixa {
  position: relative;
  width: min(90%, 400px);
  aspect-ratio: 9 / 16;
  max-height: 85vh;
  background: #000;
  border-radius: 20px;
}
.modal__video,
.modal__imagem {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: none;
}
.modal.mostra-video .modal__video { display: block; }
.modal.mostra-imagem .modal__imagem { display: block; object-fit: contain; }
.modal__fechar {
  position: absolute;
  top: -50px;
  right: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / .2);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}
.modal__fechar:hover { background: var(--ouro); border-color: var(--ouro); color: var(--preto); }
@media (max-width: 768px) {
  .modal__fechar { top: auto; bottom: -55px; right: 50%; transform: translateX(50%); }
}

/* ============ COOKIES ============ */
.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99998;
  width: 100%;
  padding: 15px 20px;
  background: #111;
  color: #fff;
  box-shadow: 0 -2px 10px rgb(0 0 0 / .5);
}
.cookies[hidden] { display: none; }
.cookies__conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1140px;
  margin-inline: auto;
}
.cookies__conteudo p { margin: 0; font-size: 13px; line-height: 1.4; }
.cookies__conteudo a { color: var(--vermelho); text-decoration: underline; }
.cookies__botao {
  padding: 10px 20px;
  border: 0;
  border-radius: 5px;
  background: var(--vermelho);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .3s ease, transform .3s ease;
}
.cookies__botao:hover { background: var(--vermelho-escuro); transform: scale(1.05); }
@media (max-width: 768px) {
  .cookies__conteudo { flex-direction: column; text-align: center; gap: 15px; }
}

/* ============ MOVIMENTO REDUZIDO ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
