:root {
  --bg:       #060e08;
  --s1:       #0b1a0f;
  --s2:       #111f16;
  --green:    oklch(68% 0.19 145);
  --green-d:  oklch(48% 0.15 145);
  --green-gw: oklch(68% 0.19 145 / 0.13);
  --tx:       #d8ead0;
  --tx-m:     oklch(58% 0.07 145);
  --bd:       oklch(68% 0.19 145 / 0.14);
  --nav-h:    68px;
  --r:        12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--tx);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Sora', sans-serif; line-height: 1.15; }
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); padding: 0 6vw;
  display: flex; align-items: center; justify-content: space-between;
  background: oklch(5% 0.03 145 / 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
  transition: background .3s;
}
nav.scrolled { background: oklch(5% 0.03 145 / 0.97); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--tx);
}
.logo-mark { width: 30px; height: 30px; }
.logo-text { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; }
.logo-text em { color: var(--green); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--tx-m); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--tx); }

.nav-cta {
  padding: 0.5rem 1.2rem;
  background: var(--green); color: #060e08;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.85rem;
  border-radius: 7px; text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────── */
#hero {
  min-height: 100vh;
  padding: var(--nav-h) 6vw 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--bd); border-radius: 100px;
  padding: 0.3rem 0.85rem; margin-bottom: 1.75rem;
}
.eyebrow-dot {
  width: 6px; height: 6px; background: var(--green);
  border-radius: 50%; animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 1.25rem;
}
.hero-title .accent { color: var(--green); }

.hero-sub {
  font-size: 1rem; color: var(--tx-m);
  max-width: 500px; line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-p {
  padding: 0.9rem 1.8rem;
  background: var(--green); color: #060e08;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.9rem;
  border-radius: 8px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-p:hover { transform: translateY(-3px); box-shadow: 0 10px 35px oklch(68% 0.19 145 / 0.35); }

.btn-s {
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--bd); color: var(--tx);
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.9rem;
  border-radius: 8px; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-s:hover { border-color: var(--green); color: var(--green); }

/* Hero card */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
  height: 480px;
}
.hero-card {
  background: oklch(11% 0.04 145 / 0.85);
  border: 1px solid var(--bd); border-radius: 18px;
  padding: 1.75rem; width: 320px;
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 90px oklch(0% 0 0 / 0.55);
}
.hc-tag {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--green); margin-bottom: 1rem;
}
.hc-bars {
  display: flex; align-items: flex-end;
  gap: 5px; height: 72px; margin-bottom: 1rem;
}
.hc-bar {
  flex: 1; background: var(--s2);
  border-radius: 4px 4px 0 0;
  position: relative; overflow: hidden;
}
.hc-bar-fill {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, var(--green), oklch(78% 0.17 145));
  border-radius: 3px 3px 0 0;
  height: 0%; transition: height 1.4s cubic-bezier(.34,1.5,.64,1);
}
.hc-title {
  font-family: 'Sora', sans-serif; font-size: 0.95rem;
  font-weight: 700; color: #fff; margin-bottom: 0.25rem;
}
.hc-sub { font-size: 0.75rem; color: var(--tx-m); }
.hc-metrics {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem; margin-top: 1.1rem;
}
.hc-metric { background: var(--s1); border-radius: 8px; padding: 0.7rem; }
.hc-m-val {
  font-family: 'Sora', sans-serif; font-size: 1rem;
  font-weight: 800; color: var(--green);
}
.hc-m-lbl { font-size: 0.68rem; color: var(--tx-m); margin-top: 2px; }

/* ── STATS ────────────────────────────────── */
#stats { padding: 4rem 6vw; }
.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--bd);
  border: 1px solid var(--bd); border-radius: 16px; overflow: hidden;
}
.stat-box { background: var(--s1); padding: 2.5rem 2rem; text-align: center; }
.stat-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--green);
  letter-spacing: -0.02em;
}
.stat-lbl { font-size: 0.875rem; color: var(--tx-m); margin-top: 0.5rem; }

/* ── SECTION COMMONS ─────────────────────── */
.sec { padding: 6rem 6vw; }
.sec-alt { background: var(--s1); }

.label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.11em;
  color: var(--green); margin-bottom: 0.9rem;
}
.title {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700; letter-spacing: -0.025em;
  color: #fff; margin-bottom: 1.1rem;
}
.sub {
  font-size: 0.975rem; color: var(--tx-m);
  max-width: 520px; line-height: 1.8;
}
.sec-head { text-align: center; margin-bottom: 3.5rem; }
.sec-head .sub { margin: 0 auto; }

/* ── ABOUT ────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.about-feats { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }
.feat {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; background: var(--s1);
  border: 1px solid var(--bd); border-radius: var(--r);
  transition: border-color .2s;
}
.feat:hover { border-color: oklch(68% 0.19 145 / 0.4); }
.feat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--green-gw); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.1rem;
}
.feat h4 {
  font-family: 'Sora', sans-serif; font-size: 0.92rem;
  font-weight: 600; color: #fff; margin-bottom: 0.25rem;
}
.feat p { font-size: 0.83rem; color: var(--tx-m); line-height: 1.65; }

.about-right { display: flex; flex-direction: column; gap: 1rem; }
.mc {
  background: var(--s2); border: 1px solid var(--bd);
  border-radius: 16px; padding: 1.75rem;
}
.mc h3 {
  font-family: 'Sora', sans-serif; font-size: 0.95rem;
  font-weight: 700; color: #fff; margin-bottom: 0.75rem;
}
.mc p { font-size: 0.875rem; color: var(--tx-m); line-height: 1.75; }
.ceo {
  display: flex; align-items: center; gap: 0.9rem;
  margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--bd);
}
.ceo-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-gw); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 0.75rem; color: var(--green); flex-shrink: 0;
}
.ceo-name { font-size: 0.88rem; font-weight: 600; color: #fff; }
.ceo-role { font-size: 0.72rem; color: var(--tx-m); margin-top: 2px; }

/* ── TRAINING ─────────────────────────────── */
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
}
.tc {
  background: var(--bg); border: 1px solid var(--bd);
  border-radius: 16px; padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden; cursor: pointer;
}
.tc::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.tc:hover { transform: translateY(-5px); border-color: oklch(68% 0.19 145 / 0.4); box-shadow: 0 20px 55px oklch(0% 0 0 / 0.45); }
.tc:hover::after { transform: scaleX(1); }
.tc-icon {
  width: 50px; height: 50px; background: var(--green-gw);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--green);
}
.tc-icon svg { width: 24px; height: 24px; }
.tc-tag {
  display: inline-block; width: fit-content;
  font-size: 0.67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--green); background: var(--green-gw);
  padding: 0.22rem 0.6rem; border-radius: 100px;
}
.tc h3 {
  font-family: 'Sora', sans-serif; font-size: 1rem;
  font-weight: 700; color: #fff;
}
.tc p { font-size: 0.83rem; color: var(--tx-m); line-height: 1.65; flex: 1; }
.tc-link {
  font-size: 0.83rem; color: var(--green); font-weight: 600;
  display: flex; align-items: center; gap: 4px;
  text-decoration: none; margin-top: auto;
  transition: gap .2s;
}
.tc-link:hover { gap: 8px; }

/* ── CONSULTORIA ──────────────────────────── */
.consult-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.consult-list { display: flex; flex-direction: column; gap: 1rem; }
.cs {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.4rem; background: var(--bg);
  border: 1px solid var(--bd); border-radius: var(--r);
  transition: border-color .2s, background .2s;
}
.cs:hover { border-color: oklch(68% 0.19 145 / 0.45); background: var(--s2); }
.cs-num {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--green-gw); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 0.7rem;
  font-weight: 800; color: var(--green);
}
.cs h4 {
  font-family: 'Sora', sans-serif; font-size: 0.92rem;
  font-weight: 600; color: #fff; margin-bottom: 0.3rem;
}
.cs p { font-size: 0.83rem; color: var(--tx-m); line-height: 1.65; }

.cv {
  background: var(--s2); border: 1px solid var(--bd);
  border-radius: 18px; padding: 2.25rem;
  position: sticky; top: calc(var(--nav-h) + 2rem);
}
.cv-quote {
  font-size: 1.1rem; font-style: italic; color: var(--tx);
  line-height: 1.8; border-left: 3px solid var(--green);
  padding-left: 1.25rem; margin-bottom: 1.5rem;
}
.cv p { font-size: 0.875rem; color: var(--tx-m); line-height: 1.75; }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.tag {
  padding: 0.38rem 0.8rem;
  background: var(--s1); border: 1px solid var(--bd);
  border-radius: 100px; font-size: 0.78rem; color: var(--tx-m);
  font-weight: 500; transition: all .2s;
}
.tag:hover { border-color: var(--green); color: var(--green); }
.cv-cta { margin-top: 2rem; }

/* ── CONTACT ──────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.45rem; }
.fg label { font-size: 0.82rem; font-weight: 500; color: var(--tx-m); }
.fg input, .fg textarea, .fg select {
  background: var(--bg); border: 1px solid var(--bd);
  color: var(--tx); border-radius: 8px;
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  outline: none; transition: border-color .2s;
  appearance: none;
}
.fg textarea { min-height: 120px; resize: none; }
.fg input::placeholder, .fg textarea::placeholder { color: oklch(40% 0.05 145); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--green); }

.form-btn {
  padding: 0.9rem; background: var(--green);
  color: #060e08; font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  border: none; border-radius: 8px;
  cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.form-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px oklch(68% 0.19 145 / 0.35); }

.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.info-items { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.ii { display: flex; gap: 1rem; align-items: center; }
.ii-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--green-gw); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1rem;
}
.ii-txt { font-size: 0.88rem; color: var(--tx); }
.ii-lbl { display: block; font-size: 0.72rem; color: var(--tx-m); margin-bottom: 2px; }

.socials { display: flex; gap: 0.65rem; }
.soc {
  width: 40px; height: 40px; background: var(--s2);
  border: 1px solid var(--bd); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--tx-m); text-decoration: none;
  transition: border-color .2s, color .2s, transform .2s;
}
.soc:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.soc svg { width: 17px; height: 17px; }

/* ── FOOTER ───────────────────────────────── */
footer {
  background: var(--bg); border-top: 1px solid var(--bd);
  padding: 2.5rem 6vw;
}
.ft {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.ft-left { display: flex; flex-direction: column; gap: 0.35rem; }
.ft-tagline { font-size: 0.78rem; color: var(--tx-m); }
.ft-copy { font-size: 0.72rem; color: oklch(38% 0.05 145); }
.ft-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.ft-links a {
  font-size: 0.82rem; color: var(--tx-m);
  text-decoration: none; transition: color .2s;
}
.ft-links a:hover { color: var(--green); }

/* ── REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid, .consult-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
