:root {
  --night: #0a0c14;
  --card: #161821;
  --ink: #f4efe8;
  --muted: #c9c3b8;
  --gold: #ffc30f;
  --gold-deep: #e0aa00;
  --line: #ebd8c7;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  max-width: 100%;
  background: var(--night);
  color: var(--ink);
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--gold);
  color: #0a0c14;
  padding: 8px 12px;
}

.skip-link:focus { top: 8px; }

.exclusive {
  margin: 0;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--gold);
  color: #0a0c14;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 640px;
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 195, 15, 0.16), transparent 28%),
    linear-gradient(180deg, #0a0c14 0%, #10131c 100%);
}

.hero-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(320px, 42%) 1fr;
  align-items: center;
  gap: 24px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.brand-lockup img { width: 42px; height: 42px; }

.brand-lockup strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.brand-lockup span {
  display: block;
  margin-top: 2px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

h1 {
  max-width: 12.5em;
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 b { font-weight: 700; color: var(--gold); }

.lede {
  max-width: 34em;
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.lede b { font-weight: 700; }

.cta-wrap { max-width: 420px; margin-top: 22px; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #0a0c14;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn:hover { background: var(--gold-deep); }

.btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; }

.note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.meet {
  position: absolute;
  left: 8%;
  bottom: 92px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  width: 250px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #12141c;
  color: #fff;
}

.meet b, .meet span { display: block; }

.meet b { font-size: 15px; font-weight: 500; }

.meet strong {
  font-size: 16px;
  font-weight: 700;
}

.tape {
  position: relative;
  z-index: 6;
  width: 100%;
  margin: 0;
  padding: 0 0 56px;
  overflow: hidden;
  background: transparent;
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-gold {
  position: relative;
  z-index: 5;
  border-top: 1px solid #fff3c4;
  border-bottom: 1px solid #fff3c4;
  background: var(--gold);
  color: #0a0c14;
}

.ticker-cream {
  position: relative;
  z-index: 4;
  width: 140%;
  margin: 12px 0 0 -20%;
  border-top: 1px solid #d9c2a8;
  border-bottom: 1px solid #d9c2a8;
  background: #f3e6d4;
  color: #0a0c14;
  transform: rotate(-1.6deg);
  transform-origin: center;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  animation: tape-left 42s linear infinite;
}

.ticker-gold .ticker-track {
  min-height: 40px;
  animation-name: tape-right;
}

.ticker-gold .ticker-item {
  padding: 0 22px;
  font-size: 16px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ticker-item + .ticker-item {
  box-shadow: inset 1px 0 0 currentColor;
}

.ticker b { font-weight: 700; }

@keyframes tape-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes tape-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.practice {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 28px;
}

.practice h2 {
  margin: 0 0 28px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.practice h2 span { color: var(--gold); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  margin-top: 46px;
  padding: 62px 22px 28px;
  border-radius: 12px;
  background: var(--card);
}

.seal {
  position: absolute;
  top: -42px;
  left: 22px;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0c14;
  font-size: 28px;
  font-weight: 700;
}

.card p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

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

.practice-see {
  width: min(1180px, calc(100% - 80px));
  padding: 90px 0 100px;
  border-bottom: 15px solid var(--gold);
}

.practice-see h2 {
  margin: 0 0 36px;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.practice-see h2 span { color: #fff; }

.practice-see .dest {
  position: relative;
  display: inline-block;
}

.practice-see .dest::before {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -8px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 18' preserveAspectRatio='none'%3E%3Cpath d='M3 11c22-7 34 6 52-1 18-6 24 8 46 1 22-8 28 7 54-1 20-6 32 6 58 0 14-4 20 3 25-1' fill='none' stroke='%23FFC30F' stroke-width='5.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  pointer-events: none;
}

.practice-see .cards {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  margin: 120px 0 20px;
}

.practice-see .card {
  width: 32%;
  margin: 0;
  padding: 0 25px 45px;
  border-radius: 12px;
  background: #2d190f;
  text-align: center;
}

.practice-see .card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 70%;
  height: 6px;
  background: var(--gold);
  box-shadow: 0 0 13px 1px var(--gold);
  transform: translateX(-50%);
}

.practice-see .seal {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  margin: -65px auto 15px;
  transform: none;
  display: block;
  background: none;
  border-radius: 0;
}

.practice-see .seal svg {
  display: block;
  width: 120px;
  height: 116px;
  margin: 0 auto;
}

.practice-see .seal svg path[fill="white"] {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(1.28);
  stroke: #fff;
  stroke-width: 2.8;
  stroke-linejoin: round;
  stroke-linecap: round;
  paint-order: stroke fill;
}

.practice-see .card p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

.practice-see .card b {
  font-weight: 700;
  color: var(--gold);
}

.bottom-cta {
  width: min(420px, calc(100% - 48px));
  margin: 8px auto 56px;
}

.filter {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.filter article {
  padding: 22px;
  border-radius: 12px;
  background: var(--card);
}

.filter h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
}

.filter p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.proof {
  width: min(var(--max), calc(100% - 48px));
  margin: 56px auto 8px;
  text-align: center;
}

.proof h2 {
  margin: 0 0 22px;
  font-size: 32px;
  font-weight: 700;
}

.proof h2 span { color: var(--gold); }

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-row p {
  margin: 0;
  padding: 28px 16px;
  border-radius: 12px;
  background: var(--card);
}

.proof-row b {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 34px;
  font-weight: 700;
}

.proof-row span { font-size: 16px; font-weight: 400; }

.layout-v6 .hero-grid {
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
}

.poster {
  width: 100%;
  height: auto;
  margin: 0 0 16px;
  object-fit: contain;
}

.date-stack {
  text-align: center;
  line-height: 1;
}

.date-stack .day {
  margin: 0;
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
}

.date-stack .hour {
  margin: 8px 0 6px;
  color: var(--gold);
  font-size: 52px;
  font-weight: 800;
}

.date-stack .place {
  margin: 0;
  color: #dadada;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.soft-line {
  width: min(760px, calc(100% - 48px));
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.soft-line i { font-weight: 500; }

.center-note {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 36px;
  text-align: center;
}

.center-note h2 {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 700;
}

.center-note p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

footer,
.site-legal {
  padding: 36px 24px 40px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.site-legal-brand {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.site-legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 10px;
  margin: 0 0 16px;
}

.site-legal-nav a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-legal-nav a:hover { color: var(--gold); }

.site-legal-sep { color: rgba(244, 239, 232, 0.28); }

.site-legal-razao,
.site-legal-cnpj {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.site-legal-cnpj { margin-top: 4px; }

.site-legal-copy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.site-legal-disc {
  max-width: 62ch;
  margin: 16px auto 0;
  color: rgba(201, 195, 184, 0.78);
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero-grid, .cards, .filter, .proof-row, .layout-v6 .hero-grid { grid-template-columns: 1fr; }
  .date-stack .day, .date-stack .hour { font-size: 40px; }
  .hero, .hero-grid, .hero-visual { min-height: auto; }
  .hero-photo { width: 100%; height: auto; }
  .meet { left: 16px; bottom: 16px; }
  h1 { max-width: none; font-size: 34px; }
  .practice-see { width: min(1180px, calc(100% - 40px)); padding: 60px 0; }
  .practice-see h2 { font-size: 8vw; margin-bottom: 28px; }
  .practice-see .dest::before { display: none; }
  .practice-see .dest1 { position: relative; display: inline-block; }
  .practice-see .dest1::before {
    content: "";
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: -8px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 18' preserveAspectRatio='none'%3E%3Cpath d='M3 11c22-7 34 6 52-1 18-6 24 8 46 1 22-8 28 7 54-1 20-6 32 6 58 0 14-4 20 3 25-1' fill='none' stroke='%23FFC30F' stroke-width='5.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    pointer-events: none;
  }
  .practice-see .cards { display: grid; grid-template-columns: 1fr; gap: 96px; margin-top: 96px; }
  .practice-see .card { width: 100%; }
  .practice-see .seal { margin-top: -45px; }
  .practice-see .seal svg { width: 100px; height: 97px; }
  .practice-see .seal svg path[fill="white"] {
    transform: scale(1.22);
    stroke-width: 2.4;
  }
  .practice-see .card p { font-size: 16px; line-height: 1.3; }
  .tape { margin: 32px 0 0; padding-bottom: 44px; }
  .ticker-item { padding: 0 16px; font-size: 16px; }
}

/* Hero com foto sangrada (referencia Davi Valadares): a foto ocupa toda a
   altura do hero e vai ate a borda direita da viewport, sem o corte do
   container. O bloco barra + hero + faixas fecha a altura da tela. */
.hero-bleed {
  --hero-chrome: 129px;
  isolation: isolate;
  overflow: hidden;
  min-height: max(520px, calc(100vh - var(--hero-chrome) - 96px));
  min-height: max(520px, calc(100dvh - var(--hero-chrome) - 96px));
}

.hero-bleed .hero-grid {
  position: static;
  min-height: max(520px, calc(100vh - var(--hero-chrome) - 96px));
  min-height: max(520px, calc(100dvh - var(--hero-chrome) - 96px));
  grid-template-columns: minmax(320px, 44%) 1fr;
}

.hero-bleed .hero-visual { position: static; }

/* Ancorada no .hero (nao no container), com z-index negativo para ficar atras
   do texto e acima do fundo da secao. */
.hero-bleed .hero-photo {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 32%;
  right: 0;
  width: 68%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  /* Duas mascaras cruzadas: fade lateral esquerdo e fade leve na base, os
     dois revelando o proprio fundo da secao. */
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 12%, #000 34%),
    linear-gradient(180deg, #000 74%, rgba(0, 0, 0, 0.5) 92%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 12%, #000 34%),
    linear-gradient(180deg, #000 74%, rgba(0, 0, 0, 0.5) 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero-bleed::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #0a0c14 0%, rgba(10, 12, 20, 0.88) 28%, rgba(10, 12, 20, 0) 58%);
}

.hero-bleed .meet {
  left: 56%;
  bottom: 16%;
  width: auto;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 20px;
  background: #fff;
  color: #0a0c14;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  animation: meet-float 2.8s ease-in-out infinite;
}

.hero-bleed .meet b {
  color: #545a67;
  font-size: 17px;
}

.hero-bleed .meet strong {
  color: #4a8cff;
  font-size: 22px;
  white-space: nowrap;
}

.hero-bleed .meet-icon {
  width: 48px;
  height: 48px;
}

@keyframes meet-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bleed .meet { animation: none; }
}

/* Selo circular da plataforma sobre a foto (simbolo do Zoom). */
.platform-badge {
  position: absolute;
  z-index: 2;
  left: 55.5%;
  top: 29%;
  width: clamp(96px, 7vw, 140px);
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.5);
  transform: rotate(-12deg);
}

.platform-badge img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.meet-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .hero-bleed, .hero-bleed .hero-grid, .hero-bleed .hero-visual { min-height: auto; }
  .hero-bleed .hero-grid { grid-template-columns: 1fr; }
  .hero-bleed .hero-visual { position: relative; }

  /* Foto primeiro, sangrando de borda a borda, com o texto embaixo. */
  /* O container do hero tem 24px de gutter de cada lado: a sangria da foto
     desfaz exatamente esses 24px, sem depender de 100vw (que conta a barra
     de rolagem e desalinha). */
  /* Gutter menor no mobile: mais palavras por linha, como na referencia. */
  .hero-bleed .hero-grid { width: calc(100% - 32px); }

  .hero-bleed .hero-visual {
    order: -1;
    width: calc(100% + 32px);
    margin: 0 -16px -26px;
  }

  /* Texto centralizado e mais junto, como na referencia. */
  .hero-bleed .brand-lockup {
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .hero-bleed .brand-lockup img { width: 34px; height: 34px; }

  .hero-bleed .brand-lockup strong,
  .hero-bleed .brand-lockup span { font-size: 17px; }

  .hero-bleed h1 {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-align: center;
  }

  .hero-bleed .lede {
    margin: 12px auto 0;
    font-size: 16px;
    text-align: center;
  }

  .hero-bleed .cta-wrap { margin: 18px auto 0; }

  .hero-bleed .btn {
    min-height: 52px;
    font-size: 16px;
  }

  .hero-bleed .note { font-size: 13px; }

  .hero-bleed .hero-photo {
    position: static;
    z-index: auto;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 72% center;
    -webkit-mask-image: linear-gradient(180deg, #000 48%, rgba(0, 0, 0, 0.55) 76%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 48%, rgba(0, 0, 0, 0.55) 76%, transparent 100%);
  }

  .hero-bleed::after { display: none; }

  .hero-bleed .meet {
    left: auto;
    right: 14px;
    bottom: 15%;
    width: auto;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    padding: 7px 11px;
    border-radius: 12px;
    transform: none;
    animation: meet-float 2.8s ease-in-out infinite;
  }

  .hero-bleed .meet b { font-size: 11px; }

  .hero-bleed .meet strong { font-size: 14px; }

  .hero-bleed .meet-icon { width: 24px; height: 24px; }

  .platform-badge {
    left: 11%;
    top: 24%;
    right: auto;
    bottom: auto;
    width: 62px;
  }
}

/* Blocos internos herdam a largura da secao que os contem. */
.practice .filter,
.practice .proof-row,
.practice .cards { width: 100%; margin-left: 0; margin-right: 0; }

.practice .center-note + .filter { margin-top: 8px; }

.practice .proof-row { margin-bottom: 18px; }

.filter-duo { grid-template-columns: repeat(2, 1fr); }

.faq h3 { color: var(--gold); }

@media (max-width: 900px) {
  .filter-duo { grid-template-columns: 1fr; }
}

.practice .proof-row { text-align: center; }

.center-note p + p { margin-top: 12px; }

/* Bandas claras: papel quente com estrutura quieta (lavagem bege +
   filete diagonal + grain). Amarelo nunca vira texto sobre off-white. */
.band-light {
  --band-paper: #f4efe8;
  --band-warm: #ebd8c7;
  --band-dust: #d9c8b7;
  position: relative;
  isolation: isolate;
  padding-bottom: 48px;
  color: #0a0c14;
  background-color: var(--band-paper);
  background-image:
    radial-gradient(ellipse 90% 60% at 8% -10%, rgba(235, 216, 199, 0.7), transparent 58%),
    radial-gradient(ellipse 75% 55% at 100% 110%, rgba(217, 200, 183, 0.45), transparent 52%),
    radial-gradient(ellipse 50% 40% at 70% 20%, rgba(255, 255, 255, 0.35), transparent 70%),
    repeating-linear-gradient(
      -16deg,
      transparent 0 13px,
      rgba(10, 12, 20, 0.016) 13px 14px
    );
}

.band-light::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.band-light > * {
  position: relative;
  z-index: 1;
}

.band-light .practice h2 { color: #0a0c14; }

.band-light .practice h2 span {
  padding: 0 0.2em;
  border-radius: 6px;
  background: rgba(255, 195, 15, 0.55);
  color: #0a0c14;
}

.band-light .filter article {
  background: #fff;
  box-shadow: 0 12px 28px rgba(10, 12, 20, 0.08);
}

.band-light .filter:not(.faq) {
  gap: 22px;
}

.band-light .filter:not(.faq) article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 26px 32px;
  border: 1px solid rgba(10, 12, 20, 0.06);
  border-radius: 16px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, rgba(255, 195, 15, 0.35), rgba(255, 255, 255, 0)) border-box;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 40px rgba(10, 12, 20, 0.07);
  text-align: center;
  overflow: hidden;
}

.band-light .filter:not(.faq) article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 56px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--gold);
  transform: translateX(-50%);
}

.band-light .filter:not(.faq) h3 {
  margin: 0;
  max-width: 16ch;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.band-light .filter:not(.faq) p {
  max-width: 34ch;
  margin: 0;
  color: #545a67;
  font-size: 16px;
  line-height: 1.45;
}

.band-light .filter h3 { color: #0a0c14; }

.band-light .filter p { color: #3b414d; }

.band-light .center-note h2 { color: #0a0c14; }

.band-light .center-note p { color: #3b414d; }

.band-light .proof-row p {
  border-top: 4px solid var(--gold);
  background: #fff;
  box-shadow: 0 12px 28px rgba(10, 12, 20, 0.08);
}

.band-light .proof-row b { color: #0a0c14; }

.band-light .proof-row span { color: #545a67; }

.band-light .card {
  background: #fff;
  box-shadow: 0 12px 28px rgba(10, 12, 20, 0.08);
}

.band-light .card p { color: #0a0c14; }

.band-light .card b {
  padding: 0 0.16em;
  border-radius: 4px;
  background: rgba(255, 195, 15, 0.5);
  color: #0a0c14;
}

.band-light .bottom-cta { margin-bottom: 0; }

.host .bottom-cta {
  width: min(480px, 100%);
  margin: 40px auto 0;
  text-align: center;
}

.bottom-cta-close {
  width: min(480px, calc(100% - 48px));
  margin: 8px auto 56px;
  text-align: center;
}

.countdown-panel {
  width: min(420px, 100%);
  margin: 0 auto 22px;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.countdown-label {
  margin: 0 0 14px;
  color: #545a67;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto;
  max-width: 420px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 8px 12px;
  border-top: 3px solid var(--gold);
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 12, 20, 0.08);
}

.countdown-unit strong {
  color: #0a0c14;
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-unit span {
  color: #545a67;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mentor {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr);
  gap: 36px;
  align-items: center;
  margin: 0 auto 8px;
  padding: 12px 4px;
}

.mentor-photo {
  position: relative;
  margin: 0;
  max-width: 420px;
  width: 100%;
  justify-self: center;
  padding: 10px 14px 14px 10px;
}

.mentor-photo::before,
.mentor-photo::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    border-color 0.35s ease;
}

/* Moldura offset em ouro */
.mentor-photo::before {
  inset: 14px -12px -12px 14px;
  border: 2px solid var(--gold);
  z-index: 0;
}

/* Cantos em filete escuro */
.mentor-photo::after {
  inset: -8px 18px 18px -8px;
  border: 1px solid rgba(10, 12, 20, 0.35);
  z-index: 0;
  opacity: 0.7;
}

.mentor-photo-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ff6a1a;
  border: 3px solid #0a0c14;
  box-shadow:
    0 18px 40px rgba(10, 12, 20, 0.18),
    0 2px 0 rgba(255, 195, 15, 0.35);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.mentor-photo:hover .mentor-photo-frame,
.mentor-photo:focus-within .mentor-photo-frame {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow:
    0 28px 52px rgba(10, 12, 20, 0.22),
    0 0 0 1px rgba(255, 195, 15, 0.45),
    0 8px 0 rgba(255, 195, 15, 0.28);
}

.mentor-photo:hover::before,
.mentor-photo:focus-within::before {
  transform: translate(4px, -4px);
  border-color: #e0aa00;
}

.mentor-photo:hover::after,
.mentor-photo:focus-within::after {
  transform: translate(-4px, 4px);
  opacity: 1;
}

.mentor-photo:hover img,
.mentor-photo:focus-within img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .mentor-photo::before,
  .mentor-photo::after,
  .mentor-photo-frame,
  .mentor-photo img {
    transition: none;
  }

  .mentor-photo:hover .mentor-photo-frame,
  .mentor-photo:focus-within .mentor-photo-frame,
  .mentor-photo:hover::before,
  .mentor-photo:focus-within::before,
  .mentor-photo:hover::after,
  .mentor-photo:focus-within::after,
  .mentor-photo:hover img,
  .mentor-photo:focus-within img {
    transform: none;
    filter: none;
  }
}

.mentor-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.mentor-kicker {
  margin: 0 0 8px;
  color: #8a6a12;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mentor h3 {
  margin: 0 0 14px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.mentor-copy > p {
  margin: 0 0 12px;
  color: #3b414d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.mentor-copy > p:last-of-type { margin-bottom: 22px; }

.mentor b {
  font-weight: 700;
  color: #0a0c14;
}

.mentor-stats {
  gap: 12px;
}

.mentor-stats p {
  padding: 18px 14px;
}

.mentor-stats b {
  font-size: 28px;
}

.mentor-stats span {
  font-size: 14px;
  line-height: 1.25;
}

@media (max-width: 820px) {
  .mentor {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .mentor-photo {
    max-width: 320px;
    margin: 0 auto;
  }

  .mentor-copy { align-items: center; }

  .mentor-copy > p { max-width: 36em; }

  .mentor-stats { width: 100%; }
}

@media (max-width: 560px) {
  .mentor-stats { grid-template-columns: 1fr; }
}

.band-light .btn { box-shadow: 0 14px 32px rgba(10, 12, 20, 0.22); }

.band-light .note { color: #545a67; }

/* Telas baixas (notebook em janela curta, celular pequeno): comprime o hero
   para que foto, marca, titulo, sub e CTA caibam na mesma dobra. */
@media (max-width: 900px) and (max-height: 800px) {
  .hero-bleed .hero-photo { aspect-ratio: 16 / 10; }

  .hero-bleed .brand-lockup { margin-bottom: 8px; }

  .hero-bleed h1 { font-size: 23px; }

  .hero-bleed .lede {
    margin-top: 10px;
    font-size: 15px;
  }

  .hero-bleed .cta-wrap { margin-top: 14px; }

  .hero-bleed .btn {
    min-height: 48px;
    font-size: 15px;
  }

  .hero-bleed .note { font-size: 12px; }
}

/* CTA verde no molde da referencia (o botao leva para o WhatsApp, entao o
   verde tem funcao alem de estilo). Escopado nas paginas v1. */
body[data-slug="live-cap-v1h1"] .btn,
body[data-slug="live-cap-v1h2"] .btn {
  background: #7ce86f;
  color: #0a1108;
  box-shadow: none;
}

body[data-slug="live-cap-v1h1"] .btn:hover,
body[data-slug="live-cap-v1h2"] .btn:hover { background: #63d957; }

body[data-slug="live-cap-v1h1"] .band-light .btn,
body[data-slug="live-cap-v1h2"] .band-light .btn {
  box-shadow: 0 14px 32px rgba(10, 12, 20, 0.18);
}

/* A seta do CTA vira elemento proprio para poder se mover sozinha. */
.btn::after {
  content: "→";
  display: inline-block;
  transition: transform 0.25s ease;
}

body[data-slug="live-cap-v1h1"] .btn:hover::after,
body[data-slug="live-cap-v1h1"] .btn:focus-visible::after,
body[data-slug="live-cap-v1h2"] .btn:hover::after,
body[data-slug="live-cap-v1h2"] .btn:focus-visible::after {
  transform: translate(4px, -4px) rotate(-45deg);
}

body[data-slug="live-cap-v1h1"] .btn:active::after,
body[data-slug="live-cap-v1h2"] .btn:active::after {
  transform: translate(8px, -8px) rotate(-45deg);
}

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

/* Primeira dobra: barra + hero + faixas ocupam a tela inteira. O hero e o
   item flexivel, entao ele absorve o que a faixa inclinada deixar de sobra,
   em qualquer largura, sem depender de altura fixa. */
.fold {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.fold .hero-bleed {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 560px;
}

/* O grid estica na altura do hero para o texto voltar a centralizar. */
.fold .hero-bleed .hero-grid {
  flex: 1 1 auto;
  min-height: 0;
}

.fold .tape {
  flex: 0 0 auto;
  padding-bottom: 40px;
}

@media (max-width: 900px) {
  .fold { min-height: 0; }

  .fold .hero-bleed {
    flex: 0 0 auto;
    min-height: 0;
  }

  .fold .tape { margin-top: 32px; }
}

/* Popup de captura — card claro, countdown, grupo WhatsApp */
body.gate-open { overflow: hidden; }

.gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 16px;
}

.gate[hidden] { display: none; }

.gate-veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(6, 8, 12, 0.72);
}

.gate-panel {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  max-height: min(92dvh, 760px);
  overflow: auto;
  animation: gate-up 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.gate-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #9aa0ab;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.gate-close:focus-visible {
  outline: 2px solid #2f6fed;
  outline-offset: 2px;
}

.gate-card {
  padding: 28px 24px 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  color: #1a1d24;
  text-align: center;
}

.gate-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-wrap: balance;
}

.gate-title b {
  color: #2f6fed;
  font-weight: 700;
}

.gate-meta {
  margin: 10px 0 0;
  color: #7a8290;
  font-size: 14px;
  font-weight: 500;
}

.gate-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.gate-unit {
  display: grid;
  gap: 2px;
  padding: 12px 6px 10px;
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  background: #fafbfc;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04);
}

.gate-unit strong {
  color: #2f6fed;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.gate-unit span {
  color: #8a93a1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gate-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.gate-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.gate-input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #d7dce5;
  border-radius: 12px;
  background: #fff;
  color: #1a1d24;
  font: inherit;
  font-size: 16px;
  text-align: left;
}

.gate-input::placeholder { color: #9aa3b2; }

.gate-input:focus-visible {
  outline: 2px solid #2f6fed;
  outline-offset: 1px;
  border-color: #2f6fed;
}

.gate-input[aria-invalid="true"] {
  border-color: #e27a6a;
}

.gate-error {
  margin: 0;
  color: #c2554a;
  font-size: 13px;
  text-align: left;
}

.gate-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin-top: 2px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  background: #39d353;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(57, 211, 83, 0.35);
  cursor: pointer;
}

.gate-submit:hover { background: #2fc447; }

.gate-submit:focus-visible {
  outline: 2px solid #1a1d24;
  outline-offset: 3px;
}

.gate-form.is-sending .gate-submit {
  opacity: 0.72;
  pointer-events: none;
}

.gate-submit::after { content: none; }

@keyframes gate-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .gate { padding: 24px; }

  .gate-panel { animation-name: gate-in; }

  @keyframes gate-in {
    from {
      opacity: 0;
      transform: translateY(12px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

@media (max-width: 400px) {
  .gate-title { font-size: 24px; }

  .gate-unit strong { font-size: 22px; }

  .gate-submit { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .gate-panel { animation: none; }
}
