/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 19px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── VARIÁVEIS ── */
:root {
  /* Ouro enriquecido — mais quente, maior presença visual */
  --gold:        #d4a843;
  --gold-bright: #f0cc6a;
  --gold-dim:    #d4a84333;
  --gold-glow:   rgba(212,168,67,0.18);

  --bg-main:     #0a0f1e;
  --bg-dark:     #06090f;
  --bg-mid:      #060a12;
  --bg-card:     #0d1530;
  --bg-card-alt: #0c1828;

  --text-primary:   #ffffff;
  --text-secondary: #aabbd4;
  --text-muted:     #7799bb;
  --text-dim:       #4a5a6a;

  --border-gold:   #d4a84344;
  --border-subtle: #ffffff0d;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Cormorant', 'Segoe UI', Arial, sans-serif;
}

/* ── UTILITÁRIOS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.gold { color: var(--gold-bright); }

.section-label {
  font-size: 11px; letter-spacing: 5px; color: var(--gold-bright);
  text-transform: uppercase; font-weight: 600;
  font-family: 'Segoe UI', Arial, sans-serif;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.section-label::after {
  content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 46px; font-weight: 300; color: var(--text-primary);
  line-height: 1.22; margin-bottom: 52px;
  letter-spacing: 0.02em;
}

/* ── NAV ── */
#nav {
  position: sticky; top: 0; z-index: 1000;
  height: 72px;
  background: rgba(6, 9, 15, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
  display: flex; align-items: center;
  padding: 0 48px;
}
.nav-logo {
  position: absolute; left: 50%; transform: translateX(-50%);
}
.logo-img {
  height: 46px; width: auto;
  filter: drop-shadow(0 0 10px rgba(212,168,67,0.4)) drop-shadow(0 0 3px rgba(212,168,67,0.2));
}
.nav-links {
  margin-left: auto;
  display: flex; gap: 36px;
}
.nav-links a {
  color: #bbb; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500;
  font-family: 'Segoe UI', Arial, sans-serif;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-bright); }

/* ── HAMBURGER (oculto no desktop) ── */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  margin-left: auto; padding: 4px;
  flex-direction: column; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gold); border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── MOBILE MENU (oculto por padrão) ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-gold);
  padding: 8px 0;
  position: sticky; top: 56px; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  color: #bbb; font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; padding: 14px 24px;
  font-family: 'Segoe UI', Arial, sans-serif;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s, background 0.2s;
}
.mobile-link:hover { color: var(--gold-bright); background: #ffffff05; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 50% 38%, #1e305a 0%, #0a0f1e 60%);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 40px 90px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212,168,67,0.04) 0%, transparent 55%),
    linear-gradient(135deg, transparent 55%, rgba(212,168,67,0.03) 100%);
  pointer-events: none;
}
.hero-content {
  max-width: 760px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 1;
}

/* ── LOGO HERO (grande, centralizada) ── */
.hero-logo-wrap {
  margin-bottom: 48px;
  display: flex; justify-content: center;
}
.hero-logo-img {
  height: 110px;
  width: auto;
  filter: drop-shadow(0 0 28px rgba(212,168,67,0.35)) drop-shadow(0 0 8px rgba(212,168,67,0.2));
  transition: filter 0.4s ease;
}
.hero-logo-img:hover {
  filter: drop-shadow(0 0 36px rgba(240,204,106,0.5)) drop-shadow(0 0 12px rgba(212,168,67,0.3));
}

/* ── EYEBROW ── */
.eyebrow {
  display: flex; align-items: center; gap: 16px;
  color: var(--gold-bright); font-size: 11px;
  letter-spacing: 5px; text-transform: uppercase; font-weight: 600;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-bottom: 28px;
}
.eyebrow-line {
  display: block; width: 28px; height: 1px; background: var(--gold);
}

/* ── HERO TITLE ── */
.hero-title {
  font-family: var(--font-serif);
  font-size: 70px; font-weight: 300; line-height: 1.1;
  color: var(--text-primary); margin-bottom: 30px;
  letter-spacing: 0.01em;
}
.hero-title strong {
  color: var(--gold-bright); font-weight: 500;
  display: block; margin-top: 6px;
}

/* ── HERO SUBTITLE ── */
.hero-sub {
  font-size: 21px; color: var(--text-secondary);
  line-height: 1.85; max-width: 620px;
  margin-bottom: 64px;
  padding-left: 22px;
  border-left: 2px solid var(--border-gold);
  text-align: left;
  font-weight: 300;
  font-style: italic;
}

/* ── HERO STATS ── */
.hero-stats {
  display: flex; gap: 0;
  width: 100%; max-width: 460px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}
.stat {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 0 24px;
}
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.08); }
.stat-num {
  font-size: 54px; font-weight: 600; color: var(--gold-bright);
  line-height: 1; margin-bottom: 8px;
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 10px; letter-spacing: 2.5px; color: var(--text-muted);
  text-transform: uppercase;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* ── SOBRE ── */
.sobre {
  background: var(--bg-main);
  padding: 104px 0;
  border-top: 1px solid var(--border-subtle);
}
.mvv-stack { display: flex; flex-direction: column; gap: 3px; }

.mvv-card {
  background: var(--bg-card);
  border-left: 4px solid var(--gold);
  padding: 60px 64px;
  position: relative; overflow: hidden;
}
.mvv-card--alt { background: var(--bg-card-alt); }
.mvv-card::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  border: 1px solid rgba(212,168,67,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.mvv-icon { font-size: 36px; margin-bottom: 22px; display: block; }
.mvv-heading {
  font-size: 11px; letter-spacing: 3.5px; color: var(--gold-bright);
  text-transform: uppercase; font-weight: 600; margin-bottom: 24px;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.mvv-body p {
  font-size: 18px; color: var(--text-secondary); line-height: 2;
  font-weight: 300; margin-bottom: 20px; max-width: 860px;
  text-align: justify;
  font-family: var(--font-serif);
}
.mvv-body p strong {
  color: var(--text-primary); font-weight: 500;
}
.mvv-body p:last-child { margin-bottom: 0; }
.mvv-highlight {
  color: var(--gold-bright) !important;
  font-style: italic;
}

/* ── VALORES GRID ── */
.valores-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 40px;
}
.valor-item { border-top: 1px solid var(--border-gold); padding-top: 22px; }
.valor-nome {
  color: var(--gold-bright); font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 12px;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.valor-desc {
  color: var(--text-muted); font-size: 16px; line-height: 1.85;
  font-weight: 300; font-family: var(--font-serif);
}

/* ── SETORES ── */
.setores {
  background: var(--bg-mid);
  padding: 104px 0;
  border-top: 1px solid var(--border-subtle);
}
.setores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212,168,67,0.12);
  border-radius: 4px;
  overflow: hidden;
}
.setor-card {
  background: var(--bg-main);
  padding: 40px 36px;
  position: relative;
  border-top: 3px solid rgba(212,168,67,0.12);
  transition: background 0.25s, border-top-color 0.25s;
}
.setor-card:hover {
  background: #0e1530;
  border-top-color: var(--gold);
}
.setor-num {
  position: absolute; top: 20px; right: 24px;
  font-size: 52px; font-weight: 900; line-height: 1;
  color: rgba(212,168,67,0.07);
  font-family: var(--font-serif);
  pointer-events: none;
}
.setor-icon { font-size: 34px; margin-bottom: 20px; display: block; }
.setor-nome {
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-primary);
  margin-bottom: 14px;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.setor-desc {
  font-size: 16px; color: var(--text-muted); line-height: 1.9;
  margin-bottom: 20px; font-weight: 300;
  font-family: var(--font-serif);
  text-align: justify;
}
.setor-desc strong {
  color: var(--text-muted); font-weight: 500;
}
.setor-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: rgba(212,168,67,0.08); color: var(--gold);
  border: 1px solid rgba(212,168,67,0.25);
  font-size: 9px; letter-spacing: 1px; padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* Setor 07 — linha inteira */
.setor-card--full {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 40px;
  padding: 40px 44px;
}
.setor-full-body { flex: 1; }
.setor-card--full .setor-num {
  position: static; font-size: 52px; color: rgba(212,168,67,0.07); flex-shrink: 0;
}
.setor-card--full .setor-icon { margin-bottom: 0; flex-shrink: 0; }

/* ── LOCALIZAÇÃO ── */
.localizacao {
  background: var(--bg-main);
  padding: 104px 0;
  border-top: 1px solid var(--border-subtle);
}
.loc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--border-subtle); border-radius: 4px; overflow: hidden;
}
.loc-card { background: var(--bg-card); padding: 60px 64px; }
.loc-card--alt { background: var(--bg-card-alt); }
.loc-flag { font-size: 30px; margin-bottom: 18px; }
.loc-title {
  font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold-bright); font-weight: 600; margin-bottom: 28px;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.loc-list li {
  color: #8899bb; font-size: 17px;
  padding: 12px 0; border-bottom: 1px solid var(--border-subtle);
  display: flex; align-items: center; gap: 14px; line-height: 1.5;
  font-family: var(--font-serif); font-weight: 400;
}
.loc-list li::before { content: '—'; color: var(--border-gold); font-size: 12px; flex-shrink: 0; }
.loc-note {
  background: rgba(212,168,67,0.06); border: 1px solid rgba(212,168,67,0.15);
  padding: 20px 22px; margin-top: 28px; border-radius: 3px;
  color: var(--gold); font-size: 13px; line-height: 1.8; letter-spacing: 0.3px;
  font-family: var(--font-serif); font-style: italic;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(212,168,67,0.22);
  padding: 56px 0 40px;
}
.disclaimer {
  background: #0d1428; border: 1px solid rgba(255,255,255,0.05);
  border-radius: 3px; padding: 24px 32px; margin-bottom: 48px;
}
.disclaimer p {
  color: var(--text-dim); font-size: 12px; line-height: 2; text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.2px;
}
.disclaimer strong { color: #5a6a7a; }
.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.logo-img--footer {
  height: 44px; width: auto;
  filter: drop-shadow(0 0 10px rgba(212,168,67,0.4)) drop-shadow(0 0 3px rgba(212,168,67,0.2));
}
.footer-copy { text-align: center; }
.footer-copy p { color: #3a4a5a; font-size: 11px; line-height: 1.8; font-family: 'Segoe UI', Arial, sans-serif; }

/* ══════════════════════════════════════
   BARRA DE PROGRESSO DE SCROLL
══════════════════════════════════════ */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 2000;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════
   NAV LINK ATIVO
══════════════════════════════════════ */
.nav-links a.active {
  color: var(--gold-bright);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold-bright);
}

/* ══════════════════════════════════════
   HOVER GLOW — CARDS SETORES
══════════════════════════════════════ */
.setor-card {
  transition: background 0.25s, border-top-color 0.25s, box-shadow 0.25s;
}
.setor-card:hover {
  box-shadow: inset 0 0 40px rgba(212,168,67,0.05), 0 0 0 1px rgba(212,168,67,0.15);
}

/* ══════════════════════════════════════
   SHIMMER LOGO HERO
══════════════════════════════════════ */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero-logo-wrap {
  position: relative;
}
.hero-logo-img {
  animation: logoPulse 4s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 28px rgba(212,168,67,0.35)) drop-shadow(0 0 8px rgba(212,168,67,0.2)); }
  50%       { filter: drop-shadow(0 0 48px rgba(240,204,106,0.6)) drop-shadow(0 0 16px rgba(212,168,67,0.4)); }
}

/* ══════════════════════════════════════
   HOVER GLOW — CARDS MVV
══════════════════════════════════════ */
.mvv-card {
  transition: box-shadow 0.3s ease;
}
.mvv-card:hover {
  box-shadow: -4px 0 24px rgba(212,168,67,0.12);
}

/* ══════════════════════════════════════
   MOBILE — max-width: 768px
══════════════════════════════════════ */
@media (max-width: 768px) {

  /* Container */
  .container { padding: 0 20px; }

  /* Nav */
  #nav { height: 58px; padding: 0 20px; }
  .nav-logo { position: static; transform: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero logo */
  .hero-logo-img { height: 80px; }
  .hero-logo-wrap { margin-bottom: 36px; }

  /* Hero */
  .hero { padding: 80px 20px 64px; min-height: auto; }
  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 17px; margin-bottom: 44px; }
  .hero-stats { max-width: 100%; }
  .stat-num { font-size: 38px; }
  .eyebrow { font-size: 9px; letter-spacing: 3px; }

  /* Sobre */
  .sobre { padding: 72px 0; }
  .mvv-card { padding: 36px 28px; }
  .mvv-body p { font-size: 15px; }
  .valores-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .valor-desc { font-size: 14px; }

  /* Setores */
  .setores { padding: 72px 0; }
  .setores-grid { grid-template-columns: 1fr; }
  .setor-card { padding: 26px 22px; display: flex; gap: 18px; align-items: flex-start; }
  .setor-card--full { flex-direction: column; gap: 14px; padding: 26px 22px; }
  .setor-card--full .setor-num { display: none; }
  .setor-num { position: static; font-size: 40px; flex-shrink: 0; margin-top: 2px; }
  .setor-icon { font-size: 28px; margin-bottom: 0; flex-shrink: 0; }
  .setor-desc { margin-bottom: 14px; font-size: 15px; }
  .section-title { font-size: 32px; margin-bottom: 32px; }

  /* Localização */
  .localizacao { padding: 72px 0; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-card { padding: 36px 28px; }
  .loc-list li { font-size: 14px; }

  /* Footer */
  .footer { padding: 40px 0 32px; }
  .disclaimer { padding: 18px 20px; }
  .disclaimer p { font-size: 11px; }
}
