/* ════════════════════════════════════════════════════════════════
   Simulador de Entrevistas — Landing v3 (investor-grade)
   Prefix: sl-
════════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
.sl-wrap {
  --sl-indigo:       #6366f1;
  --sl-indigo-dark:  #4f46e5;
  --sl-indigo-light: #818cf8;
  --sl-emerald:      #10b981;
  --sl-emerald-dark: #059669;
  --sl-dark:         #080e1c;
  --sl-dark-2:       #0f172a;
  --sl-dark-3:       #1e293b;
  --sl-slate:        #334155;
  --sl-text:         #111827;
  --sl-text-2:       #374151;
  --sl-text-muted:   #6b7280;
  --sl-text-light:   #f9fafb;
  --sl-border:       #e5e7eb;
  --sl-border-2:     #f3f4f6;
  --sl-bg:           #ffffff;
  --sl-bg-alt:       #f8fafc;
  --sl-radius:       14px;
  --sl-radius-lg:    20px;
  --sl-shadow:       0 2px 16px rgba(0,0,0,.07);
  --sl-shadow-md:    0 8px 32px rgba(0,0,0,.10);
  --sl-shadow-xl:    0 24px 64px rgba(0,0,0,.14);
  --sl-font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  font-family: var(--sl-font);
  color: var(--sl-text);
  line-height: 1.65;
  overflow-x: hidden;

  /* Break out of Astra/theme content constraints */
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.sl-wrap *, .sl-wrap *::before, .sl-wrap *::after {
  box-sizing: border-box;
}

.sl-wrap h1, .sl-wrap h2, .sl-wrap h3,
.sl-wrap h4, .sl-wrap p, .sl-wrap ul,
.sl-wrap blockquote {
  margin: 0;
}

.sl-wrap img { display: block; }

/* ── Layout ─────────────────────────────────────────────────── */
.sl-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* Full-bleed helper */
.sl-bleed {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}

/* ── Animations ─────────────────────────────────────────────── */
.sl-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.sl-animate.sl-in {
  opacity: 1;
  transform: none;
}
.sl-fade-in {
  animation: sl-fadein .8s ease both;
}
.sl-fade-delay {
  animation-delay: .25s;
}
@keyframes sl-fadein {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes sl-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes sl-dot-pulse {
  0%, 80%, 100% { transform: scale(.7); opacity: .4; }
  40%           { transform: scale(1.1); opacity: 1; }
}
@keyframes sl-live-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .4; }
}

/* ── Buttons ────────────────────────────────────────────────── */
.sl-wrap .sl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  font-family: var(--sl-font);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.sl-btn-sm  { padding: 10px 18px; font-size: .875rem; }
.sl-btn-md  { padding: 13px 24px; font-size: .95rem; }
.sl-btn-lg  { padding: 15px 28px; font-size: 1rem; }
.sl-btn-xl  { padding: 18px 36px; font-size: 1.1rem; border-radius: 12px; }
.sl-btn-full { width: 100%; justify-content: center; }

.sl-btn-primary {
  background: var(--sl-indigo-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(79,70,229,.35);
}
.sl-btn-primary:hover {
  background: var(--sl-indigo);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(79,70,229,.4);
  color: #fff;
  text-decoration: none;
}

.sl-btn-accent {
  background: var(--sl-emerald);
  color: #fff;
  box-shadow: 0 4px 14px rgba(16,185,129,.35);
}
.sl-btn-accent:hover {
  background: var(--sl-emerald-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(16,185,129,.45);
  color: #fff;
  text-decoration: none;
}

.sl-btn-ghost {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
}
.sl-btn-ghost:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
  text-decoration: none;
}

.sl-btn-white {
  background: #fff;
  color: var(--sl-indigo-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.sl-btn-white:hover {
  background: #f5f5ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  color: var(--sl-indigo-dark);
  text-decoration: none;
}

.sl-btn-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249,115,22,.45);
}
.sl-btn-orange:hover {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(249,115,22,.55);
  color: #fff;
  text-decoration: none;
}

/* ── Section typography ─────────────────────────────────────── */
.sl-section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sl-indigo);
  background: rgba(99,102,241,.1);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.sl-eyebrow-light {
  color: var(--sl-indigo-light);
  background: rgba(129,140,248,.15);
}

.sl-section-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--sl-text);
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.sl-h2-left { text-align: left; }

.sl-section-sub {
  font-size: 1.05rem;
  color: var(--sl-text-muted);
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.7;
}
.sl-section-h2 + .sl-section-sub { text-align: center; }

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
.sl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background .3s ease, box-shadow .3s ease;
}
.sl-nav-solid {
  background: rgba(8,14,28,.92);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.sl-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.sl-nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.sl-nav-logo:hover { color: #fff; text-decoration: none; }
.sl-nav-logo strong { font-weight: 900; color: #fff; }
.sl-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--sl-indigo), #7c3aed);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(99,102,241,.5);
}
.sl-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.sl-nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.sl-nav-links a:hover { color: #fff; text-decoration: none; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.sl-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--sl-dark);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.sl-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Glows */
.sl-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.sl-glow-1 {
  width: 500px; height: 500px;
  background: rgba(99,102,241,.22);
  top: -100px; left: -80px;
}
.sl-glow-2 {
  width: 400px; height: 400px;
  background: rgba(16,185,129,.14);
  bottom: -60px; right: 10%;
}

/* Hero copy */
.sl-hero-copy { position: relative; z-index: 2; }

.sl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--sl-indigo-light);
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 28px;
}
.sl-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sl-emerald);
  animation: sl-live-pulse 2s ease infinite;
  flex-shrink: 0;
}

.sl-hero-h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 24px;
}
.sl-h1-accent {
  background: linear-gradient(135deg, var(--sl-indigo-light), var(--sl-emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sl-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 480px;
}

.sl-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sl-hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sl-trust-avatars {
  display: flex;
  align-items: center;
}
.sl-trust-avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--sl-dark);
  margin-left: -8px;
  object-fit: cover;
}
.sl-trust-avatars img:first-child { margin-left: 0; }
.sl-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sl-trust-stars { color: #fbbf24; font-size: .95rem; letter-spacing: 1px; }
.sl-trust-text span { font-size: .8rem; color: rgba(255,255,255,.55); }

/* Hero visual */
.sl-hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Chat card */
.sl-chat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--sl-radius-lg);
  backdrop-filter: blur(16px);
  overflow: hidden;
  animation: sl-float 5s ease-in-out infinite;
}
.sl-chat-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sl-chat-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sl-indigo), #7c3aed);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sl-chat-meta { flex: 1; }
.sl-chat-meta strong { display: block; font-size: .875rem; color: #fff; }
.sl-chat-meta span   { font-size: .75rem; color: rgba(255,255,255,.5); }
.sl-live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--sl-emerald);
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 100px;
  padding: 4px 10px;
}
.sl-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sl-emerald);
  animation: sl-live-pulse 1.5s ease infinite;
}
.sl-chat-msgs {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sl-msg {
  max-width: 85%;
  font-size: .82rem;
  line-height: 1.55;
  padding: 10px 14px;
  border-radius: 14px;
}
.sl-msg-ai {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.sl-msg-user {
  background: var(--sl-indigo-dark);
  color: rgba(255,255,255,.9);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.sl-chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.sl-chat-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  animation: sl-dot-pulse 1.4s ease infinite;
}
.sl-chat-typing span:nth-child(2) { animation-delay: .16s; }
.sl-chat-typing span:nth-child(3) { animation-delay: .32s; }
.sl-chat-ft {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.sl-chat-input-mock {
  flex: 1;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  padding: 9px 14px;
}
.sl-mic-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sl-emerald);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

/* Score card */
.sl-score-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--sl-radius);
  padding: 18px 20px;
  backdrop-filter: blur(16px);
  animation: sl-float 5s ease-in-out 2.5s infinite;
}
.sl-sc-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.sl-sc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.sl-sc-row:last-child { margin-bottom: 0; }
.sl-sc-row span {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  width: 75px;
  flex-shrink: 0;
}
.sl-sc-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  overflow: hidden;
}
.sl-sc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sl-indigo), var(--sl-indigo-light));
  border-radius: 10px;
  width: 0;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.sl-sc-row strong {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  width: 30px;
  text-align: right;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   BRANDS
══════════════════════════════════════════════════════════════ */
.sl-brands {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--sl-bg);
  border-bottom: 1px solid var(--sl-border-2);
  padding: 28px 0;
}
.sl-brands-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.sl-brands-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--sl-text-muted);
  white-space: nowrap;
}
.sl-brands-row {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.sl-brands-row span {
  font-size: .95rem;
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: .01em;
  transition: color .2s;
}
.sl-brands-row span:hover { color: #94a3b8; }

/* ══════════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════════ */
.sl-stats {
  padding: 72px 0;
  background: var(--sl-bg);
}
.sl-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.sl-stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.sl-stat-div {
  width: 1px;
  height: 56px;
  background: var(--sl-border);
}
.sl-stat-n {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--sl-text);
  line-height: 1;
  margin-bottom: 8px;
}
.sl-stat-n span {
  font-size: 55%;
  font-weight: 600;
  color: var(--sl-text-muted);
  letter-spacing: 0;
}
.sl-stat-l {
  font-size: .85rem;
  color: var(--sl-text-muted);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   PROBLEMS
══════════════════════════════════════════════════════════════ */
.sl-problems {
  padding: 96px 0;
  background: var(--sl-bg-alt);
  text-align: center;
}
.sl-prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.sl-prob-card {
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius);
  padding: 32px 28px;
  text-align: left;
  transition: box-shadow .25s;
}
.sl-prob-card:hover { box-shadow: var(--sl-shadow-md); }
.sl-prob-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.sl-prob-icon--red {
  background: #fef2f2;
  color: #ef4444;
}
.sl-prob-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--sl-text);
}
.sl-prob-card p {
  font-size: .88rem;
  color: var(--sl-text-muted);
  line-height: 1.65;
}
.sl-solution-box {
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid #4ade80;
  border-radius: var(--sl-radius-lg);
  padding: 30px 36px;
  text-align: left;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(16,185,129,.15), 0 0 0 4px rgba(74,222,128,.1);
}
.sl-sol-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #16a34a;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(22,163,74,.35);
}
.sl-sol-text { font-size: 1.05rem; line-height: 1.75; color: var(--sl-text); }
.sl-sol-text strong { color: #15803d; font-size: 1.08rem; }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════════ */
.sl-how {
  padding: 96px 0;
  background: var(--sl-bg);
  text-align: center;
}
.sl-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 8px;
}
.sl-step {
  flex: 1;
  padding: 0 28px;
  text-align: center;
}
.sl-step-line {
  width: 1px;
  min-height: 120px;
  margin-top: 48px;
  background: linear-gradient(to bottom, var(--sl-indigo-dark), transparent);
  opacity: .3;
  flex-shrink: 0;
}
.sl-step-num {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--sl-indigo);
  margin-bottom: 18px;
}
.sl-step-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(99,102,241,.08);
  color: var(--sl-indigo);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: background .2s;
}
.sl-step:hover .sl-step-icon { background: rgba(99,102,241,.15); }
.sl-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--sl-text);
}
.sl-step p {
  font-size: .875rem;
  color: var(--sl-text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   PERSONALITIES
══════════════════════════════════════════════════════════════ */
.sl-pers {
  padding: 96px 0;
  background: var(--sl-bg-alt);
  text-align: center;
}
.sl-pers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.sl-pers-card {
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius);
  padding: 26px 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.sl-pers-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sl-shadow-md);
}
.sl-pers-av {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 14px;
  letter-spacing: 0;
  font-family: var(--sl-font);
}
.sl-pers-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--sl-text);
  margin-bottom: 4px;
}
.sl-pers-role {
  font-size: .75rem;
  color: var(--sl-text-muted);
  margin-bottom: 12px;
}
.sl-pers-desc {
  font-size: .8rem;
  color: var(--sl-text-2);
  line-height: 1.6;
  margin-bottom: 14px;
}
.sl-pers-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}
.sl-pers-tags span {
  font-size: .7rem;
  font-weight: 600;
  color: var(--sl-indigo);
  background: rgba(99,102,241,.08);
  border-radius: 100px;
  padding: 3px 9px;
}

/* ══════════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════════ */
.sl-features {
  padding: 96px 0;
  background: var(--sl-bg);
  text-align: center;
}
.sl-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sl-feat-card {
  background: var(--sl-bg-alt);
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius);
  padding: 32px 28px;
  text-align: left;
  transition: transform .2s, box-shadow .2s;
}
.sl-feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sl-shadow-md);
  background: var(--sl-bg);
}
.sl-feat-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.sl-feat-icon--indigo { background: rgba(99,102,241,.1); color: #6366f1; }
.sl-feat-icon--violet { background: rgba(124,58,237,.1);  color: #7c3aed; }
.sl-feat-icon--emerald{ background: rgba(16,185,129,.1);  color: #059669; }
.sl-feat-icon--amber  { background: rgba(245,158,11,.1);  color: #d97706; }
.sl-feat-icon--blue   { background: rgba(59,130,246,.1);  color: #2563eb; }
.sl-feat-icon--slate  { background: rgba(100,116,139,.1); color: #475569; }
.sl-feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--sl-text);
}
.sl-feat-card p {
  font-size: .875rem;
  color: var(--sl-text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.sl-testi {
  padding: 96px 0;
  background: var(--sl-bg-alt);
  text-align: center;
}
.sl-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.sl-testi-card {
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .25s;
}
.sl-testi-card:hover { box-shadow: var(--sl-shadow-md); }
.sl-testi-stars {
  color: #fbbf24;
  font-size: .95rem;
  letter-spacing: 2px;
}
.sl-testi-quote {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--sl-text-2);
  flex: 1;
  font-style: normal;
}
.sl-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--sl-border-2);
}
.sl-testi-author img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.sl-testi-author strong {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--sl-text);
}
.sl-testi-author span {
  font-size: .78rem;
  color: var(--sl-text-muted);
}

/* ══════════════════════════════════════════════════════════════
   REPORT PREVIEW
══════════════════════════════════════════════════════════════ */
.sl-report-prev {
  padding: 96px 0;
  background: var(--sl-bg);
}
.sl-rp-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sl-rp-copy .sl-section-h2 { text-align: left; }
.sl-rp-copy p {
  font-size: 1rem;
  color: var(--sl-text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.sl-rp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sl-rp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--sl-text-2);
  font-weight: 500;
}
.sl-rp-list li svg { color: var(--sl-emerald); flex-shrink: 0; }

/* Report card mockup */
.sl-rp-card {
  background: var(--sl-dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--sl-radius-lg);
  padding: 28px;
  box-shadow: var(--sl-shadow-xl);
}
.sl-rp-card-hd {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sl-rp-score-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid var(--sl-indigo);
  display: flex; align-items: baseline; justify-content: center;
  gap: 1px;
  flex-shrink: 0;
}
.sl-rp-score-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.sl-rp-score-label { font-size: .7rem; color: rgba(255,255,255,.4); }
.sl-rp-card-title {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.sl-rp-card-sub { font-size: .78rem; color: rgba(255,255,255,.45); }
.sl-rp-bars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.sl-rp-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sl-rp-bar-row span { font-size: .78rem; color: rgba(255,255,255,.5); width: 160px; flex-shrink: 0; }
.sl-rp-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
}
.sl-rp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sl-indigo), var(--sl-indigo-light));
  border-radius: 10px;
  width: 0;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.sl-rp-bar-row strong { font-size: .82rem; color: rgba(255,255,255,.8); width: 28px; text-align: right; flex-shrink: 0; }
.sl-rp-card-ft { display: flex; flex-direction: column; gap: 8px; }
.sl-rp-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  border-radius: 8px;
  padding: 9px 14px;
  font-weight: 500;
}
.sl-rp-tag svg { flex-shrink: 0; }
.sl-rp-tag--good { background: rgba(16,185,129,.12); color: #34d399; }
.sl-rp-tag--tip  { background: rgba(245,158,11,.1);  color: #fbbf24; }

/* ══════════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════════ */
.sl-pricing {
  padding: 96px 0;
  background: var(--sl-bg-alt);
  text-align: center;
}
.sl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}
.sl-pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
}
.sl-pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  font-size: .82rem;
  color: var(--sl-text-muted);
  font-weight: 500;
}
.sl-pricing-note svg { color: var(--sl-emerald); flex-shrink: 0; }
.sl-plan {
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  padding: 36px 32px;
  position: relative;
}
.sl-plan-pro {
  background: var(--sl-dark-2);
  border-color: var(--sl-indigo);
  box-shadow: 0 0 0 1px var(--sl-indigo), 0 20px 50px rgba(99,102,241,.18);
}
.sl-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sl-indigo-dark), #7c3aed);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.sl-plan-hd { margin-bottom: 28px; }
.sl-plan-name {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sl-text-muted);
  margin-bottom: 12px;
}
.sl-plan-pro .sl-plan-name { color: rgba(255,255,255,.45); }
.sl-plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.sl-plan-amount {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--sl-text);
  line-height: 1;
}
.sl-plan-pro .sl-plan-amount { color: #fff; }
.sl-plan-period {
  font-size: .9rem;
  color: var(--sl-text-muted);
  font-weight: 500;
}
.sl-plan-pro .sl-plan-period { color: rgba(255,255,255,.45); }
.sl-plan-desc {
  font-size: .85rem;
  color: var(--sl-text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}
.sl-plan-pro .sl-plan-desc { color: rgba(255,255,255,.5); }
.sl-plan-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--sl-border);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.sl-plan-pro .sl-plan-feats { border-color: rgba(255,255,255,.1); }
.sl-plan-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
}
.sl-feat-yes { color: var(--sl-text-2); }
.sl-feat-yes svg { color: var(--sl-emerald); flex-shrink: 0; }
.sl-plan-pro .sl-feat-yes { color: rgba(255,255,255,.8); }
.sl-feat-no { color: var(--sl-text-muted); }
.sl-feat-no svg { color: #d1d5db; flex-shrink: 0; }
.sl-plan-pro .sl-feat-no { color: rgba(255,255,255,.3); }
.sl-plan-pro .sl-feat-no svg { color: rgba(255,255,255,.2); }

/* Plan Pro — estado Próximamente */
.sl-plan-coming {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1.5px dashed rgba(255,255,255,.2);
  color: rgba(255,255,255,.4);
  font-size: .875rem;
  font-weight: 600;
  font-family: var(--sl-font);
  cursor: default;
  letter-spacing: .01em;
}

/* ══════════════════════════════════════════════════════════════
   WAITLIST
══════════════════════════════════════════════════════════════ */
.sl-waitlist {
  padding: 80px 0;
  background: var(--sl-dark);
}
.sl-wl-box {
  display: flex;
  align-items: center;
  gap: 64px;
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: var(--sl-radius-lg);
  padding: 48px 52px;
}
.sl-wl-copy { flex: 1; }
.sl-wl-h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.sl-wl-copy p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.sl-wl-form-wrap { flex-shrink: 0; min-width: 340px; }
.sl-wl-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sl-wl-input {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 13px 18px;
  font-size: .9rem;
  color: #fff;
  font-family: var(--sl-font);
  outline: none;
  transition: border-color .2s;
}
.sl-wl-input:focus { border-color: var(--sl-indigo-light); }
.sl-wl-input::placeholder { color: rgba(255,255,255,.3); }
.sl-wl-note {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.sl-faq {
  padding: 96px 0;
  background: var(--sl-bg-alt);
  text-align: center;
}
.sl-faq-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sl-faq-item {
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.sl-faq-item[open] { box-shadow: var(--sl-shadow); }
.sl-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--sl-text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  transition: color .2s;
}
.sl-faq-q::-webkit-details-marker { display: none; }
.sl-faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--sl-indigo);
  transition: transform .25s;
  flex-shrink: 0;
  line-height: 1;
}
.sl-faq-item[open] .sl-faq-q::after { transform: rotate(45deg); }
.sl-faq-item[open] .sl-faq-q { color: var(--sl-indigo); }
.sl-faq-a {
  padding: 0 24px 22px;
  font-size: .875rem;
  color: var(--sl-text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--sl-border-2);
  padding-top: 16px;
}

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════════ */
.sl-cta-final {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--sl-dark);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sl-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(99,102,241,.25) 0%, transparent 70%);
  pointer-events: none;
}
.sl-cta-inner { position: relative; z-index: 2; }
.sl-cta-h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.sl-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.sl-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.sl-cta-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}
.sl-cta-trust svg { color: rgba(255,255,255,.35); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .sl-pers-grid { grid-template-columns: repeat(3, 1fr); }
  .sl-pers-card:nth-child(4),
  .sl-pers-card:nth-child(5) { /* keep them in grid */ }
}

@media (max-width: 900px) {
  .sl-nav-links { display: none; }
  .sl-hero { padding: 120px 0 72px; }
  .sl-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  /* copy first, visual below — natural reading order on mobile */
  .sl-hero-h1 { font-size: 2.4rem; }
  .sl-stats-grid { gap: 0; flex-wrap: wrap; }
  .sl-stat { min-width: 45%; padding: 20px 16px; }
  .sl-stat-div { display: none; }
  .sl-prob-grid { grid-template-columns: 1fr; }
  .sl-steps { flex-direction: column; align-items: center; }
  .sl-step { max-width: 380px; }
  .sl-step-line { width: 60px; height: 1px; min-height: unset; margin: 0; background: linear-gradient(to right, var(--sl-indigo-dark), transparent); }
  .sl-pers-grid { grid-template-columns: repeat(2, 1fr); }
  .sl-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .sl-testi-grid { grid-template-columns: 1fr; }
  .sl-rp-two { grid-template-columns: 1fr; gap: 40px; }
  .sl-pricing-grid,
  .sl-pricing-grid--3 { grid-template-columns: 1fr; max-width: 440px; }
  .sl-wl-box { flex-direction: column; gap: 36px; padding: 40px 32px; }
  .sl-wl-form-wrap { min-width: unset; width: 100%; }
  .sl-brands-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 600px) {
  .sl-hero { padding: 110px 0 64px; }
  .sl-hero-btns { flex-direction: column; }
  .sl-hero-btns .sl-btn { width: 100%; justify-content: center; }
  .sl-pers-grid { grid-template-columns: 1fr; }
  .sl-feat-grid { grid-template-columns: 1fr; }
  .sl-wl-box { padding: 32px 24px; }
  .sl-cta-trust { flex-direction: column; gap: 12px; }
  .sl-rp-bar-row span { width: 120px; font-size: .72rem; }
  .sl-stats-grid { justify-content: flex-start; }
  .sl-stat { min-width: 100%; text-align: center; }
}

/* ── Blog Preview ─────────────────────────────────────────── */
.sl-blog {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--sl-bg-alt);
}
.sl-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.sl-blog-card {
  background: var(--sl-bg);
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius-lg);
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}
.sl-blog-card:hover {
  box-shadow: var(--sl-shadow-md);
  transform: translateY(-3px);
}
.sl-blog-card-link {
  display: flex;
  flex-direction: column;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.sl-blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sl-text);
  margin-bottom: 10px;
  line-height: 1.45;
}
.sl-blog-card p {
  font-size: .91rem;
  color: var(--sl-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.sl-blog-read {
  font-size: .85rem;
  font-weight: 600;
  color: var(--sl-indigo);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.sl-blog-cta {
  margin-top: 44px;
  text-align: center;
}
@media (max-width: 900px) {
  .sl-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sl-blog-grid { grid-template-columns: 1fr; }
}
