* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #0f1115;
  --bg-2: #171a20;
  --gold: #f4c73e;
  --gold-2: #ffd451;
  --text: #f5f5f5;
  --muted: #b7bcc7;
  --line: rgba(255, 255, 255, 0.08);
  --card: rgba(255, 255, 255, 0.04);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 10, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 100px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  border-radius: 10px;
  background: transparent;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.6px;
}

.brand-text span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a {
  color: #f3f3f3;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  box-shadow: 0 10px 24px rgba(244, 199, 62, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(244, 199, 62, 0.32);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: white;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  isolation: isolate;
  background: url("img/bg_destaque.png") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(244, 199, 62, 0.12),
    transparent 28%
  );
  z-index: -1;
}

.hero-grid {
  display: grid;
  align-items: center;
  padding: 64px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(244, 199, 62, 0.24);
  background: rgba(244, 199, 62, 0.08);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -2px;
  max-width: 760px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  margin-top: 22px;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 700px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  font-weight: 900;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #d8dde7;
  font-size: 0.92rem;
  font-weight: 600;
}

.section {
  padding: 60px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header .eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.86rem;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(244, 199, 62, 0.1);
  border: 1px solid rgba(244, 199, 62, 0.18);
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 800;
  color: #fff;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.list {
  display: grid;
  gap: 16px;
}

.list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.bullet {
  min-width: 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #111;
  background: var(--gold);
}

.list-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 800;
}

.list-item p {
  color: var(--muted);
  font-size: 0.96rem;
}

.banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      115deg,
      rgba(244, 199, 62, 0.18),
      rgba(244, 199, 62, 0.03)
    ),
    #13161b;
  border: 1px solid rgba(244, 199, 62, 0.14);
  border-radius: 28px;
  padding: 34px;
  min-height: 100%;
  box-shadow: var(--shadow);
}

.banner::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(244, 199, 62, 0.18),
    transparent 70%
  );
}

.banner h3 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.banner p {
  color: var(--muted);
  max-width: 500px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #0b0d10;
  padding: 24px 0;
}

/*Rodapé*/
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  color: #b3b8c3;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: start;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

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

  .menu {
    width: 100%;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    min-height: auto;
    background-position: center right;
  }

  .section {
    padding: 72px 0;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-row span:last-child {
    text-align: left;
  }
}
