/* ─── Tokens ────────────────────────────────────────────────── */
:root {
  --bg:              #0e0e0e;
  --white:           #ffffff;
  --white-muted:     rgba(255,255,255,0.62);
  --orange:          #fd7222;
  --red:             #c30400;
  --gradient-btn:    linear-gradient(180deg, #fd7222 0%, #c30400 100%);
  --font-poppins:    'Poppins', Helvetica, sans-serif;
  --font-montserrat: 'Montserrat', Helvetica, sans-serif;
  --max-w:           1920px;
  --px:              clamp(20px, 7.3vw, 140px);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  position: relative;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-poppins);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

/* ─── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ─── Site Header ────────────────────────────────────────────── */
.site-header {
  position: relative;
  z-index: 100;
}

/* ── Nav ─────────────────────────────────────────────────────── */
.navigation {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr) 145px;
  align-items: center;
  padding-block: 24px;
}

.navigation > a:first-child {
  flex-shrink: 0;
}

.nav-logo {
  width: 235px;
  height: auto;
  max-width: none;
  display: block;
}

/* Links centralizados */
.home-2 {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 80px);
  justify-content: center;
}

.home-2 a {
  font-family: var(--font-poppins);
  font-size: clamp(15px, 1.25vw, 24px);
  font-weight: 400;
  letter-spacing: -0.48px;
  color: var(--white-muted);
  white-space: nowrap;
  transition: color .2s;
}
.home-2 a:hover { color: var(--white); }

/* Link ativo */
.text-wrapper-20 { color: var(--white) !important; }

/* Botão Login */
.button-5 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 67px;
  justify-self: end;
  text-decoration: none;
}

.rectangle-8 {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: var(--gradient-btn);
  backdrop-filter: blur(37px);
  -webkit-backdrop-filter: blur(37px);
}

.text-wrapper-19 {
  position: relative;
  font-family: var(--font-poppins);
  font-size: clamp(15px, 1.25vw, 24px);
  font-weight: 400;
  letter-spacing: -0.48px;
  color: var(--white);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ─── Mobile nav overlay ──────────────────────────────────────── */
html.no-scroll { overflow: hidden; }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-size: 24px;
  color: var(--white);
}
.nav-overlay-close {
  position: absolute;
  top: 20px;
  right: var(--px);
  font-size: 32px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

/* ─── Site Footer ────────────────────────────────────────────── */
.site-footer {
  padding: 40px 0 32px;
  margin-top: 120px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.footer-links a {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 24.8px;
  color: var(--white);
  transition: opacity .2s;
}
.footer-links a:hover { opacity: .7; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
}

.footer-disclaimer {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.36px;
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 38px;
  align-items: center;
}
.footer-social img { width: 28px; height: 28px; object-fit: contain; }

/* ─── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .navigation {
    grid-template-columns: auto 1fr;
  }
  .home-2,
  .button-5 { display: none; }
  .menu-toggle {
    display: flex;
    justify-self: end;
  }
  .nav-logo {
    width: auto;
    height: 130px;
    max-width: 220px;
  }

  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-logo { height: 60px; }
  .footer-links { align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ─── Nav overlay mobile ─────────────────────────────────────── */
.nav-overlay-login {
  width: 140px;
  height: 52px;
}
