/* ══════════════════════════════════════════════
   DOMINANDO CLOUD — Design System
   ══════════════════════════════════════════════ */

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

:root {
  --bg:          #07090f;
  --bg-surface:  #0d1421;
  --bg-card:     rgba(255,255,255,0.03);
  --bg-card-h:   rgba(255,255,255,0.055);

  --border:      rgba(255,255,255,0.08);
  --border-h:    rgba(255,255,255,0.18);

  --blue:        #3b82f6;
  --blue-l:      #93c5fd;
  --blue-dim:    rgba(59,130,246,0.12);
  --blue-glow:   rgba(59,130,246,0.3);

  --purple:      #8b5cf6;
  --purple-dim:  rgba(139,92,246,0.12);

  --green:       #10b981;
  --green-dim:   rgba(16,185,129,0.12);

  --gold:        #f59e0b;
  --gold-dim:    rgba(245,158,11,0.12);

  --orange:      #f97316;
  --orange-dim:  rgba(249,115,22,0.12);

  --wa:          #25d366;
  --wa-dim:      rgba(37,211,102,0.12);

  --text:        #f1f5f9;
  --text-m:      #94a3b8;
  --text-s:      #4b5563;

  --r-2xl:  40px;
  --r-xl:   28px;
  --r-lg:   20px;
  --r-md:   14px;
  --r-sm:    8px;
  --r-full: 9999px;

  --font-d: 'Space Grotesk', system-ui, sans-serif;
  --font-b: 'Inter', system-ui, sans-serif;

  --nav-h: 76px;
}

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

/* ── BACKGROUND GRADIENTS ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 80% 10%, rgba(59,130,246,0.11), transparent 55%),
    radial-gradient(ellipse 70% 55% at 15% 75%, rgba(139,92,246,0.08), transparent 55%),
    radial-gradient(ellipse 60% 45% at 50% 0%,  rgba(16,185,129,0.05),  transparent 50%),
    radial-gradient(ellipse 50% 35% at 90% 85%, rgba(245,158,11,0.06),  transparent 45%);
  pointer-events: none;
  z-index: 0;
}

/* ── GALAXY CANVAS ── */
#galaxyBg {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  opacity: 0.6;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, background .25s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 34px; height: 34px;
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, border-color .2s;
}

/* ── SCROLL PROGRESS ── */
.progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--green));
  z-index: 500;
  box-shadow: 0 0 10px var(--blue-glow);
}

/* ══════════════════════════════════════════════
   NAV — Floating Pill
   ══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-inner {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7,9,15,0.75);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 10px 14px 10px 20px;
  gap: 16px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 18px; height: 18px; }
.nav-logo-text {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  letter-spacing: -0.3px;
}
.nav-logo-text span { color: var(--blue-l); }

.nav-links {
  display: flex; gap: 2px;
  list-style: none; align-items: center;
}
.nav-links a {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-m);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--r-full);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--text); background: rgba(255,255,255,0.08); }

.nav-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: var(--r-full);
  background: rgba(245,158,11,0.15);
  color: var(--gold);
  border: 1px solid rgba(245,158,11,0.25);
}

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  background: var(--blue);
  color: #fff;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: #2563eb;
  box-shadow: 0 0 24px var(--blue-glow);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  background: transparent;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-m);
  border-radius: 2px;
  transition: all .2s;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(7,9,15,0.96);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--blue-l); }
.nav-mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: var(--text-m); font-size: 28px;
  cursor: pointer;
}

/* ══════════════════════════════════════════════
   LAYOUT UTILITIES
   ══════════════════════════════════════════════ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative; z-index: 1;
}

section {
  position: relative; z-index: 1;
  padding: 100px 0;
}
.pt-nav { padding-top: calc(var(--nav-h) + 60px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue-l);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

h1, h2, h3 { font-family: var(--font-d); font-weight: 800; line-height: 1.1; letter-spacing: -0.5px; }

.heading-xl {
  font-size: clamp(48px, 8vw, 92px);
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1.0;
}
.heading-lg {
  font-size: clamp(36px, 6vw, 64px);
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.05;
}
.heading-md {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--text);
  letter-spacing: -0.8px;
}

.lead {
  font-size: 20px;
  color: var(--text-m);
  line-height: 1.8;
  max-width: 580px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue-l) 0%, #c7d2fe 60%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  position: relative;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}
.card:hover {
  border-color: var(--border-h);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.1), 0 32px 64px rgba(0,0,0,0.5);
}
.card-pad { padding: 32px; }
.card-pad-lg { padding: 48px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r-full);
  font-family: var(--font-b);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  border: none; cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: #2563eb;
  box-shadow: 0 0 32px var(--blue-glow);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-m);
}
.btn-outline:hover {
  border-color: var(--border-h);
  color: var(--text);
  background: var(--bg-card-h);
}
.btn-gold {
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--gold);
}
.btn-gold:hover {
  background: rgba(245,158,11,0.25);
  border-color: rgba(245,158,11,0.5);
  box-shadow: 0 0 28px rgba(245,158,11,0.2);
  transform: translateY(-2px);
}
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  color: var(--wa);
}
.btn-wa:hover {
  background: rgba(37,211,102,0.2);
  border-color: rgba(37,211,102,0.4);
  box-shadow: 0 0 24px rgba(37,211,102,0.18);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ── CHIPS / TAGS ── */
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-m);
}
.chip-blue { background: var(--blue-dim); border-color: rgba(59,130,246,0.2); color: var(--blue-l); }
.chip-green { background: var(--green-dim); border-color: rgba(16,185,129,0.2); color: #6ee7b7; }
.chip-purple { background: var(--purple-dim); border-color: rgba(139,92,246,0.2); color: #c4b5fd; }
.chip-gold { background: var(--gold-dim); border-color: rgba(245,158,11,0.2); color: #fcd34d; }

/* ── STAT BLOCK ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.stat-cell {
  background: var(--bg-card);
  padding: 28px 24px;
  text-align: center;
  transition: background .2s;
}
.stat-cell:hover { background: var(--bg-card-h); }
.stat-num {
  font-family: var(--font-d);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1;
}
.stat-num em { font-style: normal; color: var(--blue-l); }
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-s);
  margin-top: 8px;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.reveal.up { opacity: 1; transform: translateY(0); }

/* ── LINK ITEMS ── */
.link-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all .2s;
}
.link-item:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateX(4px);
}
.link-item-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.link-item-icon img, .link-item-icon svg {
  width: 22px; height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(.85);
}
.link-item-body { flex: 1; }
.link-item-name { font-size: 15px; font-weight: 600; color: var(--text); }
.link-item-sub  { font-size: 13px; font-weight: 400; color: var(--text-m); margin-top: 2px; }
.link-item-arrow { font-size: 14px; color: var(--text-s); transition: transform .2s, color .2s; }
.link-item:hover .link-item-arrow { transform: translateX(4px); color: var(--blue-l); }

/* ══════════════════════════════════════════════
   SPA — TAB PAGES
   ══════════════════════════════════════════════ */
.page-section {
  display: none;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}
.page-section.active {
  display: block;
  animation: pageIn .22s ease;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-section > .coming-soon {
  padding-top: calc(var(--nav-h) + 20px);
  min-height: calc(100vh - var(--nav-h));
}

/* ══════════════════════════════════════════════
   HOME — HERO
   ══════════════════════════════════════════════ */
.home-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  padding-bottom: 40px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-l);
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.25);
  margin-bottom: 24px;
}
.hero-kicker-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:.2} }

.hero-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 21px;
  color: var(--text-m);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-side {
  display: flex; flex-direction: column; gap: 14px;
}

.hero-photo-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 260px;
  position: relative;
}
.hero-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform .6s;
  display: block;
}
.hero-photo-card:hover img { transform: scale(1.03); }
.hero-photo-badge {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  background: rgba(7,9,15,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--r-full);
  padding: 7px 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue-l);
  text-align: center;
}

.hero-mini-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-mini-cell {
  padding: 20px;
  border-radius: var(--r-lg);
}
.hero-mini-val {
  font-family: var(--font-d);
  font-size: 28px; font-weight: 800;
  letter-spacing: -1px;
  color: var(--text); line-height: 1;
}
.hero-mini-val em { font-style: normal; color: var(--blue-l); }
.hero-mini-label { font-size: 12px; color: var(--text-m); margin-top: 6px; line-height: 1.4; }

/* Home hero centralizado */
.home-hero-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.home-hero-center .hero-title { letter-spacing: -3px; }
.home-hero-center .hero-sub { max-width: 620px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════
   HOME — FEATURES
   ══════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  padding: 36px 32px;
  border-radius: var(--r-xl);
  cursor: default;
}
.feature-card:hover { transform: translateY(-6px); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.feature-icon-blue  { background: var(--blue-dim);   border: 1px solid rgba(59,130,246,0.2); }
.feature-icon-green { background: var(--green-dim);  border: 1px solid rgba(16,185,129,0.2); }
.feature-icon-gold  { background: var(--gold-dim);   border: 1px solid rgba(245,158,11,0.2); }
.feature-icon svg { width: 24px; height: 24px; }
.feature-icon-blue  svg { stroke: var(--blue); }
.feature-icon-green svg { stroke: var(--green); }
.feature-icon-gold  svg { stroke: var(--gold); }
.feature-title { font-family: var(--font-d); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feature-desc  { font-size: 16px; color: var(--text-m); line-height: 1.7; margin-bottom: 20px; }

/* ══════════════════════════════════════════════
   MENTORIA PAGE
   ══════════════════════════════════════════════ */
.mentoria-hero { text-align: center; padding-bottom: 60px; }
.mentoria-hero .heading-xl { max-width: 780px; margin: 0 auto 20px; }
.mentoria-hero .lead { margin: 0 auto 40px; text-align: left; max-width: 620px; }

.mentor-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
.mentor-photo-wrap {
  position: sticky; top: calc(var(--nav-h) + 24px);
}
.mentor-photo-box {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 400px;
  position: relative;
  border: 1px solid var(--border);
}
.mentor-photo-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
  filter: grayscale(20%);
  transition: filter .6s;
}
.mentor-photo-box:hover img { filter: grayscale(0%); }

.mentor-certs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 16px;
}

.mentor-body { display: flex; flex-direction: column; gap: 24px; }

.mentor-quote {
  border-left: 3px solid var(--blue);
  padding: 20px 24px;
  background: var(--blue-dim);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.mentor-quote p {
  font-size: 19px;
  font-style: italic;
  color: var(--text-m);
  line-height: 1.7;
}
.mentor-quote p strong { color: var(--text); font-style: normal; font-weight: 600; }

.mentor-insights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mentor-insight-item {
  display: flex; gap: 12px;
  padding: 18px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.mentor-insight-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.15);
  display: flex; align-items: center; justify-content: center;
}
.mentor-insight-icon svg { width: 18px; height: 18px; stroke: var(--blue-l); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mentor-insight-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.mentor-insight-text  { font-size: 13px; color: var(--text-m); line-height: 1.5; }

.mentor-numbers {
  display: flex; flex-direction: column; gap: 10px;
}
.mentor-num-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--text-m);
}
.mentor-num-row::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.mentor-num-row strong { color: var(--text); font-weight: 600; }

/* Plans */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.plan-card {
  padding: 36px;
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plan-card.featured {
  background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, rgba(245,158,11,0.02) 100%);
  border-color: rgba(245,158,11,0.25);
}
.plan-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.plan-badge-blue { background: var(--blue-dim); color: var(--blue-l); border: 1px solid rgba(59,130,246,0.2); }
.plan-badge-gold { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(245,158,11,0.25); }
.plan-name {
  font-family: var(--font-d);
  font-size: 24px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.plan-price {
  font-family: var(--font-d);
  font-size: 48px; font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.plan-price-blue { color: var(--blue-l); }
.plan-price-gold { color: var(--gold); }
.plan-price span { font-size: 16px; font-weight: 400; color: var(--text-m); letter-spacing: 0; }
.plan-desc {
  font-size: 16px; color: var(--text-m);
  line-height: 1.7; margin-bottom: 20px;
}
.plan-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px; flex: 1;
}
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-m);
}
.plan-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-card.featured .plan-features li::before { color: var(--gold); }

/* Google Calendar Button zone */
.gcal-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border-radius: var(--r-xl);
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.2);
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.gcal-label {
  font-family: var(--font-d);
  font-size: 22px; font-weight: 700;
  color: var(--text);
}
.gcal-sub { font-size: 15px; color: var(--text-m); }

/* ══════════════════════════════════════════════
   SOBRE PAGE
   ══════════════════════════════════════════════ */
.sobre-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}
.sobre-sticky { position: sticky; top: calc(var(--nav-h) + 24px); }

.sobre-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.sobre-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  display: block;
}
.sobre-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.sobre-social {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-m);
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  transition: all .2s;
}
.sobre-social:hover {
  border-color: var(--border-h);
  color: var(--text);
  background: var(--bg-card-h);
}
.sobre-social img { width: 14px; height: 14px; filter: brightness(0) invert(.75); }

.sobre-content { display: flex; flex-direction: column; gap: 48px; }

.sobre-bio p {
  font-size: 17px; color: var(--text-m);
  line-height: 1.85; margin-bottom: 16px;
}
.sobre-bio p:last-child { margin-bottom: 0; }
.sobre-bio strong { color: var(--text); font-weight: 600; }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 20px; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
}
.timeline-period {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--blue); padding-top: 3px;
  text-align: right;
}
.timeline-body {
  padding: 24px;
  border-radius: var(--r-lg);
  border-left: 2px solid var(--blue-dim);
}
.timeline-title { font-family: var(--font-d); font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.timeline-company { font-size: 14px; color: var(--text-m); margin-bottom: 10px; }
.timeline-desc { font-size: 15px; color: var(--text-m); line-height: 1.7; }

/* Certs */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cert-card {
  padding: 20px;
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .25s, border-color .25s;
}
.cert-card:hover { transform: translateY(-4px); border-color: var(--border-h); }
.cert-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,120,212,0.1);
  border: 1px solid rgba(0,120,212,0.2);
  display: flex; align-items: center; justify-content: center;
}
.cert-icon img { width: 22px; height: 22px; filter: brightness(0) invert(.5) sepia(1) saturate(4) hue-rotate(190deg); }
.cert-code { font-family: var(--font-d); font-size: 18px; font-weight: 700; color: var(--text); }
.cert-name { font-size: 12px; color: var(--text-m); line-height: 1.4; flex: 1; }
.cert-date { font-size: 11px; color: var(--text-s); letter-spacing: 1px; text-transform: uppercase; margin-top: auto; }
.cert-level {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--r-full);
}
.lv-fund { background: var(--blue-dim); color: var(--blue-l); border: 1px solid rgba(59,130,246,0.2); }
.lv-assoc { background: var(--green-dim); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.2); }
.lv-mct { background: var(--purple-dim); color: #c4b5fd; border: 1px solid rgba(139,92,246,0.2); }

/* ══════════════════════════════════════════════
   SOBRE PAGE — Missão/Propósito
   ══════════════════════════════════════════════ */
.sobre-pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.pilar-card { border-radius: var(--r-xl); }
.pilar-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pilar-icon svg { width: 26px; height: 26px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.sobre-historia {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.sobre-historia-text p {
  font-size: 17px; color: var(--text-m);
  line-height: 1.85; margin-bottom: 20px;
}
.sobre-historia-text p:last-child { margin-bottom: 0; }
.sobre-historia-text strong { color: var(--text); font-weight: 600; }
.sobre-historia-stats { display: flex; flex-direction: column; gap: 16px; }

/* ══════════════════════════════════════════════
   COMUNIDADE PAGE
   ══════════════════════════════════════════════ */
.comm-hero { text-align: center; }
.comm-hero .heading-xl { max-width: 720px; margin: 0 auto 20px; }
.comm-hero .lead { margin: 0 auto 48px; }

.comm-stats { margin-bottom: 80px; }

/* Contadores lado a lado no hero da comunidade */
.comm-hero-counters {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.comm-counter-divider { display: none; }

/* Contador total de membros */
.wapp-total-count {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  background: var(--wa-dim);
  border: 1px solid rgba(37,211,102,0.25);
  margin-top: 8px;
}
.wapp-total-num {
  font-family: var(--font-d);
  font-size: 38px; font-weight: 800;
  color: var(--wa); letter-spacing: -1px;
}
.wapp-total-num em { font-style: normal; color: var(--wa); }
.wapp-total-label { font-size: 15px; color: var(--text-m); font-weight: 500; }

.eco-count {
  background: var(--blue-dim);
  border-color: rgba(59,130,246,0.25);
}
.eco-num { color: var(--blue-l); }

/* Member count on main cards */
.wapp-main-members {
  font-size: 13px;
  font-weight: 600;
  color: var(--wa);
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--wa-dim);
  padding: 4px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(37,211,102,0.2);
}

.wapp-section-title {
  font-family: var(--font-d);
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-s);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.wapp-section-title::after {
  content: ''; flex: 1;
  height: 1px; background: var(--border);
}

.wapp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.wapp-card {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px;
  border-radius: var(--r-xl);
  text-decoration: none;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all .2s;
}
.wapp-card:hover {
  border-color: rgba(37,211,102,0.3);
  background: rgba(37,211,102,0.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.wapp-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--wa-dim);
  border: 1px solid rgba(37,211,102,0.2);
  display: flex; align-items: center; justify-content: center;
}
.wapp-icon svg { width: 24px; height: 24px; fill: var(--wa); }
.wapp-body { flex: 1; min-width: 0; }
.wapp-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.wapp-members { font-size: 13px; color: var(--text-m); font-weight: 500; }
.wapp-arrow { font-size: 16px; color: var(--text-s); transition: all .2s; flex-shrink: 0; }
.wapp-card:hover .wapp-arrow { transform: translateX(3px); color: var(--wa); }

.wapp-main-card {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px;
  border-radius: var(--r-xl);
  text-decoration: none;
  color: var(--text);
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.2);
  transition: all .2s;
  margin-bottom: 12px;
}
.wapp-main-card:hover {
  border-color: rgba(37,211,102,0.4);
  background: rgba(37,211,102,0.1);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.08);
}
.wapp-main-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--wa-dim);
  border: 2px solid rgba(37,211,102,0.3);
  display: flex; align-items: center; justify-content: center;
}
.wapp-main-icon svg { width: 28px; height: 28px; fill: var(--wa); }
.wapp-main-body { flex: 1; }
.wapp-main-name { font-family: var(--font-d); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.wapp-main-sub { font-size: 14px; color: var(--text-m); }
.wapp-main-arrow { font-size: 20px; color: var(--wa); flex-shrink: 0; }

/* Canal de Avisos — destaque especial */
.wapp-canal-card {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 28px 32px;
  border-radius: var(--r-xl);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(245,158,11,0.07), rgba(16,185,129,0.05));
  border: 1.5px solid rgba(245,158,11,0.3);
  transition: all .2s;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.wapp-canal-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(245,158,11,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.wapp-canal-card:hover {
  border-color: rgba(245,158,11,0.55);
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(16,185,129,0.07));
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(245,158,11,0.12);
}
.wapp-canal-left { display: flex; align-items: center; gap: 20px; flex: 1; min-width: 0; }
.wapp-canal-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  display: flex; align-items: center; justify-content: center;
}
.wapp-canal-icon svg { width: 30px; height: 30px; fill: var(--wa); }
.wapp-canal-body { flex: 1; min-width: 0; }
.wapp-canal-badges { display: flex; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.wapp-canal-badge-gold {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: var(--r-full);
  background: rgba(245,158,11,0.15); color: var(--gold);
  border: 1px solid rgba(245,158,11,0.3);
}
.wapp-canal-badge-green {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: var(--r-full);
  background: rgba(16,185,129,0.12); color: var(--green);
  border: 1px solid rgba(16,185,129,0.25);
}
.wapp-canal-name { font-family: var(--font-d); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.wapp-canal-sub { font-size: 13px; color: var(--text-m); line-height: 1.5; }
.wapp-canal-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.wapp-canal-members { font-size: 13px; font-weight: 600; color: var(--gold); white-space: nowrap; }
.wapp-canal-arrow { font-size: 20px; color: var(--gold); }

@media (max-width: 600px) {
  .wapp-canal-card { flex-direction: column; align-items: flex-start; gap: 16px; padding: 22px 20px; }
  .wapp-canal-right { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
}

/* ── LIVES CAROUSEL ── */
.lives-carousel {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 24px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
  mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
}
.lives-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: lives-scroll 38s linear infinite;
}
.lives-track:hover { animation-play-state: paused; }
@keyframes lives-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.live-card {
  flex-shrink: 0;
  width: 600px;
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.live-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
}
.live-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.live-card:hover .live-thumb img { transform: scale(1.06); }
.live-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity .3s;
}
.live-play svg {
  width: 52px; height: 52px;
  fill: white;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
}
.live-card:hover .live-play { opacity: 1; }

/* ── IMPACT GRID ── */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.impact-card {
  padding: 32px 24px;
  text-align: center;
}
.impact-num {
  font-family: var(--font-d);
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-l);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.impact-num em {
  font-style: normal;
  font-size: 0.58em;
  opacity: 0.85;
}
.impact-label {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}
.impact-ctx {
  font-size: 12px;
  color: var(--text-m);
  letter-spacing: 0.5px;
}
@media (max-width: 768px) { .impact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .impact-grid { grid-template-columns: 1fr; } }

/* ── CERT CAROUSEL ── */
.cert-carousel {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 32px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
  mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
}
.cert-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: cert-scroll 30s linear infinite;
}
.cert-track:hover { animation-play-state: paused; }
@keyframes cert-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cert-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--r-xl);
  background: var(--card-bg);
  border: 1px solid var(--border);
  min-width: 270px;
}
.cert-pill-icon {
  width: 26px; height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(0.8);
  flex-shrink: 0;
}
.cert-pill-code {
  font-family: var(--font-d);
  font-size: 15px; font-weight: 700;
  color: var(--text);
}
.cert-pill-name {
  font-size: 12px;
  color: var(--text-m);
  line-height: 1.3;
  margin-top: 2px;
}

/* ── DEPOIMENTOS CAROUSEL ── */
.depo-carousel {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 40px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
  mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
}
.depo-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: depo-scroll 35s linear infinite;
}
.depo-track:hover { animation-play-state: paused; }
@keyframes depo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.depo-card {
  flex-shrink: 0;
  width: 340px;
  padding: 28px 24px;
  border-radius: var(--r-xl);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.depo-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin: 0;
}
.depo-meta {
  font-size: 11px;
  color: var(--text-m);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.depo-card-milestone {
  border-left-color: var(--gold);
  background: linear-gradient(135deg, rgba(245,158,11,0.06), var(--card-bg));
}
.depo-milestone-num {
  font-family: var(--font-d);
  font-size: 26px; font-weight: 800;
  color: var(--gold);
  letter-spacing: -1px;
}

/* ── STACK TÉCNICO ── */
.skills-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.skill-glass {
  padding: 28px 24px;
  border-radius: var(--r-xl);
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.skill-glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.skill-glass.featured { grid-column: span 2; }
.skill-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.skill-logo-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.skill-logo {
  width: 22px; height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(0.85);
}
.skill-name {
  font-family: var(--font-d);
  font-size: 17px; font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.skill-years {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 3px;
}
.skill-desc {
  font-size: 14px;
  color: var(--text-m);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.skill-chips { display: flex; flex-wrap: wrap; gap: 6px; }
@media (max-width: 768px) {
  .skills-masonry { grid-template-columns: 1fr 1fr; }
  .skill-glass.featured { grid-column: span 2; }
}
@media (max-width: 480px) {
  .skills-masonry { grid-template-columns: 1fr; }
  .skill-glass.featured { grid-column: span 1; }
}

/* ── WHATSAPP GROUPS CAROUSEL ── */
.wapp-carousel {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 24px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
  mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
}
.wapp-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: wapp-scroll 32s linear infinite;
}
.wapp-track:hover { animation-play-state: paused; }
@keyframes wapp-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.wapp-track .wapp-card {
  flex-shrink: 0;
  width: 300px;
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.newsletter-block {
  padding: 48px;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, rgba(249,115,22,0.08) 0%, rgba(249,115,22,0.02) 100%);
  border: 1px solid rgba(249,115,22,0.2);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter-body { flex: 1; min-width: 280px; }
.newsletter-title {
  font-family: var(--font-d);
  font-size: 28px; font-weight: 800;
  color: var(--text); margin-bottom: 8px;
}
.newsletter-sub { font-size: 16px; color: var(--text-m); }
.btn-substack {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: #fb923c;
  white-space: nowrap;
}
.btn-substack:hover {
  background: rgba(249,115,22,0.25);
  border-color: rgba(249,115,22,0.5);
  box-shadow: 0 0 28px rgba(249,115,22,0.18);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   COMING SOON
   ══════════════════════════════════════════════ */
.coming-soon {
  min-height: 100vh;
  display: flex; align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.coming-soon-inner { max-width: 560px; }
.coming-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  background: var(--gold-dim);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--gold);
  margin-bottom: 32px;
}
.coming-soon h1 {
  font-family: var(--font-d);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800; letter-spacing: -2px;
  color: var(--text); margin-bottom: 20px;
}
.coming-soon p {
  font-size: 17px; color: var(--text-m);
  line-height: 1.75; margin-bottom: 40px;
}
.coming-notify {
  display: flex; gap: 8px;
  max-width: 420px; margin: 0 auto;
}
.coming-notify input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 14px; padding: 12px 20px;
  outline: none;
  transition: border-color .2s;
}
.coming-notify input:focus { border-color: rgba(59,130,246,0.4); }
.coming-notify input::placeholder { color: var(--text-s); }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(7,9,15,0.8);
  backdrop-filter: blur(16px);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-d);
  font-size: 15px; font-weight: 700;
  color: var(--text-m);
  text-decoration: none;
}
.footer-logo span { color: var(--blue-l); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px; color: var(--text-s);
  text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--text-m); }
.footer-copy { font-size: 12px; color: var(--text-s); }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-wrap { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .sobre-pilares { grid-template-columns: 1fr; }
  .sobre-historia { grid-template-columns: 1fr; }
  .sobre-historia-stats { flex-direction: row; flex-wrap: wrap; }
  .sobre-historia-stats .card { flex: 1; min-width: 140px; }

  .mentor-grid { grid-template-columns: 1fr; }
  .mentor-photo-wrap { position: static; }
  .mentor-photo-box { height: 300px; }

  .sobre-layout { grid-template-columns: 1fr; }
  .sobre-sticky { position: static; }
  .sobre-photo { height: 320px; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .wapp-grid { grid-template-columns: 1fr 1fr; }
  .socials-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
  .mentor-insights { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .timeline-period { text-align: left; }
}

@media (max-width: 640px) {
  section { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .wapp-grid { grid-template-columns: 1fr; }
  .socials-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-block { flex-direction: column; padding: 32px 24px; }
  .coming-notify { flex-direction: column; }
}
