:root {
  --blue: #061E41;
  --night: #020B18;
  --gold: #C6922E;
  --gold-light: #E5BB56;
  --white: #FFFFFF;
  --off: #F7F7F2;
  --text: #111827;
  --muted: #697386;
  --line: rgba(229, 187, 86, .24);
  --shadow: 0 30px 80px rgba(2, 11, 24, .24);
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--white);
  background: var(--night);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER PROPORCIONAL */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 82px;
  background: rgba(2, 11, 24, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 187, 86, .18);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 132px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 132px;
}

.brand img {
  width: 132px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.36));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:not(.nav-button):hover { color: var(--gold-light); }

.nav-button {
  padding: 11px 17px;
  border: 1px solid rgba(229, 187, 86, .7);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(198,146,46,.08);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gold-light);
}

/* HERO */
.hero {
  min-height: 760px;
  padding: 142px 0 82px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(229,187,86,.18), transparent 30%),
    radial-gradient(circle at 12% 10%, rgba(6,30,65,.72), transparent 34%),
    linear-gradient(135deg, #020B18 0%, #061E41 58%, #020B18 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: .34;
  mask-image: linear-gradient(to bottom, black 20%, transparent 95%);
}

.hero-decor {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(229,187,86,.20);
  pointer-events: none;
}

.decor-one {
  width: 520px;
  height: 520px;
  right: -120px;
  top: 120px;
}

.decor-two {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 60px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
  color: var(--gold-light);
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.eyebrow.dark { color: var(--gold); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.4vw, 66px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.lead {
  max-width: 650px;
  color: #D8E0EC;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 34px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.btn-gold {
  color: #061122;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 42px rgba(198,146,46,.28);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.04);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-row span {
  padding: 9px 13px;
  border-radius: 999px;
  color: #C8D1DF;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
}

/* VISUAL DO HERO COM LOGO ENCAIXADO */
.hero-visual {
  display: grid;
  gap: 16px;
}

.logo-showcase {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 35%, rgba(229,187,86,.18), transparent 38%),
    linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.logo-showcase::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px;
  pointer-events: none;
}

.logo-showcase img {
  width: min(88%, 360px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,.42));
}

.visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.visual-stats div {
  min-height: 100px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.055);
}

.visual-stats strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 26px;
  line-height: 1;
}

.visual-stats span {
  color: #BFC9D8;
  font-size: 13px;
  font-weight: 600;
}

/* STRIP */
.brand-strip {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: #061122;
}

.strip-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.strip-inner p {
  margin: 0;
  max-width: 600px;
  font-size: 18px;
  font-weight: 800;
}

.strip-inner div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.strip-inner span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(6,30,65,.22);
  font-size: 12px;
  font-weight: 800;
}

/* SEÇÕES */
.section { padding: 96px 0; }

.section-light {
  color: var(--text);
  background: var(--off);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.about-text {
  max-width: 680px;
  color: #3E4A5E;
  font-size: 18px;
}

.about-text p:last-child { margin-bottom: 0; }

.section-blue {
  background: linear-gradient(180deg, #061E41 0%, #020B18 100%);
  color: var(--white);
}

.center-title {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.center-title p {
  color: #CAD4E2;
  font-size: 18px;
}

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

.feature-card {
  min-height: 265px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
}

.feature-card b,
.diff-grid b {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: .12em;
}

.feature-card p,
.diff-grid p { color: #BCC7D6; }

/* MERCADO - VISUAL MAIS LIMPO E PROPORCIONAL */
.market-section {
  color: var(--text);
  background: #FFFFFF;
}

.market-grid {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 68px;
}

.market-card {
  min-height: 455px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 38px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(229,187,86,.24), transparent 35%),
    linear-gradient(145deg, #082652 0%, #020B18 78%);
  border: 1px solid rgba(198,146,46,.46);
  box-shadow: 0 30px 76px rgba(6,30,65,.18);
}

.market-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
}

.market-card img {
  position: relative;
  z-index: 2;
  width: min(70%, 270px);
  border-radius: 24px;
  filter: drop-shadow(0 26px 38px rgba(0,0,0,.38));
}

.market-label {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 3;
  color: rgba(255,255,255,.86);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}

.market-tags {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.market-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  color: #061122;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 12px;
  font-weight: 900;
}

.market-copy p {
  max-width: 650px;
  color: #3E4A5E;
  font-size: 18px;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.numbers div {
  min-height: 115px;
  padding: 22px;
  border-radius: 20px;
  background: var(--off);
  border: 1px solid rgba(198,146,46,.22);
}

.numbers strong {
  display: block;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 8px;
}

.numbers span {
  color: #536071;
  font-size: 13px;
  font-weight: 800;
}

/* DIFERENCIAIS */
.section-dark {
  background:
    radial-gradient(circle at 10% 10%, rgba(198,146,46,.16), transparent 30%),
    linear-gradient(135deg, var(--night), var(--blue));
  color: var(--white);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.12);
  border-left: 1px solid rgba(255,255,255,.12);
}

.diff-grid article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.025);
}

/* CONTATO */
.contact-section {
  padding: 0 0 92px;
  color: var(--text);
  background: linear-gradient(180deg, var(--off), #fff);
}

.contact-card {
  transform: translateY(-44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(135deg, #fff, var(--off));
  border: 1px solid #E8DEC3;
  box-shadow: 0 30px 76px rgba(6,30,65,.14);
}

.contact-card p {
  margin-bottom: 0;
  color: #4D596B;
  font-size: 18px;
}

/* FOOTER */
.site-footer {
  padding: 42px 0;
  background: #020B18;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner img {
  width: 155px;
  height: auto;
}

.footer-inner p {
  margin: 8px 0 0;
  color: #AEB8C8;
  font-size: 13px;
}

.footer-contact {
  display: grid;
  gap: 5px;
  text-align: right;
}

.footer-contact span {
  color: var(--gold-light);
  font-weight: 900;
}

.footer-contact a {
  font-size: 18px;
  font-weight: 900;
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 92px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(2, 11, 24, .98);
    border: 1px solid rgba(255,255,255,.12);
  }

  .main-nav.open { display: flex; }

  .main-nav a { padding: 10px 0; }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-grid,
  .about-grid,
  .market-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 42px; }

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

  .strip-inner,
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .strip-inner div { justify-content: center; }

  .footer-contact { text-align: center; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }

  .site-header,
  .header-inner { height: 74px; }

  .brand {
    width: 105px;
    height: 56px;
    flex-basis: 105px;
  }

  .brand img {
    width: 105px;
    height: 56px;
  }

  .main-nav { top: 84px; }

  .hero {
    padding: 108px 0 58px;
  }

  h1 { font-size: 39px; }

  h2 { font-size: 30px; }

  .lead,
  .about-text,
  .center-title p,
  .market-copy p,
  .contact-card p {
    font-size: 16px;
  }

  .hero-actions { flex-direction: column; }

  .btn { width: 100%; }

  .logo-showcase {
    min-height: 310px;
    padding: 24px;
    border-radius: 26px;
  }

  .visual-stats,
  .cards-grid,
  .diff-grid,
  .numbers {
    grid-template-columns: 1fr;
  }

  .section { padding: 72px 0; }

  .feature-card,
  .diff-grid article {
    min-height: auto;
  }

  .market-card {
    min-height: 360px;
    padding: 28px;
  }

  .market-card img { width: min(76%, 230px); }

  .contact-card {
    padding: 28px;
    transform: translateY(-28px);
  }
}
