
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --deep:    #060d18;
  --navy:    #0a1628;
  --blue:    #0f3460;
  --accent:  #1a6bd6;
  --gold:    #c8943a;
  --gold-lt: #e8b86d;
  --white:   #ffffff;
  --off:     #f4f6f9;
  --mist:    #eef1f7;
  --steel:   #5a6a82;
  --border:  #dde3ed;
  --text:    #1a2332;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  background: transparent;
  transition: all .4s ease;
}
nav.solid {
  background: rgba(6,13,24,.97);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}
.nl img { height: 50px; width: auto; display: block; transition: filter .3s; }
.nm { display: flex; gap: .2rem; list-style: none; align-items: center; }
.nm a {
  display: block; padding: .5rem 1rem;
  color: rgba(255,255,255,.65); font-size: .84rem; font-weight: 500;
  text-decoration: none; border-radius: 8px;
  letter-spacing: .02em;
  transition: all .2s;
}
.nm a:hover, .nm a.active { color: #fff; background: rgba(255,255,255,.08); }
.nm a.active { font-weight: 600; }
.nm .ncta {
  background: var(--gold) !important; color: #fff !important;
  font-weight: 700 !important; padding: .55rem 1.4rem !important;
  border-radius: 8px !important;
}
.nm .ncta:hover { background: var(--gold-lt) !important; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.burger span { display: block; width: 26px; height: 2px; background: #fff; transition: all .3s; border-radius: 2px; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mob {
  display: none; position: fixed; inset: 76px 0 0 0;
  background: var(--deep); z-index: 399; padding: 2rem;
  flex-direction: column; gap: .5rem; overflow-y: auto;
}
.mob.open { display: flex; }
.mob a {
  padding: 1rem 1.25rem; color: rgba(255,255,255,.8);
  text-decoration: none; border-radius: 10px; font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .2s;
}
.mob a:hover { color: #fff; background: rgba(255,255,255,.06); }

/* ─── PAGE HEADER ─── */
.ph {
  background: var(--deep);
  padding: 10rem 2rem 5.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 15% 60%, rgba(26,107,214,.2) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(200,148,58,.1) 0%, transparent 50%);
}
.ph-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,148,58,.4), transparent);
}
.ph-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(200,148,58,.12); border: 1px solid rgba(200,148,58,.3);
  padding: .38rem 1.1rem; border-radius: 50px;
  font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 1.5rem;
}
.ph h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700;
  color: #fff; line-height: 1.08; margin-bottom: 1rem;
}
.ph p { max-width: 520px; margin: 0 auto; color: rgba(255,255,255,.55); font-size: 1rem; font-weight: 300; }

/* ─── LAYOUT ─── */
section { padding: 6.5rem 2rem; }
.wrap { max-width: 1200px; margin: 0 auto; }

.lbl {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--gold); font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: .85rem;
}
.lbl::before { content: ''; width: 20px; height: 1.5px; background: var(--gold); display: block; }

h2.ht {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--text); line-height: 1.15; margin-bottom: 1.1rem;
}
h2.ht.wh { color: #fff; }

/* ─── BOTÕES ─── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 2rem; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 700;
  text-decoration: none; transition: all .3s; cursor: pointer; border: none;
  letter-spacing: .025em;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,148,58,.4); }
.btn-deep { background: var(--deep); color: #fff; }
.btn-deep:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(10,22,40,.4); }
.btn-ghost-w { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost-w:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ─── REVEAL ─── */
.rv { opacity: 0; transform: translateY(36px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.rv.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .12s; } .d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; } .d4 { transition-delay: .48s; }

/* ─── FOOTER ─── */
footer {
  background: var(--deep); color: rgba(255,255,255,.5);
  padding: 5rem 2rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,.04);
}
.fi { max-width: 1200px; margin: 0 auto; }
.fg { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 3.5rem; }
.flogo { height: 46px; filter: brightness(0) invert(1); opacity: .75; display: block; margin-bottom: 1.5rem; }
.fdesc { font-size: .82rem; line-height: 1.85; color: rgba(255,255,255,.38); }
.fg h4 { color: rgba(255,255,255,.9); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.25rem; }
.fg ul { list-style: none; }
.fg li { margin-bottom: .55rem; }
.fg a { color: rgba(255,255,255,.38); text-decoration: none; font-size: .82rem; transition: color .2s; }
.fg a:hover { color: rgba(255,255,255,.9); }
.fg-gold { color: var(--gold-lt) !important; }
.fbot {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem; font-size: .75rem; color: rgba(255,255,255,.25);
}
.fbot a { color: rgba(255,255,255,.25); text-decoration: none; }
.fbot a:hover { color: rgba(255,255,255,.6); }
.fbar { width: 1px; height: 12px; background: rgba(255,255,255,.1); }

/* ─── COOKIE BANNER ─── */
#ck {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--navy);
  border-top: 1px solid rgba(200,148,58,.2);
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  box-shadow: 0 -8px 40px rgba(0,0,0,.4);
  transform: translateY(0); transition: transform .5s cubic-bezier(.16,1,.3,1);
}
#ck.gone { transform: translateY(110%); }
.ck-txt { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.65; max-width: 680px; }
.ck-txt a { color: var(--gold-lt); }
.ck-btns { display: flex; gap: .75rem; flex-shrink: 0; }
.ck-ok {
  background: var(--gold); color: #fff; border: none;
  padding: .65rem 1.5rem; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: .82rem; font-weight: 700;
  cursor: pointer; transition: background .2s;
}
.ck-ok:hover { background: var(--gold-lt); }
.ck-no {
  background: transparent; color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.15);
  padding: .65rem 1.25rem; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: .82rem;
  cursor: pointer; transition: all .2s;
}
.ck-no:hover { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.4); }

/* ─── AVISO LEGAL ─── */
.legal-strip {
  background: var(--mist);
  border-top: 1px solid var(--border);
  padding: 1.1rem 2rem;
}
.legal-strip-in {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.legal-strip p { font-size: .76rem; color: #8a97aa; line-height: 1.65; }
.legal-strip a { color: var(--steel); font-weight: 600; text-decoration: none; }
.legal-strip a:hover { color: var(--accent); }
.lr-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1.5px solid var(--border);
  padding: .45rem 1rem; border-radius: 8px;
  font-size: .76rem; font-weight: 700; color: var(--text);
  text-decoration: none; white-space: nowrap;
  transition: all .2s; flex-shrink: 0;
}
.lr-btn:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nm { display: none; }
  .burger { display: flex; }
  .fg { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .fbot { flex-direction: column; text-align: center; }
  .fbar { display: none; }
  #ck { padding: 1.25rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .ck-btns { width: 100%; }
  .ck-ok, .ck-no { flex: 1; text-align: center; }
}
@media (max-width: 500px) { .fg { grid-template-columns: 1fr; } }
