/* ═══════════════════════════════════════
   LANDING LOJISTAS — design conversão
   ═══════════════════════════════════════ */

body.landing-lojistas {
  background: #ffffff;
}

.hero-lojistas {
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-lojistas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(14,165,233,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(251,146,60,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.hero-lojistas h1 {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--text);
}

.hero-highlight {
  background: linear-gradient(120deg, #0ea5e9, #0284c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.hero-bullet span {
  width: 22px;
  height: 22px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

/* Mockup do celular */
.hero-right {
  display: flex;
  justify-content: center;
}
.hero-phone {
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 30px 60px -15px rgba(15,23,42,0.3), 0 0 0 8px #0f172a;
  width: 100%;
  max-width: 340px;
  position: relative;
}
.hero-phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #0f172a;
  border-radius: 999px;
  z-index: 2;
}
.hero-phone-screen {
  background: #f1f5f9;
  border-radius: 26px;
  padding: 48px 18px 18px;
  min-height: 360px;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 14px;
  color: var(--text);
}
.phone-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
}
.phone-dot.pulse { animation: phonePulse 1.6s infinite }
@keyframes phonePulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6) }
  100% { box-shadow: 0 0 0 12px rgba(34,197,94,0) }
}

.phone-pedido {
  background: white;
  border-radius: 14px;
  padding: 14px;
  border: 2px solid var(--orange);
  box-shadow: 0 4px 12px -2px rgba(249,115,22,0.2);
  animation: slideUp 0.6s ease;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}
.phone-pedido-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.phone-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  font-weight: 700;
}
.phone-valor {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  color: var(--brand);
}
.phone-cliente {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.phone-itens {
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 12px;
}
.phone-actions {
  display: flex;
  gap: 6px;
}
.phone-btn {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 9px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.phone-btn-aceitar {
  background: var(--green);
  color: white;
}
.phone-btn-recusar {
  background: white;
  border: 1px solid var(--line);
  color: var(--text-2);
}
.phone-rodape {
  text-align: center;
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-3);
}

/* NÚMEROS */
.numeros {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: white;
  padding: 40px 0;
}
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.numero-item strong {
  display: block;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.numero-item span {
  font-size: 13px;
  opacity: 0.9;
}

/* DORES */
.dores {
  padding: 80px 0;
  background: #fafbfc;
}
.section-head {
  margin-bottom: 50px;
}
.section-head.center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--text);
}
.section-head p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.5;
}
.strike {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--red);
  color: var(--text-2);
}
.grad-text {
  background: linear-gradient(120deg, #0ea5e9, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.dor-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.2s;
}
.dor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(15,23,42,0.1);
  border-color: var(--text-3);
}
.dor-emoji {
  font-size: 36px;
  margin-bottom: 12px;
}
.dor-card h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.dor-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

/* PASSOS */
.solucao {
  padding: 80px 0;
}
.passos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.passo-card {
  position: relative;
  padding: 28px 22px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.2s;
}
.passo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(14,165,233,0.15);
  border-color: var(--brand);
}
.passo-numero {
  position: absolute;
  top: -18px;
  left: 22px;
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 4px 12px -2px rgba(14,165,233,0.4);
}
.passo-card h3 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  margin: 8px 0 8px;
}
.passo-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.passo-card code {
  background: var(--bg-2);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--brand-dark);
}

/* FEATURES */
.features {
  padding: 80px 0;
  background: #fafbfc;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.feature-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.15s;
}
.feature-item:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.feature-item.highlight {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: white;
  border: none;
}
.feature-item.highlight h3,
.feature-item.highlight p {
  color: white;
}
.feature-icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.feature-item h3 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.feature-item p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.badge-gratis {
  background: #10b981;
  color: white;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* COMPARATIVO */
.comparativo {
  padding: 80px 0;
}
.comparativo-tabela {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.comp-col {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.comp-col h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
}
.comp-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comp-col li {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.comp-bad {
  background: #fef2f2;
  color: #991b1b;
}
.comp-bad::before { content: '✗'; font-weight: 800 }
.comp-good {
  background: #f0fdf4;
  color: #166534;
}
.comp-good::before { content: '✓'; font-weight: 800 }
.comp-melhor {
  border: 2px solid var(--brand);
  background: var(--brand-light);
  transform: scale(1.04);
  box-shadow: 0 12px 30px -8px rgba(14,165,233,0.25);
  position: relative;
}
.comp-melhor h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.comp-badge {
  background: var(--brand);
  color: white;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

/* PREÇO */
.preco {
  padding: 80px 0;
  background: #fafbfc;
}
.plano-card {
  background: white;
  border: 3px solid var(--brand);
  border-radius: 24px;
  padding: 36px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px -15px rgba(14,165,233,0.25);
}
.plano-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.plano-card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 18px;
}
.plano-preco {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.plano-preco .moeda {
  font-size: 22px;
  color: var(--text-3);
  font-weight: 700;
}
.plano-preco .valor {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--brand);
}
.plano-preco .centavos {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
}
.plano-preco .periodo {
  font-size: 16px;
  color: var(--text-3);
  margin-left: 4px;
}
.plano-equiv {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
  font-style: italic;
}
.plano-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plano-features li {
  font-size: 14px;
  color: var(--text);
  padding-left: 4px;
}
.plano-garantia {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 14px;
}

/* FAQ */
.faq {
  padding: 80px 0;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  transition: all 0.2s;
}
.faq-item[open] {
  border-color: var(--brand);
  box-shadow: 0 4px 12px -2px rgba(14,165,233,0.1);
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.faq-item summary::-webkit-details-marker { display: none }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--brand);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}

/* CTA FINAL */
.cta-final {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #1e3a8a 100%);
}
.cta-final-box {
  text-align: center;
  color: white;
  max-width: 640px;
  margin: 0 auto;
}
.cta-final-box h2 {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.cta-final-box h2 .hero-highlight {
  background: linear-gradient(120deg, #fbbf24, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-final-box p {
  font-size: 17px;
  opacity: 0.95;
  margin-bottom: 28px;
}
.cta-final-box .btn-primary {
  background: white !important;
  color: var(--brand-dark) !important;
}
.cta-final-box .btn-primary:hover {
  background: #f0f9ff !important;
}
.cta-final-mini {
  margin-top: 18px;
  font-size: 13px;
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px }
  .hero-lojistas h1 { font-size: 36px }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); gap: 20px }
  .numero-item strong { font-size: 28px }
  .comparativo-tabela { grid-template-columns: 1fr; max-width: 460px }
  .comp-melhor { transform: scale(1) }
  .section-head h2 { font-size: 30px }
  .cta-final-box h2 { font-size: 28px }
  .btn-block-mobile { width: 100%; justify-content: center }
}

@media (max-width: 600px) {
  .hero-lojistas { padding: 40px 0 60px }
  .hero-lojistas h1 { font-size: 28px }
  .hero-sub { font-size: 15px }
  .dores, .solucao, .features, .comparativo, .preco, .faq { padding: 50px 0 }
  .section-head h2 { font-size: 24px }
  .plano-card { padding: 28px 22px }
  .plano-preco .valor { font-size: 56px }
  .cta-final-box h2 { font-size: 22px }
}
