/* ── RESET & ROOT ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; cursor: none !important; }
:root {
  --green:       #1D9E75;
  --green-dark:  #0F6E56;
  --green-glow:  rgba(29,158,117,0.15);
  --bg:          #080808;
  --bg2:         #111111;
  --bg3:         #1a1a1a;
  --border:      rgba(255,255,255,0.07);
  --border-h:    rgba(255,255,255,0.14);
  --w60:         rgba(255,255,255,0.6);
  --w40:         rgba(255,255,255,0.4);
  --w25:         rgba(255,255,255,0.25);
}
html  { scroll-behavior: smooth; }
body  { background: var(--bg); color: #fff; font-family: 'DM Sans', Arial, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection        { background: var(--green); color: #080808; }
::-webkit-scrollbar           { width: 3px; }
::-webkit-scrollbar-thumb     { background: var(--green); border-radius: 2px; }

/* ── CUSTOM CURSOR ─────────────────────────────── */
#cc {
  position: fixed; top: 0; left: 0; z-index: 99999;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--green); pointer-events: none;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 16px rgba(29,158,117,.6);
  transition: width .2s, height .2s;
}
#cr {
  position: fixed; top: 0; left: 0; z-index: 99998;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(29,158,117,.4); pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, border-color .3s;
}
body:has(a:hover) #cc,
body:has(button:hover) #cc { width: 20px; height: 20px; }
body:has(a:hover) #cr,
body:has(button:hover) #cr { width: 52px; height: 52px; border-color: rgba(29,158,117,.6); }

/* ── NAV ───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,8,8,.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 64px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: 'Bricolage Grotesque', Georgia, serif; font-weight: 800; font-size: 18px; text-decoration: none; color: #fff; }
.logo span { color: var(--green); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--w60); text-decoration: none; font-size: 14px; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active { color: var(--green); }
.nav-cta { background: var(--green); color: #fff; padding: 9px 20px; border-radius: 20px; font-size: 13px; font-weight: 500; text-decoration: none; transition: background .2s; }
.nav-cta:hover { background: var(--green-dark); }

/* ── LANGUAGE TOGGLE ───────────────────────────── */
#lang-toggle {
  background: none; border: 1px solid var(--border);
  color: var(--w40); font-family: 'DM Sans', Arial, sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: .06em;
  padding: 6px 12px; border-radius: 20px;
  cursor: pointer !important;
  display: flex; align-items: center; gap: 5px;
  margin-right: 8px; transition: border-color .2s, color .2s;
  flex-shrink: 0;
}
#lang-toggle:hover { border-color: var(--border-h); color: rgba(255,255,255,.7); }
.lt-sep { color: var(--border-h); font-size: 10px; }
#lang-toggle[data-lang="pt"] .lt-pt { color: #fff; }
#lang-toggle[data-lang="en"] .lt-en { color: #fff; }
@media (max-width: 900px) { #lang-toggle { margin-right: 0; } }

/* ── MARQUEE ───────────────────────────────────── */
.marquee-wrap  { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { white-space: nowrap; font-size: 13px; color: rgba(255,255,255,.35); letter-spacing: .05em; display: flex; align-items: center; gap: 10px; }
.marquee-item::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: rgba(29,158,117,.5); flex-shrink: 0; }

/* ── SKILL BARS ────────────────────────────────── */
.skill-bar-track { background: rgba(255,255,255,.06); border-radius: 4px; height: 6px; overflow: hidden; }
.skill-bar-fill  { height: 100%; border-radius: 4px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 1.2s cubic-bezier(.22,1,.36,1); }
.skill-bar-fill.on { transform: scaleX(1); }

/* ── BUTTONS ───────────────────────────────────── */
.btn-p {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff;
  padding: 14px 30px; border-radius: 30px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: background .2s, transform .2s;
  box-shadow: 0 0 28px rgba(29,158,117,.2);
}
.btn-p:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-o {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-h); color: var(--w60);
  padding: 14px 30px; border-radius: 30px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: color .2s, border-color .2s;
}
.btn-o:hover { color: #fff; border-color: rgba(255,255,255,.25); }

/* ── SECTION BASE ──────────────────────────────── */
.section      { padding: 88px 48px; border-top: 1px solid var(--border); }
.section.dark { background: var(--bg2); }
.inner        { max-width: 1100px; margin: 0 auto; }
.stag {
  font-size: 11px; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.sec-title {
  font-family: 'Bricolage Grotesque', Georgia, serif;
  font-weight: 800; font-size: clamp(28px,3.5vw,48px);
  line-height: 1.1; margin-bottom: 16px;
}
.sec-title .muted { color: var(--w25); }
.sec-sub { color: var(--w60); font-size: 16px; line-height: 1.65; max-width: 520px; }

/* ── BADGE ─────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--green);
  border: 1px solid rgba(29,158,117,.3); background: rgba(29,158,117,.1);
  padding: 7px 14px; border-radius: 20px;
}
.badge.yellow { color: #fbbf24; border-color: rgba(251,191,36,.3); background: rgba(251,191,36,.08); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 1.5s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.85)} }

/* ── FOOTER ────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.foot-links { display: flex; gap: 22px; }
.foot-links a { font-size: 13px; color: var(--w40); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: #fff; }
.foot-copy { font-size: 12px; color: rgba(255,255,255,.2); }

/* ── WA FAB ────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(29,158,117,.4);
}
.wa-fab:hover { background: var(--green-dark); transform: scale(1.08); }

/* ── REVEAL ANIMATIONS ─────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .section { padding: 64px 24px; }
  footer { padding: 24px; }
}
