:root {
  --bg: #0b0f0d;
  --bg-soft: #111814;
  --surface: #f7f2e8;
  --surface-2: #fffaf0;
  --ink: #171a1d;
  --muted: #58606a;
  --gold: #b8985a;
  --gold-2: #d7bd79;
  --green: #24543a;
  --line: rgba(23, 26, 29, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 15, 13, 0.88);
  color: #fffaf0;
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.navlinks a {
  text-decoration: none;
  color: rgba(255, 250, 240, 0.78);
}

.navlinks a:hover {
  color: var(--gold-2);
}

.hero {
  color: #fffaf0;
  background:
    linear-gradient(110deg, rgba(11, 15, 13, 0.94), rgba(11, 15, 13, 0.72)),
    url("/images/banner-grande.png") center/cover;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 76px 0 86px;
}

.kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(215, 189, 121, 0.42);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(215, 189, 121, 0.12);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-2);
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 870px;
  margin: 24px 0 22px;
  font-size: clamp(42px, 7vw, 86px);
  text-transform: uppercase;
}

h1 em,
h2 em {
  color: var(--gold-2);
  font-style: normal;
}

.lead {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold-2);
  color: #111814;
  box-shadow: 0 14px 34px rgba(215, 189, 121, 0.24);
}

.btn-secondary {
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.25);
  background: rgba(255, 250, 240, 0.07);
}

.section {
  padding: 72px 0;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-title {
  max-width: 760px;
  margin: 0 0 30px;
  font-size: clamp(32px, 4vw, 54px);
  text-transform: uppercase;
}

.section-intro {
  max-width: 820px;
  margin: -12px 0 34px;
  color: var(--muted);
  font-size: 18px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: var(--surface-2);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.card p,
.card li {
  color: var(--muted);
}

.card ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.dark {
  background: var(--bg);
  color: #fffaf0;
}

.dark .section-intro,
.dark .card p,
.dark .card li {
  color: rgba(255, 250, 240, 0.72);
}

.dark .card {
  background: var(--bg-soft);
  border-color: rgba(255, 250, 240, 0.12);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-band {
  border-radius: 18px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(11, 15, 13, 0.92), rgba(36, 84, 58, 0.9)),
    url("/images/fundo-arsenal.png") center/cover;
  color: #fffaf0;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  text-transform: uppercase;
}

.cta-band p {
  max-width: 760px;
  color: rgba(255, 250, 240, 0.78);
}

.breadcrumbs {
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.64);
  font-size: 13px;
}

.breadcrumbs a {
  color: rgba(255, 250, 240, 0.76);
}

.footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 250, 240, 0.68);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.notice {
  margin-top: 28px;
  color: rgba(255, 250, 240, 0.62);
  font-size: 13px;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .navlinks {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-inner {
    min-height: 560px;
  }

  .grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 28px;
  }
}
