/* ════════════════════════════════════════════
   CÓDIGO DO SETUP — GT7
   Cores extraídas das imagens oficiais do jogo
   ════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Share+Tech+Mono&display=swap");

/* ── PALETTE GT7 ──
   Preto:       #0b040b  (keyart bg)
   Azul escuro: #032c5d  (keyart left)
   Azul médio:  #074f9e
   Vermelho:    #df092b  (keyart right)
   Vermelho vivo: #eb2d47
   Branco:      #faf9f9
   Azul teal:   #12728a  (hero car ambient)
──────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #0b040b;
  color: #faf9f9;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ── CURSOR ── */
*,
a {
  cursor: none !important;
}
#cur {
  position: fixed;
  width: 7px;
  height: 7px;
  background: #eb2d47;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
#cur2 {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(235, 45, 71, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s,
    height 0.25s,
    opacity 0.25s;
}
#cur2.big {
  width: 54px;
  height: 54px;
  opacity: 0.4;
}

/* ── CONTAINER CENTRALIZADO (1440px) ── */
.container {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}

.side-by-side {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: 60px;
  align-items: center;
  justify-content: center;
}

/* ── GT LINE — a linha divisória azul|vermelho ── */
.gt-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #074f9e 0%, #df092b 100%);
  opacity: 0.7;
}

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

.hero-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/gt7-keyart.png") center 55% / cover no-repeat;
  background-position: 70% center;
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

/* Split color bleed — azul à esquerda, vermelho sutil à direita, como o keyart */
.hero-color-bleed {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 80% at 0% 50%,
      rgba(3, 44, 93, 0.55) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 100% 40%,
      rgba(223, 9, 43, 0.18) 0%,
      transparent 65%
    );
  mix-blend-mode: multiply;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(11, 4, 11, 0.97) 0%,
      rgba(11, 4, 11, 0.72) 40%,
      rgba(11, 4, 11, 0.1) 80%
    ),
    linear-gradient(
      to top,
      rgba(11, 4, 11, 1) 0%,
      rgba(11, 4, 11, 0.3) 28%,
      transparent 55%
    );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  animation: grain 0.5s steps(1) infinite;
  pointer-events: none;
}
@keyframes grain {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2px, 2px);
  }
  50% {
    transform: translate(2px, -1px);
  }
  75% {
    transform: translate(-1px, 3px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  margin-bottom: 40px;
}

.hero-eyebrow {
  font-family: "Share Tech Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #12728a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: lineUp 0.7s 0.3s ease forwards;
}
.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #12728a;
}

.hero-h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(44px, 12vw, 158px);
  line-height: 0.87;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  opacity: 0;
  animation: lineUp 0.85s 0.5s ease forwards;
}

/* "DO SETUP" em vermelho GT7 */
.hero-h1 .accent {
  display: block;
  background: linear-gradient(90deg, #eb2d47 0%, #df092b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 40px rgba(223, 9, 43, 0.4));
}

.hero-sub {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 300;
  color: rgba(250, 249, 249, 0.62);
  line-height: 1.65;
  max-width: 460px;
  opacity: 0;
  animation: lineUp 0.8s 0.75s ease forwards;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: lineUp 0.8s 0.95s ease forwards;
}

/* ── BOTÃO principal — vermelho GT7 ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #df092b;
  color: #faf9f9;
  font-family: "Anton", sans-serif;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 40px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
  border: none;
}
/* Botão customizado para a seção Package */
.btn-pkg-cta {
  font-size: 16px;
  padding: 20px 52px;
  margin: 40px auto 0; /* Centraliza horizontalmente e dá espaçamento superior */
  display: inline-flex;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #eb2d47;
  transform: translateX(-101%);
  transition: transform 0.38s cubic-bezier(0.77, 0, 0.18, 1);
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(223, 9, 43, 0.45);
}
.btn-primary:hover::after {
  transform: translateX(0);
}

.price-pill {
  font-family: "Share Tech Mono", monospace;
}
.price-pill .amt {
  font-size: 28px;
  color: #faf9f9;
  letter-spacing: -0.02em;
}
.price-pill .tag {
  font-size: 10px;
  color: rgba(250, 249, 249, 0.4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

.hero-scroll {
  position: absolute;
  bottom: 0;
  left: 60px;
  padding-bottom: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s 1.6s forwards;
}
.hero-scroll span {
  font-family: "Share Tech Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.24em;
  color: rgba(250, 249, 249, 0.4);
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, #df092b, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

@keyframes lineUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ══════════════ TICKER ══════════════ */
.ticker-wrap {
  overflow: hidden;
  background: #110a14;
  border-top: 1px solid rgba(250, 249, 249, 0.07);
  border-bottom: 1px solid rgba(250, 249, 249, 0.07);
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 36px;
  font-family: "Share Tech Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(232, 1, 1);
  white-space: nowrap;
}
.ticker-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #df092b;
  flex-shrink: 0;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════ SECTION ATOMS ══════════════ */
.s-label {
  font-family: "Share Tech Mono", monospace;
  font-size: 16px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #12728a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.s-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: #12728a;
}

.s-h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 0.93;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
}

/* ══════════════ PROBLEM ══════════════ */
.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0b040b;
}

.problem-img {
  position: relative;
  overflow: hidden;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.5) saturate(0.6);
  transition:
    filter 0.7s,
    transform 0.7s;
}
.problem-img:hover img {
  filter: brightness(0.65) saturate(0.8);
  transform: scale(1.04);
}

/* Bleed azul sobre a imagem — igual ao keyart */
.problem-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 80% at 30% 50%,
      rgba(3, 44, 93, 0.45) 0%,
      transparent 70%
    ),
    linear-gradient(to right, transparent 55%, #0b040b 100%);
}

.problem-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px;
  /* Unificado: 200% refere-se à largura total da seção split */
  padding-right: max(60px, calc((200% - 1440px) / 2 + 60px));
}

.problem-rows {
  margin-top: 44px;
}

.problem-row {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(250, 249, 249, 0.07);
}
.problem-row:first-child {
  border-top: 1px solid rgba(250, 249, 249, 0.07);
}
.p-num {
  font-family: "Share Tech Mono", monospace;
  font-size: 10.5px;
  color: #df092b;
  padding-top: 3px;
  flex-shrink: 0;
  width: 26px;
}
.p-text {
  font-size: 16.5px;
  font-weight: 300;
  color: rgba(250, 249, 249, 0.819);
  line-height: 1.6;
}

.truth-pull {
  margin-top: 52px;
  padding: 28px 28px 28px 24px;
  border-left: 3px solid #df092b;
  background: rgba(223, 9, 43, 0.05);
}
.truth-pull p {
  font-family: "Anton", sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  text-transform: uppercase;
  line-height: 1.25;
}
.truth-pull p em {
  font-style: normal;
  color: #eb2d47;
}

/* ══════════════ WHAT IS ══════════════ */
.what {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0d0610;
  border-top: 1px solid rgba(250, 249, 249, 0.07);
  border-bottom: 1px solid rgba(250, 249, 249, 0.07);
}

.what-visual {
  position: relative;
}
.what-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80%;
  display: block;
  
  filter: brightness(0.65) saturate(0.75);
}

/* Bleed azul-teal, como o ambient light do carro na imagem */
.what-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 40% 60%,
    rgba(18, 114, 138, 0.25) 0%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}
.what-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(11, 4, 11, 0.9) 0%,
    transparent 100%
  );
  padding: 28px 20px 18px;
  font-family: "Share Tech Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: rgba(250, 249, 249, 0.4);
  text-transform: uppercase;
  z-index: 2;
}

.what-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px;
  padding-right: max(60px, calc((200% - 1440px) / 2 + 60px));
}

.what-points {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.what-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.wp-dash {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #df092b;
  padding-top: 4px;
  flex-shrink: 0;
}
.wp-body strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #faf9f9;
  margin-bottom: 4px;
}
.wp-body p {
  font-size: 15.5px;
  color: rgba(250, 249, 249, 0.608);
  line-height: 1.7;
}

/* ══════════════ LEARN / CARDS GT7 ══════════════ */
.learn {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(250, 249, 249, 0.07);
}

/* fundo sutil com imagem de corrida */
.learn-bg {
  position: absolute;
  inset: 0;
  background: url("../images/piloto.png") center 35% / cover no-repeat;
  opacity: 0.06;
  filter: grayscale(1) contrast(1.1);
}

.learn-inner {
  position: relative;
  z-index: 2;
  padding: 140px 60px; /* Restaurado o recuo horizontal de 60px */
}

.learn-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}

.learn-intro {
  font-size: 17px;
  font-weight: 300;
  color: rgba(250, 249, 249, 0.819);
  line-height: 1.75;
  max-width: 40%;
}

/* ── Cards estilo GT7 nav ── */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.learn-card {
  background: #100a14;
  padding: 26px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition:
    background 0.35s,
    transform 0.35s;
  min-height: 195px;
}

/* Barra de cor no topo — azul por padrão, vermelho no hover */
.learn-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #074f9e;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform 0.4s cubic-bezier(0.77, 0, 0.18, 1),
    background 0.3s;
}
.learn-card:hover {
  background: #160e1c;
  transform: translateY(-5px);
}
.learn-card:hover::before {
  transform: scaleX(1);
  background: #df092b;
}

/* Ícone circular — estilo GT7 */
.lc-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(7, 79, 158, 0.15);
  border: 1px solid rgba(7, 79, 158, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.learn-card:hover .lc-icon {
  background: rgba(223, 9, 43, 0.15);
  border-color: rgba(223, 9, 43, 0.35);
  box-shadow: 0 0 20px rgba(223, 9, 43, 0.2);
}

.lc-title {
  font-family: "DM Sans", sans-serif;
  font-size: 24.5px;
  font-weight: 500;
  color: #faf9f9;
  margin-bottom: 8px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}
.lc-body {
  font-size: 16px;
  color: rgba(242, 242, 242, 0.819);
  line-height: 1.68;
  position: relative;
  z-index: 1;
}

/* ══════════════ IMAGE BREAK ══════════════ */
.img-break {
  position: relative;
  height: 52vh;
  overflow: hidden;
}
.img-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.45) saturate(0.75);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.img-break:hover img {
  transform: scale(1);
}

/* Split gradient — azul esquerda, vermelho direita */
.img-break-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 40% 100% at 0% 50%,
      rgba(3, 44, 93, 0.5) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 30% 100% at 100% 50%,
      rgba(223, 9, 43, 0.3) 0%,
      transparent 70%
    ),
    linear-gradient(
      to bottom,
      #0b040b 0%,
      transparent 20%,
      transparent 75%,
      #0b040b 100%
    );
}

.img-break-container {
  position: absolute;
  bottom: 52px;
  left: 0;
  right: 0;
  z-index: 5;
}

.img-break-text {
  display: flex;
  justify-content: flex-start;
}
.ibt-q {
  font-family: "Anton", sans-serif;
  font-size: clamp(26px, 3.8vw, 50px);
  text-transform: uppercase;
  line-height: 1.05;
  max-width: 580px;
}
.ibt-q em {
  font-style: normal;
  color: #eb2d47;
}

/* ══════════════ RESULTS ══════════════ */
.results {
  padding: 140px 0;
  background: #0d0610;
  border-top: 1px solid rgba(250, 249, 249, 0.07);
  border-bottom: 1px solid rgba(250, 249, 249, 0.07);
}

.results-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.res-cell {
  background: #110a14;
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.res-cell::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #074f9e 0%, #df092b 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.res-cell:hover {
  background: #160d1a;
}
.res-cell:hover::after {
  transform: scaleX(1);
}

.res-val {
  font-family: "Anton", sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1;
  color: #faf9f9;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
/* Valor em azul ou vermelho alternando */
.res-cell:nth-child(odd) .res-val {
  color: #4d94e8;
}
.res-cell:nth-child(even) .res-val {
  color: #eb2d47;
}

.res-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250, 249, 249, 0.819);
  line-height: 1.6;
}

/* ══════════════ PACKAGE ══════════════ */
.package {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0b040b;
  border-top: 1px solid rgba(250, 249, 249, 0.07);
}

.package-img {
  position: relative;
  overflow: hidden;
}
.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.38) saturate(0.55);
}
/* Bleed vermelho sobre imagem do pacote */
.package-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 70% at 70% 50%,
      rgba(223, 9, 43, 0.2) 0%,
      transparent 70%
    ),
    linear-gradient(to left, transparent 55%, #0b040b 100%);
}

.package-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px;
  /* Alinhamento mestre: garante que o texto comece exatamente na borda do container de 1440px */
  padding-left: max(60px, calc((100vw - 1440px) / 2 + 60px));
}

.pkg-rows {
  margin-top: 40px;
}
.pkg-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(250, 249, 249, 0.07);
  font-size: 15px;
  font-weight: 300;
  color: rgba(250, 249, 249, 0.78);
  transition:
    color 0.2s,
    padding-left 0.3s;
}
.pkg-row:first-child {
  border-top: 1px solid rgba(250, 249, 249, 0.07);
}
.pkg-row:hover {
  color: #faf9f9;
  padding-left: 10px;
}
.pkg-row .ck {
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  color: #12728a;
  flex-shrink: 0;
}

.evo-box {
  margin-top: 44px;
  padding: 28px 32px;
  border: 1px solid rgba(7, 79, 158, 0.3);
  background: rgba(3, 44, 93, 0.08);
  position: relative;
}
.evo-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #074f9e;
}
.evo-label {
  font-family: "Share Tech Mono", monospace;
  font-size: 18px;
  letter-spacing: 0.26em;
  color: #12728a;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.evo-title {
  font-family: "Anton", sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #faf9f9;
}
.evo-body {
  font-size: 16px;
  color: rgba(250, 249, 249, 0.4);
  line-height: 1.75;
}

/* ══════════════ CTA ══════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url("../images/gt7-keyart.png") center center / cover no-repeat;
  opacity: 0.1;
  filter: saturate(0.6) brightness(0.8);
}

/* O split icônico azul|vermelho do GT7 como radial */
.cta-color {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 20% 50%,
      rgba(3, 44, 93, 0.35) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 60% 80% at 80% 50%,
      rgba(223, 9, 43, 0.25) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 70% 70% at 50% 100%,
      rgba(11, 4, 11, 1) 0%,
      transparent 60%
    );
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 900px; /* Aumentado para não cortar a fonte grande */
  margin: 0 auto;
}

.cta-h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(56px, 9vw, 118px);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cta-h2 em {
  font-style: normal;
  display: block;
  background: linear-gradient(90deg, #eb2d47 0%, #ff3355 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 50px rgba(235, 45, 71, 0.4));
  padding: 10px 0; /* Respiro extra para o brilho da fonte */
}

.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(250, 249, 249, 0.4);
  line-height: 1.7;
  margin-bottom: 56px;
}

.price-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 44px;
  padding: 40px 64px;
  border: 1px solid rgba(223, 9, 43, 0.25);
  background: rgba(223, 9, 43, 0.05);
  position: relative;
}
/* Cantos cortados — estilo GT */
.price-box::before,
.price-box::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: #df092b;
  border-style: solid;
  opacity: 0.6;
}
.price-box::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}
.price-box::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.price-label {
  font-family: "Share Tech Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.26em;
  color: #eb2d47;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-num {
  font-family: "Anton", sans-serif;
  font-size: 82px;
  line-height: 1;
  color: #faf9f9;
  letter-spacing: -0.02em;
}
.price-num sup {
  font-size: 30px;
  vertical-align: super;
  color: #eb2d47;
}
.price-note {
  margin-top: 10px;
  font-family: "Share Tech Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: rgba(250, 249, 249, 0.4);
  text-transform: uppercase;
}

.cta-trust {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-i {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(250, 249, 249, 0.4);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-i::before {
  content: "—";
  color: #12728a;
  font-size: 8px;
}

/* ══════════════ FOOTER ══════════════ */
footer {
  padding: 60px 60px; /* Alinhado com o container de 1440px */
  border-top: 1px solid rgba(250, 249, 249, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-logo {
  font-family: "Anton", sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
}
.foot-logo em {
  font-style: normal;
  color: #df092b;
}

.foot-creator{
 font-family: "Anton", sans-serif;
 font-size: 18px;
 letter-spacing: 0.06em;
 text-decoration: none;
 color: #07979e;
}

footer p {
  font-family: "Share Tech Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: rgba(250, 249, 249, 0.4);
  text-align: right;
  line-height: 1.85;
}

/* ══════════════ SCROLL REVEAL ══════════════ */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.rv.on {
  opacity: 1;
  transform: none;
}

/* ══════════════ PROFESSIONAL MOBILE RESPONSIVENESS ══════════════ */

/* Tablet e Monitores Pequenos */
@media (max-width: 1024px) {
  /* Empilhamento das seções Full-Bleed */
  .problem,
  .what,
  .package {
    grid-template-columns: 1fr;
  }

  .problem-img,
  .what-visual,
  .package-img {
    height: 400px; /* Altura fixa para não dominar a rolagem */
  }

  .package-img {
    order: -1; /* Mantém a imagem no topo quando empilhado */
  }

  .problem-copy,
  .what-copy,
  .package-copy,
  .container{
    padding: 80px 60px;
  }

  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .learn-intro {
    max-width: 100%;
  }
}

/* Mobile / Smartphones */
@media (max-width: 768px) {
  

  .hero-container {
    justify-content: flex-end;
    padding-bottom:12vh;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto 40px;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
    gap: 20px;
  }

  .problem-copy,
  .what-copy,
  .package-copy,
  .learn,
  .container{
  
    padding: 80px 30px;
  }


  .hero-scroll {
    display: none;
  }

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

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

  .price-num {
    font-size: clamp(54px, 15vw, 82px);
  }

  .price-box {
    padding: 30px 40px;
    width: 100%;
  }

  .img-break {
    height: auto;
    padding: 80px 0;
  }

  .img-break-container {
    position: relative;
    bottom: auto;
  }

  .img-break-text {
    justify-content: center;
    text-align: center;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
  footer p {
    text-align: center;
  }

}
