/* Rubriq — landing page institucional pública.
   Estática, sem build. Identidade da marca: tema claro, dourado #d4af37,
   fonte Inter — espelha web/src/styles.css. Ícones: Lucide inline. */

:root {
  --bg: #f8fafc;          /* slate-50  */
  --surface: #ffffff;
  --surface-2: #f1f5f9;   /* slate-100 */
  --border: #e2e8f0;      /* slate-200 */
  --text: #0f172a;        /* slate-900 */
  --text-dim: #64748b;    /* slate-500 */
  --brand-50: #fdf6e3;
  --brand-100: #faedc3;
  --brand-300: #efc849;
  --brand: #d4af37;       /* brand-400 — primária / logo */
  --brand-600: #8f7322;   /* texto/links dourados em fundo claro */
  --brand-700: #6b5719;
  --radius: 16px;
  --max: 1140px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.16);
  --shadow-gold: 0 12px 28px -10px rgba(212, 175, 55, 0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(680px 460px at 82% -8%, rgba(212, 175, 55, 0.18), transparent 70%),
    radial-gradient(560px 460px at 0% 4%, rgba(212, 175, 55, 0.08), transparent 70%);
}

svg.ico-svg {
  width: 1em; height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ---------- Logo ---------- */
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em;
  color: var(--text);
}
.logo svg { display: block; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(248, 250, 252, 0.8);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text-dim); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .btn { padding: 9px 18px; font-size: 0.9rem; }
.nav-cta .btn .ico-svg { width: 14px; height: 14px; }
@media (max-width: 600px) {
  .nav-cta .btn-ghost { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 10px;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
}
.btn .ico-svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand); color: #1a1405; box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-2px); background: var(--brand-300); }
.btn-ghost { color: var(--text); border: 1px solid var(--border); background: var(--surface); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-700); }

@media (max-width: 760px) { .nav-links { display: none; } }

/* ---------- Hero ---------- */
.hero { padding: 96px 0 80px; text-align: center; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.badge .ico-svg { width: 15px; height: 15px; }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto 24px;
}
.hero h1 .grad { color: var(--brand-600); }
.hero p.sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.trust {
  margin-top: 64px;
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.trust strong { color: var(--text); font-size: 1.6rem; font-weight: 800; display: block; }

/* ---------- Sections ---------- */
section.block { padding: 88px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-600);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-head p { color: var(--text-dim); font-size: 1.05rem; }

/* Feature grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .grid { grid-template-columns: 1fr; } }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: var(--shadow); }
.card .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-600);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card .ico .ico-svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.96rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px; left: 28px;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--brand);
  color: #1a1405;
  font-weight: 800;
  display: grid; place-items: center;
  box-shadow: var(--shadow-gold);
}
.step h3 { font-size: 1.1rem; margin: 8px 0 8px; }
.step p { color: var(--text-dim); font-size: 0.95rem; }

/* Security / compliance */
.compliance {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) { .compliance { grid-template-columns: 1fr; padding: 40px 28px; } }
.compliance h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 18px; }
.compliance p { color: var(--text-dim); margin-bottom: 16px; }
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; }
.checklist li .ico-svg {
  color: var(--brand-600);
  background: var(--brand-50);
  width: 24px; height: 24px;
  padding: 4px;
  border-radius: 7px;
  flex-shrink: 0;
}

/* CTA band */
.cta-band {
  text-align: center;
  background: linear-gradient(135deg, #d4af37 0%, #efc849 100%);
  border-radius: 24px;
  padding: 64px 32px;
}
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #1a1405; margin-bottom: 14px; letter-spacing: -0.02em; }
.cta-band p { color: #3d2f08; font-size: 1.1rem; margin-bottom: 30px; }
.cta-band .btn-primary { background: #1a1405; color: #f5db86; box-shadow: var(--shadow); }
.cta-band .btn-primary:hover { background: #0f172a; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); padding: 56px 0 40px; margin-top: 40px; background: var(--surface); }
.foot {
  /* Brand + 4 colunas tudo na mesma linha horizontal */
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.foot-brand { padding-right: 8px; }
.foot .desc { color: var(--text-dim); font-size: 0.9rem; margin-top: 14px; line-height: 1.5; }
.foot-links {
  /* anula container intermediário: cada .foot-col vira coluna do grid pai */
  display: contents;
}
.foot-col h4 { font-size: 0.78rem; font-weight: 700; color: var(--text); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.04em; }
.foot-col a { display: block; color: var(--text-dim); font-size: 0.92rem; margin-bottom: 10px; transition: color 0.18s; line-height: 1.4; }
.foot-col a:hover { color: var(--brand-700); }

@media (max-width: 900px) {
  .foot { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .foot-links { display: contents; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .foot { grid-template-columns: 1fr; gap: 28px; }
}
.foot-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.86rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Legal pages ---------- */
.legal { padding: 64px 0 40px; max-width: 800px; }
.legal h1 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.legal .updated { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.3rem; font-weight: 700; margin: 36px 0 12px; color: var(--text); }
.legal p, .legal li { color: var(--text-dim); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--brand-600); }
.legal h3 { font-size: 1.05rem; font-weight: 600; margin: 24px 0 10px; color: var(--text); }
.legal code {
  background: #f1f5f9;
  color: #0f172a;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 0.9rem;
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}
.legal-table th {
  background: #f8fafc;
  font-weight: 600;
  color: var(--text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.legal-table td { color: var(--text-dim); }
.legal-table code { font-size: 0.78em; }
.back-link { display: inline-flex; gap: 8px; align-items: center; color: var(--text-dim); font-size: 0.92rem; margin-bottom: 32px; }
.back-link .ico-svg { width: 16px; height: 16px; }
.back-link:hover { color: var(--brand-700); }

/* ---------- Faixa de logos de clientes ---------- */
.clients-strip {
  padding: 24px 0 40px;
  border-bottom: 1px solid var(--border);
}
.clients-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.clients-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 96px;
  width: max-content;
  animation: clients-scroll 32s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
.client-logo {
  display: inline-block;
  width: var(--w, 200px);
  height: var(--h, 92px);
  flex-shrink: 0;
  background-color: #64748b;
  -webkit-mask: var(--mask) center/contain no-repeat;
          mask: var(--mask) center/contain no-repeat;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.client-logo:hover { opacity: 1; transform: scale(1.06); }
@keyframes clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 760px) {
  .clients-track { gap: 64px; animation-duration: 22s; }
  .client-logo {
    width: calc(var(--w, 200px) * 0.72) !important;
    height: calc(var(--h, 92px) * 0.72) !important;
  }
}

/* ---------- Depoimentos ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--brand-100);
  font-family: Georgia, serif;
}
.testimonial blockquote {
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.55;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial figcaption strong { display: block; color: var(--text); font-size: 0.92rem; }
.testimonial figcaption span { color: var(--text-dim); font-size: 0.82rem; }
.testimonial .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand);
  color: #1a1405;
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ---------- Planos ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.plan-featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}
.plan-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #1a1405;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-head h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.plan-price .amount { font-size: 1.85rem; font-weight: 800; color: var(--text); }
.plan-price .period { color: var(--text-dim); font-size: 0.9rem; }
.plan-desc { color: var(--text-dim); font-size: 0.88rem; }

/* Toggle Mensal/Anual — pill style, igual padrão Notion/Linear. */
.plan-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  margin: 0 auto 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.9rem;
}
.plan-toggle-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  font: inherit;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.15s, color 0.15s;
}
.plan-toggle-btn.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.plan-toggle-badge {
  background: #d1fae5;
  color: #065f46;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0;
}
.plan-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

/* Banner de cookies — minimal, bottom-fixed, discreto.
   Aparece só no 1º acesso; "Entendi" salva localStorage e oculta. */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9000;
  background: #0f172a;
  color: #f1f5f9;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
  padding: 14px 18px;
  font-size: 0.88rem;
  line-height: 1.45;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; flex: 1; min-width: 240px; color: #f1f5f9; }
.cookie-banner strong { color: #fff; font-weight: 600; }
.cookie-banner a { color: #fbbf24; text-decoration: underline; }
.cookie-banner-btn {
  appearance: none;
  border: 0;
  background: var(--brand);
  color: #0f172a;
  font: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s;
}
.cookie-banner-btn:hover { background: #e2c051; }
@media (max-width: 600px) {
  .cookie-banner { bottom: 12px; left: 12px; right: 12px; padding: 12px 14px; }
  .cookie-banner-btn { width: 100%; }
}
.plan-equiv {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: -2px 0 6px;
}
/* Anual hidden por default. JS troca o atributo hidden. */
.plan-price .p-anual[hidden],
.plan-equiv.p-anual[hidden] { display: none; }
.plan-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text);
}
.plan-features li::before {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 4px;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.btn-block { display: flex; width: 100%; justify-content: center; }
.plan-foot { font-size: 0.78rem; color: var(--text-dim); text-align: center; }
@media (max-width: 900px) {
  .plans { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
}

/* ============ AJUSTES MOBILE ============ */
@media (max-width: 760px) {
  /* Header — botao Acessar plataforma estoura no mobile */
  .nav { height: 60px; }
  .nav .btn-primary {
    padding: 8px 14px;
    font-size: 0.82rem;
    gap: 4px;
    white-space: nowrap;
  }
  .nav .btn-primary .ico-svg { display: none; }
  .logo span { font-size: 1.1rem; }
  .logo svg { width: 26px; height: 26px; }

  /* Hero — reduz padding + h1 com hifenizacao */
  .hero { padding: 56px 0 48px; }
  .hero h1 { word-break: break-word; hyphens: auto; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .trust { margin-top: 40px; gap: 24px; font-size: 0.88rem; }
  .trust strong { font-size: 1.3rem; }
  .trust > div { flex-basis: 100%; text-align: center; }

  /* Sections — padding lateral menor + section-head menor */
  .block { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); }

  /* CTA band */
  .cta-band { padding: 36px 24px; }
  .cta-band h2 { font-size: 1.45rem; }

  /* Footer */
  .foot { gap: 24px; }
  .foot-links { gap: 24px; flex-wrap: wrap; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 0.85rem; }
}

/* ─── ICP-Brasil highlight (assinatura qualificada) ───────────────── */
.icp-highlight {
  background: linear-gradient(135deg, #052e1b 0%, #064e3b 50%, #166534 100%);
  color: #ecfdf5;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.icp-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.35) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(74, 222, 128, 0.25) 0%, transparent 45%);
  pointer-events: none;
}
.icp-highlight-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.icp-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid #4ade80;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.icp-highlight-titulo {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.icp-highlight-sub {
  font-size: 1.05rem;
  color: #d1fae5;
  margin: 0 0 24px;
  line-height: 1.6;
}
.icp-highlight-sub strong { color: #fff; }
.icp-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.icp-highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #d1fae5;
  line-height: 1.5;
}
.icp-highlight-list svg { color: #4ade80; flex-shrink: 0; margin-top: 2px; }
.icp-highlight-list strong { color: #fff; }
.icp-highlight-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.icp-highlight-cta .btn-primary {
  background: #4ade80;
  color: #052e1b;
  border-color: #4ade80;
  font-weight: 700;
}
.icp-highlight-cta .btn-primary:hover {
  background: #86efac;
  border-color: #86efac;
}
.icp-highlight-link {
  color: #86efac;
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.92rem;
}
.icp-highlight-link:hover { color: #fff; }
.icp-highlight-emblema-wrap {
  text-align: center;
}
.icp-highlight-emblema {
  display: inline-block;
  background: #fff;
  color: #052e1b;
  padding: 28px 36px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  font-family: Inter, system-ui, sans-serif;
}
.icp-highlight-emblema-icp {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #166534;
}
.icp-highlight-emblema-br {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: 6px;
  color: #15803d;
}
.icp-highlight-emblema-tag {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 2px solid #d1fae5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #15803d;
  text-transform: uppercase;
}
.icp-highlight-legal {
  margin-top: 18px;
  font-size: 0.78rem;
  color: #a7f3d0;
  line-height: 1.5;
}

/* ─── Badge "Novidade" no hero ───────────────── */
.badge-novidade {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color: #14532d;
  border-color: #86efac;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.badge-novidade:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 101, 52, 0.18);
}
.badge-novidade-pill {
  background: #15803d;
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-right: 8px;
}

/* ─── Card Business com ICP destacado ─────── */
.plan-business {
  border-color: #86efac;
  border-width: 2px;
}
.plan-ribbon-icp {
  background: linear-gradient(135deg, #15803d, #166534) !important;
  color: #fff !important;
}
.plan-feature-icp {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 6px;
  padding: 8px 10px !important;
  margin: -4px -8px 8px !important;
  color: #14532d !important;
}
.plan-feature-icp svg { color: #15803d; }

/* Responsivo */
@media (max-width: 760px) {
  .icp-highlight { padding: 56px 0; }
  .icp-highlight-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .icp-highlight-list li { text-align: left; }
  .icp-highlight-cta { justify-content: center; }
  .icp-highlight-emblema-icp { font-size: 2.6rem; }
}

/* Card de recurso ICP — verde destacado vs cards padrão dourados */
.card-icp {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 70%);
  border-color: #86efac;
}
.card-icp .ico-icp {
  background: #dcfce7;
  color: #15803d;
}
.card-tag {
  display: inline-block;
  background: #15803d;
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-left: 6px;
  vertical-align: middle;
}

/* Item ICP na checklist da seção segurança */
.checklist-icp {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 8px 12px !important;
  color: #14532d !important;
  font-weight: 500;
}
.checklist-icp .ico-svg { color: #15803d !important; }

/* ─── Scroll-in animations ──────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ─── Card hover sutil (escala + sombra suave) ── */
.card { transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s, box-shadow 0.25s; }
.card:hover { transform: translateY(-6px) scale(1.012); }
.card .ico { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.card:hover .ico { transform: scale(1.1) rotate(-3deg); }

.step { transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1); }
.step:hover { transform: translateY(-4px); }

.testimonial { transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s; }
.testimonial:hover { transform: translateY(-4px); border-color: var(--brand); }

/* ─── Emblema ICP-Brasil: pulse contínuo sutil ── */
@keyframes icp-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35); }
  50% { transform: scale(1.025); box-shadow: 0 26px 60px rgba(74, 222, 128, 0.45); }
}
.icp-highlight-emblema {
  animation: icp-pulse 3.6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .icp-highlight-emblema { animation: none; }
}

/* ─── Brilho deslizando atrás do emblema ICP ─── */
.icp-highlight-emblema-wrap {
  position: relative;
}
.icp-highlight-emblema-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 280px; height: 280px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(74, 222, 128, 0.35) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  animation: icp-glow 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes icp-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .icp-highlight-emblema-wrap::before { animation: none; opacity: 0.7; }
}

/* ─── Badge "NOVO" pulsando no hero ──────────── */
@keyframes pill-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(21, 128, 61, 0.55); }
  60% { box-shadow: 0 0 0 8px rgba(21, 128, 61, 0); }
}
.badge-novidade-pill {
  animation: pill-pulse 2.4s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .badge-novidade-pill { animation: none; }
}

/* ─── Botões primários: leve "lift" no hover ─── */
.btn-primary { transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, background 0.2s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -12px rgba(212, 175, 55, 0.7); }
