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

:root {
  --green: #00D26A;
  --green-dim: rgba(0,210,106,0.10);
  --green-glow: rgba(0,210,106,0.22);
  --bg: #060606;
  --bg2: #0c0c0c;
  --bg3: #141414;
  --card: #0e0e0e;
  --card2: #111111;
  --border: rgba(255,255,255,0.07);
  --border-h: rgba(255,255,255,0.12);
  --text: #f0f0f0;
  --muted: #7a7a7a;
  --red: #ef4444;
  --r: 14px;
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

/* ─── Utilities ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.green { color: var(--green); }
.muted { color: var(--muted); }

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-dim); border: 1px solid rgba(0,210,106,0.28);
  color: var(--green); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
}
.dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 10px; font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .25s ease; font-family: var(--font);
}
.btn-primary {
  background: var(--green); color: #060606;
  box-shadow: 0 0 24px var(--green-glow), 0 1px 2px rgba(0,0,0,.3);
}
.btn-primary:hover {
  background: #00e876;
  box-shadow: 0 0 40px rgba(0,210,106,.45), 0 4px 14px rgba(0,0,0,.3);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--green);
  border: 1.5px solid rgba(0,210,106,0.3);
}
.btn-outline:hover { background: var(--green-dim); border-color: var(--green); }
.btn-ghost { background: transparent; color: var(--muted); border: none; }
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 15px 34px; font-size: 15px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }
.btn-wa::before {
  content: ''; display: inline-block; width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23060606'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(6,6,6,0.80); backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 21px; font-weight: 800; letter-spacing: -.5px; color: var(--text); text-decoration: none; display: flex; align-items: center; }
.logo span { color: var(--green); }
.logo-img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 13.5px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(0,210,106,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(0,210,106,0.03) 0%, transparent 60%);
}
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.hero-tag { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(34px, 4.2vw, 54px); font-weight: 900;
  line-height: 1.08; letter-spacing: -2px; margin-bottom: 22px;
}
.hero-desc {
  font-size: 16.5px; color: var(--muted); line-height: 1.75;
  max-width: 500px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-proof { margin-top: 44px; display: flex; align-items: center; gap: 12px; }
.proof-line {
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
  flex-shrink: 0;
}
.proof-text { font-size: 13px; color: var(--muted); }
.proof-text strong { color: #999; font-weight: 600; }

/* ─── Hero Dashboard Mock ─── */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-mock {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 20px; width: 100%; max-width: 470px;
  box-shadow:
    0 32px 80px rgba(0,0,0,.6),
    0 0 60px rgba(0,210,106,0.04),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
  transition: transform .5s ease;
}
.hero-mock:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }
.mock-hd {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 16px;
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-label { font-size: 11px; color: var(--muted); margin-left: auto; font-weight: 500; letter-spacing: .02em; }

.mock-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 12px; }
.ms { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 10px 6px; text-align: center; }
.ms-n { font-size: 18px; font-weight: 900; color: var(--green); line-height: 1; }
.ms-l { font-size: 8.5px; color: var(--muted); margin-top: 3px; text-transform: uppercase; letter-spacing: .04em; }

.mock-chart { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 12px; margin-bottom: 10px; }
.mc-title { font-size: 10px; color: var(--muted); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
.mc-bars { display: flex; align-items: flex-end; gap: 4px; height: 48px; }
.mc-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: rgba(0,210,106,0.15); border: 1px solid rgba(0,210,106,0.12);
  transition: height .3s ease;
}
.mc-bar.hi { background: var(--green); border-color: var(--green); }

.mock-rows { display: flex; flex-direction: column; gap: 6px; }
.mr {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 8px;
}
.mr-ic { font-size: 16px; flex-shrink: 0; }
.mr-text { flex: 1; font-size: 11.5px; }
.mr-text strong { display: block; font-size: 12px; color: var(--text); }
.mr-text span { color: var(--muted); }
.mr-badge {
  font-size: 9.5px; font-weight: 700; padding: 3px 8px;
  border-radius: 100px; white-space: nowrap;
  background: var(--green-dim); color: var(--green);
  border: 1px solid rgba(0,210,106,0.2);
}
.mr-badge.alert { background: rgba(239,68,68,0.08); color: #ef4444; border-color: rgba(239,68,68,0.2); }

.float-card {
  position: absolute; background: var(--card); border: 1px solid var(--border);
  border-radius: 11px; padding: 9px 13px;
  display: flex; align-items: center; gap: 9px;
  box-shadow: 0 10px 32px rgba(0,0,0,.55);
  font-size: 11px; font-weight: 600; white-space: nowrap;
  animation: floaty 3.5s ease-in-out infinite;
}
.fc-ic {
  width: 26px; height: 26px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ─── SEGMENTS ─── */
.segments {
  padding: 32px 0;
  border-top: 1px solid rgba(0,210,106,0.1); border-bottom: 1px solid rgba(0,210,106,0.1);
  background: var(--bg2);
  position: relative;
}
.segments::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,210,106,0.03), transparent);
  pointer-events: none;
}
.segments-label {
  text-align: center; font-size: 11px; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.segments-row {
  display: flex; gap: 36px; align-items: center; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.segments-row span {
  font-size: 13px; font-weight: 800; color: var(--text);
  letter-spacing: .06em; text-transform: uppercase;
}
.segments-note {
  text-align: center; margin-top: 16px;
  font-size: 12px; color: var(--muted); font-style: italic;
  position: relative; z-index: 1;
}

/* ─── SECTIONS COMMON ─── */
section { padding: 100px 0; }
.sec-hd { text-align: center; margin-bottom: 64px; }
.sec-title {
  font-size: clamp(26px, 3.6vw, 42px); font-weight: 900;
  letter-spacing: -1.5px; margin: 16px 0 14px; line-height: 1.1;
}
.sec-desc {
  font-size: 16px; color: var(--muted); max-width: 540px;
  margin: 0 auto; line-height: 1.72;
}

/* ─── PAIN POINTS ─── */
.pain-bg { background: var(--bg); }
.pain-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 860px; margin: 0 auto; }
.pain-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px 26px; position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, rgba(239,68,68,0.5), transparent 80%);
}
.pain-card:hover { border-color: rgba(239,68,68,0.2); transform: translateY(-2px); }
.pain-ic { font-size: 24px; margin-bottom: 14px; }
.pain-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: rgba(239,68,68,0.85); }
.pain-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ─── DASHBOARD SHOWCASE ─── */
.showcase-bg {
  background: var(--bg2);
  position: relative; overflow: hidden;
}
.showcase-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 60%, rgba(0,210,106,0.03), transparent 70%);
}
.showcase-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  position: relative; z-index: 1;
}
.showcase-mock { position: relative; }
.showcase-label {
  font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 12px; text-align: center;
}
.sm-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 20px; position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 0 40px rgba(0,210,106,0.03);
  transition: transform .4s ease, box-shadow .4s ease;
}
.sm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0,0,0,.55), 0 0 50px rgba(0,210,106,0.06);
}
.sm-hd {
  display: flex; align-items: center; gap: 5px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 14px;
}
.sm-dot { width: 7px; height: 7px; border-radius: 50%; }
.sm-title-text { font-size: 10.5px; color: var(--muted); margin-left: auto; font-weight: 500; }

/* Showcase — Turma Mock */
.sm-overview {
  font-size: 18px; font-weight: 900; margin-bottom: 14px; letter-spacing: -.5px;
}
.sm-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 12px; }
.sm-s {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 8px; text-align: center;
}
.sm-s-n { font-size: 20px; font-weight: 900; color: var(--green); line-height: 1; }
.sm-s-l { font-size: 8.5px; color: var(--muted); margin-top: 3px; text-transform: uppercase; letter-spacing: .04em; }

.sm-chart {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px; margin-bottom: 10px;
}
.sm-chart-title { font-size: 10px; color: var(--muted); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .03em; }
.sm-bars { display: flex; align-items: flex-end; gap: 4px; height: 44px; }
.sm-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: rgba(0,210,106,0.15); border: 1px solid rgba(0,210,106,0.1);
}
.sm-bar.hi { background: var(--green); border-color: var(--green); }

.sm-rows { display: flex; flex-direction: column; gap: 6px; }
.sm-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 8px; font-size: 11px;
}
.sm-row-ic { font-size: 15px; flex-shrink: 0; }
.sm-row-text { flex: 1; }
.sm-row-text strong { display: block; font-size: 11.5px; color: var(--text); }
.sm-row-text span { color: var(--muted); font-size: 10.5px; }
.sm-row-badge {
  font-size: 9px; font-weight: 700; padding: 2px 7px;
  border-radius: 100px; white-space: nowrap;
}

/* Showcase — Individual Mock */
.sm-student-hd {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.sm-student-name { font-size: 16px; font-weight: 800; }
.sm-student-trend {
  font-size: 11px; font-weight: 700; color: var(--green);
  background: var(--green-dim); padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(0,210,106,0.2);
}
.sm-subjects { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.sm-subj {
  display: flex; align-items: center; gap: 10px; font-size: 11.5px;
}
.sm-subj-name { width: 110px; color: var(--muted); font-weight: 500; flex-shrink: 0; font-size: 10.5px; }
.sm-subj-bar-wrap {
  flex: 1; height: 6px; background: rgba(255,255,255,0.05);
  border-radius: 99px; overflow: hidden;
}
.sm-subj-bar { height: 100%; border-radius: 99px; background: var(--green); transition: width .6s ease; }
.sm-subj-bar.low { background: var(--red); }
.sm-subj-bar.mid { background: #f59e0b; }
.sm-subj-pct { width: 32px; text-align: right; font-weight: 700; font-size: 11px; }
.sm-subj-pct.low { color: var(--red); }
.sm-subj-pct.mid { color: #f59e0b; }
.sm-subj-pct.high { color: var(--green); }

.sm-insight {
  background: rgba(168,85,247,0.06); border: 1px solid rgba(168,85,247,0.15);
  border-radius: 9px; padding: 12px 14px;
  display: flex; gap: 10px; align-items: flex-start;
}
.sm-insight-ic { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.sm-insight-text { font-size: 11px; color: var(--muted); line-height: 1.55; }
.sm-insight-text strong { color: #c084fc; display: block; font-size: 10.5px; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .04em; }

/* ─── FEATURES ─── */
.feat-bg { background: var(--bg); }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.feat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 26px; overflow: hidden; position: relative;
  transition: border-color .3s, transform .3s;
}
.feat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,210,106,0), transparent);
  transition: background .3s;
}
.feat-card:hover { border-color: rgba(0,210,106,0.25); transform: translateY(-3px); }
.feat-card:hover::after { background: linear-gradient(90deg, transparent, var(--green), transparent); }
.feat-ic {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 4px 10px rgba(0, 0, 0, 0.35), 
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feat-ic::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  border-radius: 11px;
}
.feat-card:hover .feat-ic {
  transform: scale(1.12) translateY(-2px) rotate(3deg);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.5), 
    0 0 12px rgba(255, 255, 255, 0.03);
}
.feat-title { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.feat-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ─── IMPACT METRICS ─── */
.impact-bg {
  padding: 72px 0; background: var(--bg2);
  border-top: 1px solid rgba(0,210,106,0.1); border-bottom: 1px solid rgba(0,210,106,0.1);
  position: relative;
}
.impact-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,210,106,0.04), transparent);
}
.impact-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 28px;
  text-align: center; position: relative; z-index: 1;
}
.impact-item {}
.impact-ic { font-size: 28px; margin-bottom: 10px; }
.impact-n {
  font-size: 36px; font-weight: 900; color: var(--green);
  letter-spacing: -1.5px; line-height: 1; margin-bottom: 6px;
}
.impact-l { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ─── HOW IT WORKS ─── */
.how-bg { background: var(--bg); }
.how-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.how-step {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px 20px; text-align: center; position: relative;
  transition: border-color .3s, transform .3s;
}
.how-step:hover { border-color: rgba(0,210,106,0.2); transform: translateY(-2px); }
.how-num { font-size: 36px; font-weight: 900; color: var(--green); opacity: .2; line-height: 1; margin-bottom: 10px; }
.how-ic { font-size: 26px; margin-bottom: 10px; }
.how-title { font-size: 14.5px; font-weight: 700; margin-bottom: 7px; }
.how-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
.testi-bg { background: var(--bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.tc {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 26px; transition: border-color .3s;
}
.tc:hover { border-color: var(--border-h); }
.tc-stars { color: var(--green); font-size: 12px; letter-spacing: 2px; margin-bottom: 14px; }
.tc-text { font-size: 13.5px; color: var(--muted); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 11px; }
.tc-av {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--green); font-size: 12px; flex-shrink: 0;
}
.tc-name { font-size: 13px; font-weight: 700; }
.tc-meta { font-size: 11.5px; color: var(--muted); }

/* ─── PRICING ─── */
.pricing-bg { background: var(--bg); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
  max-width: 780px; margin: 0 auto;
}
.price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 32px 28px; position: relative;
}
.price-card.featured {
  border-color: rgba(0,210,106,0.35);
  box-shadow: 0 0 50px rgba(0,210,106,0.06);
}
.price-card.featured::before {
  content: 'Mais popular'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #060606; font-size: 10.5px; font-weight: 700;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.price-name { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.price-desc { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.price-value { font-size: 40px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.price-value small { font-size: 15px; font-weight: 500; color: var(--muted); }
.price-badge-aluno {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(0,210,106,0.15);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.price-period { font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-list li {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.price-list li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 11px; }
.price-list li.not-included { color: #4e4e4e; }
.price-list li.not-included::before { content: '✗'; color: #ef4444; }
.price-enterprise {
  text-align: center; margin-top: 28px; padding: 20px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  max-width: 780px; margin-left: auto; margin-right: auto;
}
.price-enterprise p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.price-enterprise strong { color: var(--text); }

/* ─── FAQ ─── */
.faq-bg { background: var(--bg2); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q {
  padding: 18px 22px; font-size: 14.5px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color .2s; user-select: none;
}
.faq-q:hover { color: var(--green); }
.faq-q .arrow { transition: transform .3s; font-size: 18px; color: var(--muted); font-weight: 400; }
.faq-item.open .faq-q .arrow { transform: rotate(45deg); color: var(--green); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 250px; padding: 0 22px 18px; }
.faq-a p { font-size: 13.5px; color: var(--muted); line-height: 1.72; }

/* ─── CTA ─── */
.cta-bg {
  padding: 110px 0; text-align: center; position: relative;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0,210,106,0.06), transparent 70%);
}
.cta-title {
  font-size: clamp(28px, 4.2vw, 48px); font-weight: 900;
  letter-spacing: -2px; margin-bottom: 18px; line-height: 1.1;
}
.cta-desc {
  font-size: 16.5px; color: var(--muted); max-width: 480px;
  margin: 0 auto 36px; line-height: 1.72;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: 12px; color: #444; margin-top: 18px; }

/* ─── FOOTER ─── */
footer { background: var(--bg2); padding: 56px 0 28px; border-top: 1px solid var(--border); }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.ft-brand p { font-size: 13px; color: var(--muted); margin-top: 11px; max-width: 250px; line-height: 1.65; }
.ft-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 14px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-col a { font-size: 13px; color: #444; text-decoration: none; transition: color .2s; }
.ft-col a:hover { color: var(--green); }
.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; border-top: 1px solid var(--border);
}
.ft-bottom p { font-size: 12px; color: #333; }

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

/* Staggered entrance for grids */
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }
.reveal:nth-child(7) { transition-delay: .48s; }

/* ─── COMPARISON TABLE ─── */
.compare-toggle-container {
  text-align: center;
  margin-top: 32px;
}
.compare-toggle-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.compare-toggle-btn:hover {
  border-color: var(--green);
  box-shadow: 0 0 15px rgba(0,210,106,0.1);
}
.compare-toggle-btn.active .chevron-icon {
  transform: rotate(180deg);
}
.chevron-icon {
  transition: transform 0.2s ease;
}

.comparison-table-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 800px;
  margin: 0 auto;
}
.comparison-table-container.open {
  max-height: 1200px;
  margin-top: 24px;
}
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--card);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}
.comparison-table th, .comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  background: rgba(255,255,255,0.01);
  font-weight: 700;
  color: var(--text);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table td {
  color: var(--muted);
}
.comparison-table td.feature-name {
  color: var(--text);
  font-weight: 500;
  width: 40%;
}
.comparison-table td.plan-val {
  font-weight: 700;
  color: var(--text);
}
.comparison-table td.highlight {
  color: var(--text);
  font-weight: 600;
}
.comparison-table .check-icon {
  color: var(--green);
  font-weight: 800;
}
.comparison-table .cross-icon {
  color: #ef4444;
  font-weight: 800;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .showcase-grid { gap: 18px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-mock { transform: none; max-width: 500px; margin: 0 auto; }
  .hero-mock:hover { transform: none; }
  .float-card { display: none; }
  .pain-grid { grid-template-columns: 1fr; max-width: 500px; }
  .showcase-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .logo-img { height: 36px; }
  .nav-cta .btn { padding: 8px 16px; font-size: 13px; }
  .hero h1 { font-size: 30px; letter-spacing: -1px; }
  .feat-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .ft-grid { grid-template-columns: 1fr; }
  .segments-row { gap: 18px; }
  .segments-row span { font-size: 11px; }
  .ft-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
