/* Variables */
:root {
  --bg: #0d1117;
  --bg2: #161b22;
  --bg3: #0a0d12;
  --border: #21262d;
  --border2: #30363d;
  --text: #e6edf3;
  --muted: #8b949e;
  --dim: #484f58;
  --green: #00C896;
  --red: #FF4D4D;
  --blue: #58a6ff;
  --amber: #FAC775;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text);
  font-family: Inter, system-ui, sans-serif; font-size: 14px; }

/* Header */
.lp-header { position: sticky; top: 0; z-index: 100;
  background: var(--bg); border-bottom: 1px solid var(--border); }
.lp-header-main { display: flex; align-items: center;
  justify-content: space-between; padding: 10px 24px; gap: 16px; }
.lp-logo { display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--text); font-weight: 700; font-size: 15px; }
.lp-nav { display: flex; gap: 18px; }
.lp-nav a { color: var(--muted); text-decoration: none; font-size: 13px;
  transition: color .2s; padding-top: 6px; padding-bottom: 6px; }
.lp-nav a:hover { color: var(--text); }
.lp-header-actions { display: flex; gap: 8px; }
.lp-menu-btn { display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 8px; }
.lp-menu-btn span { display: block; width: 20px; height: 2px;
  background: var(--muted); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* Mobile menu open state */
.lp-header.open .lp-nav {
  display: flex; flex-direction: column; position: absolute;
  top: 100%; left: 0; right: 0; background: var(--bg);
  border-bottom: 1px solid var(--border); padding: 16px 24px;
  gap: 12px; z-index: 99;
}
.lp-header.open .lp-menu-btn span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.lp-header.open .lp-menu-btn span:nth-child(2) { opacity: 0; }
.lp-header.open .lp-menu-btn span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Buttons */
.btn-primary { background: var(--green); color: var(--bg);
  border: none; border-radius: 8px; padding: 10px 20px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  text-decoration: none; display: inline-block; transition: opacity .2s; }
.btn-primary:hover { opacity: .88; }
.btn-outline { background: transparent; color: var(--green);
  border: 1px solid rgba(0,200,150,.45); border-radius: 8px;
  padding: 10px 20px; font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-block; }
.btn-blue { background: rgba(88,166,255,.1); color: var(--blue);
  border: 1px solid rgba(88,166,255,.25); border-radius: 8px;
  padding: 10px 20px; font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-block; }
.btn-lg { padding: 12px 24px; font-size: 14px; }

/* Hero */
.lp-hero { padding: 52px 24px 40px;
  background: linear-gradient(180deg, var(--bg3) 0%, var(--bg) 100%); }
.lp-hero-content { max-width: 760px; }
.lp-hero h1 { font-size: 40px; font-weight: 800; line-height: 1.15;
  margin-bottom: 14px; max-width: 700px; }
.text-green { color: var(--green); }
.lp-hero-sub { color: var(--muted); font-size: 15px; line-height: 1.7;
  max-width: 520px; margin-bottom: 24px; }
.lp-badge { display: inline-block; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; letter-spacing: .5px;
  margin-bottom: 16px; background: rgba(0,200,150,.1); color: var(--green); }
.lp-badge.blue { background: rgba(88,166,255,.1); color: var(--blue); }

/* Search */
.lp-search-wrap {
  position: relative;
  max-width: 520px;
  margin-bottom: 12px;
}
.lp-search-bar { display: flex; align-items: center; gap: 10px;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 10px; padding: 10px 16px; width: 100%; }
.lp-search-bar input { background: none; border: none; outline: none;
  color: var(--text); font-size: 14px; flex: 1; font-family: inherit; }
.lp-search-bar input::placeholder { color: #8b949e; }

#lp-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 8px;
  z-index: 1000;
  max-height: 320px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  display: none;
}
#lp-search-dropdown.lp-search-dropdown--open {
  display: block;
}
.lp-search-dropdown__status {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--muted);
}
.lp-search-dropdown__item {
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border-bottom: 1px solid var(--border);
}
.lp-search-dropdown__item:last-child {
  border-bottom: none;
}
.lp-search-dropdown__item:hover,
.lp-search-dropdown__item:focus {
  background: #21262d;
  outline: none;
}
.lp-search-dropdown__badge {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 3px 6px;
  border-radius: 4px;
  line-height: 1.2;
}
.lp-search-dropdown__badge--stock {
  background: rgba(88, 166, 255, 0.18);
  color: var(--blue);
}
.lp-search-dropdown__badge--fii {
  background: rgba(0, 200, 150, 0.18);
  color: var(--green);
}
.lp-search-dropdown__badge--etf {
  background: rgba(250, 199, 117, 0.22);
  color: var(--amber);
}
.lp-search-dropdown__badge--bdr {
  background: rgba(163, 113, 247, 0.2);
  color: #a371f7;
}
.lp-search-dropdown__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-search-dropdown__ticker {
  font-size: 14px;
  font-weight: 700;
  color: #00c896;
}
.lp-search-dropdown__name {
  font-size: 12px;
  color: #c9d1d9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-search-hints { display: flex; gap: 8px; align-items: center;
  margin-bottom: 24px; font-size: 12px; flex-wrap: wrap; }
.hint-label { color: #8b949e; }
.lp-search-hints a { color: var(--blue); text-decoration: none; }
.lp-search-hints a:hover { text-decoration: underline; }
.lp-hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* KPIs */
.lp-kpis { display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 10px; padding: 0 24px 20px; }
.lp-kpi-card { background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px; }
.kpi-label { color: var(--muted); font-size: 11px; text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: 4px; }
.kpi-val { font-size: 22px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.kpi-val.green { color: var(--green); }
.kpi-val.red { color: var(--red); }
.kpi-sub { font-size: 11px; color: var(--muted); }

/* Depoimentos */
.lp-testimonials { padding: 8px 24px 32px; max-width: 1200px; margin: 0 auto; }
.lp-testimonials h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.lp-section-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.lp-testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-testimonial-stars {
  color: var(--green);
  font-size: 14px;
  letter-spacing: 2px;
}
.lp-testimonial-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
}
.lp-testimonial-meta {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.lp-testimonials-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}
.lp-testimonials-link:hover {
  text-decoration: underline;
}

/* Comparativo */
.lp-comparison { padding: 8px 24px 40px; max-width: 1200px; margin: 0 auto; }
.lp-comparison h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.lp-comparison-table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg2);
}
.lp-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 520px;
}
.lp-comparison-table th,
.lp-comparison-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.lp-comparison-table thead th {
  color: var(--muted);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--bg3);
}
.lp-comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.lp-comparison-table th.highlight,
.lp-comparison-table td.highlight {
  background: rgba(0, 200, 150, 0.08);
  color: var(--text);
  font-weight: 600;
}
.lp-comparison-table td:not(.highlight) {
  color: var(--muted);
}

/* Sections */
.lp-section { padding: 0 24px 16px; }
.lp-section-header { display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 14px; }
.section-title { font-size: 15px; font-weight: 700; }
.section-sub { font-size: 11px; color: var(--muted); }
.lp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

/* Cards */
.lp-card { background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px; }
.card-header { display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 14px; }
.card-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.card-sub { font-size: 10px; color: var(--muted); }
.card-link { color: var(--green); font-size: 12px; text-decoration: none;
  white-space: nowrap; }

.muted-sm { color: var(--muted); font-size: 11px; }
.pos { color: var(--green); font-weight: 600; }
.neg { color: var(--red); font-weight: 600; }

/* LGPD cookie consent */
.lp-cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
  background: #161b22;
  border-top: 1px solid #30363d;
  font-size: 13px;
  line-height: 1.45;
  color: #e6edf3;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
}
.lp-cookie-consent.lp-cookie-consent--visible {
  display: flex;
}
.lp-cookie-consent__text {
  flex: 1;
  min-width: 220px;
  margin: 0;
  color: #e6edf3;
}
.lp-cookie-consent__text a {
  color: var(--blue);
}
.lp-cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lp-cookie-consent__accept {
  background: #00c896;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}
.lp-cookie-consent__accept:active {
  opacity: 0.9;
}
.lp-cookie-consent__reject {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  padding: 8px 6px;
  min-width: 24px;
  min-height: 24px;
}
.lp-cookie-consent__reject:hover,
.lp-cookie-consent__reject:focus-visible {
  color: var(--text);
  outline: none;
}

/* Calculator */
.calc-inputs { display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 10px; align-items: end; margin-bottom: 12px; }
.calc-field label { display: block; font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .3px; margin-bottom: 5px; }
.calc-field input, .calc-field select { width: 100%;
  background: var(--bg); border: 1px solid var(--border2);
  border-radius: 8px; padding: 9px 12px; font-size: 13px;
  font-weight: 600; color: var(--text); font-family: inherit;
  outline: none; }
.calc-field input:focus, .calc-field select:focus {
  border-color: var(--green); }
.calc-results { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 10px; }
.calc-result-card { background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px; }

/* Blog */
.blog-card { cursor: pointer; transition: border-color .2s; }
.blog-card:hover { border-color: var(--border2); }
.blog-img-placeholder { width: 100%; height: 100px;
  background: var(--border); border-radius: 8px; margin-bottom: 10px; }
.blog-img { width: 100%; height: 100px; object-fit: cover;
  border-radius: 8px; margin-bottom: 10px; }
.blog-cat { font-size: 10px; font-weight: 700; letter-spacing: .3px;
  color: var(--green); margin-bottom: 6px; }
.blog-cat.blue { color: var(--blue); }
.blog-cat.amber { color: var(--amber); }
.blog-title { font-size: 13px; font-weight: 600; line-height: 1.45;
  margin-bottom: 8px; color: var(--text); }
.blog-meta { font-size: 11px; color: var(--muted); }

/* App CTA */
.lp-app-cta { background: linear-gradient(135deg, #0a1f15, #0d1117);
  border: 1px solid #1f3a2a; border-radius: 14px; padding: 36px;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 40px; align-items: center; }
.app-cta-text h2 { font-size: 24px; font-weight: 700;
  margin: 12px 0; line-height: 1.3; }
.app-cta-text p { color: var(--muted); font-size: 13px;
  line-height: 1.7; margin-bottom: 22px; }
.app-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.app-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feat-card { background: var(--bg); border: 1px solid #1f3a2a;
  border-radius: 10px; padding: 16px; }
.feat-icon { width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; margin-bottom: 8px; }
.green-icon { background: rgba(0,200,150,.1); }
.blue-icon { background: rgba(88,166,255,.1); }
.amber-icon { background: rgba(250,199,117,.1); }
.feat-title { font-size: 12px; font-weight: 600; margin-bottom: 4px; }
.feat-sub { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* Footer */
.lp-footer { border-top: 1px solid var(--border); padding: 32px 24px 24px; }
.footer-inner { display: grid;
  grid-template-columns: 1fr 2fr; gap: 40px; margin-bottom: 24px; }
.footer-brand p { color: var(--muted); font-size: 13px; margin-top: 10px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title { font-size: 12px; font-weight: 700; color: var(--text);
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 13px; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 16px;
  font-size: 11px; color: #8b949e; }
.footer-links a { color: #8b949e; }

/* Responsive */
@media (max-width: 900px) {
  .lp-nav { display: none; }
  .lp-menu-btn { display: flex; }
  .lp-testimonials-grid { grid-template-columns: 1fr; }
  .lp-grid-3 { grid-template-columns: 1fr; }
  .lp-grid-2 { grid-template-columns: 1fr; }
  .lp-app-cta { grid-template-columns: 1fr; }
  .calc-inputs { grid-template-columns: 1fr 1fr; }
  .calc-results { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .lp-hero h1 { font-size: 28px; }
}
@media (max-width: 600px) {
  .lp-kpis { grid-template-columns: 1fr; }
  .lp-hero-btns { flex-direction: column; }
  .app-features-grid { grid-template-columns: 1fr; }
  .calc-inputs { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr; }
}

/* ===== LIGHT MODE — Pedra Quente ===== */
[data-theme="light"] {
  /* Redefinir variáveis root para tema claro */
  --bg: #f5f0eb;
  --bg2: #ffffff;
  --bg3: #faf7f4;
  --border: #e8e2da;
  --text: #1c1917;
  --text2: #3d3733;
  --muted: #78716c;
  --accent: #00C896;
  --lp-bg: #f5f0eb;
  --lp-surface: #faf7f4;
  --lp-card: #ffffff;
  --lp-border: #e8e2da;
  --lp-text: #1c1917;
  --lp-muted: #78716c;
  --lp-accent: #00C896;
}
[data-theme="light"] body {
  background: #f5f0eb !important;
  color: #1c1917 !important;
}
/* Nav */
[data-theme="light"] .lp-nav,
[data-theme="light"] nav,
[data-theme="light"] header {
  background: #faf7f4 !important;
  border-bottom-color: #e8e2da !important;
}
[data-theme="light"] .lp-nav a,
[data-theme="light"] nav a { color: #57534e !important; }
[data-theme="light"] .lp-nav a:hover,
[data-theme="light"] nav a:hover { color: #1c1917 !important; }
[data-theme="light"] .text-green { color: #047857 !important; }
/* Cards e seções */
[data-theme="light"] .card,
[data-theme="light"] [class*="card"],
[data-theme="light"] [class*="-box"],
[data-theme="light"] [class*="feature"] {
  background: #ffffff !important;
  border-color: #e8e2da !important;
  color: #1c1917 !important;
}
/* Seções com fundo dark */
[data-theme="light"] section,
[data-theme="light"] .section,
[data-theme="light"] [class*="section"] {
  background: inherit;
  color: #1c1917 !important;
}
/* Textos */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4 { color: #1c1917 !important; }
[data-theme="light"] p { color: #3d3733 !important; }
/* Manter acento verde */
[data-theme="light"] .accent,
[data-theme="light"] [class*="accent"] { color: #00C896 !important; }
/* Toggle tema — visível no fundo claro */
[data-theme="light"] #lp-theme-btn {
  border-color: rgba(28, 25, 23, 0.28) !important;
  color: #1c1917 !important;
}

/* Seções que usam hardcoded ou gradiente dark */
[data-theme="light"] .lp-app-cta {
  background: linear-gradient(135deg, #e8f5f0, #f0f8f4) !important;
  border-color: #b8ddd0 !important;
}
[data-theme="light"] .feat-card {
  background: #ffffff !important;
  border-color: #e8e2da !important;
}
[data-theme="light"] .feat-card h3,
[data-theme="light"] .feat-card p { color: #1c1917 !important; }

/* Tabela comparativa */
[data-theme="light"] .lp-comparison-table-wrap {
  background: #ffffff !important;
  border-color: #e8e2da !important;
}
[data-theme="light"] .lp-comparison-table thead th {
  background: #faf7f4 !important;
  color: #1c1917 !important;
  border-color: #e8e2da !important;
}
[data-theme="light"] .lp-comparison-table td,
[data-theme="light"] .lp-comparison-table th {
  border-color: #f0ebe5 !important;
  color: #1c1917 !important;
}

/* Blog placeholders */
[data-theme="light"] .blog-img-placeholder {
  background: #e8e2da !important;
}

/* Depoimentos */
[data-theme="light"] .lp-testimonial-card {
  background: #ffffff !important;
  border-color: #e8e2da !important;
}
[data-theme="light"] .lp-testimonial-card p { color: #3d3733 !important; }
[data-theme="light"] .lp-testimonial-card .testimonial-author { color: #78716c !important; }

/* Footer */
[data-theme="light"] .lp-footer {
  border-top-color: #e8e2da !important;
}
[data-theme="light"] .lp-footer,
[data-theme="light"] .footer-inner,
[data-theme="light"] .footer-bottom { color: #78716c !important; }
[data-theme="light"] .lp-footer a { color: #78716c !important; }
[data-theme="light"] .lp-footer a:hover { color: #1c1917 !important; }

/* Feature Grid */
.lp-features-grid { padding: 60px 24px; max-width: 1200px; margin: 0 auto; }
.lp-features-grid__header { text-align: center; margin-bottom: 40px; }
.lp-features-grid__header h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.lp-section-tag { display: inline-block; border: 1px solid var(--green); color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 20px; margin-bottom: 14px; text-transform: uppercase; }
.lp-features-grid__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lp-feat-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.lp-feat-icon { font-size: 22px; margin-bottom: 14px; color: var(--green); }
.lp-feat-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.lp-feat-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Migration */
.lp-migration { padding: 60px 24px; }
.lp-migration__inner { max-width: 1200px; margin: 0 auto; background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 48px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.lp-migration__left h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 24px; line-height: 1.3; }
.lp-migration__stats { display: flex; flex-direction: column; gap: 16px; }
.lp-migration__stat { display: flex; flex-direction: column; }
.lp-migration__stat-val { font-size: 28px; font-weight: 800; color: var(--green); line-height: 1; }
.lp-migration__stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }
.lp-migration__row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; margin-bottom: 10px; }
.lp-migration__before { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.lp-migration__arrow { color: var(--green); font-size: 16px; font-weight: 700; }
.lp-migration__after { font-size: 13px; color: var(--green); font-weight: 600; }

/* Light mode overrides para novas seções */
[data-theme="light"] .lp-section-tag {
  border-color: #00c896 !important;
  color: #047857 !important;
}
[data-theme="light"] .lp-feat-card { background: #ffffff; border-color: #e8e2da; }
[data-theme="light"] .lp-feat-card p { color: #78716c !important; }
[data-theme="light"] .lp-migration__inner { background: #ffffff; border-color: #e8e2da; }
[data-theme="light"] .lp-migration__row { background: #faf7f4; border-color: #e8e2da; }
[data-theme="light"] .lp-migration__before { color: #78716c; }

/* Responsivo */
@media (max-width: 900px) {
  .lp-features-grid__cards { grid-template-columns: repeat(2, 1fr); }
  .lp-migration__inner { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
}
@media (max-width: 600px) {
  .lp-features-grid__cards { grid-template-columns: 1fr; }
  .lp-migration__row { grid-template-columns: 1fr; gap: 4px; }
  .lp-migration__arrow { display: none; }
}
