/* ─── DESIGN TOKENS ─── */
:root {
  --bg:        #F9F7FC;
  --bg-1:      #F0EBF8;
  --bg-2:      #E5DAF2;
  --bg-card:   #FFFFFF;
  --border:    rgba(0,0,0,.07);
  --border-hi: rgba(111,74,168,.28);

  --teal:      #5C3A90;
  --teal-2:    #3D1F6B;
  --teal-glow: rgba(92,58,144,.14);
  --gold:      #C9A84C;
  --gold-soft: #B8923E;

  --text:      #2D2D3A;
  --muted:     #4A4A5A;
  --dim:       #6B6B7B;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius:    14px;
  --radius-sm: 8px;
}

/* ─── BASE ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  margin: 0; padding: 0;
  line-height: 1.68;
  overflow-x: hidden;
  max-width: 100%;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; }
img, svg, video, iframe { max-width: 100%; height: auto; }
p, li, span, blockquote { overflow-wrap: break-word; word-break: break-word; }
/* Evita overflow em filhos de flex/grid */
*, *::before, *::after { min-width: 0; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-2); }
.mono { font-family: var(--font-mono); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--dim); border-radius: 3px; }

/* ─── NAVBAR ─── */
.navbar {
  background: rgba(249,247,252,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 1px 12px rgba(0,50,60,.06);
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0;
}
.brand-logo {
  height: 40px; width: auto;
  
}
.nav-link {
  color: var(--muted) !important;
  font-size: .92rem; font-weight: 500;
  padding: 8px 14px !important;
  transition: color .15s;
}
.nav-link:hover { color: var(--teal) !important; }
.navbar-toggler { border-color: var(--border); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(84,110,122,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── BUTTONS ─── */
.btn-hum {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--radius-sm);
  font-size: .92rem; font-weight: 600;
  letter-spacing: .3px;
  border: 1px solid transparent;
  transition: all .2s; cursor: pointer; white-space: nowrap;
  font-family: var(--font-body);
}
.btn-hum.primary {
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  color: #fff;
  box-shadow: 0 10px 24px rgba(111,74,168,.2);
}
.btn-hum.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(111,74,168,.28);
  color: #fff;
}
.btn-hum.outline {
  border-color: rgba(111,74,168,.3);
  color: var(--teal);
  background: rgba(111,74,168,.04);
}
.btn-hum.outline:hover {
  border-color: var(--teal);
  color: var(--teal-2);
  background: rgba(111,74,168,.08);
}
.btn-hum.lg { padding: 15px 32px; font-size: 1.05rem; border-radius: 10px; }

/* ─── HERO ─── */
.hero-modern {
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
  background:
    radial-gradient(circle at 20% 20%, rgba(123, 82, 176, .16), transparent 32%),
    radial-gradient(circle at 80% 40%, rgba(111, 74, 168, .22), transparent 38%),
    linear-gradient(135deg, #101319 0%, #151317 52%, #081012 100%);
}

.hero-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .45;
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -140px;
  top: 120px;
  background: rgba(111, 74, 168, .22);
  filter: blur(110px);
  border-radius: 50%;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-glow { width: 300px; height: 300px; right: -80px; top: 60px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.88);
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 26px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #C9A84C;
  box-shadow: 0 0 0 rgba(201,168,76,.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201,168,76,.6); }
  70% { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

.hero-title {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -2px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 26px;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #9B6FD4, #C4ACEE, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  max-width: 620px;
  color: rgba(255,255,255,.72);
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-trust span {
  padding: 9px 15px;
  border-radius: 50px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  font-weight: 600;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 560px;
}

.hero-metrics div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 7px;
}

.hero-metrics span {
  color: rgba(255,255,255,.62);
  font-size: .85rem;
}

.modern-dashboard {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(18, 20, 23, .62);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(24px);
  box-shadow:
    0 40px 120px rgba(0,0,0,.55),
    0 0 0 1px rgba(201,168,76,.12),
    0 0 90px rgba(201,168,76,.12);
  animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.mockup-bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.r { background: #ef4444; }
.dot.y { background: #eab308; }
.dot.g { background: #22c55e; }

.mock-url {
  margin-left: 10px;
  color: rgba(255,255,255,.45);
  font-size: .78rem;
}

.mockup-body {
  padding: 28px;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.mock-title {
  color: #fff;
  font-weight: 800;
  font-size: 1.08rem;
}

.mock-sub {
  color: rgba(255,255,255,.5);
  font-size: .84rem;
  margin-top: 4px;
}

.mock-chip {
  white-space: nowrap;
  padding: 8px 13px;
  border-radius: 50px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.24);
  color: #86efac;
  font-size: .76rem;
  font-weight: 700;
}

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.mock-kpi {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.mock-kpi-lbl {
  color: rgba(255,255,255,.55);
  font-size: .75rem;
  margin-bottom: 8px;
}

.mock-kpi-val {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
}

.mock-kpi-trend {
  color: #22c55e;
  font-size: .75rem;
  margin-top: 6px;
}

.mock-kpi-trend.warning {
  color: #eab308;
}

.mock-kpi-trend.danger {
  color: #ef4444;
}

.mock-chart-wrap {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 18px;
}

.mock-chart-title {
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 6px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
}

.pillar-card i {
  font-size: 1.1rem;
  color: #7B52B0;
}

.pillar-card span {
  font-size: .62rem;
  color: rgba(255,255,255,.6);
  line-height: 1.3;
  word-break: break-word;
}

.pillars-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(111,74,168,.07) 0%, transparent 32%),
    radial-gradient(circle at 88% 80%, rgba(201,168,76,.05) 0%, transparent 34%),
    var(--bg-1);
}

.pillars-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111,74,168,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,74,168,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 1;
}

.pillars-section .container {
  position: relative;
  z-index: 2;
}

.pillars-head {
  max-width: 820px;
  margin: 0 auto 56px;
}

.section-kicker {
  display: block;
  width: fit-content;
  margin: 0 auto 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(111,74,168,.08);
  border: 1px solid rgba(111,74,168,.22);
  color: var(--teal-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pillars-head h2 {
  color: var(--text);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 800;
  margin-bottom: 20px;
}

.pillars-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pillar-card-modern {
  position: relative;
  min-height: 360px;
  padding: 30px 26px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(40,0,70,.07);
  transition: .35s ease;
}

.pillar-card-modern::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  top: -70px;
  background: rgba(111,74,168,.14);
  filter: blur(35px);
  border-radius: 50%;
  opacity: 0;
  transition: .35s ease;
}

.pillar-card-modern:hover {
  transform: translateY(-8px);
  border-color: var(--border-hi);
  box-shadow:
    0 16px 48px rgba(40,0,70,.12),
    0 0 0 1px rgba(111,74,168,.1);
}

.pillar-card-modern:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  background: rgba(111,74,168,.08);
  border: 1px solid rgba(111,74,168,.2);
  color: var(--teal);
  box-shadow: inset 0 0 20px rgba(111,74,168,.04);
}

.pillar-icon i {
  font-size: 1.75rem;
}

.pillar-number {
  position: absolute;
  right: 26px;
  top: 28px;
  color: rgba(111,74,168,.1);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.pillar-card-modern h3 {
  color: var(--text);
  font-size: 1.24rem;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 16px;
}

.pillar-card-modern p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.72;
  margin: 0;
}


/* ─── SECTIONS ─── */
.section { padding: 96px 0; position: relative; }
.section.alt { background: linear-gradient(180deg, var(--bg-1), var(--bg)); }
.section.gold-tint {
  background:
    radial-gradient(ellipse 700px 400px at 50% 0%, rgba(201,168,76,.06) 0%, transparent 70%),
    var(--bg);
}
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 14px; display: block;
  text-align: center;
}
.section-title {
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -1px;
  color: var(--text); text-align: center; margin-bottom: 16px; line-height: 1.12;
  word-break: break-word; overflow-wrap: break-word;
}
.section-sub {
  font-size: 1.08rem; color: var(--muted); text-align: center;
  max-width: 640px; margin: 0 auto 60px; line-height: 1.75;
  word-break: break-word; overflow-wrap: break-word;
}
.teal-line {
  width: 48px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-2));
  margin: 20px auto 0;
}

/* ─── PROBLEM SECTION MODERNA ─── */
.problem-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(111,74,168,.07) 0%, transparent 30%),
    radial-gradient(circle at 15% 85%, rgba(201,168,76,.05) 0%, transparent 28%),
    var(--bg);
}

.problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111,74,168,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,74,168,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 1;
}

.problem-container {
  position: relative;
  z-index: 2;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.problem-card-modern {
  position: relative;
  padding: 36px 30px;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(40,0,70,.07);
  overflow: hidden;
  transition: .35s ease;
}

.problem-card-modern::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  background: rgba(111,74,168,.12);
  filter: blur(40px);
  border-radius: 50%;
  opacity: 0;
  transition: .35s ease;
}

.problem-card-modern:hover {
  transform: translateY(-8px);
  border-color: var(--border-hi);
  box-shadow: 0 16px 48px rgba(40,0,70,.12);
}

.problem-card-modern:hover::before { opacity: 1; }

.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: rgba(111,74,168,.08);
  border: 1px solid rgba(111,74,168,.18);
  color: var(--teal);
}

.problem-icon i { font-size: 1.5rem; }

.problem-stat {
  font-family: var(--font-mono);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-card-modern h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.problem-card-modern p {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

.problem-card-modern p strong { color: var(--text); }

.problem-src {
  font-size: .72rem;
  color: var(--dim);
  font-style: italic;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.problem-callout {
  background: linear-gradient(135deg, rgba(111,74,168,.07), rgba(201,168,76,.03));
  border: 1px solid rgba(111,74,168,.18);
  border-radius: 20px;
  padding: 36px 48px;
  text-align: center;
}

.problem-callout p {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.problem-callout strong { color: var(--text); }

.problem-callout em {
  font-style: normal;
  color: var(--teal);
  font-weight: 700;
}

/* ─── PROBLEM CARDS ─── */
.problem-card {
  padding: 36px 28px; border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(40,0,70,.06);
  height: 100%;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.problem-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0; transition: opacity .25s;
}
.problem-card:hover { border-color: var(--border-hi); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(40,0,70,.1); }
.problem-card:hover::before { opacity: 1; }
.problem-num {
  font-family: var(--font-mono); font-size: 2.8rem; font-weight: 700;
  background: linear-gradient(135deg, #E53E3E, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 14px;
}
.problem-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.problem-card p { font-size: .95rem; color: var(--muted); line-height: 1.7; margin: 0; }
.problem-card .src { font-size: .76rem; color: var(--dim); margin-top: 16px; font-style: italic; }

/* ─── TIMELINE MODERNA ─── */
.timeline-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(111,74,168,.07) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(201,168,76,.05) 0%, transparent 28%),
    var(--bg-1);
}

.timeline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111,74,168,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,74,168,.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.timeline-container {
  position: relative;
  z-index: 2;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  top: 102px;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 0;
}

.timeline-card {
  position: relative;
  padding: 30px 24px;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(40,0,70,.07);
  overflow: hidden;
  transition: .35s ease;
  z-index: 1;
}

.timeline-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  top: -70px;
  background: rgba(111,74,168,.1);
  filter: blur(38px);
  border-radius: 50%;
  opacity: 0;
  transition: .35s ease;
}

.timeline-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hi);
  box-shadow: 0 16px 48px rgba(40,0,70,.12);
}

.timeline-card:hover::before { opacity: 1; }

.timeline-card.urgent {
  border-color: rgba(201,168,76,.35);
  background: linear-gradient(160deg, rgba(201,168,76,.04), var(--bg-card));
}

.timeline-card.urgent::before { background: rgba(201,168,76,.15); }

.timeline-card.urgent:hover {
  border-color: rgba(201,168,76,.55);
  box-shadow: 0 16px 48px rgba(150,100,0,.1);
}

.timeline-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.timeline-badge.past {
  background: rgba(111,74,168,.08);
  color: var(--teal-2);
  border: 1px solid rgba(111,74,168,.18);
}

.timeline-badge.urgent-badge {
  background: rgba(201,168,76,.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.3);
}

.timeline-badge.ongoing {
  background: rgba(22,163,74,.08);
  color: #16A34A;
  border: 1px solid rgba(22,163,74,.2);
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--dim);
  letter-spacing: .8px;
  margin-bottom: 18px;
}

.timeline-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(111,74,168,.08);
  border: 1px solid rgba(111,74,168,.18);
  color: var(--teal);
}

.timeline-card.urgent .timeline-icon {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.25);
  color: var(--gold);
}

.timeline-icon i { font-size: 1.4rem; }

.timeline-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.timeline-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.timeline-card p strong { color: var(--text); }

/* ─── TIMELINE (legado) ─── */
.timeline-wrap { max-width: 760px; margin: 0 auto; position: relative; }
.timeline-wrap::before {
  content: "";
  position: absolute; left: 28px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
}
.tl-item { position: relative; padding-left: 68px; margin-bottom: 32px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: 21px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); border: 2.5px solid var(--teal);
  box-shadow: 0 0 0 5px rgba(111,74,168,.1);
}
.tl-item.future .tl-dot { border-color: var(--gold); box-shadow: 0 0 0 5px rgba(201,168,76,.12); }
.tl-date { font-family: var(--font-mono); font-size: .72rem; color: var(--teal); letter-spacing: .8px; margin-bottom: 5px; }
.tl-item.future .tl-date { color: var(--gold); }
.tl-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.tl-desc { font-size: .95rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ─── STEPS MODERNA ─── */
.steps-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(111,74,168,.07) 0%, transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(201,168,76,.05) 0%, transparent 28%),
    var(--bg);
}

.steps-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111,74,168,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,74,168,.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.steps-container {
  position: relative;
  z-index: 2;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 102px;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--teal) 0px, var(--teal) 8px,
    transparent 8px, transparent 18px
  );
  z-index: 0;
}

.step-card-modern {
  position: relative;
  padding: 30px 24px;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(40,0,70,.07);
  overflow: hidden;
  transition: .35s ease;
  z-index: 1;
}

.step-card-modern::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  top: -70px;
  background: rgba(111,74,168,.1);
  filter: blur(38px);
  border-radius: 50%;
  opacity: 0;
  transition: .35s ease;
}

.step-card-modern:hover {
  transform: translateY(-8px);
  border-color: var(--border-hi);
  box-shadow: 0 16px 48px rgba(40,0,70,.12);
}

.step-card-modern:hover::before { opacity: 1; }

.step-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(111,74,168,.08);
  color: var(--teal-2);
  border: 1px solid rgba(111,74,168,.18);
}

.step-icon-modern {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(111,74,168,.08);
  border: 1px solid rgba(111,74,168,.18);
  color: var(--teal);
}

.step-icon-modern i { font-size: 1.4rem; }

.step-card-modern h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.step-card-modern p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── STEPS (legado) ─── */
.step-card {
  padding: 28px 24px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(40,0,70,.06);
  height: 100%; position: relative; overflow: hidden;
  transition: all .25s;
}
.step-card:hover { border-color: var(--border-hi); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(40,0,70,.1); }
.step-num { font-family: var(--font-mono); font-size: .72rem; color: var(--teal); letter-spacing: 1.5px; margin-bottom: 14px; }
.step-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(111,74,168,.08);
  border: 1px solid rgba(111,74,168,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step-icon-wrap i { font-size: 1.4rem; color: var(--teal); }
.step-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-card p { font-size: .95rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ─── MODULES MODERNA ─── */
.modules-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(111,74,168,.07) 0%, transparent 32%),
    radial-gradient(circle at 85% 70%, rgba(201,168,76,.05) 0%, transparent 28%),
    var(--bg-1);
}

.modules-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111,74,168,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,74,168,.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.modules-container {
  position: relative;
  z-index: 2;
}

.module-row-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.module-row-modern:last-child { margin-bottom: 0; }

.module-row-reverse {
  direction: rtl;
}

.module-row-reverse > * { direction: ltr; }

.module-tag-modern {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  background: rgba(111,74,168,.08);
  color: var(--teal-2);
  border: 1px solid rgba(111,74,168,.18);
}

.module-content-modern h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}

.module-content-modern p {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.module-bullets-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module-bullets-modern li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .93rem;
  color: var(--text);
  line-height: 1.55;
}

.module-bullets-modern li i {
  color: var(--teal);
  font-size: .92rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.module-bullets-modern li strong { color: var(--text); }

.module-visual-modern {
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-visual-card {
  width: 100%;
  padding: 52px 36px;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(40,0,70,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.module-visual-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(111,74,168,.08);
  border: 1px solid rgba(111,74,168,.2);
  color: var(--teal);
}

.module-visual-icon.gold {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.25);
  color: var(--gold);
}

.module-visual-icon.danger {
  background: rgba(229,62,62,.07);
  border-color: rgba(229,62,62,.18);
  color: #E53E3E;
}

.module-visual-icon i { font-size: 2.4rem; }

.module-visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.module-visual-tags span {
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(111,74,168,.06);
  border: 1px solid rgba(111,74,168,.14);
  color: var(--teal-2);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .5px;
}

/* ─── MODULE ROWS (legado) ─── */
.module-row { margin-bottom: 80px; }
.module-row:last-child { margin-bottom: 0; }
.module-tag {
  display: inline-block; padding: 4px 12px; border-radius: 6px;
  background: rgba(111,74,168,.08); color: var(--teal);
  font-size: .78rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 14px;
}
.module-content h3 {
  font-size: 1.85rem; font-weight: 800; color: var(--text);
  margin-bottom: 14px; letter-spacing: -.5px; line-height: 1.2;
}
.module-content p { font-size: 1rem; color: var(--muted); margin-bottom: 20px; line-height: 1.75; }
.module-bullets { list-style: none; padding: 0; margin: 0; }
.module-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px; font-size: .95rem; color: var(--text); line-height: 1.6;
}
.module-bullets li i { color: var(--teal); font-size: .9rem; flex-shrink: 0; margin-top: 3px; }
.module-bullets li strong { color: var(--text); }
.module-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 48px 32px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(111,74,168,.06), rgba(201,168,76,.02));
  border: 1px solid var(--border);
  min-height: 220px;
}
.module-visual i { font-size: 5rem; opacity: .28; }

/* ─── PERSONAS ─── */
.persona-card {
  padding: 32px 28px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(40,0,70,.06);
  height: 100%; transition: all .25s;
}
.persona-card:hover { border-color: var(--border-hi); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(40,0,70,.1); }
.persona-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(111,74,168,.1), rgba(201,168,76,.05));
  border: 1px solid rgba(111,74,168,.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.persona-icon-wrap i { font-size: 1.5rem; color: var(--teal); }
.persona-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.persona-role { font-size: .8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 16px; }
.persona-quote {
  font-style: italic; font-size: .97rem; line-height: 1.7; color: var(--muted);
  padding-left: 16px; border-left: 2px solid var(--teal); margin: 0;
}

/* ─── IMPACT ─── */
.impact-item { text-align: center; padding: 24px 16px; }
.impact-num {
  font-family: var(--font-mono); font-size: 3rem; font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 10px;
}
.impact-lbl { font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* ─── SECURITY ─── */
.sec-item {
  display: flex; gap: 16px; padding: 24px;
  border-radius: var(--radius); background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(40,0,70,.05);
  transition: border-color .2s, box-shadow .2s;
}
.sec-item:hover { border-color: var(--border-hi); box-shadow: 0 6px 24px rgba(40,0,70,.09); }
.sec-item > i { font-size: 1.8rem; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.sec-item h4 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.sec-item p { font-size: .92rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ─── PLAN ─── */
.plan-box {
  max-width: 1000px; margin: 0 auto;
  padding: 52px 48px; border-radius: 20px;
  background: linear-gradient(160deg, rgba(111,74,168,.05), rgba(201,168,76,.02));
  border: 1px solid rgba(111,74,168,.22);
  position: relative; overflow: hidden;
  box-shadow: 0 16px 48px rgba(40,0,70,.08), inset 0 1px 0 rgba(255,255,255,.9);
}
.plan-box::before {
  content: ""; position: absolute; inset: -1px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(111,74,168,.2), transparent 50%, rgba(201,168,76,.1));
  z-index: -1; filter: blur(1px);
}
.plan-badge {
  display: inline-block; padding: 5px 16px; border-radius: 100px;
  background: linear-gradient(135deg, var(--teal-2), var(--gold));
  color: #fff; font-size: .7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px;
}
.plan-name { font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -.5px; }
.plan-desc { font-size: 1rem; color: var(--muted); max-width: 520px; margin: 0 auto 28px; }
.plan-price { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 6px; }
.plan-price .lbl {
  font-family: var(--font-mono); font-size: 2.2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.plan-price .currency { font-size: .85rem; color: var(--dim); }
.plan-price-note { font-size: .75rem; color: var(--dim); text-align: center; margin-bottom: 36px; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.plan-features {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
}
@media (max-width: 576px) { .plan-features { grid-template-columns: 1fr; } }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; color: var(--text); line-height: 1.6; }
.plan-features li i { color: #16A34A; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.plan-features li strong { color: var(--text); }
.plan-foot { text-align: center; margin-top: 20px; font-size: .72rem; color: var(--dim); }
.plan-foot i { color: var(--teal); }

/* ─── FAQ ─── */
.faq-box { max-width: 800px; margin: 0 auto; }
details.faq {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px; margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(40,0,70,.04);
  transition: border-color .2s;
}
details.faq:hover { border-color: var(--border-hi); }
details.faq summary {
  cursor: pointer; list-style: none;
  font-size: 1.05rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; font-size: 1.4rem; font-weight: 300;
  color: var(--teal); flex-shrink: 0; font-family: var(--font-body);
}
details.faq[open] summary::after { content: "−"; }
details.faq .ans {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: .97rem; color: var(--muted); line-height: 1.75;
}

/* ─── CTA FINAL ─── */
.cta-section {
  padding: 96px 0; text-align: center;
  background:
    radial-gradient(ellipse 900px 500px at 50% 0%, rgba(111,74,168,.09) 0%, transparent 65%),
    var(--bg-1);
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -1px; color: var(--text); margin-bottom: 18px;
}
.cta-section p { font-size: 1.12rem; color: var(--muted); max-width: 580px; margin: 0 auto 40px; }

/* ─── FOOTER ─── */
footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-1);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand-text { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); }
.footer-copy { font-size: .72rem; color: var(--dim); margin-top: 6px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { font-size: .88rem; color: var(--dim); transition: color .15s; }
.footer-links a:hover { color: var(--teal); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── PERSONAS MODERNA ─── */
.personas-section {
  position: relative; overflow: hidden; padding: 110px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(111,74,168,.07) 0%, transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(201,168,76,.04) 0%, transparent 28%),
    var(--bg);
}
.personas-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(111,74,168,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(111,74,168,.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.personas-container { position: relative; z-index: 2; }
.personas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.persona-card-modern {
  position: relative; padding: 36px 28px; border-radius: 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(40,0,70,.07); overflow: hidden; transition: .35s ease;
}
.persona-card-modern::before {
  content: ""; position: absolute; width: 160px; height: 160px; right: -70px; top: -70px;
  background: rgba(111,74,168,.1); filter: blur(38px); border-radius: 50%; opacity: 0; transition: .35s ease;
}
.persona-card-modern:hover { transform: translateY(-8px); border-color: var(--border-hi); box-shadow: 0 16px 48px rgba(40,0,70,.12); }
.persona-card-modern:hover::before { opacity: 1; }
.persona-icon-modern {
  width: 62px; height: 62px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  background: rgba(111,74,168,.08); border: 1px solid rgba(111,74,168,.2); color: var(--teal);
}
.persona-icon-modern i { font-size: 1.6rem; }
.persona-role-modern { font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.persona-card-modern h3 { font-size: 1.12rem; font-weight: 700; color: var(--text); margin-bottom: 18px; line-height: 1.3; }
.persona-quote-modern { font-style: italic; font-size: .9rem; color: var(--muted); line-height: 1.7; margin: 0; padding-left: 16px; border-left: 2px solid rgba(111,74,168,.3); }

/* ─── IMPACT MODERNA ─── */
.impact-section {
  position: relative; overflow: hidden; padding: 110px 0;
  background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(201,168,76,.07) 0%, transparent 60%), var(--bg-1);
}
.impact-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(111,74,168,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(111,74,168,.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.impact-container { position: relative; z-index: 2; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.impact-card-modern {
  position: relative; padding: 36px 24px; border-radius: 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(40,0,70,.07); text-align: center; transition: .35s ease; overflow: hidden;
}
.impact-card-modern:hover { transform: translateY(-6px); border-color: var(--border-hi); box-shadow: 0 14px 40px rgba(40,0,70,.11); }
.impact-num-modern {
  font-family: var(--font-mono); font-size: 2.8rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 14px;
}
.impact-card-modern p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin: 0 0 12px; }
.impact-src { display: block; font-size: .68rem; color: var(--dim); font-style: italic; }

/* ─── SECURITY MODERNA ─── */
.security-section {
  position: relative; overflow: hidden; padding: 110px 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(111,74,168,.06) 0%, transparent 30%),
    radial-gradient(circle at 90% 50%, rgba(201,168,76,.04) 0%, transparent 28%),
    var(--bg);
}
.security-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(111,74,168,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(111,74,168,.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.security-container { position: relative; z-index: 2; }
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.security-card {
  position: relative; padding: 30px 26px; border-radius: 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(40,0,70,.06); overflow: hidden; transition: .35s ease;
}
.security-card:hover { transform: translateY(-6px); border-color: var(--border-hi); box-shadow: 0 12px 36px rgba(40,0,70,.1); }
.security-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  background: rgba(111,74,168,.08); border: 1px solid rgba(111,74,168,.18); color: var(--teal);
}
.security-icon i { font-size: 1.4rem; }
.security-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.security-card p { font-size: .88rem; color: var(--muted); line-height: 1.68; margin: 0; }

/* ─── PLAN SECTION ─── */
.plan-section {
  position: relative; overflow: hidden; padding: 110px 0;
  background: radial-gradient(circle at 50% 0%, rgba(111,74,168,.08) 0%, transparent 40%), var(--bg-1);
}
.plan-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(111,74,168,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(111,74,168,.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.plan-container { position: relative; z-index: 2; }

/* ─── FAQ SECTION ─── */
.faq-section {
  position: relative; overflow: hidden; padding: 110px 0;
  background: radial-gradient(circle at 80% 80%, rgba(111,74,168,.06) 0%, transparent 30%), var(--bg);
}
.faq-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(111,74,168,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(111,74,168,.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.faq-container { position: relative; z-index: 2; }

/* ─── CTA MODERNA ─── */
.cta-modern {
  position: relative; overflow: hidden; padding: 120px 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(111,74,168,.4) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(201,168,76,.18) 0%, transparent 40%),
    linear-gradient(135deg, #101319 0%, #15101d 50%, #0d1219 100%);
  text-align: center;
}
.cta-modern::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px; opacity: .5;
}
.cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-modern h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -1px; color: #fff; margin: 20px 0 18px; line-height: 1.1; }
.cta-modern p { font-size: 1.1rem; color: rgba(255,255,255,.68); max-width: 560px; margin: 0 auto 40px; line-height: 1.75; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-hum.cta-outline { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.85); background: rgba(255,255,255,.06); }
.btn-hum.cta-outline:hover { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.1); }

/* ─── FOOTER MODERNA ─── */
.footer-modern { background: linear-gradient(180deg, #10111a 0%, #0d0e17 100%); padding: 72px 0 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); align-items: start; }
.footer-brand-modern { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer-logo { height: 50px; width: auto; display: block; max-width: 180px; }
.footer-brand-modern p { font-size: .85rem; color: rgba(255,255,255,.38); line-height: 1.6; margin: 0; max-width: 260px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col-title { display: block; font-size: .7rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: .88rem; color: rgba(255,255,255,.5); }
.footer-col ul li a { color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col ul li a:hover { color: #C4ACEE; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px 0 28px;
}
.footer-copy-text { font-size: .72rem; color: rgba(255,255,255,.32); margin: 0; line-height: 1.6; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges span { padding: 4px 11px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: .64rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.footer-credit { margin: 0; font-size: .70rem; letter-spacing: .5px; text-transform: uppercase; color: rgba(255,255,255,.42); white-space: nowrap; }
.footer-credit strong { font-weight: 700; }
.footer-credit a { color: var(--gold); text-decoration: none; font-weight: 700; }
.footer-credit a:hover { color: #dbb85a; }

/* ─── RESPONSIVE ─── */

/* ══ 1199px · tablets largos ══ */
@media (max-width: 1199px) {
  .pillars-grid, .timeline-grid, .steps-grid, .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid, .personas-grid, .security-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid::before, .steps-grid::before { display: none; }
  .pillar-card-modern { min-height: 300px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
}

/* ══ 992px · tablets ══ */
@media (max-width: 992px) {
  html { font-size: 16px; }
  .section { padding: 80px 0; }
  .hero { padding: 72px 0 52px; }
  .plan-box { padding: 40px 32px; }

  /* Hero moderno */
  .hero-modern { min-height: auto; padding: 88px 0 56px; }
  .hero-metrics { max-width: 100%; }

  /* Novas seções */
  .pillars-section, .problem-section, .timeline-section, .steps-section,
  .modules-section, .personas-section, .impact-section,
  .security-section, .plan-section, .faq-section { padding: 88px 0; }
  .cta-modern { padding: 88px 0; }

  /* Módulos */
  .module-content-modern h3 { font-size: 1.6rem; }
  .module-row-modern { gap: 44px; }

  /* Footer */
  .footer-top { gap: 40px; }
}

/* ══ 768px · tablets pequenos ══ */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section { padding: 64px 0; }
  .section-sub { margin-bottom: 40px; font-size: 1rem; }

  /* Hero moderno */
  .hero-modern { padding: 72px 0 44px; }
  .hero-title { font-size: 2.4rem; letter-spacing: -1.5px; }
  .hero-sub { word-break: break-word; overflow-wrap: break-word; max-width: 100%; }
  .hero-metrics { gap: 10px; max-width: 100%; }
  .hero-metrics div { padding: 14px 12px; border-radius: 12px; }
  .hero-metrics strong { font-size: 1.4rem; }
  .hero-metrics span { font-size: .76rem; }
  .hero-trust span { padding: 7px 12px; font-size: .78rem; }

  /* Mockup tablet */
  .mockup-body { padding: 20px; }
  .hero-pillars { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .mock-kpis { gap: 8px; }

  /* Hero legado */
  .hero { padding: 56px 0 40px; }
  .hero-sub { max-width: 100%; font-size: 1rem; }
  .hero-badges { gap: 7px; }
  .badge-pill { font-size: .78rem; padding: 6px 12px; }
  .btn-hum.lg { padding: 13px 26px; font-size: .95rem; }
  .mockup { transform: none !important; }
  .mockup-wrap { padding: 0 0 8px; }

  /* Novas seções */
  .pillars-section, .problem-section, .timeline-section, .steps-section,
  .modules-section, .personas-section, .impact-section,
  .security-section, .plan-section, .faq-section { padding: 72px 0; }
  .cta-modern { padding: 80px 0; }

  /* Módulos modernos */
  .module-row-modern { grid-template-columns: 1fr; gap: 32px; margin-bottom: 52px; }
  .module-row-reverse { direction: ltr; }
  .module-content-modern h3 { font-size: 1.45rem; }
  .module-visual-card { padding: 36px 24px; }
  .pillar-card-modern { min-height: auto; }
  .problem-callout { padding: 28px 24px; }

  /* Plano */
  .plan-box { padding: 32px 20px; }
  .plan-features { grid-template-columns: 1fr; }

  /* FAQ */
  details.faq { padding: 18px; }
  details.faq summary { font-size: .97rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .footer-brand-modern p { max-width: 100%; }
  .footer-bottom { flex-wrap: wrap; gap: 12px; }
  .footer-links { justify-content: flex-start; gap: 14px; }
}

/* ══ 576px · celulares ══ */
@media (max-width: 576px) {
  html { font-size: 14.5px; }
  .section { padding: 52px 0; }

  /* Hero moderno */
  .hero-modern { padding: 56px 0 36px; overflow-x: hidden; }
  .hero-title { font-size: clamp(1.75rem, 7.5vw, 2.3rem); letter-spacing: -.8px; line-height: 1.1; }
  .hero-eyebrow { font-size: .74rem; padding: 7px 12px; }
  .hero-sub { font-size: .95rem; word-break: break-word; overflow-wrap: break-word; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-hum { width: 100%; justify-content: center; }
  .hero-metrics { grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 100%; }
  .hero-metrics div { padding: 12px 6px; border-radius: 12px; }
  .hero-metrics strong { font-size: 1.15rem; }
  .hero-metrics span { font-size: .66rem; }
  .hero-trust { gap: 6px; flex-wrap: wrap; }
  .hero-trust span { padding: 6px 10px; font-size: .73rem; }

  /* Hero legado */
  .hero { padding: 44px 0 32px; }
  .badge-pill { padding: 5px 10px; font-size: .72rem; }
  .hero .d-flex { flex-direction: column; }
  .btn-hum.lg { width: 100%; justify-content: center; padding: 14px 20px; }

  /* Navbar */
  .brand-logo { height: 28px; }
  .nav-link { padding: 10px 10px !important; font-size: .88rem; }

  /* Mockup mobile */
  .mockup-body { padding: 14px; }
  .mockup-bar { height: 36px; }
  .mock-url { font-size: .62rem; }
  .mock-kpis { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .mock-kpi { padding: 8px 6px; border-radius: 10px; }
  .mock-kpi-lbl { font-size: .58rem; }
  .mock-kpi-val { font-size: .85rem; margin-top: 2px; }
  .mock-kpi-trend { font-size: .55rem; }
  .mock-chart-wrap { padding: 10px; margin-bottom: 10px; }
  .mock-bottom { grid-template-columns: 1fr; gap: 8px; }
  .mock-card { padding: 12px; }
  .mock-card-title { font-size: .68rem; margin-bottom: 8px; }
  .hero-pillars { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .modern-dashboard { border-radius: 16px; }

  /* Novas seções */
  .pillars-section, .problem-section, .timeline-section, .steps-section,
  .modules-section, .personas-section, .impact-section,
  .security-section, .plan-section, .faq-section { padding: 60px 0; }
  .cta-modern { padding: 68px 0; }

  /* Grids → 1 coluna */
  .pillars-grid, .problem-grid, .timeline-grid,
  .steps-grid, .personas-grid, .security-grid { grid-template-columns: 1fr; gap: 16px; }
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Cards compactos */
  .pillar-card-modern, .timeline-card, .step-card-modern,
  .persona-card-modern { padding: 24px 18px; }
  .problem-card-modern { padding: 26px 18px; }
  .impact-card-modern { padding: 26px 14px; }
  .security-card { padding: 22px 16px; }
  .impact-num-modern { font-size: 2.2rem; }
  .problem-stat { font-size: 2.2rem; }

  /* Módulos modernos */
  .module-content-modern h3 { font-size: 1.3rem; }
  .module-row-modern { margin-bottom: 40px; }
  .module-bullets-modern li { font-size: .88rem; }
  .module-visual-card { padding: 28px 18px; }
  .module-visual-icon { width: 60px; height: 60px; }
  .module-visual-icon i { font-size: 1.9rem; }

  /* Plano */
  .plan-box { padding: 28px 14px; border-radius: 14px; }
  .plan-name { font-size: 1.45rem; }
  .plan-price .lbl { font-size: 1.8rem; }
  .plan-features li { font-size: .87rem; }
  .plan-box .d-flex { flex-direction: column; align-items: center; }
  .plan-box .btn-hum.lg { width: 100%; max-width: 320px; justify-content: center; }

  /* FAQ */
  details.faq { padding: 16px 14px; }
  details.faq summary { font-size: .93rem; gap: 10px; }
  details.faq .ans { font-size: .9rem; }

  /* CTA moderna */
  .cta-inner { padding: 0 8px; }
  .cta-modern h2 { font-size: 1.8rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-hum { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer moderno */
  .footer-modern { padding: 48px 0 0; }
  .footer-top { gap: 28px; }

  /* Brand: centralizado no mobile */
  .footer-brand-modern { align-items: center; }
  .footer-brand-modern p { text-align: center; max-width: 100%; }

  /* Nav: 3 colunas com fontes no padrão do site */
  .footer-nav { grid-template-columns: repeat(3, 1fr); gap: 14px 8px; }
  .footer-col { text-align: center; }
  .footer-col ul { align-items: center; gap: 8px; }

  /* Bottom bar: centralizado no mobile */
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 20px 0 28px; }
  .footer-badges { justify-content: center; gap: 6px; }
  .footer-credit { white-space: normal; text-align: center; }

  /* Legado */
  .problem-card { padding: 26px 18px; }
  .problem-num { font-size: 2.2rem; }
  .step-card { padding: 22px 16px; }
  .tl-date { font-size: .68rem; }
  .impact-num { font-size: 2rem; }
  .impact-lbl { font-size: .82rem; }
}

/* ─── MODAL DEMONSTRAÇÃO ─── */
.demo-modal { background:#fff; border-radius:20px; border:none; overflow:hidden; box-shadow:0 32px 80px rgba(0,0,0,.22); }
.demo-modal-header {
  background: linear-gradient(135deg, var(--teal-2), var(--teal));
  padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;
}
.demo-modal-kicker {
  display: block; font-size: .65rem; font-weight: 800; letter-spacing: 1.8px;
  text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 8px;
}
.demo-modal-title { font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin: 0 0 8px; line-height: 1.2; }
.demo-modal-sub { font-size: .84rem; color: rgba(255,255,255,.65); margin: 0; line-height: 1.5; }
.demo-modal-close {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 8px;
  color: #fff; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: background .15s;
}
.demo-modal-close:hover { background: rgba(255,255,255,.22); }
.demo-modal-body { padding: 28px 32px; }

/* Grid do formulário */
.demo-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.demo-form-full { grid-column: 1 / -1; }
.demo-form-group { display: flex; flex-direction: column; gap: 5px; }
.demo-form-group label { font-size: .78rem; font-weight: 600; color: var(--muted); }
.req { color: var(--teal); }
.demo-optional { font-weight: 400; color: var(--dim); font-size: .72rem; }
.demo-form-group input,
.demo-form-group select,
.demo-form-group textarea {
  padding: 11px 14px; border: 1.5px solid rgba(0,0,0,.1); border-radius: 10px;
  font-family: var(--font-body); font-size: .9rem; color: var(--text);
  background: #fff; transition: border-color .15s, box-shadow .15s; outline: none; width: 100%;
  appearance: none; -webkit-appearance: none;
}
.demo-form-group select { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234A4A5A' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; background-size: 14px; padding-right: 36px; }
.demo-form-group input:focus, .demo-form-group select:focus, .demo-form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(92,58,144,.10);
}
.demo-form-group input.is-invalid, .demo-form-group select.is-invalid, .demo-form-group textarea.is-invalid { border-color: #ef4444; }
.demo-form-group textarea { resize: vertical; min-height: 88px; line-height: 1.55; }
.demo-form-error { font-size: .72rem; color: #ef4444; display: none; }
.demo-form-error.show { display: block; }

/* Botão */
.demo-submit { width: 100%; justify-content: center; margin-top: 6px; padding: 14px; font-size: 1rem; border-radius: 12px; }
@keyframes spin { to { transform: rotate(360deg); } }
.demo-spin { display: inline-block; animation: spin .8s linear infinite; }

/* Rodapé do form */
.demo-privacy { text-align: center; font-size: .72rem; color: var(--dim); margin-top: 14px; }
.demo-privacy i { color: var(--teal); margin-right: 4px; }

/* Sucesso */
.demo-success { text-align: center; padding: 40px 20px; }
.demo-success-icon { font-size: 3.2rem; color: #22c55e; margin-bottom: 18px; }
.demo-success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--text); margin-bottom: 10px; }
.demo-success p { color: var(--muted); font-size: .95rem; line-height: 1.6; }

/* Erro */
.demo-error-msg { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding: 12px 16px; border-radius: 10px; background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; font-size: .85rem; }
.demo-error-msg i { flex-shrink: 0; font-size: 1.1rem; }

/* Responsivo */
@media (max-width: 576px) {
  .demo-form-grid { grid-template-columns: 1fr; }
  .demo-modal-header { padding: 22px 20px; }
  .demo-modal-body { padding: 20px; }
  .demo-modal-title { font-size: 1.15rem; }
  .demo-modal-sub { font-size: .8rem; }
}

/* ══ sem hover em touch ══ */
@media (hover: none) {
  .problem-card:hover, .step-card:hover, .persona-card:hover, .sec-item:hover, .mockup:hover,
  .pillar-card-modern:hover, .timeline-card:hover, .step-card-modern:hover,
  .persona-card-modern:hover, .impact-card-modern:hover, .security-card:hover,
  .problem-card-modern:hover { transform: none !important; box-shadow: revert; }
}
