/* ============================================
   TRANSFORME PLANILHA EM UM SISTEMA COM IA
   Página do workshop · 9 e 10/06/2026
   ============================================ */

/* ===== TOKENS DE DESIGN ===== */
:root {
  /* Paleta principal */
  --laranja-claro: #FFB673;
  --laranja: #FF7500;
  --laranja-escuro: #D45D00;
  --laranja-pastel: #F8CFA9;
  --laranja-texto: #B85400;  /* letra laranja sobre fundo claro (4.88:1, paleta.py) */
  --preto: #2D2926;
  --cinza-escuro: #9D9C9E;
  --cinza-claro: #D0D3D4;

  /* Tipografia */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Espaçamento */
  --container: 1180px;
  --container-narrow: 880px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Animações */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 400ms;
}

/* ===== TEMA BLACK (default) ===== */
.theme-black {
  --bg: #0A0908;
  --bg-elev: #161412;
  --bg-card: #1C1A17;
  --bg-card-2: #221F1B;
  --texto: #F5F2EE;
  --texto-secundario: #B8B3AC;
  --texto-mute: #7A746C;
  --borda: rgba(255, 255, 255, 0.08);
  --borda-forte: rgba(255, 255, 255, 0.16);
  --highlight: var(--laranja);
  --highlight-soft: rgba(255, 117, 0, 0.12);
  --gradient-hero: radial-gradient(ellipse at top, rgba(255, 117, 0, 0.18) 0%, transparent 60%);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(255, 117, 0, 0.25);
}

/* ===== TEMA LIGHT ===== */
.theme-light {
  --bg: #FAFAF7;
  --bg-elev: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-2: #F5F3EF;
  --texto: #1A1815;
  --texto-secundario: #4A453E;
  --texto-mute: #8B847A;
  --borda: rgba(0, 0, 0, 0.08);
  --borda-forte: rgba(0, 0, 0, 0.14);
  --highlight: var(--laranja-texto);  /* laranja puro reprova como letra em fundo claro (2.69:1) */
  --highlight-soft: rgba(255, 117, 0, 0.08);
  --gradient-hero: radial-gradient(ellipse at top, rgba(255, 117, 0, 0.12) 0%, transparent 60%);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 40px rgba(255, 117, 0, 0.18);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--texto);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

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

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borda);
}

/* Quando a faixa "ÚLTIMO DIA" estiver visível (faixa renderizada no DOM
   + classe lote-footer-visivel ativa), o header da página deixa de ser sticky
   pra não competir com ela. A prioridade visual passa pra faixa do último dia.
   Usa :has() pra só desativar o sticky quando a faixa REALMENTE existe. */
body.lote-footer-visivel:has(.faixa-ultimo-dia) .site-header {
  position: static;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--texto);
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--laranja);
  color: #fff;
  flex-shrink: 0;
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text__line1 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--texto);
}

.brand-text__line1 .arrow {
  color: var(--laranja);
  margin: 0 4px;
}

.brand-text__line2 {
  font-size: 11px;
  color: var(--texto-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 3px;
  white-space: nowrap;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, var(--highlight-soft) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, var(--highlight-soft) 0%, transparent 40%);
  opacity: 0.6;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--highlight-soft);
  border: 1px solid var(--laranja);
  color: var(--laranja);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero__badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--laranja);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.hero__title .highlight {
  color: var(--laranja);
  position: relative;
  white-space: nowrap;
}

.hero__title .highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 4px;
  background: var(--laranja);
  border-radius: 2px;
}

.hero__sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--texto-secundario);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.45;
}

/* ===== RODAPÉ FLUTUANTE: LOTE / VAGAS / CTA ===== */
.hero__sentinela {
  /* Marcador invisível pra IntersectionObserver detectar saída do hero */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.hero { position: relative; }

/* ============================================
   FAIXA "ÚLTIMO DIA" no topo — MINIMALISTA / CLASSE A
   Linha fina preta, tipografia espaçada, ponto de respiração sutil.
   Aparece junto com o lote-footer (mesmo gatilho: body.lote-footer-visivel)
   ============================================ */
.faixa-ultimo-dia {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 95;
  display: block;
  background: #FF2800;   /* Ferrari Red (Rosso Corsa) */
  color: #fff;
  text-decoration: none;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), opacity 400ms ease, background 200ms ease;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 18px rgba(255, 40, 0, 0.28);
}
.faixa-ultimo-dia:hover {
  text-decoration: none;
  background: #E62400;
}
body.lote-footer-visivel .faixa-ultimo-dia {
  transform: translateY(0);
  opacity: 1;
}

.faixa-ultimo-dia__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* Ponto de respiração — branco, contrasta com o vermelho */
.faixa-ultimo-dia__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  border-radius: 50%;
  flex-shrink: 0;
  animation: faixa-dot-breathe 2.4s ease-in-out infinite;
}
@keyframes faixa-dot-breathe {
  0%, 100% { opacity: 0.55; transform: scale(0.85); }
  50%      { opacity: 1;    transform: scale(1); }
}

/* Tipografia premium: tracking generoso, peso médio, branco puro */
.faixa-ultimo-dia__texto {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1;
}

@media (max-width: 600px) {
  .faixa-ultimo-dia__inner { padding: 10px 16px; gap: 10px; }
  .faixa-ultimo-dia__texto { font-size: 10.5px; letter-spacing: 0.22em; }
  .faixa-ultimo-dia__dot   { width: 4px; height: 4px; }
}


.lote-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--bg-elev);
  border-top: 1px solid var(--borda-forte);
  box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.35), 0 -2px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1), opacity 450ms ease;
  padding-bottom: env(safe-area-inset-bottom);
}

.theme-light .lote-footer {
  background: #ffffff;
  border-top-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.14), 0 -2px 10px rgba(0, 0, 0, 0.06);
}

.lote-footer.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.lote-footer__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Info do lote: lote + vagas */
.lote-footer__info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.lote-footer__lote {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-right: 14px;
  border-right: 1px solid var(--borda);
}

.lote-footer__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--texto-mute);
  font-weight: 600;
  line-height: 1;
}

.lote-footer__num {
  font-size: 28px;
  font-weight: 800;
  color: var(--laranja);
  line-height: 1;
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
  margin-top: 3px;
}

.lote-footer__vagas {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.lote-footer__topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lote-footer__legenda {
  font-size: 12px;
  color: var(--texto-secundario);
  font-weight: 500;
  white-space: nowrap;
}

.lote-footer__valor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 18px;
}

.lote-footer__pct {
  font-size: 16px;
  font-weight: 800;
  color: var(--laranja);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
}

.lote-footer__pct.revealed { opacity: 1; }

.lote-footer__loader {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 18px;
}

.lote-footer__loader.hidden { display: none; }

.lote-footer__loader .dot {
  width: 6px;
  height: 6px;
  background: var(--laranja);
  border-radius: 50%;
  animation: dotPulse 1.4s ease-in-out infinite;
}
.lote-footer__loader .dot:nth-child(2) { animation-delay: 0.18s; }
.lote-footer__loader .dot:nth-child(3) { animation-delay: 0.36s; }

@keyframes dotPulse {
  0%, 80%, 100% { transform: scale(0.5); opacity: 0.4; }
  40%           { transform: scale(1);   opacity: 1; }
}

.lote-footer__track {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.theme-light .lote-footer__track { background: rgba(0, 0, 0, 0.08); }

.lote-footer__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--laranja-claro), var(--laranja));
  border-radius: 999px;
  transition: width 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lote-footer__divider {
  width: 1px;
  height: 44px;
  background: var(--borda);
  flex-shrink: 0;
}

/* CTA */
.lote-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--laranja);
  color: #fff;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 117, 0, 0.28);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
  white-space: nowrap;
}

.lote-footer__cta:hover {
  background: var(--laranja-escuro);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(255, 117, 0, 0.36);
}

.lote-footer__cta-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Reserva espaço pro footer não cobrir o conteúdo do final */
body.lote-footer-visivel main {
  padding-bottom: 110px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--borda);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--texto-secundario);
}

.hero__meta-item strong {
  color: var(--texto);
  font-weight: 600;
}

.hero__meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--laranja);
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  transition: all var(--duration) var(--ease-out);
  cursor: pointer;
  min-height: 56px;
}

.btn--primary {
  background: var(--laranja);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  background: var(--laranja-escuro);
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255, 117, 0, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--texto);
  border: 1px solid var(--borda-forte);
}

.btn--ghost:hover {
  border-color: var(--laranja);
  color: var(--laranja);
}

.btn--large {
  padding: 22px 44px;
  font-size: 19px;
  min-height: 64px;
}

.hero__urgencia {
  margin-top: 24px;
  font-size: 14px;
  color: var(--texto-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero__urgencia strong {
  color: var(--laranja);
}

/* ===== SECTION GENÉRICA ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section--alt {
  background: var(--bg-elev);
}

.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.section__title .highlight {
  color: var(--laranja);
}

.section__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--texto-secundario);
  max-width: 720px;
  line-height: 1.55;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header.section__header--left {
  text-align: left;
}

.section__header .section__sub {
  margin-left: auto;
  margin-right: auto;
}

/* ===== AGITAÇÃO (DOR) ===== */
.dor {
  background: var(--bg);
}

.dor__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.dor__item {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--borda);
  border-radius: var(--radius-md);
  position: relative;
}

.dor__item::before {
  content: '✗';
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 20px;
  color: #B23A48;
  font-weight: 700;
}

.dor__item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--texto);
  padding-right: 32px;
}

.dor__item p {
  font-size: 15px;
  color: var(--texto-secundario);
  line-height: 1.5;
}

/* ===== PROMESSA / TRANSFORMAÇÃO ===== */
.promessa {
  background: var(--bg-elev);
  position: relative;
  overflow: hidden;
}

.promessa::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--laranja), transparent);
}

.promessa__inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.promessa__big {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 20px 0 24px;
}

.promessa__big .strike {
  color: var(--texto-mute);
  text-decoration: line-through;
  text-decoration-color: #B23A48;
  text-decoration-thickness: 3px;
}

.promessa__big .destaque {
  color: var(--laranja);
}

.promessa__sub {
  font-size: 19px;
  color: var(--texto-secundario);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ===== O QUE VAI ACONTECER (timeline / pilares) ===== */
.timeline {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.timeline__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  gap: 24px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--borda);
  border-radius: var(--radius-md);
  transition: transform var(--duration) var(--ease-out), border-color var(--duration) var(--ease-out);
}

.timeline__step:hover {
  border-color: var(--laranja);
  transform: translateX(4px);
}

.timeline__num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--laranja);
  letter-spacing: -0.04em;
}

.timeline__content h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
}

.timeline__content p {
  font-size: 16px;
  color: var(--texto-secundario);
  line-height: 1.55;
}

/* ===== STACK (mostrar ferramentas) ===== */
.stack {
  background: var(--bg);
}

.stack__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.stack__card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--borda);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--duration) var(--ease-out), border-color var(--duration) var(--ease-out);
}

.stack__card:hover {
  transform: translateY(-4px);
  border-color: var(--laranja);
}

.stack__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--highlight-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--laranja);
}

.stack__icon svg {
  width: 28px;
  height: 28px;
}

.stack__card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stack__card p {
  font-size: 14px;
  color: var(--texto-secundario);
  line-height: 1.5;
}

/* ===== HOST (quem é o Joviano) ===== */
.host {
  background: var(--bg-elev);
}

.host__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}

.host__photo {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--borda);
}

.host__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
}

.host__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 4px var(--laranja);
  pointer-events: none;
  opacity: 0.15;
}

.host__content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.host__content h2 .name {
  color: var(--laranja);
}

.host__role {
  font-size: 15px;
  color: var(--texto-mute);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.host__content p {
  font-size: 17px;
  color: var(--texto-secundario);
  line-height: 1.6;
  margin-bottom: 16px;
}

.host__numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--borda);
}

.host__numbers div {
  display: flex;
  flex-direction: column;
}

.host__numbers strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--laranja);
  line-height: 1;
}

.host__numbers span {
  font-size: 13px;
  color: var(--texto-mute);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== INGRESSO (pricing) ===== */
.ingresso {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.ingresso__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 56px auto 0;
}

.card-preco {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform var(--duration) var(--ease-out);
}

.card-preco:hover {
  transform: translateY(-4px);
}

.card-preco--destaque {
  background: linear-gradient(180deg, var(--bg-card-2) 0%, var(--bg-card) 100%);
  border: 2px solid var(--laranja);
  box-shadow: var(--shadow-glow);
}

.card-preco__tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--laranja);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-preco__nome {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--texto-mute);
  margin-bottom: 4px;
}

.card-preco__titulo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.card-preco__preco {
  display: flex;
  align-items: flex-end;   /* alinha pela base — moeda, valor, centavos, "à vista" todos no mesmo baseline visual */
  gap: 6px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.card-preco__preco .moeda {
  font-size: 22px;
  font-weight: 700;
  color: var(--texto-secundario);
  line-height: 1;
  padding-bottom: 8px;       /* compensa diferença de altura pra alinhar pela base */
}

.card-preco__preco .valor {
  font-size: 56px;
  font-weight: 800;
  color: var(--texto);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Centavos: pequenos, mesmo baseline do inteiro (alinhados em flex-end) */
.card-preco__preco .centavos {
  font-size: 22px;
  font-weight: 700;
  color: var(--texto);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-left: -2px;        /* gruda no valor pra leitura "97,00" sem espaço */
  padding-bottom: 8px;       /* mesmo alinhamento do "R$" */
}
.card-preco--destaque .card-preco__preco .centavos {
  color: var(--laranja);
}

/* "à vista" na mesma linha, alinhado pela base do número */
.card-preco__preco .avista {
  font-size: 14px;
  font-weight: 600;
  color: var(--texto-mute);
  line-height: 1;
  padding-bottom: 10px;      /* alinha bem na base do número */
  margin-left: 8px;
  letter-spacing: 0.01em;
}

.card-preco--destaque .card-preco__preco .valor {
  color: var(--laranja);
}

/* Variante parcelado: texto livre menor que o valor à vista (não cabe "12x de R$ 9,90" em 56px) */
.card-preco__preco--parcelado {
  align-items: baseline;
}
.card-preco__preco--parcelado .valor-livre {
  font-size: 36px;
  font-weight: 800;
  color: var(--texto);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.card-preco--destaque .card-preco__preco--parcelado .valor-livre {
  color: var(--laranja);
}

.card-preco__lote {
  font-size: 13px;
  color: var(--texto-mute);
  margin-bottom: 24px;
  font-weight: 500;
}

.card-preco__inclui {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.card-preco__inclui li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--texto-secundario);
  border-bottom: 1px dashed var(--borda);
}

.card-preco__inclui li:last-child {
  border-bottom: none;
}

.card-preco__inclui svg {
  width: 18px;
  height: 18px;
  color: var(--laranja);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Grossura da fonte dos itens (controlada no admin, 1 a 5, 3 = normal) */
.card-preco__inclui .peso-1 { font-weight: 300; }
.card-preco__inclui .peso-2 { font-weight: 400; }
.card-preco__inclui .peso-3 { font-weight: 500; }
.card-preco__inclui .peso-4 { font-weight: 600; color: var(--texto); }
.card-preco__inclui .peso-5 { font-weight: 700; color: var(--texto); }

.card-preco__cta {
  margin-top: auto;
}

.card-preco__cta .btn {
  width: 100%;
}

.ingresso__nota {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--texto-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ===== FAQ ===== */
.faq {
  background: var(--bg-elev);
}

.faq__list {
  max-width: 780px;
  margin: 56px auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--borda);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--texto);
  transition: color var(--duration) var(--ease-out);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary:hover {
  color: var(--laranja);
}

.faq__item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--laranja);
  line-height: 1;
  transition: transform var(--duration) var(--ease-out);
  flex-shrink: 0;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item-content {
  padding: 0 0 22px;
  color: var(--texto-secundario);
  font-size: 16px;
  line-height: 1.6;
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.7;
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.cta-final h2 .highlight {
  color: var(--laranja);
}

.cta-final p {
  font-size: 19px;
  color: var(--texto-secundario);
  margin-bottom: 36px;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--borda);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--texto);
}

.site-footer__brand .brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.site-footer__brand .brand-mark svg {
  width: 16px;
  height: 16px;
}

.site-footer p {
  font-size: 13px;
  color: var(--texto-mute);
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 900px) {
  .host__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .host__photo {
    margin: 0 auto;
  }
  .host__numbers {
    justify-content: center;
  }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 720px) {
  body { font-size: 16px; }

  .container, .container-narrow { padding: 0 18px; }

  .site-header__inner { padding: 12px 16px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-mark svg { width: 18px; height: 18px; }
  .brand-text__line1 { font-size: 12px; letter-spacing: 0.03em; }
  .brand-text__line2 { font-size: 10px; }

  .hero { padding: 48px 0 64px; }
  .hero__badge { font-size: 11px; padding: 6px 12px; margin-bottom: 24px; }
  .hero__title { font-size: 34px; line-height: 1.08; }
  .hero__sub { font-size: 16px; margin-bottom: 28px; }
  .hero__meta { gap: 8px; }
  .hero__meta-item { font-size: 13px; padding: 8px 14px; }

  .lote-footer__inner {
    padding: 10px 14px;
    gap: 10px;
  }
  .lote-footer__info { gap: 10px; }
  .lote-footer__lote { padding-right: 10px; }
  .lote-footer__num { font-size: 24px; }
  .lote-footer__legenda { font-size: 11px; }
  .lote-footer__pct { font-size: 14px; }
  .lote-footer__track { height: 5px; }
  .lote-footer__divider { display: none; }
  .lote-footer__cta {
    padding: 12px 16px;
  }
  .lote-footer__cta-label { font-size: 12px; }
  body.lote-footer-visivel main { padding-bottom: 100px; }

  .btn { padding: 16px 24px; font-size: 15px; min-height: 52px; width: 100%; }
  .btn--large { padding: 18px 28px; font-size: 17px; }

  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }

  .dor__grid { grid-template-columns: 1fr; gap: 12px; }
  .dor__item { padding: 22px; }

  .promessa__big { font-size: 28px; }
  .promessa__sub { font-size: 16px; }

  .timeline__step {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 22px;
  }
  .timeline__num { font-size: 36px; }
  .timeline__content h3 { font-size: 18px; }
  .timeline__content p { font-size: 15px; }

  .stack__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stack__card { padding: 22px 16px; }
  .stack__card h3 { font-size: 15px; }
  .stack__card p { font-size: 13px; }

  .host__photo { width: 200px; height: 200px; }
  .host__content h2 { font-size: 26px; }
  .host__content p { font-size: 16px; }
  .host__numbers { gap: 20px; }
  .host__numbers strong { font-size: 24px; }

  .ingresso__grid { grid-template-columns: 1fr; gap: 32px; }
  .card-preco { padding: 32px 24px; }
  .card-preco__preco .valor { font-size: 48px; }
  .card-preco__preco .moeda { font-size: 20px; padding-bottom: 6px; }
  .card-preco__preco .centavos { font-size: 20px; padding-bottom: 6px; }
  .card-preco__preco .avista { font-size: 13px; padding-bottom: 8px; }
  .card-preco__titulo { font-size: 20px; }

  .faq__item summary { font-size: 15px; padding: 18px 0; }
  .faq__item-content { font-size: 15px; }

  .cta-final { padding: 64px 0; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 28px; }
  .stack__grid { grid-template-columns: 1fr; }
  .timeline__step { grid-template-columns: 1fr; text-align: center; }
}

/* ===== UTILS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== LIGHT: letra laranja usa --laranja-texto, contorno/icone usa --laranja-escuro =====
   Laranja puro (#FF7500) reprova como letra em fundo claro (2.69:1, paleta.py codigo 1). */
.theme-light .brand-text__line1 .arrow,
.theme-light .hero__badge,
.theme-light .hero__title .highlight,
.theme-light .hero__urgencia strong,
.theme-light .section__eyebrow,
.theme-light .section__title .highlight,
.theme-light .promessa__big .destaque,
.theme-light .timeline__step:hover,
.theme-light .timeline__num,
.theme-light .stack__card:hover,
.theme-light .host__content h2 .name,
.theme-light .host__numbers strong,
.theme-light .card-preco--destaque .card-preco__preco .centavos,
.theme-light .card-preco--destaque .card-preco__preco .valor,
.theme-light .card-preco--destaque .card-preco__preco--parcelado .valor-livre,
.theme-light .faq__item summary:hover,
.theme-light .faq__item summary::after,
.theme-light .cta-final h2 .highlight,
.theme-light .lote-footer__num,
.theme-light .lote-footer__pct,
.theme-light .btn--ghost:hover {
  color: var(--laranja-texto);
}

.theme-light .hero__badge {
  border-color: var(--laranja-escuro);
}

.theme-light .btn--ghost:hover {
  border-color: var(--laranja-escuro);
}

.theme-light .hero__meta-item svg,
.theme-light .stack__icon,
.theme-light .card-preco__inclui svg {
  color: var(--laranja-escuro);
}
