:root {
  --gold: #caa64b;
  --gold-light: #f1d579;
  --gold-dark: #7c5d18;
  --white: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.62);
  --border: rgba(202, 166, 75, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #030303;
}

body {
  color: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -12%, rgba(202, 166, 75, 0.16), transparent 35%),
    linear-gradient(180deg, #080806 0%, #020202 55%, #050505 100%);
}

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(34px);
  background: rgba(202, 166, 75, 0.22);
}

.glow-left {
  left: -390px;
  top: 240px;
}

.glow-right {
  right: -390px;
  top: 240px;
}

.orbit {
  position: absolute;
  width: 760px;
  height: 430px;
  top: 310px;
  border: 1px solid rgba(202, 166, 75, 0.10);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-left {
  left: -430px;
}

.orbit-right {
  right: -430px;
}

.shell {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 20px;
}

.brand {
  display: grid;
  place-items: center;
  text-align: center;
}

.brand-logo {
  width: clamp(118px, 10vw, 164px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.74))
    drop-shadow(0 0 22px rgba(202, 166, 75, 0.16));
}

.brand h1 {
  display: none;
}

.tagline {
  margin-top: 17px;
  display: grid;
  grid-template-columns: minmax(42px, 105px) auto minmax(42px, 105px);
  align-items: center;
  gap: 16px;
}

.tagline span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.tagline span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.tagline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.6vw, 21px);
}

.heading {
  margin: 34px 0 24px;
  display: grid;
  place-items: center;
  gap: 11px;
  text-align: center;
}

.heading h2 {
  margin: 0;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 750;
  letter-spacing: 0.27em;
}

.heading span {
  width: 68px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 15px rgba(202, 166, 75, 0.66);
}

.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.card {
  position: relative;
  min-width: 0;
  padding: 32px 36px 30px;
  border: 1px solid rgba(202, 166, 75, 0.48);
  border-radius: 25px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 18%),
    radial-gradient(circle at 50% 0%, rgba(202, 166, 75, 0.09), transparent 40%),
    linear-gradient(155deg, rgba(15, 15, 13, 0.97), rgba(2, 2, 2, 0.985));
  box-shadow:
    0 32px 76px rgba(0, 0, 0, 0.54),
    0 0 28px rgba(202, 166, 75, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.card::before,
.card::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.card::before {
  top: -1px;
}

.card::after {
  bottom: -1px;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(202, 166, 75, 0.72);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.56),
    0 0 35px rgba(202, 166, 75, 0.07);
}

.card-header {
  min-height: 135px;
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.card-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(202, 166, 75, 0.14));
}

.lottery-mark {
  width: 88px;
  height: 88px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid rgba(202, 166, 75, 0.72);
  border-radius: 23px;
  transform: rotate(45deg);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.12), transparent 31%),
    linear-gradient(145deg, rgba(202, 166, 75, 0.22), rgba(202, 166, 75, 0.04));
}

.lottery-mark span {
  transform: rotate(-45deg);
  color: var(--gold-light);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.card h3 {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(25px, 2.4vw, 37px);
  line-height: 1.08;
}

.description {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.42;
}

.description strong {
  display: block;
  color: #fff;
}

.features {
  margin-top: 22px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid rgba(202, 166, 75, 0.16);
}

.feature {
  min-width: 0;
  display: grid;
  place-items: center;
  align-content: start;
  text-align: center;
}

.feature b {
  width: 44px;
  height: 44px;
  margin-bottom: 9px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202, 166, 75, 0.25);
  border-radius: 14px;
  color: var(--gold-light);
  background: rgba(202, 166, 75, 0.055);
  font-size: 13px;
}

.feature strong,
.feature span {
  display: block;
}

.feature strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.feature span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.button {
  width: 100%;
  min-height: 63px;
  padding: 0 24px;
  border: 1px solid rgba(247, 215, 123, 0.64);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(105deg, #b88720, #efd36f 46%, #c29330);
  color: #090703;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 950;
  text-decoration: none;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  transition:
    transform 150ms ease,
    filter 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.button b {
  font-size: 29px;
}

.button-disabled {
  color: rgba(255, 255, 255, 0.48);
  border-color: rgba(202, 166, 75, 0.16);
  background:
    linear-gradient(180deg, rgba(202, 166, 75, 0.075), rgba(202, 166, 75, 0.025));
  cursor: not-allowed;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.button-disabled:hover {
  transform: none;
  filter: none;
}

.trust {
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.57);
}

.trust span {
  color: var(--gold);
  font-size: 19px;
}

.trust p {
  margin: 0;
  font-size: 14px;
}

.footer {
  margin-top: 27px;
  padding: 25px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer div {
  min-width: 0;
  padding: 0 22px;
  display: grid;
  gap: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.footer div:last-child {
  border-right: 0;
}

.footer strong {
  color: var(--gold-light);
  font-size: 14px;
}

.footer span {
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
}

.copyright {
  margin: 18px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.copyright strong {
  color: var(--gold);
}

@media (max-width: 920px) {
  .shell {
    width: min(680px, calc(100% - 28px));
  }

  .products {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(520px, calc(100% - 22px));
    padding-top: 20px;
  }

  .brand-logo {
    width: 104px;
  }

  .brand h1 {
    font-size: clamp(38px, 13vw, 57px);
  }

  .tagline {
    gap: 9px;
  }

  .tagline p {
    white-space: nowrap;
    font-size: 13px;
  }

  .heading {
    margin: 29px 0 18px;
  }

  .heading h2 {
    font-size: 14px;
    letter-spacing: 0.18em;
  }

  .card {
    padding: 23px 18px 20px;
    border-radius: 21px;
  }

  .card-header {
    min-height: 0;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
  }

  .card-logo {
    width: 76px;
    height: 76px;
  }

  .lottery-mark {
    width: 62px;
    height: 62px;
    border-radius: 17px;
  }

  .lottery-mark span {
    font-size: 19px;
  }

  .card h3 {
    font-size: clamp(22px, 7vw, 29px);
  }

  .description {
    margin-top: 8px;
    font-size: 15px;
  }

  .features {
    margin-top: 18px;
    padding: 18px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 10px;
  }

  .button {
    min-height: 58px;
    padding: 0 17px;
    font-size: 14px;
  }

  .trust {
    margin-top: 22px;
    align-items: flex-start;
  }

  .trust p {
    font-size: 12px;
    line-height: 1.5;
  }

  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .footer div {
    padding: 0 14px;
  }

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

@media (max-width: 360px) {
  .card {
    padding-inline: 14px;
  }

  .card-header {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .card-logo {
    width: 64px;
    height: 64px;
  }

  .card h3 {
    font-size: 21px;
  }

  .button {
    font-size: 12px;
  }
}


/* ==========================================================
   GATEWAY_CONTRAST_HOTFIX_02
   Correção exclusiva da página estática de entrada.
   ========================================================== */

/* Marca e composição superior */
.brand {
  gap: 0;
}

.brand-logo {
  display: block;
  margin: 0 auto;
}

.tagline {
  margin-top: 10px;
}

.tagline p {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 450;
}

.heading {
  margin-top: 27px;
  margin-bottom: 25px;
}

.heading h2 {
  color: rgba(255, 255, 255, 0.96) !important;
  text-shadow: 0 0 16px rgba(202, 166, 75, 0.08);
}

/* Títulos e identificação dos cards */
.card .eyebrow {
  color: #caa64b !important;
}

.card h3 {
  color: #f1d579 !important;
  text-shadow: 0 0 16px rgba(202, 166, 75, 0.08);
}

.card .description {
  color: rgba(255, 255, 255, 0.82) !important;
}

.card .description strong {
  color: rgba(255, 255, 255, 0.98) !important;
}

/* Recursos */
.feature b {
  color: #f1d579 !important;
}

.feature strong {
  color: rgba(255, 255, 255, 0.92) !important;
}

.feature span {
  color: rgba(255, 255, 255, 0.56) !important;
}

/* Botões */
.button:not(.button-disabled) {
  color: #090703 !important;
}

.button:not(.button-disabled) span,
.button:not(.button-disabled) b {
  color: #090703 !important;
}

.button-disabled,
.button-disabled span,
.button-disabled b {
  color: rgba(255, 255, 255, 0.46) !important;
}

/* Linha institucional */
.trust {
  color: rgba(255, 255, 255, 0.52) !important;
}

.trust span {
  color: #caa64b !important;
}

.trust p {
  color: rgba(255, 255, 255, 0.52) !important;
}

/* Rodapé */
.footer strong {
  color: #f1d579 !important;
}

.footer span {
  color: rgba(255, 255, 255, 0.48) !important;
}

.copyright {
  color: rgba(255, 255, 255, 0.44) !important;
}

.copyright strong {
  color: #caa64b !important;
}

/* Acabamento dos cards */
.card {
  border-color: rgba(202, 166, 75, 0.50);
  box-shadow:
    0 32px 76px rgba(0, 0, 0, 0.56),
    0 0 32px rgba(202, 166, 75, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

/* Mobile */
@media (max-width: 620px) {
  .tagline {
    margin-top: 8px;
  }

  .heading {
    margin-top: 24px;
    margin-bottom: 19px;
  }

  .heading h2 {
    color: rgba(255, 255, 255, 0.96) !important;
  }
}

/* ==========================================================
   GATEWAY_CLEAN_HEADER_LINE_FIX_04
   Gateway sem titulo intermediario e descricoes em uma linha.
   ========================================================== */

/* A marca, o slogan e os cards formam um unico bloco visual */
.brand {
  margin-bottom: 30px;
}

.tagline {
  margin-top: 10px;
}

/* O antigo titulo intermediario nao ocupa espaco */
.heading {
  display: none !important;
}

/* Cards sobem apos a retirada do titulo */
.products {
  margin-top: 0;
}

/* Descricoes dos dois produtos em uma unica linha no desktop */
.card .description {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 6px;
  white-space: nowrap;
}

.card .description strong {
  display: inline !important;
  white-space: nowrap;
}

/* Mantem simetria entre os dois cards */
.card-header {
  align-items: center;
}

/* Celulares estreitos podem quebrar para nao provocar overflow */
@media (max-width: 620px) {
  .brand {
    margin-bottom: 22px;
  }

  .card .description {
    display: block;
    white-space: normal;
  }

  .card .description strong {
    display: inline !important;
    white-space: normal;
  }
}

/* ==========================================================
   GATEWAY_REMOVE_HEADING_SCROLLBAR_05
   Remove o titulo intermediario e ajusta a Gateway ao viewport.
   ========================================================== */

.heading {
  display: none !important;
}

/* Aproxima os cards do slogan */
.brand {
  margin-bottom: 24px;
}

.products {
  margin-top: 0;
}

/* Descrições em uma linha no desktop */
.card .description {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 6px;
  white-space: nowrap;
}

.card .description strong {
  display: inline !important;
  white-space: nowrap;
}

/*
 * Em telas desktop, a Gateway inteira deve caber no viewport.
 * A barra lateral observada era a rolagem do navegador.
 */
@media (min-width: 921px) and (min-height: 720px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  .page {
    height: 100svh;
    min-height: 0;
    overflow: hidden;
  }

  .shell {
    height: 100%;
    min-height: 0;
    padding-top: 18px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
  }

  .brand-logo {
    width: clamp(92px, 7.2vh, 126px);
  }

  .tagline {
    margin-top: 7px;
  }

  .brand {
    margin-bottom: 19px;
  }

  .products {
    flex: 0 0 auto;
  }

  .card {
    padding-top: 25px;
    padding-bottom: 23px;
  }

  .card-header {
    min-height: 112px;
  }

  .features {
    margin-top: 17px;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .button {
    min-height: 55px;
  }

  .trust {
    margin-top: 18px;
  }

  .footer {
    margin-top: 16px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .copyright {
    margin-top: 11px;
  }
}

/* No celular a rolagem continua permitida e segura */
@media (max-width: 920px) {
  html,
  body {
    height: auto;
    overflow-y: auto;
  }

  .page {
    min-height: 100vh;
    height: auto;
    overflow: visible;
  }

  .brand {
    margin-bottom: 22px;
  }

  .card .description {
    display: block;
    white-space: normal;
  }

  .card .description strong {
    display: inline !important;
    white-space: normal;
  }
}





/* ==========================================================
   GATEWAY_REAL_STRUCTURE_FINAL_01
   Consolidacao baseada nas classes reais da Gateway.
   ========================================================== */

/* Ocupa melhor a largura disponivel */
.shell {
  width: min(1480px, calc(100% - 48px));
  padding-top: 24px;
  padding-bottom: 22px;
}

/* Marca principal com mais presenca */
.brand-logo {
  width: clamp(132px, 9vw, 178px);
}

/* Aproxima slogan e cards */
.brand {
  margin-bottom: 24px;
}

.tagline {
  margin-top: 10px;
}

/* Cards maiores e melhor distribuidos */
.products {
  width: 100%;
  gap: 34px;
  transform: none;
  margin-top: 0;
  margin-bottom: 24px;
}

.card {
  min-height: 390px;
  padding: 34px 38px 32px;
}

/* Mesma logo nos dois produtos */
.card-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

/* Estrutura interna mais ampla */
.card-header {
  min-height: 138px;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 26px;
}

.card h3 {
  font-size: clamp(29px, 2.35vw, 39px);
}

.card .description {
  font-size: clamp(17px, 1.45vw, 21px);
}

/* Recursos mais presentes */
.features {
  margin-top: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
  gap: 18px;
}

.feature b {
  width: 48px;
  height: 48px;
}

.feature strong {
  font-size: 14px;
}

.feature span {
  font-size: 12px;
}

/* Botões com mais peso visual */
.button {
  min-height: 66px;
}

/* Bloco inferior mais integrado ao conteúdo */
.trust {
  margin-top: 22px;
}

.footer {
  margin-top: 20px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.copyright {
  margin-top: 14px;
}

/* Desktop amplo */
@media (min-width: 1500px) {
  .shell {
    width: min(1540px, calc(100% - 64px));
  }

  .products {
    gap: 40px;
  }

  .card {
    min-height: 410px;
    padding-left: 42px;
    padding-right: 42px;
  }
}

/* Notebook e desktop com altura reduzida */
@media (min-width: 921px) and (max-height: 850px) {
  html,
  body {
    height: auto;
    overflow-y: auto;
  }

  .page {
    min-height: 100vh;
    height: auto;
    overflow: visible;
  }

  .shell {
    height: auto;
    padding-top: 18px;
    padding-bottom: 16px;
  }

  .brand-logo {
    width: clamp(112px, 7vw, 148px);
  }

  .brand {
    margin-bottom: 18px;
  }

  .card {
    min-height: 340px;
    padding-top: 28px;
    padding-bottom: 26px;
  }

  .card-header {
    min-height: 118px;
  }

  .features {
    margin-top: 18px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .button {
    min-height: 58px;
  }
}

/* Tablet e celular */
@media (max-width: 920px) {
  .shell {
    width: min(680px, calc(100% - 28px));
  }

  .products {
    grid-template-columns: 1fr;
    transform: none;
    gap: 24px;
  }

  .card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(520px, calc(100% - 22px));
  }

  .brand-logo {
    width: 108px;
  }

  .card {
    padding: 24px 18px 22px;
  }

  .card-header {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
  }

  .card-logo {
    width: 76px;
    height: 76px;
  }

  .card h3 {
    font-size: clamp(22px, 7vw, 29px);
  }

  .card .description {
    display: block;
    white-space: normal;
  }

  .card .description strong {
    display: inline !important;
    white-space: normal;
  }
}

/* ==========================================================
   GATEWAY_FINAL_POLISH_01
   ========================================================== */

@media (min-width:1200px){

    .brand{
        margin-top:6px;
        margin-bottom:18px;
    }

    .brand-logo{
        transform:scale(1.15);
        transform-origin:center;
    }

    .products{
        transform:scale(1.06);
        transform-origin:top center;
        margin-top:12px;
        margin-bottom:18px;
    }

    .card{
        min-height:430px;
    }

    .trust{
        margin-top:18px;
    }

    .footer{
        margin-top:12px;
    }
}


/* ==========================================================
   GATEWAY_FOOTER_POLISH_01
   ========================================================== */

.footer{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    column-gap:42px;
    align-items:start;
}

.footer > *{
    min-width:0;
}

.footer h4,
.footer strong{
    white-space:nowrap;
}

.footer p,
.footer small,
.footer span{
    white-space:nowrap;
}

.trust{
    white-space:nowrap;
}






