/* ===== Black Z - The Last Dance | LZ Academy ===== */

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Orbitron", sans-serif;
}

/* Títulos mantêm peso 700; demais elementos UI seguem o font-weight do projeto */
.font-display {
  font-weight: 700;
}

/* Textos corridos: Jura */
p,
.faq-answer,
.benefit-points,
.benefit-points li,
.form-input,
input,
select,
textarea {
  font-family: "Jura", sans-serif;
}

/* Labels curtos / meta (não são texto corrido) → Orbitron */
p.uppercase,
.stat-box p,
.countdown-label,
header span,
footer span {
  font-family: "Orbitron", sans-serif;
}

::selection {
  background: #F5A623;
  color: #0a0a0a;
}

/* ===== Título "THE LAST DANCE" - estilo pôster vintage (referência Netflix) ===== */
.last-dance-wrap {
  position: relative;
  display: inline-block;
  padding: 0.35em 0;
  isolation: isolate;
}

/* Pincelada/faixa diagonal atrás do texto */
.last-dance-stripe {
  position: absolute;
  left: -6%;
  right: -6%;
  top: 50%;
  height: 46%;
  background: #F5A623;
  transform: translateY(-50%) rotate(-3deg);
  z-index: -1;
  border-radius: 2px;
  box-shadow: 0 6px 22px rgba(245, 166, 35, 0.25);
}

/* Texto "eco" duplicado, deslocado atrás, apenas contorno */
.last-dance-echo {
  position: absolute;
  top: 0.35em;
  left: 0;
  z-index: -1;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 166, 35, 0.5);
  text-stroke: 1.5px rgba(245, 166, 35, 0.5);
  transform: translate(0.12em, -0.1em);
  pointer-events: none;
}

/* Texto principal: preenchimento branco com contorno preto grosso */
.last-dance-text {
  position: relative;
  display: inline-block;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #ffffff;
  -webkit-text-stroke: 2px #0a0a0a;
  text-stroke: 2px #0a0a0a;
  text-shadow:
    2px 2px 0 #0a0a0a,
    -2px 2px 0 #0a0a0a,
    2px -2px 0 #0a0a0a,
    -2px -2px 0 #0a0a0a,
    0 8px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 480px) {
  .last-dance-echo,
  .last-dance-text {
    white-space: normal;
    font-size: clamp(1.9rem, 9vw, 3rem);
  }
}

/* Subtítulo estilo "EVERYTHING COMES TO AN END" */
.last-dance-tagline {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: #ffffff;
  padding-left: 0.15em;
}
@media (min-width: 768px) {
  .last-dance-tagline {
    font-size: 0.9rem;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #F5A623;
  border-radius: 4px;
}

/* ===== CTA Buttons ===== */
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #F7B94D, #C17F12);
  color: #0a0a0a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.cta-btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(245, 166, 35, 0.5);
}
.cta-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.cta-btn-small {
  display: inline-flex;
  align-items: center;
  background: #F5A623;
  color: #0a0a0a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-size: 0.8rem;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.cta-btn-small:hover {
  background: #D99420;
  transform: translateY(-1px);
}

/* ===== Section tag ===== */
.section-tag {
  display: inline-block;
  color: #F5A623;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

/* ===== Countdown ===== */
.countdown-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 10px;
  padding: 0.75rem 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(4px);
}
.countdown-box span.font-display {
  color: #F5A623;
}
.countdown-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-top: 0.15rem;
}

/* ===== Cards: gradiente amarelo-laranja → branco (inclinado) ===== */
.benefit-card {
  background: linear-gradient(135deg, #F5A623 0%, #ffffff 62%);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 16px;
  color: #0a0a0a;
}

/* ===== Benefit cards ===== */
.benefit-card {
  padding: 2rem 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.benefit-card:hover {
  border-color: rgba(245, 166, 35, 0.7);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.85);
  color: #F5A623;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.benefit-points {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.benefit-points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0a0a0a;
}
.benefit-points i {
  color: #A66B10;
  font-size: 0.8rem;
}

/* ===== Benefit cards com mídia (3 primeiros) — layout referência ===== */
.benefit-grid-media {
  position: relative;
}

.benefit-card--media {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(70% 55% at 12% 58%, rgba(245, 166, 35, 0.16) 0%, transparent 68%),
    #f7f4ee;
  box-shadow: 0 18px 40px -24px rgba(10, 10, 10, 0.45);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.35s ease;
}
.benefit-card--media:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 166, 35, 0.45);
  box-shadow: 0 28px 48px -22px rgba(166, 107, 16, 0.45);
}

.benefit-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.62;
  overflow: hidden;
  background: #0a0a0a;
}
.benefit-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.benefit-card--media:hover .benefit-media img {
  transform: scale(1.04);
}

/* Ícone flutuante na junção imagem / texto (mesmo chip dos outros cards) */
.benefit-card--media > .benefit-icon {
  position: relative;
  isolation: isolate;
  z-index: 3;
  align-self: flex-start;
  left: 1.25rem;
  width: 58px;
  height: 58px;
  margin: -29px 0;
  border-radius: 50%;
  background: linear-gradient(150deg, #F5A623 0%, #E09B1F 42%, #A66B10 100%);
  filter: drop-shadow(0 10px 18px rgba(166, 107, 16, 0.4));
  box-shadow: 0 0 0 4px rgba(247, 244, 238, 0.95);
  transition: filter 0.35s ease, transform 0.35s ease;
}
.benefit-card--media > .benefit-icon::before {
  content: '';
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.7) 48%, rgba(245, 166, 35, 0.32) 100%);
}
.benefit-card--media:hover > .benefit-icon {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 24px rgba(166, 107, 16, 0.6));
}
.benefit-card--media .benefit-icon i {
  font-size: 1.25rem;
  background: linear-gradient(140deg, #6B4A10 0%, #C17F12 45%, #F5A623 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.benefit-media-body {
  position: relative;
  z-index: 2;
  padding: 2.6rem 1.4rem 1.6rem;
}

.benefit-card--media h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
  color: #0a0a0a;
}
.benefit-card--media h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #F5A623, rgba(245, 166, 35, 0));
  transition: width 0.35s ease;
}
.benefit-card--media:hover h3::after {
  width: 78px;
}
.section-light .benefit-card--media p {
  color: #5a5a5a !important;
  font-weight: 500;
}
.benefit-card--media .benefit-points {
  margin-top: 0.35rem;
}
.benefit-card--media .benefit-points li {
  color: #3a3a3a;
}
.benefit-card--media .benefit-points i {
  color: #C17F12;
}

@media (prefers-reduced-motion: reduce) {
  .benefit-card--media,
  .benefit-media img {
    transition: none;
  }
}

/* ===== Benefit cards "tech glass" (cards de novidade) =====
   Vidro fosco sobre uma aura dourada desfocada: o backdrop-filter só
   tem o que borrar por causa do brilho atrás do grid. */
.benefit-grid-tech {
  position: relative;
  isolation: isolate;
}
.benefit-grid-tech::before {
  content: '';
  position: absolute;
  inset: -6% -3%;
  z-index: -1;
  background:
    radial-gradient(36% 58% at 16% 28%, rgba(245, 166, 35, 0.4) 0%, transparent 70%),
    radial-gradient(32% 52% at 84% 72%, rgba(193, 127, 18, 0.26) 0%, transparent 72%);
  filter: blur(22px);
  animation: lz-aura 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lz-aura {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.benefit-card--tech {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 2rem 1.5rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(245, 166, 35, 0.42) 0%, rgba(255, 255, 255, 0.78) 46%, rgba(255, 255, 255, 0.62) 100%) padding-box,
    linear-gradient(140deg, rgba(245, 166, 35, 0.95) 0%, rgba(255, 255, 255, 0.2) 44%, rgba(245, 166, 35, 0.7) 100%) border-box;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.35s ease;
}
.section-light .benefit-card--tech {
  box-shadow:
    0 18px 38px -20px rgba(166, 107, 16, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.section-light .benefit-card--tech:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow:
    0 28px 52px -22px rgba(166, 107, 16, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Varredura de luz no hover */
.benefit-card--tech::after {
  content: '';
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -70%;
  width: 45%;
  z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  transform: skewX(-18deg);
  transition: left 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.benefit-card--tech:hover::after {
  left: 130%;
}

/* Vidro dourado exige texto mais escuro e encorpado que o padrão da seção clara */
.section-light .benefit-card--tech p {
  color: #4a4a4a !important;
  font-weight: 500;
}

.benefit-index {
  position: absolute;
  top: 1.15rem;
  right: 1.3rem;
  font-family: "Orbitron", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(10, 10, 10, 0.28);
  transition: color 0.3s ease;
}
.benefit-card--tech:hover .benefit-index {
  color: #A66B10;
}

/* Chip circular: moldura em degradê + miolo de vidro */
.section-light .benefit-card--tech .benefit-icon {
  position: relative;
  isolation: isolate;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 1.4rem;
  background: linear-gradient(150deg, #F5A623 0%, #E09B1F 42%, #A66B10 100%);
  filter: drop-shadow(0 10px 18px rgba(166, 107, 16, 0.4));
  transition: filter 0.35s ease, transform 0.35s ease;
}
.benefit-card--tech .benefit-icon::before {
  content: '';
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.7) 48%, rgba(245, 166, 35, 0.32) 100%);
}
.section-light .benefit-card--tech:hover .benefit-icon {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 24px rgba(166, 107, 16, 0.6));
}

/* Glifo preenchido com degradê */
.benefit-card--tech .benefit-icon i,
.benefit-card--tech .benefit-points i {
  background: linear-gradient(140deg, #6B4A10 0%, #C17F12 45%, #F5A623 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.benefit-card--tech .benefit-icon i {
  font-size: 1.35rem;
}

/* Traço que cresce no hover */
.benefit-card--tech h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
}
.benefit-card--tech h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #F5A623, rgba(245, 166, 35, 0));
  transition: width 0.35s ease;
}
.benefit-card--tech:hover h3::after {
  width: 78px;
}

@media (prefers-reduced-motion: reduce) {
  .benefit-grid-tech::before {
    animation: none;
  }
  .benefit-card--tech,
  .benefit-card--tech::after,
  .section-light .benefit-card--tech .benefit-icon {
    transition: none;
  }
}

/* ===== Vitrine "Novidade": painel escuro em destaque dentro da seção clara =====
   --mx / --my são alimentados pelo mouse no main.js (faixa -0.5 a 0.5);
   ficam em 0 por padrão para a aura nascer centralizada mesmo sem JS. */
.novelty-showcase {
  --mx: 0;
  --my: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 4rem 0 0;
  padding: 3rem 1.5rem 3.25rem;
  border: 1px solid transparent;
  border-radius: 24px;
  background:
    linear-gradient(160deg, #131313 0%, #0a0a0a 55%, #15100a 100%) padding-box,
    linear-gradient(140deg, rgba(245, 166, 35, 0.9) 0%, rgba(245, 166, 35, 0.12) 46%, rgba(245, 166, 35, 0.75) 100%) border-box;
  box-shadow:
    0 44px 84px -44px rgba(10, 10, 10, 0.8),
    0 0 68px -30px rgba(245, 166, 35, 0.45);
}
@media (min-width: 768px) {
  .novelty-showcase {
    padding: 3.5rem 3rem 3.75rem;
  }
}

/* Aura dourada central que acompanha o mouse */
.novelty-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(780px, 118%);
  aspect-ratio: 1;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(245, 166, 35, 0.36) 0%, rgba(245, 166, 35, 0.15) 28%, rgba(193, 127, 18, 0.06) 50%, transparent 70%);
  filter: blur(26px);
  transform: translate(-50%, -50%) translate(calc(var(--mx) * 54px), calc(var(--my) * 40px));
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* Cards internos de novidade: mesmo layout de mídia, um pouco maiores */
.benefit-card--media-feature {
  border-radius: 22px;
}
.benefit-card--media-feature .benefit-media {
  aspect-ratio: 1 / 0.42;
}
.benefit-card--media-feature > .benefit-icon {
  width: 64px;
  height: 64px;
  margin: -32px 0;
}
.benefit-card--media-feature .benefit-icon i {
  font-size: 1.35rem;
}
.benefit-card--media-feature h3 {
  font-size: 1.65rem;
}
.benefit-card--media-feature .benefit-media-body {
  padding: 2.85rem 1.6rem 1.85rem;
}

/* Legacy feature (tech) — mantido se reutilizado */
.section-light .benefit-card--feature:not(.benefit-card--media) {
  padding: 2.5rem 2rem 2.25rem;
  border-radius: 22px;
  background:
    linear-gradient(150deg, rgba(245, 166, 35, 0.66) 0%, rgba(245, 166, 35, 0.3) 26%, rgba(255, 255, 255, 0.5) 58%, rgba(255, 255, 255, 0.5) 100%) padding-box,
    linear-gradient(140deg, rgba(245, 166, 35, 0.95) 0%, #f5a623 44%, rgba(245, 166, 35, 0.7) 100%) border-box;
  box-shadow:
    0 26px 54px -26px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.section-light .benefit-card--feature:not(.benefit-card--media):hover {
  box-shadow:
    0 34px 64px -26px rgba(0, 0, 0, 0.85),
    0 0 40px -12px rgba(245, 166, 35, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.section-light .benefit-card--feature:not(.benefit-card--media) p {
  color: #1c1c1c !important;
}
.section-light .benefit-card--feature:not(.benefit-card--media) .benefit-icon {
  width: 78px;
  height: 78px;
}
.benefit-card--feature:not(.benefit-card--media) .benefit-icon i {
  font-size: 1.7rem;
}
.benefit-card--feature:not(.benefit-card--media) h3 {
  font-size: 1.65rem;
}

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

/* ===== Chamada "Novidade" ===== */
.novelty-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 3.5rem 0 2rem;
}
.novelty-showcase .novelty-callout {
  margin: 0 0 2.5rem;
}
.novelty-callout::before,
.novelty-callout::after {
  content: '';
  flex: 1;
  height: 2px;
  max-width: 180px;
  background: linear-gradient(to right, transparent, #F5A623);
}
.novelty-callout::after {
  background: linear-gradient(to left, transparent, #F5A623);
}
.novelty-callout-label {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F5A623;
  padding: 0.15em 0.35em 0.08em;
  line-height: 1;
}

/* ===== Big idea cards — padrão box (tom único de amarelo) ===== */
.big-idea-aura {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 48% at 50% 48%, rgba(245, 166, 35, 0.28) 0%, rgba(245, 166, 35, 0.12) 38%, transparent 72%);
}

.idea-card {
  position: relative;
  isolation: isolate;
  padding: 2rem 1.5rem 1.75rem;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 20px;
  background: #F7B94D;
  color: #0a0a0a;
  box-shadow: 0 18px 38px -20px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.3s ease;
}
.idea-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 48px -22px rgba(0, 0, 0, 0.65);
}
.idea-card .benefit-index {
  color: rgba(10, 10, 10, 0.35);
}
.idea-card:hover .benefit-index {
  color: rgba(10, 10, 10, 0.55);
}
.idea-card .benefit-icon {
  position: relative;
  isolation: isolate;
  width: 68px;
  height: 68px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: linear-gradient(150deg, #F5A623 0%, #E09B1F 42%, #A66B10 100%);
  filter: drop-shadow(0 10px 18px rgba(166, 107, 16, 0.35));
  transition: filter 0.35s ease, transform 0.35s ease;
}
.idea-card .benefit-icon::before {
  content: '';
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.7) 48%, rgba(245, 166, 35, 0.32) 100%);
}
.idea-card:hover .benefit-icon {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 24px rgba(166, 107, 16, 0.5));
}
.idea-card .benefit-icon i {
  font-size: 1.65rem;
  background: linear-gradient(140deg, #6B4A10 0%, #C17F12 45%, #F5A623 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.idea-card h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
  color: #0a0a0a;
}
.idea-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #A66B10, rgba(166, 107, 16, 0));
  transition: width 0.35s ease;
}
.idea-card:hover h3::after {
  width: 78px;
}
.idea-card p {
  color: #2a2a2a;
  font-weight: 500;
}

/* ===== Stats ===== */
.stat-box {
  text-align: center;
  padding: 1.5rem 0.75rem;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 16px;
  background: #F7B94D;
  color: #0a0a0a;
  box-shadow: 0 14px 32px -18px rgba(0, 0, 0, 0.5);
}
.stat-box .text-lz-yellow {
  color: #0a0a0a;
}
.stat-box p {
  color: #2a2a2a;
}

/* ===== Mural de depoimentos: 3 faixas em marquee infinito ===== */
.testimonial-wall {
  --row-h: 96px;
  --gap: 14px;
  --aura-pad: 14px;
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  /* padding vertical: a aura do hover não é cortada pelo overflow */
  padding-block: var(--aura-pad);
  overflow-x: hidden;
  overflow-y: visible;
  /* esmaece as pontas para a faixa não cortar seco no full-bleed */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.testimonial-row {
  /* overflow-x esconde o marquee; padding-y guarda espaço da aura.
     (overflow-y: visible + overflow-x: hidden vira auto — por isso o padding) */
  overflow: hidden;
  padding-block: var(--aura-pad);
  margin-block: calc(var(--aura-pad) * -1);
}

.testimonial-track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  will-change: transform;
  animation: lz-marquee var(--dur, 60s) linear infinite;
}
.testimonial-row[data-dir="right"] .testimonial-track {
  animation-direction: reverse;
}
.testimonial-row:hover .testimonial-track,
.testimonial-track:focus-within {
  animation-play-state: paused;
}

/* O conjunto é duplicado: deslocar metade da pista + meia lacuna
   recoloca o clone exatamente sobre o original. */
@keyframes lz-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-50% - var(--gap) / 2), 0, 0); }
}

.testimonial-tile {
  position: relative;
  flex: 0 0 auto;
  height: var(--row-h);
  min-width: 88px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background: #111111;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.testimonial-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.testimonial-tile:hover,
.testimonial-tile:focus-visible {
  outline: none;
  z-index: 5;
  transform: translateY(-3px);
  border-color: #F5A623;
  box-shadow:
    0 0 0 1px #F5A623,
    0 0 12px rgba(245, 166, 35, 0.35),
    0 8px 18px -10px rgba(0, 0, 0, 0.7);
}

@media (max-width: 767px) {
  .testimonial-wall {
    --row-h: 66px;
    --gap: 10px;
    --aura-pad: 12px;
    margin-top: 2.5rem;
  }
}

/* ===== Lightbox dos depoimentos ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 1rem;
  background: rgba(6, 6, 6, 0.93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: lz-lightbox-in 0.2s ease;
}
.lightbox[hidden] {
  display: none;
}
@keyframes lz-lightbox-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: min(1080px, 92vw);
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(245, 166, 35, 0.5);
  background: #ffffff;
  box-shadow:
    0 34px 70px -22px rgba(0, 0, 0, 0.9),
    0 0 54px -18px rgba(245, 166, 35, 0.5);
}
.lightbox-counter {
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #F5A623;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.5);
  background: rgba(10, 10, 10, 0.75);
  color: #F5A623;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: #F5A623;
  color: #0a0a0a;
  transform: scale(1.06);
}
.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}
.lightbox-prev {
  left: 1.5rem;
}
.lightbox-next {
  right: 1.5rem;
}

@media (max-width: 640px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 0.9rem; right: 0.9rem; }
}

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

/* ===== Form ===== */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-input::placeholder {
  color: #6b7280;
}
.form-input:focus {
  border-color: #F5A623;
  background: rgba(255,255,255,0.09);
}
select.form-input option {
  background: #151515;
  color: #fff;
}

/* ===== FAQ ===== */
#faq-list {
  overflow: visible;
  padding: 4px 2px;
}

.faq-item {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #F5A623 0%, #ffffff 62%);
  color: #0a0a0a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: #0a0a0a;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.faq-question span {
  flex: 1 1 auto;
  min-width: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: #5b5b5b;
  font-size: 0.9rem;
  line-height: 1.6;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
  color: #A66B10;
}

/* ===== Hero estático (sem scroll-pin) =====
   Toda a informação relevante já na dobra: imagem como background
   full-bleed da seção, com um véu em degradê (esquerda escura para o
   texto, direita mais transparente para a imagem aparecer). */
.hero-section-static {
  background: #0a0a0a;
  overflow: hidden;
}

.hero-static-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-static-bg picture,
.hero-static-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: 70% 22%;
}

.hero-static-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 75% 60% at 6% 12%, rgba(245, 166, 35, 0.32) 0%, rgba(245, 166, 35, 0.14) 32%, rgba(245, 166, 35, 0.04) 55%, transparent 72%),
    linear-gradient(to right, #0a0a0a 0%, rgba(10, 10, 10, 0.94) 32%, rgba(10, 10, 10, 0.55) 58%, rgb(10 10 10 / 0%) 82%, rgba(10, 10, 10, 0.05) 100%),
    linear-gradient(to top, rgb(10 10 10 / 0%) 0%, transparent 45%);
}

/* Tipografia da hero */
.hero-badge {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  padding: 0.35rem 0.7rem;
}
.hero-title {
  font-size: 1.7rem;
  max-width: 11.5rem;
}
.hero-lead {
  max-width: 17rem;
}

@media (min-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
    max-width: 13.5rem;
  }
  .hero-lead {
    max-width: 19rem;
  }
}

@media (min-width: 768px) {
  .hero-badge {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    padding: 0.5rem 1rem;
  }
  .hero-title {
    font-size: 3rem;
    max-width: none;
  }
  .hero-lead {
    max-width: 36rem;
  }
}

/* Tarja na base da seção: simula passagem para a próxima section */
.section-base-tarja {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}
.section-base-tarja img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(72px, 14vw, 160px);
  object-fit: cover;
  object-position: center bottom;
}
.section-base-tarja--flip {
  top: -1px;
  bottom: auto;
}
.section-base-tarja--flip img {
  transform: rotate(180deg);
  object-position: center top;
}

@media (max-width: 767px) {
  .hero-static-bg img {
    object-position: 62% 18%;
  }
  .hero-static-overlay {
    background:
      radial-gradient(ellipse 70% 50% at 6% 14%, rgba(245, 166, 35, 0.22) 0%, rgba(245, 166, 35, 0.08) 32%, transparent 62%),
      linear-gradient(to right, #0a0a0a 0%, rgba(10, 10, 10, 0.92) 28%, rgba(10, 10, 10, 0.55) 48%, rgba(10, 10, 10, 0.18) 72%, rgba(10, 10, 10, 0.04) 100%),
      linear-gradient(to top, rgba(10, 10, 10, 0.55) 0%, transparent 42%);
  }
  .section-base-tarja img {
    max-height: clamp(56px, 18vw, 110px);
  }
  #hero-section .cta-btn-primary {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    padding: 0.85rem 1.15rem;
    gap: 0.4rem;
    white-space: nowrap;
  }
  h2.font-display {
    font-size: 1.55rem;
    line-height: 1.2;
  }
  h3.font-display {
    font-size: 1.2rem;
  }
  .benefit-card--media-feature h3 {
    font-size: 1.25rem;
  }
  blockquote.font-display {
    font-size: 1.2rem;
    line-height: 1.35;
  }
}

/* ===== Elementos gráficos reutilizáveis (unidade visual com o poster) ===== */

/* Efeito "borda de papel rasgado" no topo/base de uma seção */
.torn-edge-top {
  position: relative;
}
.torn-edge-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 22px;
  background: inherit;
  clip-path: polygon(
    0% 100%, 4% 30%, 9% 80%, 14% 20%, 19% 70%, 24% 10%, 29% 60%,
    34% 15%, 39% 75%, 44% 25%, 49% 65%, 54% 5%, 59% 55%, 64% 20%,
    69% 70%, 74% 10%, 79% 60%, 84% 15%, 89% 75%, 94% 25%, 100% 100%
  );
  transform: translateY(-100%);
}

/* Tag de seção — pill arredondada (padrão do projeto) */
.poster-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #0a0a0a;
  color: #F5A623;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.4rem 0.95rem;
  border: 1px solid #F5A623;
  border-radius: 999px;
}

/* ===== Blocos de fundo claro ===== */
.section-light {
  background: #f5f3ee;
  color: #0a0a0a;
}
#beneficios.section-light {
  background:
    radial-gradient(62% 46% at 50% 44%, rgba(245, 166, 35, 0.1) 0%, transparent 72%),
    #ffffff;
}
.section-light .section-tag {
  color: #A66B10;
}
.section-light h2,
.section-light h3 {
  color: #0a0a0a;
}
.section-light p {
  color: #4b4b4b;
}
.section-light .benefit-card,
.section-light .idea-card,
.section-light .faq-item {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: none;
}
.section-light .benefit-icon {
  background: rgba(10,10,10,0.85);
  color: #F5A623;
}
.section-light .benefit-card--media > .benefit-icon {
  background: linear-gradient(150deg, #F5A623 0%, #E09B1F 42%, #A66B10 100%);
  color: transparent;
}
.section-light .benefit-card--media {
  box-shadow: 0 18px 40px -24px rgba(10, 10, 10, 0.45);
}
.section-light .benefit-card--media:hover {
  box-shadow: 0 28px 48px -22px rgba(166, 107, 16, 0.45);
}
.section-light .benefit-points li {
  color: #0a0a0a;
}
.section-light .faq-question {
  color: #0a0a0a;
}
.section-light .faq-answer {
  color: #5b5b5b;
}
.section-light .form-input {
  background: rgba(10,10,10,0.04);
  border: 1px solid rgba(10,10,10,0.15);
  color: #0a0a0a;
}
.section-light .form-input::placeholder {
  color: #8a8a8a;
}
.section-light select.form-input option {
  background: #fff;
  color: #0a0a0a;
}
.section-light .text-gray-300,
.section-light .text-gray-400 {
  color: #565656 !important;
}
.section-light .text-gray-500 {
  color: #7a7a7a !important;
}
.section-light .text-white {
  color: #0a0a0a !important;
}
.section-light .border-white\/10,
.section-light .border-white\/5,
.section-light .border-white\/8 {
  border-color: rgba(10,10,10,0.1) !important;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .countdown-box span.font-display {
    font-size: 1.5rem;
  }
}
