/* ============================================================
   Mais Seguidores Creators — Design System
   Marketplace de influencers e anunciantes
   Cor principal: violeta vibrante (diferencia do verde do HUB)
   ============================================================ */

:root {
  /* Paleta primária — violeta vibrante */
  --cr-primario:   #7c3aed;
  --cr-primario-h: #6d28d9;
  --cr-primario-50:  #f5f3ff;
  --cr-primario-100: #ede9fe;
  --cr-primario-200: #ddd6fe;
  --cr-primario-300: #c4b5fd;
  --cr-primario-600: #7c3aed;
  --cr-primario-700: #6d28d9;

  /* Acentos */
  --cr-rosa:    #ec4899;
  --cr-verde:   #10b981;
  --cr-azul:    #3b82f6;
  --cr-amarelo: #f59e0b;
  --cr-vermelho:#ef4444;

  /* Neutros */
  --cr-bg:       #fafbff;
  --cr-bg-card:  #ffffff;
  --cr-bg-soft:  #f5f3ff;
  --cr-border:   #e2e8f0;
  --cr-border-h: #c4b5fd;
  --cr-texto:    #0f172a;
  --cr-texto-2:  #334155;
  --cr-muted:    #64748b;

  /* Tipografia */
  --cr-fonte: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Bordas / sombras */
  --cr-r-sm: 6px;
  --cr-r-md: 10px;
  --cr-r-lg: 14px;
  --cr-r-xl: 20px;
  --cr-r-full: 999px;

  --cr-sh-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --cr-sh-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --cr-sh-lg: 0 12px 32px rgba(124, 58, 237, 0.18);

  /* Transições */
  --cr-t: 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset + base ────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--cr-bg);
  color: var(--cr-texto);
  font-family: var(--cr-fonte);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--cr-primario); text-decoration: none; transition: color var(--cr-t); }
a:hover { color: var(--cr-primario-h); }
h1, h2, h3, h4 { color: var(--cr-texto); letter-spacing: -0.015em; margin-top: 0; }
h1 { font-size: 32px; font-weight: 800; line-height: 1.15; }
h2 { font-size: 22px; font-weight: 700; }
h3 { font-size: 17px; font-weight: 600; }

.cr-muted { color: var(--cr-muted); }
.cr-text-center { text-align: center; }
.cr-mt-md { margin-top: 16px; }
.cr-mb-sm { margin-bottom: 8px; }
.cr-mb-md { margin-bottom: 24px; }

/* ── Topbar ──────────────────────────────────────────────── */
.cr-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: white;
  border-bottom: 1px solid var(--cr-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.cr-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: var(--cr-texto) !important;
  font-weight: 600;
}
.cr-brand:hover { color: var(--cr-primario) !important; }
.cr-brand-icon { font-size: 22px; }
.cr-brand-text strong { font-weight: 800; color: var(--cr-primario); }

.cr-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cr-nav-user { color: var(--cr-muted); font-size: 13px; }
.cr-nav-link {
  color: var(--cr-texto-2) !important;
  font-size: 14px;
  font-weight: 500;
}
.cr-nav-link:hover { color: var(--cr-primario) !important; }
.cr-nav-link-muted { color: var(--cr-muted) !important; }
.cr-nav-link-cta {
  background: var(--cr-primario);
  color: white !important;
  padding: 8px 18px;
  border-radius: var(--cr-r-full);
  transition: background var(--cr-t);
}
.cr-nav-link-cta:hover { background: var(--cr-primario-h); color: white !important; }

@media (max-width: 640px) {
  .cr-topbar { flex-direction: column; gap: 12px; padding: 12px 16px; }
  .cr-nav { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .cr-nav-user { display: none; }
}

/* ── Main + containers ───────────────────────────────────── */
.cr-main { min-height: calc(100vh - 200px); padding-bottom: 40px; }
.cr-container { max-width: 1080px; margin: 0 auto; padding: 32px 20px; }
.cr-container-estreito { max-width: 640px; margin: 0 auto; padding: 32px 20px; }

/* ── Hero (landing) ──────────────────────────────────────── */
.cr-hero {
  text-align: center;
  padding: 64px 20px;
  max-width: 880px;
  margin: 0 auto;
}
.cr-hero-titulo {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media (max-width: 600px) { .cr-hero-titulo { font-size: 34px; } }
.cr-hero-grad {
  background: linear-gradient(135deg, var(--cr-primario) 0%, var(--cr-rosa) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cr-hero-sub {
  font-size: 18px;
  color: var(--cr-texto-2);
  max-width: 640px;
  margin: 0 auto 32px;
}
.cr-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Features grid ───────────────────────────────────────── */
.cr-secao-features { padding: 48px 20px; background: white; }
.cr-secao-titulo {
  text-align: center;
  font-size: 28px;
  margin-bottom: 32px;
  font-weight: 800;
}
.cr-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.cr-feature {
  text-align: center;
  padding: 24px 16px;
  background: var(--cr-bg);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-r-lg);
  transition: transform var(--cr-t), box-shadow var(--cr-t);
}
.cr-feature:hover { transform: translateY(-3px); box-shadow: var(--cr-sh-md); }
.cr-feature-icone { font-size: 36px; margin-bottom: 12px; }
.cr-feature h3 { margin-bottom: 8px; }
.cr-feature p { font-size: 14px; color: var(--cr-muted); margin: 0; }

/* ── Público grid (Sou influencer / Sou anunciante) ──────── */
.cr-secao-publico { padding: 48px 20px; }
.cr-publico-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.cr-publico-card {
  padding: 32px;
  background: white;
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-r-xl);
  box-shadow: var(--cr-sh-sm);
  transition: transform var(--cr-t), box-shadow var(--cr-t);
}
.cr-publico-card:hover { transform: translateY(-4px); box-shadow: var(--cr-sh-lg); }
.cr-publico-card-influencer { border-top: 4px solid var(--cr-rosa); }
.cr-publico-card-anunciante  { border-top: 4px solid var(--cr-primario); }
.cr-publico-card h2 { margin-bottom: 12px; }
.cr-publico-card > p { color: var(--cr-texto-2); margin-bottom: 18px; }
.cr-publico-lista { list-style: none; padding: 0; margin: 0 0 24px 0; }
.cr-publico-lista li {
  padding: 6px 0;
  color: var(--cr-texto-2);
  font-size: 14px;
}

/* ── Botões ──────────────────────────────────────────────── */
.cr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: var(--cr-r-full);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--cr-t);
  white-space: nowrap;
}
.cr-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.cr-btn-primario {
  background: var(--cr-primario);
  color: white !important;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}
.cr-btn-primario:hover:not(:disabled) {
  background: var(--cr-primario-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.35);
}
.cr-btn-secundario {
  background: white;
  color: var(--cr-primario) !important;
  border-color: var(--cr-border);
}
.cr-btn-secundario:hover:not(:disabled) {
  border-color: var(--cr-primario);
  background: var(--cr-primario-50);
}
.cr-btn-grande { padding: 14px 28px; font-size: 15px; }

/* ── Forms ───────────────────────────────────────────────── */
.cr-form { display: flex; flex-direction: column; gap: 16px; }
.cr-form-header { margin-bottom: 16px; }
.cr-form-header h1 { margin-bottom: 8px; }
.cr-fieldset {
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-r-lg);
  padding: 20px;
  background: white;
}
.cr-fieldset legend {
  padding: 0 8px;
  font-weight: 600;
  color: var(--cr-texto);
  font-size: 14px;
}
.cr-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.cr-label > span {
  font-size: 13px;
  font-weight: 500;
  color: var(--cr-texto-2);
}
.cr-label > span em {
  color: var(--cr-vermelho);
  font-style: normal;
  font-weight: 700;
}
.cr-opt { color: var(--cr-muted); font-size: 11px; font-weight: 400; }
.cr-help { font-size: 12px; color: var(--cr-muted); }
.cr-input {
  padding: 10px 12px;
  background: white;
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-r-sm);
  color: var(--cr-texto);
  font: inherit;
  font-size: 14px;
  transition: border-color var(--cr-t), box-shadow var(--cr-t);
  width: 100%;
}
.cr-input:focus {
  outline: none;
  border-color: var(--cr-primario);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
textarea.cr-input { resize: vertical; min-height: 80px; font-family: inherit; }
.cr-input-uf { text-align: center; }
.cr-label-uf { max-width: 100px; }

.cr-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cr-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
@media (max-width: 540px) {
  .cr-row-2, .cr-row-3 { grid-template-columns: 1fr; gap: 12px; }
}

.cr-form-acoes {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cr-form-acoes { flex-direction: column-reverse; }
  .cr-form-acoes .cr-btn { width: 100%; }
}

/* ── Avisos ──────────────────────────────────────────────── */
.cr-aviso {
  padding: 12px 16px;
  border-radius: var(--cr-r-md);
  border-left: 4px solid var(--cr-azul);
  margin-bottom: 16px;
  font-size: 14px;
}
.cr-aviso-info     { background: #dbeafe; border-color: var(--cr-azul); color: #1e40af; }
.cr-aviso-sucesso  { background: #dcfce7; border-color: var(--cr-verde); color: #166534; }
.cr-aviso-erro     { background: #fef2f2; border-color: var(--cr-vermelho); color: #991b1b; }

/* ── Cards ───────────────────────────────────────────────── */
.cr-card {
  background: white;
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-r-lg);
  padding: 24px;
  box-shadow: var(--cr-sh-sm);
}
.cr-card-titulo { font-size: 18px; margin-bottom: 16px; }
.cr-card-mensagem {
  text-align: center;
  padding: 48px 32px;
}
.cr-card-icone { font-size: 56px; margin-bottom: 16px; }
.cr-card-acoes {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 8px;
}

/* ── Page header ─────────────────────────────────────────── */
.cr-page-header { margin-bottom: 24px; }
.cr-page-header h1 { margin-bottom: 8px; }

/* ── Info grid (dashboard) ───────────────────────────────── */
.cr-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.cr-info-grid > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cr-info-label {
  font-size: 11px;
  color: var(--cr-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.cr-info-grid strong { font-size: 15px; color: var(--cr-texto); }

/* ── Ações em breve (dashboard) ──────────────────────────── */
.cr-acoes-em-breve {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.cr-acao-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--cr-bg);
  border: 1px dashed var(--cr-border);
  border-radius: var(--cr-r-lg);
}
.cr-acao-card-soon { opacity: 0.75; }
.cr-acao-icone { font-size: 32px; margin-bottom: 8px; }
.cr-acao-card h3 { margin-bottom: 6px; }
.cr-acao-card p { font-size: 13px; margin: 0 0 12px 0; }

/* ── Checkbox grid (nichos) ──────────────────────────────── */
.cr-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.cr-checkbox-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: white;
  border: 2px solid var(--cr-border);
  border-radius: var(--cr-r-md);
  cursor: pointer;
  user-select: none;
  transition: all var(--cr-t);
}
.cr-checkbox-card:hover { border-color: var(--cr-border-h); }
.cr-checkbox-card-on {
  border-color: var(--cr-primario);
  background: var(--cr-primario-50);
}
.cr-checkbox-card input[type=checkbox] {
  /* Visual hidden mas funcional */
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cr-checkbox-emoji { font-size: 22px; }
.cr-checkbox-nome { font-size: 14px; font-weight: 500; color: var(--cr-texto); }

/* ── Rede metricas (perfil-pro) ──────────────────────────── */
.cr-rede-metricas {
  background: var(--cr-bg);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-r-md);
  padding: 16px;
  margin-bottom: 12px;
}
.cr-rede-metricas h4 {
  margin: 0 0 12px 0;
  font-size: 14px;
  color: var(--cr-texto-2);
}

/* ── Switch (toggle) ─────────────────────────────────────── */
.cr-label-toggle { gap: 8px; }
.cr-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.cr-switch input { opacity: 0; width: 0; height: 0; }
.cr-switch-slider {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: var(--cr-r-full);
  transition: background var(--cr-t);
  cursor: pointer;
}
.cr-switch-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform var(--cr-t);
}
.cr-switch input:checked + .cr-switch-slider { background: var(--cr-primario); }
.cr-switch input:checked + .cr-switch-slider::before { transform: translateX(22px); }

/* ── Footer ──────────────────────────────────────────────── */
.cr-footer {
  background: white;
  border-top: 1px solid var(--cr-border);
  padding: 32px 20px;
  margin-top: 48px;
}
.cr-footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) { .cr-footer-grid { grid-template-columns: 1fr; } }
.cr-footer-grid > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
@media (max-width: 640px) { .cr-footer-grid > div:last-child { text-align: left; } }
.cr-footer-muted { color: var(--cr-muted); font-size: 13px; margin: 4px 0 0; }
.cr-footer-link {
  color: var(--cr-texto-2) !important;
  font-size: 13px;
}
.cr-footer-link:hover { color: var(--cr-primario) !important; }

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ════════════════════════════════════════════════════════════
   LANDING V2 — Hero gradient + cards distintos + steps + exemplos
   Inspirado em mockup de design vibrante (19/05/2026)
   ════════════════════════════════════════════════════════════ */

:root {
  --cr-coral: #f97316;
  --cr-coral-h: #ea580c;
  --cr-coral-50: #fff7ed;
  --cr-azul-vivo: #2563eb;
  --cr-azul-vivo-h: #1d4ed8;
  --cr-azul-vivo-50: #eff6ff;
  --cr-verde-claro: #10b981;
  --cr-cinza-claro: #94a3b8;
}

.cr-cor-coral { color: var(--cr-coral); }
.cr-cor-azul { color: var(--cr-azul-vivo); }

/* ── HERO V2 — gradient full-width ────────────────────────── */
.cr-hero-v2 {
  position: relative;
  background: linear-gradient(135deg,
    #6366f1 0%, #7c3aed 30%, #8b5cf6 55%, #06b6d4 100%);
  color: white;
  overflow: hidden;
  padding: 80px 0 100px;
}
.cr-hero-v2-inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}
.cr-hero-v2-content { max-width: 560px; }

/* Layout 2 colunas — texto à esquerda + foto à direita */
.cr-hero-v2-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .cr-hero-v2-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .cr-hero-v2-content { max-width: 100%; margin: 0 auto; }
  .cr-hero-v2-ctas { justify-content: center; }
}

/* Foto do hero (creator com celular) */
.cr-hero-v2-foto-wrap {
  position: relative;
  border-radius: var(--cr-r-xl);
  overflow: visible;
}
.cr-hero-v2-foto {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--cr-r-xl);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
  display: block;
  margin: 0 auto;
}

/* Cards flutuantes sobre a foto (mock de KPI) */
.cr-hero-v2-card-deco {
  position: absolute;
  background: white;
  border-radius: var(--cr-r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
  z-index: 2;
  animation: cr-flutua 6s ease-in-out infinite;
}
.cr-card-deco-1 {
  top: 20px;
  left: -20px;
  animation-delay: 0s;
}
.cr-card-deco-2 {
  bottom: 24px;
  right: -10px;
  animation-delay: 2s;
}
@media (max-width: 480px) {
  .cr-card-deco-1, .cr-card-deco-2 {
    display: none;
  }
}
.cr-card-deco-emoji { font-size: 28px; }
.cr-card-deco-valor {
  font-weight: 800;
  font-size: 16px;
  color: var(--cr-texto);
  line-height: 1.1;
}
.cr-card-deco-label {
  font-size: 11px;
  color: var(--cr-muted);
  margin-top: 2px;
}
.cr-hero-v2-titulo {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
  color: white;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(15, 23, 42, 0.2);
}
@media (max-width: 720px) {
  .cr-hero-v2-titulo { font-size: 36px; }
  .cr-hero-v2 { padding: 56px 0 72px; }
}
.cr-hero-v2-grad {
  background: linear-gradient(135deg, #fde68a 0%, #fca5a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cr-hero-v2-sub {
  font-size: 19px;
  line-height: 1.6;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
}
@media (max-width: 720px) { .cr-hero-v2-sub { font-size: 16px; } }
.cr-hero-v2-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Decoração: emojis flutuando no fundo */
.cr-hero-v2-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.cr-hero-v2-bolha {
  position: absolute;
  font-size: 64px;
  opacity: 0.12;
  filter: blur(0.5px);
  animation: cr-flutua 8s ease-in-out infinite;
}
.cr-bolha-1 { top: 10%;  left:  6%; animation-delay: 0s; }
.cr-bolha-2 { top: 18%;  right: 10%; font-size: 80px; animation-delay: 1.5s; }
.cr-bolha-3 { bottom: 14%; left: 12%; font-size: 56px; animation-delay: 3s; }
.cr-bolha-4 { bottom: 18%; right: 8%; font-size: 72px; animation-delay: 2s; }
.cr-bolha-5 { top: 48%;  left:  3%; font-size: 48px; animation-delay: 4s; }
@keyframes cr-flutua {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-20px) rotate(3deg); }
}
@media (max-width: 720px) { .cr-hero-v2-bolha { display: none; } }

/* ── Botões CTAs distintos por cor ────────────────────────── */
.cr-btn-coral, .cr-btn-azul-vivo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--cr-r-full);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none !important;
  transition: all var(--cr-t);
}
.cr-btn-coral {
  background: var(--cr-coral);
  color: white !important;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}
.cr-btn-coral:hover {
  background: var(--cr-coral-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.45);
}
.cr-btn-azul-vivo {
  background: var(--cr-azul-vivo);
  color: white !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}
.cr-btn-azul-vivo:hover {
  background: var(--cr-azul-vivo-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
}
.cr-btn-bloco { display: flex; width: 100%; }
.cr-btn-grande { padding: 16px 32px; font-size: 16px; }
.cr-btn-icone { font-size: 18px; line-height: 1; }

/* ── SEÇÃO V2 — títulos centralizados ──────────────────────── */
.cr-secao-v2-titulo {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
@media (max-width: 720px) { .cr-secao-v2-titulo { font-size: 26px; } }
.cr-secao-v2-sub {
  text-align: center;
  font-size: 16px;
  color: var(--cr-muted);
  margin: 0 0 40px;
}
.cr-secao-cta-bottom { text-align: center; margin-top: 32px; }

/* ── SEÇÃO 2 — Para Influenciadores E Empresas ───────────── */
.cr-secao-publico-v2 { padding: 80px 0; background: white; }
.cr-publico-v2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.cr-publico-v2-card {
  background: white;
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-r-xl);
  padding: 36px 32px;
  box-shadow: var(--cr-sh-sm);
  transition: transform var(--cr-t), box-shadow var(--cr-t), border-color var(--cr-t);
}
.cr-publico-v2-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cr-sh-lg);
}
.cr-card-influenciador { border-top: 5px solid var(--cr-coral); }
.cr-card-influenciador:hover { border-color: var(--cr-coral); }
.cr-card-empresa { border-top: 5px solid var(--cr-azul-vivo); }
.cr-card-empresa:hover { border-color: var(--cr-azul-vivo); }
/* Foto no topo dos cards "Para X" */
.cr-publico-v2-foto-wrap {
  margin: -36px -32px 20px;
  height: 180px;
  overflow: hidden;
  border-top-left-radius: var(--cr-r-xl);
  border-top-right-radius: var(--cr-r-xl);
}
.cr-publico-v2-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.cr-publico-v2-card:hover .cr-publico-v2-foto {
  transform: scale(1.05);
}

.cr-publico-v2-icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--cr-r-md);
  background: var(--cr-bg-soft);
  font-size: 28px;
  margin-bottom: 12px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  box-shadow: var(--cr-sh-md);
}
.cr-publico-v2-cardtitulo {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 24px;
}
.cr-card-influenciador .cr-publico-v2-cardtitulo { color: var(--cr-coral); }
.cr-card-empresa .cr-publico-v2-cardtitulo { color: var(--cr-azul-vivo); }
.cr-publico-v2-lista { list-style: none; padding: 0; margin: 0 0 28px; }
.cr-publico-v2-lista li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cr-border);
}
.cr-publico-v2-lista li:last-child { border-bottom: none; }
.cr-publico-v2-lista li strong {
  display: block;
  color: var(--cr-texto);
  font-weight: 600;
  margin-bottom: 4px;
}
.cr-publico-v2-lista li p {
  margin: 0;
  font-size: 13.5px;
  color: var(--cr-muted);
  line-height: 1.5;
}
.cr-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cr-verde-claro);
  color: white;
  font-size: 14px;
  font-weight: 700;
}

/* ── SEÇÃO 3 — Como Funciona (4 steps) ────────────────────── */
.cr-secao-como-funciona {
  padding: 80px 0;
  background: linear-gradient(180deg, #faf5ff 0%, #f5f3ff 100%);
}
.cr-steps-grid {
  display: flex;
  align-items: stretch;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cr-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background: white;
  border-radius: var(--cr-r-lg);
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--cr-sh-sm);
  transition: transform var(--cr-t);
}
.cr-step:hover { transform: translateY(-4px); }
.cr-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cr-azul-vivo);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.cr-step-icone { font-size: 40px; margin: 8px 0 12px; }
.cr-step h3 { font-size: 15px; margin: 0 0 8px; font-weight: 700; }
.cr-step p { font-size: 13px; color: var(--cr-muted); margin: 0; line-height: 1.5; }
.cr-step-seta {
  display: flex;
  align-items: center;
  font-size: 28px;
  color: var(--cr-primario);
  opacity: 0.5;
  font-weight: 700;
}
@media (max-width: 880px) {
  .cr-step-seta { display: none; }
  .cr-steps-grid { flex-direction: column; align-items: center; }
  .cr-step { max-width: 100%; width: 100%; }
}

/* ── SEÇÃO 4 — Exemplos (social proof) ───────────────────── */
.cr-secao-exemplos { padding: 80px 0; background: white; }
.cr-exemplos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.cr-exemplo-card {
  background: white;
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-r-lg);
  padding: 24px;
  position: relative;
  box-shadow: var(--cr-sh-sm);
  transition: transform var(--cr-t), box-shadow var(--cr-t);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cr-exemplo-card:hover { transform: translateY(-3px); box-shadow: var(--cr-sh-md); }
.cr-exemplo-destaque {
  border-color: var(--cr-primario);
  border-width: 2px;
  background: linear-gradient(180deg, #faf5ff 0%, white 30%);
}
.cr-exemplo-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cr-primario);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--cr-r-full);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
/* Foto no topo do card de exemplo */
.cr-exemplo-foto-wrap {
  position: relative;
  margin: -24px -24px 0;
  height: 140px;
  overflow: hidden;
  border-top-left-radius: var(--cr-r-lg);
  border-top-right-radius: var(--cr-r-lg);
}
.cr-exemplo-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cr-exemplo-foto-emoji {
  position: absolute;
  bottom: -16px;
  left: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 3px solid white;
}

.cr-exemplo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
}
.cr-exemplo-emoji {
  font-size: 28px;
  width: 44px;
  height: 44px;
  background: var(--cr-bg-soft);
  border-radius: var(--cr-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cr-exemplo-marca { font-weight: 700; color: var(--cr-texto); }
.cr-exemplo-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.cr-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--cr-bg-soft);
  color: var(--cr-texto-2);
  font-size: 12px;
  border-radius: var(--cr-r-full);
  font-weight: 500;
}
.cr-exemplo-formato {
  padding: 10px 12px;
  background: var(--cr-bg);
  border-radius: var(--cr-r-sm);
  font-size: 14px;
}
.cr-exemplo-valor { display: flex; flex-direction: column; gap: 2px; }
.cr-exemplo-valor small {
  font-size: 11px;
  color: var(--cr-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.cr-exemplo-valor strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--cr-azul-vivo);
}
.cr-exemplo-acoes { display: flex; gap: 8px; }
.cr-btn-verde-claro, .cr-btn-cinza-claro {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: var(--cr-r-sm);
  font-weight: 600;
  font-size: 13px;
  cursor: not-allowed;
  font-family: inherit;
  opacity: 0.85;
}
.cr-btn-verde-claro { background: var(--cr-verde-claro); color: white; }
.cr-btn-cinza-claro { background: #f1f5f9; color: var(--cr-muted); }
.cr-exemplos-rodape {
  text-align: center;
  color: var(--cr-muted);
  font-size: 14px;
  margin-top: 32px;
}

/* ════════════════════════════════════════════════════════════
   LANDING V3 — Design sem imagens AI, só CSS+SVG
   ════════════════════════════════════════════════════════════ */

/* ── Hero badge (chip "Marketplace #1") ──────────────────── */
.cr-hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--cr-r-full);
  color: white;
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 24px;
}
.cr-hero-v2-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.3);
  animation: cr-pulse 2s ease-in-out infinite;
}
@keyframes cr-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.3); }
  50%      { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.15); }
}

/* Hero trust mini (números pequenos abaixo do CTA) */
.cr-hero-v2-trust-mini {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cr-trust-mini-item {
  display: flex;
  flex-direction: column;
}
.cr-trust-mini-item strong {
  color: white;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}
.cr-trust-mini-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin-top: 4px;
}
.cr-trust-mini-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 880px) {
  .cr-hero-v2-trust-mini { justify-content: center; }
}

/* ── HERO Mockup — card de proposta em CSS puro ──────────── */
.cr-hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cr-mockup-card {
  background: white;
  border-radius: var(--cr-r-xl);
  padding: 24px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cr-mockup-card:hover {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(-6px);
}
@media (max-width: 880px) {
  .cr-mockup-card { transform: none; max-width: 380px; }
  .cr-mockup-card:hover { transform: translateY(-4px); }
}
.cr-mockup-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cr-mockup-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--cr-r-md);
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.cr-mockup-marca { font-weight: 700; color: var(--cr-texto); font-size: 14px; }
.cr-mockup-meta { font-size: 11px; color: var(--cr-muted); margin-top: 2px; }
.cr-mockup-badge {
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--cr-r-full);
  letter-spacing: 0.04em;
  margin-left: auto;
  animation: cr-pulse-badge 2s ease-in-out infinite;
}
@keyframes cr-pulse-badge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.05); }
}
.cr-mockup-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.cr-mockup-tag {
  padding: 4px 10px;
  background: var(--cr-bg-soft);
  color: var(--cr-texto-2);
  font-size: 11px;
  border-radius: var(--cr-r-full);
  font-weight: 500;
}
.cr-mockup-formato {
  padding: 12px;
  background: var(--cr-bg);
  border-radius: var(--cr-r-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cr-mockup-formato strong { font-size: 13px; color: var(--cr-texto); }
.cr-mockup-formato span { font-size: 11px; color: var(--cr-muted); }
.cr-mockup-valor {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
}
.cr-mockup-valor small {
  font-size: 10px;
  color: var(--cr-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.cr-mockup-valor strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--cr-azul-vivo);
  line-height: 1;
}
.cr-mockup-acoes { display: flex; gap: 8px; }
.cr-mockup-btn-verde, .cr-mockup-btn-cinza {
  flex: 1;
  padding: 9px 10px;
  border: none;
  border-radius: var(--cr-r-sm);
  font-weight: 600;
  font-size: 12.5px;
  cursor: default;
  font-family: inherit;
}
.cr-mockup-btn-verde { background: var(--cr-verde-claro); color: white; }
.cr-mockup-btn-cinza { background: #f1f5f9; color: var(--cr-muted); }

/* Cards flutuantes em volta do mockup */
.cr-hero-float {
  position: absolute;
  background: white;
  border-radius: var(--cr-r-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.28);
  animation: cr-flutua 6s ease-in-out infinite;
  z-index: 2;
}
.cr-float-1 { top: -16px; left: -30px; animation-delay: 0s; }
.cr-float-2 { bottom: 20px; right: -40px; animation-delay: 2s; }
@media (max-width: 500px) { .cr-hero-float { display: none; } }
.cr-float-emoji { font-size: 24px; }
.cr-float-valor { font-weight: 800; font-size: 14px; color: var(--cr-texto); line-height: 1; }
.cr-float-label { font-size: 10.5px; color: var(--cr-muted); margin-top: 2px; }

/* Curva divisória SVG no fim do hero */
.cr-hero-curva {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  display: block;
}
@media (max-width: 600px) { .cr-hero-curva { height: 36px; } }

/* ── Headers de seção V3 (com tag colorida) ──────────────── */
.cr-secao-v2-header { text-align: center; margin-bottom: 56px; }
.cr-secao-v2-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--cr-primario-50);
  color: var(--cr-primario);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: var(--cr-r-full);
  margin-bottom: 16px;
}
.cr-secao-v2-tag.cr-tag-coral {
  background: var(--cr-coral-50);
  color: var(--cr-coral);
}
.cr-titulo-e { color: var(--cr-muted); font-weight: 600; margin: 0 4px; }

/* Substitui margem-top do .cr-publico-v2-grid (não tem mais foto wrap) */
.cr-publico-v2-grid { margin-top: 0; }

/* Tira a foto-wrap antiga (não usa mais) — esconde se aparecer por algum motivo */
.cr-publico-v2-foto-wrap { display: none; }
.cr-publico-v2-icone { margin-top: 0; box-shadow: none; }

.cr-publico-v2-cardsub {
  color: var(--cr-muted);
  font-size: 14px;
  margin: -16px 0 20px;
}

/* ── PASSOS V3 — círculos coloridos numerados ────────────── */
.cr-passos-v3 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 880px) {
  .cr-passos-v3 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 480px) {
  .cr-passos-v3 { grid-template-columns: 1fr; gap: 24px; }
}

.cr-passos-linha {
  position: absolute;
  top: 65px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg,
    var(--cr-primario) 0%,
    var(--cr-coral) 50%,
    var(--cr-azul-vivo) 100%);
  opacity: 0.3;
  z-index: 0;
}
@media (max-width: 880px) { .cr-passos-linha { display: none; } }

.cr-passo-circulo {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cr-passo-bola {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: white;
  border: 4px solid;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  transition: transform 300ms, box-shadow 300ms;
  margin-bottom: 16px;
}
.cr-passo-circulo:hover .cr-passo-bola {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}
.cr-passo-1 .cr-passo-bola { border-color: #6366f1; background: linear-gradient(135deg, #eef2ff, white); }
.cr-passo-2 .cr-passo-bola { border-color: #7c3aed; background: linear-gradient(135deg, #f5f3ff, white); }
.cr-passo-3 .cr-passo-bola { border-color: #f97316; background: linear-gradient(135deg, #fff7ed, white); }
.cr-passo-4 .cr-passo-bola { border-color: #10b981; background: linear-gradient(135deg, #ecfdf5, white); }

.cr-passo-icone { font-size: 56px; line-height: 1; }
.cr-passo-numero {
  position: absolute;
  bottom: -8px;
  background: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  color: var(--cr-texto);
}
.cr-passo-1 .cr-passo-numero,
.cr-passo-bola + .cr-passo-numero {
  /* Reposiciona pra ficar no canto da bola */
  position: relative;
  bottom: auto;
  margin-top: -22px;
  margin-bottom: 12px;
}
.cr-passo-1 .cr-passo-numero { color: #6366f1; }
.cr-passo-2 .cr-passo-numero { color: #7c3aed; }
.cr-passo-3 .cr-passo-numero { color: #f97316; }
.cr-passo-4 .cr-passo-numero { color: #10b981; }

.cr-passo-circulo h3 {
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 700;
}
.cr-passo-circulo p {
  font-size: 13px;
  color: var(--cr-muted);
  margin: 0;
  line-height: 1.55;
  max-width: 220px;
}

/* ── PLANOS V3 — 3 cards de preço ────────────────────────── */
.cr-secao-planos-v3 {
  padding: 80px 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(124, 58, 237, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.06) 0%, transparent 40%),
    #fafbff;
}
.cr-planos-v3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 920px) { .cr-planos-v3-grid { grid-template-columns: 1fr; gap: 20px; } }

.cr-plano-card {
  background: white;
  border-radius: var(--cr-r-xl);
  padding: 32px 24px;
  border: 2px solid var(--cr-border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 300ms, box-shadow 300ms, border-color 300ms;
}
.cr-plano-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
}
.cr-plano-eco:hover { border-color: var(--cr-azul-vivo); }
.cr-plano-premium:hover { border-color: var(--cr-azul-vivo); }

.cr-plano-destaque {
  background: linear-gradient(180deg, #faf5ff 0%, white 25%);
  border-color: var(--cr-primario);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.18);
  transform: scale(1.04);
  z-index: 1;
}
.cr-plano-destaque:hover { transform: scale(1.04) translateY(-6px); }
@media (max-width: 920px) {
  .cr-plano-destaque { transform: none; }
  .cr-plano-destaque:hover { transform: translateY(-6px); }
}

.cr-plano-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cr-primario), var(--cr-coral));
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--cr-r-full);
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
}

.cr-plano-header { text-align: center; margin-bottom: 20px; }
.cr-plano-icone {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: var(--cr-r-md);
  background: var(--cr-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.cr-plano-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px;
}
.cr-plano-publico {
  font-size: 12px;
  color: var(--cr-muted);
  margin: 0;
}

.cr-plano-preco {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--cr-border);
  border-bottom: 1px solid var(--cr-border);
  margin-bottom: 20px;
}
.cr-plano-preco small {
  font-size: 11px;
  color: var(--cr-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.cr-plano-preco strong {
  font-size: 38px;
  font-weight: 800;
  color: var(--cr-texto);
  line-height: 1;
  margin: 6px 0 4px;
  letter-spacing: -0.02em;
}
.cr-plano-destaque .cr-plano-preco strong {
  background: linear-gradient(135deg, var(--cr-primario), var(--cr-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cr-plano-preco span { font-size: 12px; color: var(--cr-muted); }

.cr-plano-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.cr-plano-features li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--cr-texto-2);
  line-height: 1.5;
}
.cr-feature-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cr-verde-claro);
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.cr-plano-card button {
  margin-top: auto;
}

.cr-planos-rodape {
  text-align: center;
  margin-top: 40px;
  color: var(--cr-muted);
  font-size: 14px;
}

/* ── Exemplos V2 (sem foto, mais clean) ──────────────────── */
.cr-exemplo-card-v2 {
  padding-top: 28px;
}
.cr-exemplo-v2-emoji {
  position: absolute;
  top: -20px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cr-bg-soft), white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  border: 4px solid white;
}
.cr-exemplo-card-v2 .cr-exemplo-foto-wrap { display: none; }
.cr-exemplo-card-v2 .cr-exemplo-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  padding-top: 18px;
}
.cr-exemplo-status {
  font-size: 11px;
  color: var(--cr-primario);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── SEÇÃO 4.5 — Trust / Stats ───────────────────────────── */
.cr-secao-trust {
  padding: 80px 0;
  background: linear-gradient(135deg,
    #6366f1 0%, #7c3aed 50%, #06b6d4 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cr-secao-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.cr-trust-titulo {
  position: relative;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 8px;
  color: white;
  letter-spacing: -0.02em;
}
@media (max-width: 720px) { .cr-trust-titulo { font-size: 24px; } }
.cr-trust-sub {
  position: relative;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 48px;
}
.cr-trust-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}
.cr-trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cr-trust-emoji {
  font-size: 36px;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}
.cr-trust-numero {
  font-size: 44px;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 720px) { .cr-trust-numero { font-size: 36px; } }
.cr-trust-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
  max-width: 180px;
  line-height: 1.3;
}

/* ── SEÇÃO 5 — CTA final ──────────────────────────────────── */
.cr-cta-final {
  padding: 80px 20px;
  background: linear-gradient(135deg,
    rgba(124, 58, 237, 0.05) 0%,
    rgba(6, 182, 212, 0.05) 100%);
  text-align: center;
}
.cr-cta-final h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 12px;
}
@media (max-width: 720px) { .cr-cta-final h2 { font-size: 26px; } }
.cr-cta-final-sub {
  font-size: 16px;
  color: var(--cr-muted);
  margin: 0 0 32px;
}
.cr-cta-final-acoes {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
