/* ==================================================
   RESET / BASE
================================================== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, var(--hero1), var(--hero2));
  color: var(--text);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================================================
   TOPBAR
================================================== */
.topbar {
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.topbar__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar img { height: 34px; width: auto; }
.topbar__tag {
  font-size: 14px;
  font-weight: 700;
  color: #0b1320;
  opacity: .7;
}

/* ==================================================
   HERO
================================================== */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 48px 0;

  background:
    radial-gradient(1100px 600px at 20% 10%, rgba(255,255,255,.08), transparent 55%),
    radial-gradient(900px 520px at 80% 40%, rgba(200,164,70,.10), transparent 55%),
    linear-gradient(180deg, var(--hero1), var(--hero2));
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 40px;
  align-items: center;
}

/* ==================================================
   TEXTOS (contraste melhorado)
================================================== */
.kicker {
  margin: 0 0 16px;
  font-weight: 700;
  color: rgba(255,255,255,.82);
  letter-spacing: .02em;
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
}

.headline {
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,.22);
}

.gold { color: var(--gold); }

.lead {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.86);
  max-width: 62ch;
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
}

.proof {
  margin: 0 0 18px;
  font-weight: 800;
  color: rgba(255,255,255,.88);
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
}

/* ==================================================
   CHECKLIST
================================================== */
.checks {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 12px;
}
.checks li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
  color: rgba(255,255,255,.93);
  text-shadow: 0 1px 2px rgba(0,0,0,.16);
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,.18);
  border: 1px solid rgba(34,197,94,.45);
  color: var(--green);
  font-weight: 900;
}

/* ==================================================
   BOTÕES (CTA)
================================================== */
.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .06s ease, background .12s ease, filter .12s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: var(--gold);
  color: #0b1320;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.btn--gold:hover {
  background: var(--gold2);
  filter: saturate(1.05);
}

/* ==================================================
   DISCLAIMER (contraste melhorado)
================================================== */
.disclaimer {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,.72);
  max-width: 70ch;
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
}

/* ==================================================
   RESULTS BOX (QUADRADO) + SLIDER (AUTO)
================================================== */
.resultsBox{
  --boxSize: 460px;

  width: var(--boxSize);
  height: var(--boxSize);

  border-radius: 24px;
  overflow: hidden;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);

  position: relative;
}

.resultsStrip{
  display: flex;
  height: 100%;
  width: max-content;

  animation-name: resultsScroll;
  animation-duration: 32s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;

  will-change: transform;
}

.resultsSlide{
  width: var(--boxSize);
  height: var(--boxSize);
  flex: 0 0 var(--boxSize);
}

.resultsSlide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.resultsBox::before,
.resultsBox::after{
  content:"";
  position:absolute;
  top:0;
  width: 70px;
  height:100%;
  z-index: 2;
  pointer-events:none;
}
.resultsBox::before{
  left:0;
  background: linear-gradient(90deg, rgba(14,26,43,.95), rgba(14,26,43,0));
}
.resultsBox::after{
  right:0;
  background: linear-gradient(270deg, rgba(14,26,43,.95), rgba(14,26,43,0));
}

@keyframes resultsScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==================================================
   RESPONSIVO
================================================== */
@media (max-width: 980px) {
  .hero { padding: 28px 0; min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 22px; }
  .headline { font-size: 40px; line-height: 1.08; }

  .resultsBox{
    --boxSize: min(92vw, 520px);
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .btn { width: 100%; height: 54px; }
}

@media (max-width: 420px) {
  .headline { font-size: 32px; line-height: 1.12; }
}

/* ==================================================
   ACESSIBILIDADE (mantém slider rodando)
================================================== */
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}
