/* LP Mapa das Vendas 2026 — design system (extraído do React/Tailwind) */

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

body {
  margin: 0;
  min-height: 100vh;
  background: #0A0A0A;
  color: #F5F5F5;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.lp-wrap {
  min-height: 100vh;
}
.lp-wrap.sticky-visible { padding-bottom: 6rem; }

/* Container */
.lp-container { max-width: 48rem; margin-left: auto; margin-right: auto; }
.lp-container-narrow { max-width: 32rem; margin-left: auto; margin-right: auto; }
.lp-container-wide { max-width: 56rem; margin-left: auto; margin-right: auto; }

/* Sections */
.lp-section { padding: 3rem 1.5rem; }
@media (min-width: 640px) { .lp-section { padding-top: 4rem; padding-bottom: 4rem; } }
.lp-section--dark { background: #0A0A0A; }
.lp-section--mid { background: #111111; border-top: 1px solid #222; }
.lp-section--hero { padding-top: 2rem; padding-bottom: 2rem; }
@media (min-width: 640px) { .lp-section--hero { padding-top: 3rem; padding-bottom: 3rem; } }
@media (max-width: 430px) {
  .lp-section--hero { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .lp-section--hero .lp-badge { margin-bottom: 0.75rem; font-size: 0.6875rem; padding: 0.3rem 0.75rem; }
  .lp-section--hero .lp-text-hero { font-size: 1.125rem; line-height: 1.3; margin-bottom: 0.75rem; }
  .lp-section--hero .lp-text-body { font-size: 0.9375rem; margin-bottom: 0.75rem; }
  .lp-section--hero .lp-price-block { padding: 0.75rem; margin-bottom: 0.75rem; }
  .lp-section--hero .lp-countdown--hero .lp-countdown-num { font-size: 1.25rem; }
}
.lp-section--center { text-align: center; }
.lp-section.lp-section--center .lp-container { text-align: center; }
.lp-section.lp-section--center .lp-list,
.lp-section.lp-section--center .lp-identification { text-align: left; }
.lp-section.lp-section--center .lp-list-block { text-align: left; }

/* Typography */
.lp-text-hero { font-size: 1.25rem; font-weight: 800; line-height: 1.25; }
@media (min-width: 640px) { .lp-text-hero { font-size: 1.875rem; } }
.lp-text-h2 { font-size: 1.25rem; font-weight: 700; }
@media (min-width: 640px) { .lp-text-h2 { font-size: 1.5rem; } }
.lp-text-h2-lg { font-size: 1.5rem; font-weight: 700; }
@media (min-width: 640px) { .lp-text-h2-lg { font-size: 1.875rem; } }
.lp-text-body { color: #999; font-size: 1rem; line-height: 1.625; }
@media (min-width: 640px) { .lp-text-body { font-size: 1.125rem; } }
.lp-text-muted { color: #999; font-size: 0.875rem; }
.lp-text-muted-xs { color: #777; font-size: 0.75rem; }
.lp-text-ccc { color: #ccc; }
.lp-text-white { color: #F5F5F5; }
.lp-font-semibold { font-weight: 600; }
.lp-font-bold { font-weight: 700; }
.lp-font-extrabold { font-weight: 800; }
.lp-leading-relaxed { line-height: 1.625; }

/* Spacing */
.lp-mb-1 { margin-bottom: 0.25rem; }
.lp-mb-2 { margin-bottom: 0.5rem; }
.lp-mb-3 { margin-bottom: 0.75rem; }
.lp-mb-4 { margin-bottom: 1rem; }
.lp-mb-6 { margin-bottom: 1.5rem; }
.lp-mb-8 { margin-bottom: 2rem; }
.lp-mt-1 { margin-top: 0.25rem; }
.lp-mt-2 { margin-top: 0.5rem; }
.lp-mt-4 { margin-top: 1rem; }
.lp-mt-10 { margin-top: 2.5rem; }

/* Badge */
.lp-badge {
  display: inline-block;
  background: #E63946;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 640px) { .lp-badge { font-size: 0.875rem; } }

/* (Countdown removido) */

/* Centered block (max-width + margin auto) */
.lp-block-center { max-width: 36rem; margin-left: auto; margin-right: auto; }
.lp-list-block { max-width: 28rem; margin-left: auto; margin-right: auto; text-align: left; }

/* List with checkmarks */
.lp-list { list-style: none; padding: 0; margin: 0; text-align: left; }
.lp-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.5rem; }
.lp-list li:last-child { margin-bottom: 0; }
.lp-list .lp-check { color: #E63946; flex-shrink: 0; margin-top: 0.125rem; }
.lp-list-bullet .lp-bullet { color: #E63946; flex-shrink: 0; }

/* Price block */
.lp-price-block {
  width: 100%;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid #E63946;
  background: #1A0A0A;
  text-align: center;
}
@media (min-width: 640px) { .lp-price-block { padding: 1.25rem; } }
.lp-price-block .lp-price { font-size: 1.5rem; font-weight: 700; color: #E63946; }
@media (min-width: 640px) { .lp-price-block .lp-price { font-size: 1.875rem; } }
.lp-price-copy { font-size: 0.9375rem; line-height: 1.4; }
@media (min-width: 640px) { .lp-price-copy { font-size: 1rem; } }
.lp-countdown--hero { margin: 0.5rem 0; }
.lp-countdown-num { font-size: 1.25rem; font-weight: 800; color: #E63946; line-height: 1.2; font-variant-numeric: tabular-nums; }
.lp-countdown--hero .lp-countdown-num { font-size: 1.5rem; }
.lp-countdown-label { font-size: 0.625rem; color: #999; text-transform: uppercase; letter-spacing: 0.03em; }
.lp-countdown--hero .lp-countdown-label { margin-top: 0.125rem; }
.lp-price-note { font-size: 0.8125rem; }
.lp-countdown-intro { font-size: 0.875rem; }

/* Buttons */
.lp-btn {
  display: inline-block;
  background: #E63946;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: normal;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
}
.lp-btn:hover { background: rgba(230, 57, 70, 0.9); transform: scale(1.02); }
@keyframes lp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(230, 57, 70, 0); }
}
.lp-btn--pulse { animation: lp-pulse 5s ease-in-out infinite; }
.lp-btn--pulse:hover { animation: none; }
.lp-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px #E63946;
  outline-offset: 2px;
}
.lp-btn--hero {
  width: 100%;
  min-width: 280px;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  padding: 1.25rem 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
/* (Nudge removido) */
@media (min-width: 640px) {
  .lp-btn--hero { width: auto; max-width: none; padding: 1.5rem 2rem; }
}
.lp-btn--sticky {
  min-height: 48px;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 640px) { .lp-btn--sticky { width: auto; } }

/* CTA block under button */
.lp-cta-meta { color: #777; font-size: 0.75rem; margin-top: 0.5rem; }
.lp-trust { color: #999; font-size: 0.875rem; margin-top: 0.75rem; font-style: italic; }

/* Step blocks (Dobra 2) */
.lp-step-block {
  text-align: left;
  padding-left: 1rem;
  border-left: 3px solid #E63946;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.lp-step-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #E63946;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.lp-step-title { font-size: 1.125rem; font-weight: 700; color: #F5F5F5; margin: 0 0 0.5rem; }
.lp-step-text { color: #ccc; font-size: 0.9375rem; line-height: 1.625; margin: 0 0 0.75rem; }
.lp-step-out { color: #999; font-size: 0.875rem; font-style: italic; margin: 0; }
/* Bonus block */
.lp-bonus-block { max-width: 36rem; margin-left: auto; margin-right: auto; text-align: left; }
.lp-bonus-label { font-weight: 700; color: #E63946; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.lp-bonus-icon { display: inline-block; width: 1rem; height: 1rem; border: 2px solid #E63946; border-radius: 2px; position: relative; }
.lp-bonus-icon::after { content: ''; position: absolute; left: 0.15rem; top: 0.1rem; width: 0.35rem; height: 0.6rem; border: solid #E63946; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.lp-bonus-item { color: #ccc; font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1rem; padding-left: 1.5rem; }
.lp-bonus-item:last-child { margin-bottom: 0; }
/* Value anchor */
.lp-value-anchor {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.25rem;
  background: #111111;
  border: 1px solid #222;
  border-radius: 0.5rem;
  text-align: left;
}
.lp-value-anchor-text { color: #999; font-size: 0.875rem; line-height: 1.625; margin: 0 0 1rem; }
.lp-value-anchor-cta { color: #F5F5F5; font-weight: 700; font-size: 1rem; margin: 0; }

/* Section identification */
.lp-identification { list-style: none; padding: 0; margin: 0 0 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.lp-identification li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; color: #ccc; line-height: 1.625; }

/* Depoimento box */
.lp-depoimento-box {
  border: 2px solid #E63946;
  border-radius: 0.75rem;
  background: #1A0A0A;
  padding: 1.5rem;
  text-align: left;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .lp-depoimento-box { padding: 2rem; } }
.lp-depoimento-box blockquote { color: #F5F5F5; font-size: 1.125rem; font-style: italic; line-height: 1.625; margin: 0 0 1rem; }
.lp-depoimento-box .lp-author { font-weight: 700; color: #F5F5F5; }

/* Table */
.lp-table-wrap {
  overflow-x: auto;
  width: 100%;
  border: 1px solid #3A1A1A;
  background: #111111;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.lp-table { width: 100%; font-size: 0.875rem; text-align: left; }
.lp-table th, .lp-table td { padding: 0.75rem; border-bottom: 1px solid #3A1A1A; }
.lp-table th { color: #F5F5F5; font-weight: 600; }
.lp-table td { color: #ccc; }
.lp-table .lp-td-highlight { font-weight: 700; color: #E63946; }
.lp-table--before-after .lp-th-before { background: rgba(80, 30, 30, 0.4); }
.lp-table--before-after .lp-td-before { background: rgba(80, 30, 30, 0.25); color: #ccc; }
.lp-table--before-after .lp-th-today { border: 2px solid #E63946; color: #E63946; }
.lp-table--before-after .lp-td-today { font-weight: 700; color: #E63946; border: 2px solid #E63946; background: rgba(230, 57, 70, 0.08); }

/* Author mini */
.lp-author-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 2rem; }
.lp-author-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 4px solid #E63946;
}
@media (min-width: 640px) { .lp-author-avatar { width: 7rem; height: 7rem; } }
.lp-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: calc(50% - 5px) 15%;
  transform: scale(1.3);
}

/* FAQ Accordion */
.lp-faq-item { border-bottom: 1px solid #222; }
.lp-faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  text-align: left;
  background: none;
  border: none;
  color: #F5F5F5;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}
@media (min-width: 640px) { .lp-faq-btn { font-size: 1.125rem; } }
.lp-faq-btn .lp-faq-plus { margin-left: 1rem; color: #E63946; font-size: 1.5rem; flex-shrink: 0; display: inline-block; min-width: 1.5rem; text-align: right; }
.lp-faq-answer { padding-bottom: 1.25rem; color: #999; line-height: 1.625; display: none; }
.lp-faq-item.is-open .lp-faq-answer { display: block; }
.lp-faq-item.is-open .lp-faq-plus::after { content: '−'; }
.lp-faq-item:not(.is-open) .lp-faq-plus::after { content: '+'; }

/* Footer */
.lp-footer {
  background: #111111;
  padding: 3rem 1.5rem;
  border-top: 1px solid #222;
  text-align: center;
  color: #777;
  font-size: 0.875rem;
}
.lp-footer p { margin: 0 0 1rem; }
.lp-footer .lp-link-privacy { text-decoration: underline; cursor: pointer; background: none; border: none; color: inherit; font-size: inherit; }
.lp-footer .lp-link-privacy:hover { color: #F5F5F5; }

/* (Banner topo removido) */

/* Sticky bar — animação só com transform (compositor) para evitar "animação não compostada" */
.lp-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: #0A0A0A;
  border-top: 1px solid #222;
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transform: translateY(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.2s ease-out;
}
@media (min-width: 640px) {
  .lp-sticky { flex-direction: row; gap: 1.5rem; }
}
.lp-sticky.is-visible {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.lp-sticky-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}
@media (min-width: 640px) {
  .lp-sticky-inner { flex-direction: row; justify-content: center; gap: 1.5rem; }
}
.lp-sticky-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}
.lp-sticky-cta {
  color: #F5F5F5;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
}
.lp-sticky-countdown { color: #E63946; font-weight: 800; font-size: 0.875rem; font-variant-numeric: tabular-nums; margin-left: 0.25rem; }
/* (Countdown sticky removido) */

/* Modal */
.lp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lp-modal-overlay.is-open { display: flex; }
.lp-modal {
  background: #111111;
  border-radius: 0.75rem;
  max-width: 42rem;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 1.5rem;
  position: relative;
}
@media (min-width: 640px) { .lp-modal { padding: 2rem; } }
.lp-modal .lp-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #999;
  font-size: 1.5rem;
  cursor: pointer;
}
.lp-modal .lp-modal-close:hover { color: #F5F5F5; }
.lp-modal h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; color: #F5F5F5; }
.lp-modal-content { color: #999; font-size: 0.875rem; line-height: 1.625; }
.lp-modal-content p { margin-bottom: 1rem; }
.lp-modal-content h3 { color: #F5F5F5; font-weight: 600; font-size: 1rem; margin-top: 1rem; margin-bottom: 0.5rem; }
.lp-modal-content ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }

/* Images */
.lp-img-depoimento { border-radius: 0.5rem; max-width: 100%; height: auto; display: block; }
@media (min-width: 640px) { .lp-img-depoimento { max-width: 324px; margin-left: auto; margin-right: auto; } }
.lp-img-hero { width: 100%; height: 100%; }

/* Popup inatividade / intenção de saída — mobile-first */
.lp-popup-exit {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.lp-popup-exit.is-open { display: flex; }
.lp-popup-exit__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.lp-popup-exit__box {
  position: relative;
  width: 100%;
  max-width: 28rem;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: #111111;
  border: 2px solid #E63946;
  border-radius: 0.75rem;
  padding: 1.5rem 1.25rem 1.5rem;
  margin: auto;
}
@media (min-width: 640px) {
  .lp-popup-exit__box { padding: 2rem; }
}
.lp-popup-exit__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #999;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 0.25rem;
}
.lp-popup-exit__close:hover { color: #F5F5F5; }
.lp-popup-exit__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #F5F5F5;
  line-height: 1.3;
  margin: 0 0 1rem;
  padding-right: 2rem;
}
@media (min-width: 640px) { .lp-popup-exit__title { font-size: 1.375rem; } }
.lp-popup-exit__sub {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ccc;
  margin: 0 0 0.5rem;
}
.lp-popup-exit__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.lp-popup-exit__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #ccc;
  line-height: 1.5;
}
.lp-popup-exit__list li:last-child { margin-bottom: 0; }
.lp-popup-exit__check { flex-shrink: 0; width: 1rem; height: 1rem; margin-top: 0.2rem; color: #E63946; display: inline-block; position: relative; }
.lp-popup-exit__check::before { content: ''; position: absolute; left: 0.2rem; top: 0; width: 0.35rem; height: 0.6rem; border: solid #E63946; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.lp-popup-exit__bonus-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ccc;
  margin: 0 0 0.5rem;
}
.lp-popup-exit__list--bonus { margin-bottom: 1.5rem; }
.lp-popup-exit__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lp-popup-exit__cta {
  width: 100%;
  min-height: 48px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}
.lp-popup-exit__secondary {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem;
  background: none;
  border: 1px solid #444;
  color: #999;
  font-size: 0.875rem;
  cursor: pointer;
  border-radius: 0.5rem;
}
.lp-popup-exit__secondary:hover { color: #F5F5F5; border-color: #666; }
