:root {
  --bg: #0a0a0a;
  --bg-soft: #121212;
  --card: rgba(24, 24, 24, 0.9);
  --card-2: #1d1d1d;
  --text: #f5f5f5;
  --muted: #b7b7b7;
  --gold: #c9a55b;
  --gold-2: #e2c98f;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --container: 1180px;
}

.gold {
  background: linear-gradient(135deg, #c9a55b, #e2c98f, #c9a55b);
  background-size: 200% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: goldShine 3s linear infinite;
}

/* brilho animado */
@keyframes goldShine {
  to {
    background-position: 200% center;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.top-alert {
  background: linear-gradient(90deg, #111, #1b1b1b, #111);
  border-bottom: 1px solid rgba(201, 165, 91, 0.22);
  padding: 10px 0;
  font-size: 0.92rem;
}

.top-alert-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.countdown-inline {
  color: var(--gold-2);
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.82);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.logo {
  font-weight: 900;
  letter-spacing: 0.08em;
}

.logo span {
  color: var(--gold);
}

.nav nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.nav nav a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  box-shadow: 0 12px 30px rgba(201, 165, 91, 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn-secondary,
.btn-outline {
  border: 1px solid var(--border);
  color: #fff;
  background: transparent;
}

.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.04);
}

.btn-large {
  min-width: 320px;
  padding: 16px 28px;
}

.hero {
  position: relative;
  padding: 78px 0 44px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 165, 91, 0.16), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(180deg, #0b0b0b 0%, #111 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.badge,
.section-kicker,
.offer-mini,
.bonus-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 165, 91, 0.28);
  background: rgba(201, 165, 91, 0.08);
  color: var(--gold-2);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  max-width: 80ch;
}

.hero-text {
  margin-top: 20px;
  color: var(--muted);
  max-width: 640px;
  font-size: 1.05rem;
}

.hero-points,
.offer-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-points span,
.offer-benefits span {
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  color: #ddd;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-mini-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.mini-proof-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.mini-proof-card strong {
  display: block;
  font-size: 1rem;
}

.mini-proof-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.phone {
  width: 290px;
  border-radius: 34px;
  background: linear-gradient(180deg, #1b1b1b, #0d0d0d);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
  position: absolute;
}

.phone-back {
  left: 10%;
  margin-top: -60%;
  transform: rotate(-10deg);
}

.phone-front {
  right: 8%;
  margin-top: -60%;
  transform: rotate(8deg);
}

.phone-screen {
  background: #efefef;
  min-height: 500px;
  border-radius: 24px;
  padding: 16px;
  display: grid;
  gap: 14px;
}

.mini-post {
  border-radius: 18px;
  min-height: 130px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mini-post small {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.mini-post strong {
  margin-top: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.mini-post.dark {
  background: linear-gradient(135deg, #111, #282828);
  color: #fff;
}

.mini-post.gold {
  background: linear-gradient(135deg, #bb9653, #e7d09e);
  color: #111;
}

.mini-post.light {
  background: linear-gradient(135deg, #ffffff, #e6e6e6);
  color: #111;
}

.floating-card {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
}

.offer-card {
  width: 280px;
  background: rgba(14, 14, 14, 0.95);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.offer-card h3 {
  margin-top: 10px;
  font-size: 1.28rem;
}

.offer-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust {
  padding: 8px 0 28px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  padding: 18px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: #ddd;
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

.section-dark {
  background: linear-gradient(180deg, #0f0f0f 0%, #141414 100%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin-top: 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
}

.cards-4,
.cards-3 {
  display: grid;
  gap: 22px;
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.testimonial,
.info-box,
.offer-box,
.guarantee-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 28px;
}

.glass {
  backdrop-filter: blur(10px);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(201, 165, 91, 0.12);
  border: 1px solid rgba(201, 165, 91, 0.24);
  color: var(--gold-2);
  font-weight: 900;
}

.card h3 {
  margin-top: 18px;
  font-size: 1.18rem;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.bonus-card {
  background:
    radial-gradient(circle at top right, rgba(201, 165, 91, 0.12), transparent 35%),
    var(--card);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.checklist {
  display: grid;
  gap: 14px;
}

.check-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px 18px 48px;
  position: relative;
}

.check-item::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 900;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.preview-card {
  min-height: 160px;
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(145deg, #202020, #141414);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.preview-card span {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--gold-2);
  text-transform: uppercase;
}

.preview-card strong {
  margin-top: 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.preview-card.tall {
  grid-row: span 2;
  min-height: 336px;
  background: linear-gradient(145deg, #b5904c, #221a10);
}

.preview-card.wide {
  grid-column: span 2;
  min-height: 140px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-box {
  padding: 28px;
}

.info-box h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.info-box ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.info-box li {
  position: relative;
  padding-left: 22px;
  color: #ececec;
}

.info-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.info-box.muted {
  background: var(--card-2);
}

.testimonial {
  padding: 28px;
}

.testimonial p {
  color: #ededed;
}

.testimonial strong {
  display: block;
  margin-top: 18px;
  color: var(--gold-2);
}

.offer-section {
  padding-top: 40px;
}

.premium-offer {
  padding: 42px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(201, 165, 91, 0.15), transparent 35%),
    linear-gradient(180deg, #191919, #121212);
}

.offer-box h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.06;
}

.offer-description {
  max-width: 700px;
  margin: 16px auto 0;
  color: var(--muted);
}

.price-wrap {
  margin-top: 30px;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 1.1rem;
}

.new-price {
  font-size: clamp(2.9rem, 7vw, 5rem);
  line-height: 1;
  font-weight: 900;
  color: var(--gold-2);
  margin-top: 10px;
}

.installment {
  margin-top: 12px;
  color: #ddd;
}

.offer-benefits {
  justify-content: center;
  margin: 28px 0;
}

.microcopy {
  margin-top: 14px;
  color: #999;
  font-size: 0.92rem;
}

.guarantee {
  padding-top: 0;
}

.guarantee-box {
  padding: 26px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.shield {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 165, 91, 0.12);
  border: 1px solid rgba(201, 165, 91, 0.24);
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 900;
  flex-shrink: 0;
}

.guarantee-box p {
  color: var(--muted);
  margin-top: 6px;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 800;
}

.faq-question span {
  color: var(--gold);
  font-size: 1.3rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--muted);
}

.final-cta {
  background: linear-gradient(180deg, #0d0d0d 0%, #121212 100%);
}

.final-cta-box {
  text-align: center;
  max-width: 860px;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.final-cta p {
  margin: 14px auto 24px;
  color: var(--muted);
  max-width: 700px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 88px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer p,
.footer a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 60;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.25);
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .content-grid,
  .cards-4,
  .cards-3,
  .two-col,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-mini-proof {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 720px;
  }
}

@media (max-width: 760px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .nav nav {
    justify-content: center;
  }

  .hero-grid,
  .content-grid,
  .cards-4,
  .cards-3,
  .two-col,
  .trust-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-card.wide,
  .preview-card.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 180px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-large {
    min-width: auto;
    width: 100%;
  }

  .hero-visual {
    min-height: 800px;
  }

  .phone-back {
    left: 0;
    top: 0;
  }

  .phone-front {
    right: 0;
    top: 190px;
  }

  .floating-card {
    left: 50%;
    bottom: 0;
    width: calc(100% - 20px);
    max-width: 320px;
  }

  .offer-card {
    width: 100%;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    padding: 12px 14px;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(10px);
  }

  .mobile-sticky-cta .btn {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 86px;
  }
}