/* ================================
   VICE PACK — LANDING PAGE
   ================================ */
:root {
  --black: #080808;
  --white: #f7f3ed;
  --pink: #ff2d72;
  --yellow: #ffd22f;
  --orange: #ff6b25;
  --cyan: #36d8ff;
  --muted: #aaa5a0;
  --border: rgba(255, 255, 255, .12);
  --display: "Bebas Neue", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Firefox so aceita duas cores: polegar e trilho. */
  scrollbar-width: thin;
  scrollbar-color: var(--pink) #0d0d0e;
}

/* Barra de rolagem no tom da pagina, nos dois eixos (vale para a janela e para
   qualquer bloco que role dentro dela). A borda do polegar e da cor do trilho:
   e o que da a folga lateral sem precisar de padding. */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0d0d0e;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--pink), var(--orange));
  border: 2px solid #0d0d0e;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--orange), var(--yellow));
}

::-webkit-scrollbar-corner {
  background: #0d0d0e;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 45, 114, .10), transparent 65%);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
  padding: 25px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}

/* fora do hero ganha fundo, para logo e estrelas seguirem legiveis */
.topbar.scrolled {
  padding: 12px 5vw;
  background: transparent;
}

.topbar.scrolled .brand-logo {
  height: 40px;
}

/* impede que o topo fixo cubra o titulo ao pular por ancora */
section[id] {
  scroll-margin-top: 96px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .5));
}

.footer-logo {
  height: 52px;
  width: auto;
}

/* Nivel de procurado no topo */
.wanted {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wanted .star {
  width: 26px;
  height: 26px;
  fill: rgba(255, 255, 255, .13);
  stroke: rgba(255, 255, 255, .28);
  stroke-width: 1.1;
  transition: fill .35s ease, stroke .35s ease, filter .35s ease, transform .35s cubic-bezier(.2, 1.6, .4, 1);
}

.wanted .star.on {
  fill: var(--white);
  stroke: rgba(0, 0, 0, .55);
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, .55));
}

/* pisca ao acender, como no jogo quando sobe o nivel */
.wanted .star.just-lit {
  animation: starPop .5s ease;
}

@keyframes starPop {
  0% { transform: scale(1); }
  35% { transform: scale(1.45); filter: drop-shadow(0 0 16px rgba(255, 255, 255, .95)); }
  100% { transform: scale(1); }
}

.hero {
  min-height: 640px;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 8vw 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(5, 5, 12, .88) 0%, rgba(10, 7, 18, .40) 43%, rgba(10, 7, 18, .08) 100%), url("../assets/Banner2Gta6HD.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1.03);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 45, 114, .08), transparent 35%, rgba(20, 7, 40, .28));
  mix-blend-mode: screen;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 58% 45%, transparent 0 34%, rgba(5, 5, 10, .48) 100%);
  pointer-events: none;
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .08;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, .5) 4px);
  pointer-events: none;
}

.sun {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  right: 15%;
  top: 18%;
  background: linear-gradient(#ffd85c, #ff5a78);
  opacity: .22;
  box-shadow: 0 0 120px rgba(255, 77, 104, .55);
  mix-blend-mode: screen;
}

.grid-floor {
  position: absolute;
  width: 100%;
  height: 48%;
  bottom: -12%;
  transform: perspective(500px) rotateX(62deg);
  background-image: linear-gradient(rgba(255, 45, 114, .22) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 45, 114, .22) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(transparent, #000);
}

.hero-content {
  position: relative;
  z-index: 6;
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--yellow);
}

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

.dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--pink);
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: .82;
  letter-spacing: .01em;
}

h1 {
  font-size: clamp(4.5rem, 10vw, 9rem);
}

h1 em,
h2 em {
  color: var(--pink);
  font-style: normal;
  text-shadow: 5px 5px 0 rgba(255, 210, 47, .25);
}

/* headline vetorial: a largura controla o tamanho, nao o font-size */
.hero-h1 {
  margin: 0;
  line-height: 0;
}

.hero-h1 img {
  display: block;
  width: min(540px, 100%);
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, .45));
}

.hero-title {
  max-width: 560px;
  margin: 20px 0 10px;
  font-weight: 800;
  line-height: 1.35;
  font-size: 1.05rem;
}

.hero-copy {
  color: #c2bdb7;
  line-height: 1.65;
  max-width: 510px;
  font-size: .9rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 56px;
  padding: 0 26px;
  font-weight: 900;
  font-size: .75rem;
  letter-spacing: .08em;
  transition: .25s ease;
}

.btn-primary {
  color: #080808;
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--pink);
}

.btn-primary:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--pink);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .35);
  color: white;
}

.btn-ghost:hover {
  background: white;
  color: black;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 25px;
  color: #9f9994;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.hero-card {
  position: absolute;
  z-index: 6;
  right: 11vw;
  top: 28%;
  width: min(340px, 29vw);
  aspect-ratio: .72;
  padding: 25px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(7px);
  transform: rotate(6deg);
  box-shadow: 20px 30px 70px rgba(0, 0, 0, .45);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: linear-gradient(160deg, rgba(255, 45, 114, .55), rgba(255, 210, 47, .12) 48%, rgba(0, 0, 0, .6));
}

.card-image {
  position: absolute;
  inset: 9%;
  z-index: 1;
  width: 82%;
  height: 82%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card-tag,
.card-title,
.card-bottom {
  position: relative;
  z-index: 2;
}

.card-tag {
  font: 1.2rem var(--display);
}

.card-title {
  position: absolute;
  top: 31%;
  left: 12%;
  font: 4.7rem/.72 var(--display);
}

.card-title span {
  color: var(--yellow);
}

.card-bottom {
  position: absolute;
  bottom: 12%;
  left: 12%;
  right: 12%;
  display: flex;
  justify-content: space-between;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.stamp {
  position: absolute;
  z-index: 6;
  font: 1.5rem/0.8 var(--display);
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .85);
  transform: rotate(-8deg);
  text-shadow: 3px 3px 0 rgba(255, 45, 114, .45);
}

.stamp span {
  font: .55rem var(--body);
  letter-spacing: .22em;
  color: var(--yellow);
}

.stamp-left {
  left: 52%;
  top: 22%;
}

.stamp-right {
  right: 5%;
  bottom: 20%;
  transform: rotate(8deg);
  text-align: right;
}

.card-neon {
  position: absolute;
  z-index: 3;
  bottom: 21%;
  left: 12%;
  color: var(--pink);
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-shadow: 0 0 12px var(--pink);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 10vw;
  font-size: .58rem;
  letter-spacing: .2em;
  color: #aaa;
  z-index: 5;
}

.scroll-hint span {
  color: var(--pink);
  font-size: 1rem;
  margin-left: 8px;
}

.marquee {
  overflow: hidden;
  position: relative;
  z-index: 8;
  border-block: 1px solid var(--border);
  background: var(--pink);
  color: #090909;
  transform: rotate(-1.2deg) scale(1.03);
}

.marquee-track {
  display: flex;
  gap: 34px;
  align-items: center;
  white-space: nowrap;
  padding: 10px 0;
  animation: marquee 22s linear infinite;
  width: max-content;
  font: 1.7rem var(--display);
}

.marquee b {
  color: var(--yellow);
  -webkit-text-stroke: 1px #090909;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 90px 8vw;
  max-width: 1500px;
  margin: auto;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  margin-top: 12px;
}

/* Titulos em vetor (Pricedown convertida em contornos).
   As larguras seguem a mesma escala, para a letra ter o mesmo tamanho em todos. */
h2 img {
  display: block;
  height: auto;
  max-width: 100%;
}

.content-section h2 img {
  width: 534px;
}

.benefits h2 img {
  width: 563px;
}

.manifesto h2 img {
  width: 620px;
}

.offer-copy h2 img {
  width: 600px;
}

.faq-section h2 img {
  width: 545px;
}

.modal-box h2 img {
  width: 100%;
}

.section-heading p {
  max-width: 350px;
  color: var(--muted);
  line-height: 1.7;
  font-size: .9rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.content-card {
  background: #111;
  border: 1px solid var(--border);
  overflow: hidden;
}

.content-card.large {
  grid-row: span 2;
}

.fake-art {
  min-height: 210px;
  position: relative;
  padding: 20px;
  overflow: hidden;
  display: flex;
  align-items: end;
}

.content-card.large .fake-art {
  min-height: 455px;
}

.fake-art::before,
.fake-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.fake-art::before {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, .22);
  right: -20px;
  top: 30px;
}

.fake-art::after {
  width: 130%;
  height: 35%;
  background: rgba(0, 0, 0, .25);
  bottom: -15%;
  left: -10%;
  transform: rotate(-8deg);
}

.art-pink {
  background: linear-gradient(135deg, #f72c73, #642a70 55%, #171019);
}

.art-yellow {
  background: linear-gradient(135deg, #ffd22f, #f37532 55%, #4e1830);
}

.art-blue {
  background: linear-gradient(135deg, #36d8ff, #4b4cb0 50%, #111323);
}

.art-orange {
  background: linear-gradient(135deg, #ff6b25, #a92862 55%, #191017);
}

.fake-art span {
  position: absolute;
  top: 20px;
  right: 20px;
  font: 1.2rem var(--display);
}

.fake-art strong {
  position: relative;
  z-index: 2;
  font: 3.4rem var(--display);
}

/* Cards com mídia real de exemplo (o gradiente vira fallback enquanto carrega) */
.media-art::before,
.media-art::after {
  content: none;
}

.art-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.art-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .2), transparent 45%, rgba(0, 0, 0, .55));
}

.card-info {
  padding: 18px 20px 23px;
}

.card-info h3 {
  font-size: .9rem;
  margin-bottom: 7px;
}

.card-info p {
  color: #888;
  font-size: .72rem;
  line-height: 1.5;
}

.manifesto {
  min-height: clamp(620px, 100vh, 960px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 5, 12, .94) 0%, rgba(12, 7, 22, .55) 48%, rgba(10, 5, 15, .20)), url("../assets/BannerGta6HD.jpg");
  background-size: cover;
  background-position: center 28%;
  filter: saturate(1.25) contrast(1.08);
}

.manifesto-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 28px, rgba(255, 255, 255, .04) 29px 30px);
}

.manifesto-content {
  position: relative;
  z-index: 2;
  width: min(650px, 80vw);
  margin-left: 10vw;
}

.manifesto h2 {
  font-size: clamp(4rem, 8.5vw, 8rem);
  margin: 18px 0 30px;
}

.manifesto p {
  color: #ddd;
  max-width: 560px;
  line-height: 1.8;
  font-size: 1rem;
}

/* Contador de dias para o lancamento */
.launch {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  padding: 18px 24px 18px 20px;
  max-width: 480px;
  border: 1px solid rgba(255, 210, 47, .4);
  border-left: 4px solid var(--yellow);
  background: linear-gradient(90deg, rgba(255, 210, 47, .1), rgba(255, 210, 47, .02));
  backdrop-filter: blur(4px);
}

.launch-num {
  flex: none;
  text-align: center;
  line-height: 1;
}

.launch-num strong {
  display: block;
  font: 3.6rem/1 var(--display);
  color: var(--yellow);
}

.launch-num span {
  display: block;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: .75;
  margin-top: 2px;
}

.launch-text b {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
}

.launch-text span {
  display: block;
  font-size: .72rem;
  line-height: 1.5;
  color: #bdb8b2;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}

.benefit {
  position: relative;
  padding: 28px 22px 26px;
  border-right: 1px solid var(--border);
  overflow: hidden;
  transition: background .3s ease;
}

.benefit:last-child {
  border-right: 0;
}

.benefit::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.benefit:hover {
  background: rgba(255, 255, 255, .03);
}

.benefit:hover::after {
  transform: scaleX(1);
}

.benefit strong {
  display: block;
  font: 3rem/1 var(--display);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--pink);
  transition: color .3s ease, text-shadow .3s ease;
}

.benefit:hover strong {
  color: var(--pink);
  text-shadow: 0 0 26px rgba(255, 45, 114, .5);
}

.benefit h3 {
  font-size: .82rem;
  margin: 20px 0 10px;
  letter-spacing: .08em;
}

.benefit p {
  color: #999;
  font-size: .74rem;
  line-height: 1.7;
}

.demo-player {
  position: relative;
  margin: 48px auto 0;
  max-width: 860px;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 45, 114, .18), transparent 45%),
    linear-gradient(145deg, #16101a, #0b0a0c);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  overflow: hidden;
}

.demo-player video,
.demo-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.demo-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--yellow);
}

.demo-play {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: #080808;
  box-shadow: 6px 6px 0 var(--pink);
}

.demo-caption {
  color: #777;
  font-size: .7rem;
  letter-spacing: .05em;
  max-width: 420px;
  text-align: center;
  padding: 0 20px;
  line-height: 1.6;
}

/* Enquanto nao existe video, o play fica contornado em vez de preenchido: o
   bloco continua sendo a moldura do video, mas nao parece um botao clicavel. */
.demo-player.is-soon .demo-play {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
  box-shadow: none;
  opacity: .5;
}

.demo-player.is-soon .demo-caption {
  margin-top: 4px;
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.offer-section {
  position: relative;
  padding: 56px 8vw;
  overflow: hidden;
  border-block: 1px solid var(--border);
}

.offer-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255, 45, 114, .24), transparent 30%), linear-gradient(135deg, #111, #090909);
}

.offer-bg::after {
  content: "VI";
  position: absolute;
  right: -5vw;
  bottom: -15vw;
  font: 55vw var(--display);
  color: rgba(255, 255, 255, .018);
  line-height: .7;
}

.offer-wrap {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
}

.offer-copy h2 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  margin: 12px 0 10px;
}

.offer-copy p {
  color: #aaa;
}

.price {
  margin: 16px 0 16px;
  display: flex;
  flex-direction: column;
}

.old-price {
  color: #777;
  font-size: .75rem;
  text-decoration: line-through;
}

.price strong {
  font: 3.2rem var(--display);
  color: var(--yellow);
}

.price strong b {
  font-size: 4.6rem;
}

.price small {
  color: #777;
  font-size: .65rem;
}

.btn-wide {
  width: 100%;
  max-width: 480px;
}

.secure {
  margin-top: 14px;
  font-size: .62rem;
  color: #777;
}

.offer-list {
  list-style: none;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
  max-width: 480px;
}

.offer-list li {
  position: relative;
  padding-left: 24px;
  font-size: .78rem;
  color: #c2bdb7;
  line-height: 1.5;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.countdown-cover {
  width: 100%;
  /* height:auto e obrigatorio: os atributos width/height do <img> entram como
     presentational hint e, com uma altura fixa, o aspect-ratio abaixo e ignorado. */
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}

.offer-bonus {
  margin: 0 0 18px;
  padding: 12px 16px;
  max-width: 480px;
  border: 1px dashed rgba(255, 210, 47, .5);
  background: rgba(255, 210, 47, .06);
}

.offer-bonus span {
  color: var(--yellow);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.offer-bonus p {
  color: #c2bdb7;
  font-size: .78rem;
  line-height: 1.6;
  margin-top: 8px;
}

.offer-bonus b {
  color: var(--white);
}

.countdown-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .035);
  padding: 22px;
}

.countdown-label {
  color: var(--pink);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 22px;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.countdown div {
  text-align: center;
}

.countdown strong {
  display: block;
  font: 2.5rem var(--display);
}

.countdown span {
  display: block;
  color: #777;
  font-size: .52rem;
  letter-spacing: .1em;
}

/* Aplicada pelo script quando OFFER_END passa: um 00:00:00 em rosa neon
   continuaria vendendo urgencia que nao existe mais. */
.countdown-card.is-over .countdown-label {
  color: #8d8d95;
}

.countdown-card.is-over .countdown strong {
  color: #6c6c74;
}

.countdown i {
  font: 2rem var(--display);
  color: var(--pink);
}

.countdown-card p {
  color: #666;
  font-size: .62rem;
  line-height: 1.6;
  margin-top: 25px;
}

.faq-list {
  max-width: 950px;
  margin-left: auto;
}

.faq {
  border-top: 1px solid var(--border);
}

.faq:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: transparent;
  color: white;
  padding: 18px 5px;
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-size: .9rem;
  font-weight: 700;
}

.faq-question span {
  color: var(--pink);
  font-size: 1.4rem;
  transition: .25s;
}

.faq.open .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p {
  color: #888;
  font-size: .78rem;
  line-height: 1.7;
  padding: 0 5px 25px;
  max-width: 800px;
}

/* Rodape em coluna unica e centrada: logo, textos legais, a faixa de links e a
   assinatura. Tudo no mesmo eixo, sem as tres colunas que desalinhavam. */
footer {
  padding: 56px 8vw 44px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

footer p,
footer>span {
  color: #666;
  font-size: .62rem;
  line-height: 1.6;
}

/* Trava a linha do disclaimer para nao atravessar a tela inteira. */
footer p {
  max-width: 620px;
}

/* A faixa de links ocupa a largura toda para a linha divisoria ir de ponta a
   ponta, mesmo com o rodape centralizando os filhos. */
.footer-legal {
  align-self: stretch;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 26px;
  margin-top: 10px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.footer-legal a {
  color: #8d8d95;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--yellow);
}

.footer-cdc {
  flex: 1 1 320px;
  color: #666;
  font-size: .62rem;
  line-height: 1.6;
}

/* Assinatura de quem desenvolveu. O balanco e leve de proposito: tres pixels,
   so para o olho perceber o movimento sem disputar com os links legais. */
.footer-credit {
  margin-top: 4px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  animation: creditFloat 3.2s ease-in-out infinite;
}

.footer-credit strong {
  color: var(--orange);
  font-weight: 800;
  transition: color .2s ease, text-shadow .2s ease;
}

.footer-credit:hover strong,
.footer-credit:focus-visible strong {
  color: #ff9455;
  text-shadow: 0 0 14px rgba(255, 107, 37, .55);
}

@keyframes creditFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Quem pediu menos animacao no sistema nao precisa ver o rodape balancando. */
@media (prefers-reduced-motion: reduce) {
  .footer-credit {
    animation: none;
  }
}

/* Barra de compra fixa (somente celular) */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10, 9, 12, .94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform .3s ease;
}

.mobile-bar.visible {
  transform: none;
}

.mobile-bar-info strong {
  display: block;
  font: 1.9rem/1 var(--display);
  color: var(--yellow);
}

.mobile-bar-info span {
  display: block;
  font-size: .58rem;
  color: var(--muted);
  margin-top: 3px;
}

.mobile-bar .btn {
  min-height: 48px;
  padding: 0 20px;
  font-size: .68rem;
  box-shadow: 4px 4px 0 var(--pink);
  flex: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(8px);
}

.modal-box {
  position: relative;
  width: min(500px, 100%);
  padding: 45px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .7);
  animation: modalIn .3s ease;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: none;
  color: white;
  font-size: 2rem;
}

.modal-box h2 {
  font-size: 5rem;
  margin: 20px 0;
}

.modal-box p {
  color: #999;
  font-size: .8rem;
  line-height: 1.6;
}

.modal-price {
  margin: 25px 0;
  color: var(--yellow);
  font: 4rem var(--display);
}

.modal-price small {
  display: block;
  color: #777;
  font: .6rem var(--body);
}

.modal-note {
  display: block;
  color: #666;
  font-size: .6rem;
  line-height: 1.5;
  margin-top: 15px;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

@media (max-width: 900px) {
  .hero {
    padding: 120px 6vw 70px;
    min-height: 640px;
    align-items: flex-start;
  }

  .hero-card {
    right: 5vw;
    top: auto;
    bottom: 70px;
    width: 210px;
    opacity: .7;
  }

  .hero-content {
    max-width: 600px;
  }

  .hero-content .hero-copy {
    max-width: 430px;
  }

  .section,
  .offer-section {
    padding: 70px 6vw;
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-card.large {
    grid-row: auto;
  }

  .content-card.large .fake-art {
    min-height: 350px;
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit:nth-child(2) {
    border-right: 0;
  }

  .benefit:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .offer-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .topbar {
    padding: 20px 5vw;
  }

  .brand-logo {
    height: 40px;
  }

  .wanted {
    gap: 4px;
  }

  .wanted .star {
    width: 21px;
    height: 21px;
  }

  .launch {
    gap: 14px;
    padding: 14px 16px;
  }

  .launch-num strong {
    font-size: 2.9rem;
  }

  /* a sombra dupla vira borrao em tipo pequeno */
  h1 em,
  h2 em {
    text-shadow: 2px 2px 0 rgba(255, 210, 47, .2);
  }

  .mobile-bar {
    display: flex;
  }

  /* espaco para a barra fixa nao cobrir o rodape */
  footer {
    padding-bottom: 100px;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    padding: 100px 7vw 70px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  /* a capa entra no fluxo, centralizada, em vez de flutuar cortada */
  .hero-card {
    position: static;
    width: 150px;
    margin: 26px auto 0;
    padding: 10px;
    transform: rotate(-3deg);
    opacity: 1;
  }

  /* no celular, recorte vertical da mesma arte do desktop */
  .hero-bg {
    background-image: linear-gradient(180deg, rgba(5, 5, 12, .25) 0%, rgba(8, 6, 16, .55) 50%, rgba(8, 8, 8, .92) 100%), url("../assets/Banner2Gta6Mobile.jpg");
    background-position: center top;
  }

  /* o sol decorativo competia com a arte no vertical */
  .sun {
    display: none;
  }

  /* impede que titulo e textos estourem a largura da tela */
  .hero-content,
  .hero-content .hero-title,
  .hero-content .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  .hero-h1 img {
    width: min(300px, 100%);
  }

  .hero-title {
    font-size: .82rem;
  }


  .card-title {
    font-size: 3.2rem;
  }

  .card-tag {
    font-size: .9rem;
  }

  .trust-row {
    gap: 8px 14px;
    font-size: .56rem;
    max-width: 100%;
  }

  /* CTAs ocupam a largura toda: alvo de toque maior */
  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-heading {
    display: block;
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .section-heading p {
    margin-top: 25px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-card.large .fake-art,
  .fake-art {
    min-height: 300px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .manifesto {
    min-height: 680px;
  }

  .manifesto h2 {
    font-size: clamp(4.3rem, 18vw, 7rem);
  }

  .offer-section {
    padding: 60px 6vw;
  }

  .offer-copy h2 {
    font-size: clamp(4.8rem, 19vw, 7rem);
  }

  .price strong {
    font-size: 3.8rem;
  }

  .price strong b {
    font-size: 6rem;
  }

  .demo-player {
    margin-top: 45px;
  }

  .demo-play {
    width: 64px;
    height: 64px;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .countdown-card {
    padding: 25px 18px;
  }

  .countdown strong {
    font-size: 2.8rem;
  }

  .countdown i {
    font-size: 1.4rem;
  }

  .modal-box {
    padding: 35px 25px;
  }

  .modal-box h2 {
    font-size: 4.2rem;
  }

  .modal-price {
    font-size: 3.3rem;
  }
}

/* Link dentro de uma resposta do FAQ: sublinhado e amarelo, sem virar botão. */
.faq-answer a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ================================
   PAGINAS LEGAIS (privacidade.html, termos.html)
   Texto corrido puro: nada de fundo animado ou vetor, so legibilidade.
   ================================ */
/* Nas paginas legais o topo fixo passa sobre texto corrido, e nao sobre a arte do
   hero: sem fundo proprio, as linhas correriam por tras do logo. */
body.legal .topbar {
  background: rgba(8, 8, 8, .93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 130px 7vw 90px;
}

.legal-page h1 {
  margin: 0 0 6px;
  font: 2.6rem var(--display);
  letter-spacing: .02em;
  line-height: 1.05;
}

.legal-updated {
  display: block;
  margin-bottom: 40px;
  color: #777;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-page h2 {
  margin: 40px 0 12px;
  font: 1.35rem var(--display);
  letter-spacing: .04em;
  color: var(--yellow);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
}

.legal-page p {
  margin: 0 0 14px;
}

.legal-page ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-back {
  display: inline-block;
  margin-top: 46px;
  color: var(--pink);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--yellow);
}

@media (max-width: 600px) {
  .legal-page {
    padding: 110px 7vw 70px;
  }

  .legal-page h1 {
    font-size: 2.1rem;
  }
}
