@font-face {
  font-family: 'AwesomeSerif';
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/AwesomeSerif-Light.otf') format('opentype');
}
@font-face {
  font-family: 'AwesomeSerif';
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/AwesomeSerif-Regular.otf') format('opentype');
}
@font-face {
  font-family: 'AwesomeSerif';
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/AwesomeSerif-SemiBold.otf') format('opentype');
}
@font-face {
  font-family: 'AwesomeSerif';
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/AwesomeSerif-Bold.otf') format('opentype');
}
@font-face {
  font-family: 'AwesomeSerifItalic';
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url('../fonts/AwesomeSerifItalic-Regular.otf') format('opentype');
}

:root {
  --g: #002519;
  --gold: #DFB250;
  --lime: #E8FFBD;
  --cream: #EDE8DC;
  --white: #F8F5EF;
  --serif: 'AwesomeSerif', Georgia, serif;
  --serif-i: 'AwesomeSerifItalic', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--g);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
#cur {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .18s, height .18s;
}
#cring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(223,178,80,.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
}
body.ch #cur { width: 20px; height: 20px; }
body.ch #cring { width: 56px; height: 56px; border-color: rgba(232,255,189,.55); }

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.9rem 5%;
  transition: background .35s, padding .35s;
}
nav.stuck {
  background: rgba(0,37,25,.97);
  backdrop-filter: blur(14px);
  padding: 1.1rem 5%;
  border-bottom: 1px solid rgba(223,178,80,.1);
}
.nlogo { display: block; width: 170px; text-decoration: none; }
.nlogo img, .nlogo svg { width: 100%; height: auto; }
.nlinks { display: flex; gap: 2.8rem; list-style: none; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.nlinks a { color: rgba(237,232,220,.6); text-decoration: none; transition: color .3s; }
.nlinks a:hover { color: var(--gold); }
.ncta {
  border: 1px solid var(--gold); color: var(--gold);
  padding: .65rem 1.75rem; font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; cursor: none;
  transition: background .3s, color .3s;
}
.ncta:hover { background: var(--gold); color: var(--g); }

/* HERO */
.hero {
  min-height: 100vh; position: relative;
  overflow: hidden; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover; background-position: center 30%;
  filter: brightness(.45) saturate(.85);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,37,25,.82) 0%, rgba(0,37,25,.35) 60%, transparent 100%);
}
.hero-l { position: relative; z-index: 2; padding: 10rem 5% 7rem 8%; max-width: 700px; }
.eyebrow {
  display: flex; align-items: center; gap: 1.1rem;
  font-size: .7rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2.2rem;
  opacity: 0; animation: fup .8s ease .3s forwards;
}
.gbar { display: inline-block; width: 44px; height: 1px; background: var(--gold); }
h1.ht {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  line-height: 1.03; color: var(--white); margin-bottom: 1.8rem;
  opacity: 0; animation: fup .8s ease .5s forwards;
}
h1.ht em { font-family: var(--serif-i); font-style: italic; color: var(--gold); }
.hero-body {
  font-size: 1.08rem; line-height: 1.82;
  color: rgba(237,232,220,.7); font-weight: 300;
  max-width: 48ch; margin-bottom: 3rem;
  opacity: 0; animation: fup .8s ease .7s forwards;
}
.hero-actions {
  display: flex; gap: 2rem; align-items: center;
  opacity: 0; animation: fup .8s ease .9s forwards;
}
.bg {
  background: var(--gold); color: var(--g);
  padding: 1.05rem 2.5rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; cursor: none;
  transition: transform .3s, box-shadow .3s; display: inline-block;
}
.bg:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(223,178,80,.3); }
.bt {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(237,232,220,.55); text-decoration: none; cursor: none;
  transition: color .3s; display: flex; align-items: center; gap: .5rem;
}
.bt:hover { color: var(--cream); }
.bt::after { content: '→'; transition: transform .3s; }
.bt:hover::after { transform: translateX(4px); }

/* DIVIDER */
.dv { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* SECTION TAG */
.stag {
  display: flex; align-items: center; gap: 1.1rem;
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 3.8rem;
}
.snum { font-size: .65rem; letter-spacing: .18em; color: rgba(237,232,220,.2); margin-left: auto; }

/* MANIFESTO */
.manifesto { padding: 9rem 8%; }
.minner { max-width: 860px; margin: 0 auto; text-align: center; }
.mtxt {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.75; color: var(--cream); margin-bottom: 2.5rem;
}
.mtxt strong { font-weight: 600; color: var(--white); }
.mquote {
  font-family: var(--serif-i); font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: rgba(237,232,220,.4); line-height: 1.8;
  max-width: 58ch; margin: 3rem auto 0;
}

/* PILARES */
.pilares { padding: 7rem 8%; background: rgba(0,0,0,.15); }
.pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(223,178,80,.1); }
.pilar {
  background: var(--g); padding: 3.2rem 3rem;
  position: relative; overflow: hidden; transition: background .4s;
}
.pilar::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .55s ease;
}
.pilar:hover::after { width: 100%; }
.pilar:hover { background: rgba(223,178,80,.03); }
.pn { font-size: .6rem; letter-spacing: .28em; color: rgba(223,178,80,.42); margin-bottom: 1.6rem; display: block; }
.pico { width: 34px; height: 34px; margin-bottom: 1.3rem; opacity: .6; }
.ph { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--white); margin-bottom: 1rem; line-height: 1.3; }
.pp { font-size: 1rem; line-height: 1.85; color: rgba(237,232,220,.52); font-weight: 300; }

/* O QUE FAZEMOS — GRID */
.servicos-sec { padding: 7rem 8%; }
.servicos-inner { margin-bottom: 4rem; }
.srv-sub {
  font-size: 1.05rem; line-height: 1.8;
  color: rgba(237,232,220,.5); font-weight: 300;
  max-width: 52ch; margin-top: -1.5rem;
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(223,178,80,.08);
}
.srv-card {
  background: var(--g);
  padding: 3.2rem 2.8rem 3.5rem;
  position: relative; overflow: hidden;
  transition: background .4s;
}
.srv-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; width: 0; height: 2px;
  background: var(--gold);
  transition: width .55s ease;
}
.srv-card:hover::after { width: 100%; }
.srv-card:hover { background: rgba(223,178,80,.04); }
.srv-n {
  font-size: .6rem; letter-spacing: .28em;
  color: rgba(223,178,80,.38); margin-bottom: 1.6rem; display: block;
}
.srv-ico { width: 44px; height: 44px; margin-bottom: 1.6rem; opacity: .65; }
.srv-h {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: var(--white); margin-bottom: 1rem; line-height: 1.3;
}
.srv-p {
  font-size: 1rem; line-height: 1.82;
  color: rgba(237,232,220,.52); font-weight: 300;
  margin-bottom: 1.4rem;
}
.srv-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.srv-list li {
  font-size: .95rem; color: rgba(237,232,220,.42);
  font-weight: 300; padding-left: 1.2rem; position: relative;
}
.srv-list li::before {
  content: '—'; position: absolute; left: 0;
  color: rgba(223,178,80,.35); font-size: .8rem;
}

/* DIFERENCIAL */
.dif { padding: 8rem 8%; display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }
.dm { position: relative; height: 560px; }
.dm-wrap { position: relative; width: 100%; height: 100%; }
.dm-a {
  position: absolute; top: 0; left: 0; width: 70%; height: 72%;
  object-fit: cover; object-position: center top;
  filter: brightness(.78) saturate(.9);
}
.dm-b {
  position: absolute; bottom: 0; right: 0; width: 56%; height: 60%;
  object-fit: cover; object-position: center top;
  filter: brightness(.75) saturate(.9);
  border: 4px solid var(--g);
}
.uau {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-45%, -52%);
  width: 88px; height: 88px;
  background: var(--gold); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 4; box-shadow: 0 0 0 5px var(--g), 0 0 0 7px rgba(223,178,80,.2);
}
.uau strong { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--g); line-height: 1; }
.uau small { font-size: .38rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(0,37,25,.7); font-weight: 600; margin-top: 2px; }
.dq {
  font-family: var(--serif-i); font-style: italic;
  font-size: 1.48rem; line-height: 1.58; color: var(--white);
  font-weight: 300; margin-bottom: 2rem;
  border-left: 2px solid var(--gold); padding-left: 1.8rem;
}
.dt { font-size: 1rem; line-height: 1.85; color: rgba(237,232,220,.55); font-weight: 300; margin-bottom: 2.8rem; }

/* PARCERIAS */
.parcerias { padding: 7rem 8%; background: rgba(0,0,0,.15); }
.ph2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 3.2vw, 3rem); color: var(--white); line-height: 1.15; margin-bottom: 1.4rem; }
.ph2 em { font-family: var(--serif-i); font-style: italic; color: var(--gold); }
.psub { font-size: 1rem; line-height: 1.82; color: rgba(237,232,220,.5); font-weight: 300; max-width: 58ch; margin-bottom: 4.5rem; }
.pgcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(223,178,80,.08); }
.pcard { background: var(--g); padding: 2.8rem; transition: background .4s; }
.pcard:hover { background: rgba(223,178,80,.04); }
.pcn { font-family: var(--serif); font-size: 2.8rem; font-weight: 700; color: rgba(223,178,80,.07); line-height: 1; margin-bottom: 1.4rem; }
.pch { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .9rem; line-height: 1.3; }
.pcp { font-size: .97rem; line-height: 1.85; color: rgba(237,232,220,.45); font-weight: 300; }

/* CTA */
.cta { padding: 9rem 8%; text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%, rgba(223,178,80,.06) 0%, transparent 68%); pointer-events: none; }
.cta-ey { display: flex; align-items: center; justify-content: center; gap: 1.1rem; font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 2.5rem; }
.cta-h { font-family: var(--serif); font-weight: 300; font-size: clamp(2.5rem, 4.8vw, 4.8rem); color: var(--white); line-height: 1.1; max-width: 680px; margin: 0 auto 1.8rem; }
.cta-h em { font-family: var(--serif-i); font-style: italic; color: var(--gold); }
.cta-sub { font-size: 1.05rem; line-height: 1.8; color: rgba(237,232,220,.45); font-weight: 300; max-width: 52ch; margin: 0 auto 3.5rem; }
.bcta {
  display: inline-flex; align-items: center; gap: 1rem;
  background: var(--gold); color: var(--g);
  padding: 1.25rem 3.2rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; cursor: none;
  transition: transform .3s, box-shadow .3s; position: relative; z-index: 1;
}
.bcta:hover { transform: translateY(-3px); box-shadow: 0 20px 55px rgba(223,178,80,.3); }
.cta-micro { display: block; margin: 2.5rem auto 0; font-size: .88rem; color: rgba(237,232,220,.25); font-family: var(--serif-i); font-style: italic; max-width: 58ch; }

/* FOOTER */
footer { border-top: 1px solid rgba(223,178,80,.1); padding: 4.5rem 8% 2.5rem; display: grid; grid-template-columns: 1.6fr 1fr; gap: 5rem; align-items: start; }
.flogo { width: 190px; margin-bottom: 1.3rem; display: block; }
.flogo img, .flogo svg { width: 100%; height: auto; }
.ftag { font-family: var(--serif-i); font-style: italic; font-size: .92rem; color: rgba(237,232,220,.3); line-height: 1.7; max-width: 38ch; }
.flinks { display: flex; flex-direction: column; gap: 1rem; padding-top: .3rem; }
.flinks a { color: rgba(237,232,220,.45); text-decoration: none; font-size: 1rem; font-weight: 300; transition: color .3s; }
.flinks a:hover { color: var(--gold); }
.fbot { border-top: 1px solid rgba(223,178,80,.07); padding: 1.6rem 8%; }
.fcopy { font-size: .78rem; color: rgba(237,232,220,.2); letter-spacing: .04em; }

/* REVEAL */
.rv { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s ease; }
.rv.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

@keyframes fup { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-l { padding: 8rem 6% 5rem; max-width: 100%; }
  .pgrid { grid-template-columns: 1fr; }
  .srv-grid { grid-template-columns: 1fr; }
  .dif { grid-template-columns: 1fr; gap: 4rem; }
  .dm { height: 320px; }
  .pgcards { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 2.5rem; }
  .nlinks { display: none; }
}
