:root {
  --bg: #050607;
  --panel: rgba(12, 18, 20, .86);
  --panel2: rgba(7, 10, 11, .72);
  --line: rgba(200, 145, 30, .26);
  --text: #fff0cf;
  --muted: rgba(222, 211, 202, .72);
  --gold: #ffd760;
  --gold2: #c89b3c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  -webkit-user-select: none;
  user-select: none;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, .52), rgba(5, 6, 7, .9)),
    url("/assets/landing/provided/img5fundo.webp") center / cover fixed,
    var(--bg);
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 max(26px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid rgba(200, 145, 30, .14);
  background: linear-gradient(180deg, rgba(5, 6, 7, .96), rgba(5, 6, 7, .82));
  box-shadow: 0 16px 44px rgba(0, 0, 0, .42);
  backdrop-filter: blur(12px);
}

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

.brand img {
  width: 76px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .58));
}

.nav,
.top-actions,
.lang-switch {
  display: flex;
  align-items: center;
}

.nav {
  gap: clamp(18px, 2.8vw, 34px);
  color: rgba(255, 240, 207, .72);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .18s ease, transform .18s ease, filter .18s ease;
}

.nav-link img,
.nav-link svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: .88;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .38));
}

.nav-link[data-social-discord] svg {
  width: 30px;
  height: 30px;
  transform: scale(1.22);
}

.nav-link:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.top-actions {
  gap: 14px;
}

.lang-switch {
  gap: 8px;
}

.lang-btn {
  width: 42px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.lang-btn img {
  width: 30px;
  height: 20px;
  display: block;
  object-fit: contain;
  transition: transform .18s ease, filter .18s ease;
}

.lang-btn:hover img {
  transform: scale(1.14);
  filter: brightness(1.1);
}

.btn,
.back,
.doc-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: url("/assets/landing/provided/botao secundario.webp") center / 100% 100% no-repeat;
  color: #fff0cf;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .32);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}

.btn {
  width: clamp(146px, 13vw, 190px);
  min-height: clamp(44px, 4.2vw, 52px);
  padding: 0 22px 2px;
}

.btn.primary {
  background-image: url("/assets/landing/provided/botao principal.webp");
  color: #1a0d02;
  text-shadow: 0 1px 0 rgba(255, 240, 207, .18);
}

.btn:hover,
.back:hover,
.doc-open:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.legal-shell {
  width: min(1152px, calc(100% - 36px));
  margin: 0 auto;
  padding: 118px 0 64px;
}

.back {
  width: min(100%, 380px);
  min-height: 46px;
  margin-bottom: 24px;
  padding: 0 30px 2px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.back[data-i18n="backLanding"] {
  width: min(100%, 260px);
  min-height: 40px;
  padding: 0 22px 1px;
  font-size: 9px;
  letter-spacing: .055em;
}

.legal-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.legal-hero img {
  width: 88px;
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .6));
}

.legal-hero p {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: .95;
}

.legal-hero span,
.doc-page-sub {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

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

.doc-card {
  min-height: 232px;
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255, 215, 96, .09), transparent 42%),
    linear-gradient(145deg, rgba(13, 20, 22, .88), rgba(5, 6, 7, .74));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .32);
  transition: transform .18s ease, border-color .18s ease, filter .18s ease;
  content-visibility: auto;
  contain-intrinsic-size: 232px;
}

.doc-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 96, .48);
  filter: brightness(1.08);
}

.doc-icon {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  color: #ffe8a6;
  background: transparent;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.doc-icon::after {
  content: none;
}

.doc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .28));
}

.doc-copy {
  display: grid;
  gap: 7px;
}

.doc-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}

.doc-copy small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.doc-open {
  width: 180px;
  min-height: 36px;
  margin-top: 6px;
  padding: 0 18px 2px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.doc-page {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(5, 8, 9, .82);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .44);
}

.doc-page h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
}

.doc-page article {
  margin-top: 30px;
  color: rgba(255, 240, 207, .9);
}

.doc-page h2 {
  margin: 34px 0 14px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.08;
}

.doc-page h3 {
  margin: 24px 0 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fff0cf;
  background: transparent;
  font-size: 16px;
  line-height: 1.35;
  text-transform: uppercase;
}

.doc-page p,
.doc-page li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.doc-page ul {
  margin: 12px 0 20px;
  padding-left: 22px;
}

.placeholder {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(200, 145, 30, .18);
  border-radius: 8px;
  background: var(--panel2);
}

.newsletter-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255, 215, 96, .11), transparent 42%),
    linear-gradient(145deg, rgba(13, 20, 22, .9), rgba(5, 6, 7, .74));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .38);
}

.newsletter-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
  padding: clamp(14px, 2.4vw, 22px);
  border-bottom: 1px solid rgba(200, 145, 30, .16);
}

.news-board {
  display: grid;
  gap: 0;
  margin-top: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 36%);
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(200, 145, 30, .16);
  border-radius: 0;
  padding: clamp(18px, 3vw, 28px);
  background: transparent;
  content-visibility: auto;
  contain-intrinsic-size: 330px;
}

.news-card:last-child {
  border-bottom: 0;
}

.news-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  border: 0;
  border-radius: 0;
  color: var(--gold);
  background: url("/assets/landing/provided/Selo.webp") center / 100% 100% no-repeat;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  padding: 9px clamp(18px, 2.8vw, 30px) 10px;
  margin-bottom: 12px;
  white-space: nowrap;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .28));
}

.news-card h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.08;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.news-card p + p {
  margin-top: 10px;
}

.news-card strong {
  color: #fff0cf;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.news-tags span {
  border: 1px solid rgba(255, 215, 96, .18);
  border-radius: 999px;
  padding: 5px 9px;
  color: rgba(255, 240, 207, .78);
  background: rgba(255, 215, 96, .06);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(200, 145, 30, .25);
  border-radius: 10px;
  background: rgba(2, 5, 6, .55);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .32);
}

.news-media {
  aspect-ratio: 16 / 9;
}

.news-media picture,
.news-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.news-media img {
  object-fit: cover;
}

.news-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 215, 96, .12), transparent 22%, rgba(0, 0, 0, .18)),
    inset 0 0 0 1px rgba(255, 240, 207, .06);
}

.news-pager {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.news-pager[hidden] {
  display: none;
}

.news-pager button {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid rgba(255, 215, 96, .24);
  border-radius: 9px;
  color: rgba(255, 240, 207, .78);
  background: rgba(5, 8, 9, .72);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, filter .18s ease;
}

.news-pager button:hover,
.news-pager button[aria-current="page"] {
  transform: translateY(-1px);
  border-color: rgba(255, 215, 96, .54);
  color: #1f1203;
  background: linear-gradient(180deg, #ffe6a6, #d89a23 58%, #8c4e09);
  filter: brightness(1.05);
}

.newsletter-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4.3vw, 46px);
  line-height: .98;
}

.newsletter-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.newsletter-copy p {
  max-width: 500px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.newsletter-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(200, 145, 30, .2);
  border-radius: 10px;
  background: rgba(5, 8, 9, .72);
}

.newsletter-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 240, 207, .74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.newsletter-form input,
.newsletter-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(200, 145, 30, .24);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(2, 5, 6, .72);
  outline: 0;
}

.newsletter-form input:focus,
.newsletter-form select:focus {
  border-color: rgba(255, 215, 96, .58);
}

.newsletter-form .btn {
  width: 100%;
}

.newsletter-status {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 240, 207, .7);
  font-size: 12px;
  line-height: 1.5;
}

footer {
  display: flex;
  justify-content: center;
  padding: 34px 40px;
  border-top: 1px solid rgba(200, 145, 30, .08);
  color: rgba(222, 211, 202, .42);
  text-align: center;
  font-size: 12px;
  letter-spacing: .04em;
  background: #050607;
  content-visibility: auto;
  contain-intrinsic-size: 150px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, filter .18s ease;
}

.footer-logo-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.footer-logo {
  width: 54px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .58));
}

.legal-link {
  color: rgba(255, 240, 207, .72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color .18s ease, filter .18s ease;
}

.legal-link:hover {
  color: var(--gold);
  filter: brightness(1.08);
}

.footer-social,
.footer-platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.social-link,
.platform-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: rgba(255, 240, 207, .92);
  border: 1px solid rgba(200, 145, 30, .2);
  border-radius: 9px;
  background: rgba(11, 16, 17, .52);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, filter .18s ease;
}

.platform-link { opacity: .74; }

.social-link:hover,
.platform-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 96, .42);
  filter: brightness(1.12);
}

.social-link svg,
.platform-link svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: .94;
}

.social-link:first-child svg,
.platform-link[title="iOS"] svg,
.platform-link[title="Android"] svg {
  width: 23px;
  height: 23px;
  transform: scale(1.08);
}

.pdf-frame-wrap {
  margin-top: 28px;
  border: 1px solid rgba(200, 145, 30, .24);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, .44);
}

.pdf-frame {
  display: block;
  width: 100%;
  height: min(82vh, 980px);
  border: 0;
  background: #111;
}

.pdf-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 720px) {
  .topbar {
    height: 66px;
    gap: 7px;
    padding-inline: 10px;
  }

  .brand img {
    width: 66px;
    max-height: 62px;
  }

  .nav {
    display: flex;
    gap: 4px;
    font-size: 0;
  }

  .nav-link {
    width: 32px;
    height: 30px;
    justify-content: center;
    gap: 0;
  }

  .nav-link span {
    display: none;
  }

  .nav-link img,
  .nav-link svg {
    width: 24px;
    height: 24px;
  }

  .nav-link[data-social-discord] svg {
    width: 31px;
    height: 31px;
    transform: scale(1.18);
  }

  .top-actions {
    gap: 5px;
  }

  .lang-switch {
    gap: 2px;
    margin-right: 1px;
  }

  .lang-btn {
    width: 33px;
    height: 28px;
  }

  .lang-btn img {
    width: 28px;
    height: 20px;
  }

  .top-actions .btn.primary {
    width: 116px;
    min-height: 39px;
    padding: 0 0 2px;
    font-size: 10px;
    letter-spacing: .075em;
    background-size: 108% 112%;
  }

  .back {
    width: min(100%, 320px);
    min-height: 44px;
    font-size: 8px;
    letter-spacing: .035em;
  }

  .back[data-i18n="backLanding"] {
    width: min(100%, 230px);
    min-height: 38px;
    padding-inline: 18px;
    font-size: 8px;
    letter-spacing: .045em;
  }

  .doc-open {
    width: 160px;
    min-height: 34px;
    padding-bottom: 2px;
    font-size: 8px;
    letter-spacing: .08em;
  }

  .newsletter-panel {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .newsletter-copy p {
    font-size: 14px;
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-date {
    margin-bottom: 10px;
  }

  .news-media {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .legal-shell {
    width: min(390px, calc(100% - 28px));
    padding: 90px 0 44px;
  }

  .legal-hero {
    align-items: flex-start;
    gap: 12px;
  }

  .legal-hero img {
    width: 62px;
  }

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

  .doc-card {
    min-height: 196px;
    gap: 12px;
    padding: 18px;
  }

  .doc-icon {
    width: 56px;
    height: 56px;
  }

  .doc-icon img {
    width: 100%;
    height: 100%;
  }

  .doc-copy strong {
    font-size: 15px;
  }

  .doc-copy small {
    font-size: 12px;
  }

  .pdf-frame {
    height: 72vh;
  }

  footer {
    padding: 18px 14px 24px;
  }

  .footer-inner {
    gap: 9px 10px;
  }

  .footer-brand {
    flex: 1 1 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 11px;
  }

  .footer-logo {
    width: 42px;
  }

  .footer-social,
  .footer-platforms {
    gap: 7px;
    flex-wrap: nowrap;
  }

  .social-link,
  .platform-link {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .social-link svg,
  .platform-link svg {
    width: 18px;
    height: 18px;
  }

  .social-link:first-child svg,
  .platform-link[title="iOS"] svg,
  .platform-link[title="Android"] svg {
    width: 21px;
    height: 21px;
    transform: scale(1.04);
  }
}
