/* =========================================================
   Kit Visual de Inglês — Landing Page de Vendas (CSS puro)
   Compatível com Elementor / WordPress (prefixo .lpv-)
   v2 — espaçamento compacto + 100% responsivo + alta conversão
   ========================================================= */

.lpv-root {
  --lpv-yellow: #ffd60a;
  --lpv-yellow-dark: #e6bd00;
  --lpv-ink: #10131a;
  --lpv-ink-soft: #4a5160;
  --lpv-bg: #fffdf5;
  --lpv-card: #ffffff;
  --lpv-line: #ece7d6;
  --lpv-green: #16a34a;
  --lpv-red: #d92020;
  --lpv-navy: #14204a;
  --lpv-radius: 16px;
  --lpv-shadow: 0 12px 28px -18px rgba(16, 19, 26, .42);
  --lpv-max: 100%;
  --lpv-gap: clamp(12px, 2vw, 20px);
  --lpv-pad: clamp(36px, 5.5vw, 60px);

  box-sizing: border-box;
  margin: 0;
  color: var(--lpv-ink);
  background: var(--lpv-bg);
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(15.5px, 1.05vw, 17px);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.lpv-root img { max-width: 100%; height: auto; display: block; }
.lpv-root p { margin: 0 0 .7em; }
.lpv-root p:last-child { margin-bottom: 0; }
.lpv-root h1, .lpv-root h2, .lpv-root h3, .lpv-root h4 {
  margin: 0 0 .4em; line-height: 1.12; letter-spacing: -.022em; font-weight: 800;
  overflow-wrap: break-word;
}
.lpv-root h1 { font-size: clamp(1.85rem, 5vw, 3.15rem); }
.lpv-root h2 { font-size: clamp(1.45rem, 3.4vw, 2.25rem); }
.lpv-root h3 { font-size: clamp(1.05rem, 1.6vw, 1.15rem); }

.lpv-wrap { width: 100%; max-width: var(--lpv-max); margin: 0 auto; padding: 0 clamp(14px, 4vw, 20px); }
.lpv-section { padding: var(--lpv-pad) 0; }
.lpv-section--tight { padding: clamp(24px, 3.5vw, 38px) 0; }
.lpv-section--alt { background: #fff; border-block: 1px solid var(--lpv-line); }
.lpv-center { text-align: center; }
.lpv-head { margin-bottom: clamp(20px, 3vw, 30px); }
.lpv-lead { max-width: 620px; margin: 0 auto; color: var(--lpv-ink-soft); font-size: clamp(.98rem, 1.4vw, 1.04rem); }
.lpv-mark { background: linear-gradient(180deg, transparent 55%, var(--lpv-yellow) 55%); padding: 0 .12em; }
.lpv-em { color: var(--lpv-red); font-weight: 800; }

/* ---------- Etiquetas ---------- */
.lpv-eyebrow {
  display: inline-block; margin-bottom: 10px; padding: 5px 12px;
  border: 1px solid var(--lpv-line); border-radius: 999px; background: #fff;
  font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--lpv-ink-soft);
}

/* ---------- Barra de topo + contador ---------- */
.lpv-topbar {
  background: var(--lpv-ink); color: #fff; text-align: center;
  font-weight: 700; font-size: clamp(.78rem, 2.4vw, .92rem);
  padding: 9px 12px; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 6px 12px;
}
.lpv-topbar b { color: var(--lpv-yellow); }
.lpv-timer {
  display: inline-flex; gap: 4px; font-variant-numeric: tabular-nums;
}
.lpv-timer span {
  background: var(--lpv-yellow); color: var(--lpv-ink);
  border-radius: 6px; padding: 2px 7px; font-weight: 900;
}

/* ---------- Botões ---------- */
.lpv-cta {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  max-width: 100%; padding: clamp(13px, 2.4vw, 17px) clamp(20px, 4vw, 38px);
  border: 0; border-radius: 999px; cursor: pointer;
  background: linear-gradient(180deg, #21c95e, #12983f); color: #fff;
  font-size: clamp(.98rem, 2.6vw, 1.18rem); font-weight: 900; text-decoration: none;
  text-align: center; line-height: 1.2;
  box-shadow: 0 6px 0 #0c7a31, 0 16px 28px -16px rgba(0,0,0,.55);
  animation: lpv-pulse 2.4s ease-in-out infinite;
  transition: transform .15s ease, box-shadow .15s ease;
}
.lpv-cta small { display: block; margin-top: 4px; font-size: .72em; font-weight: 600; opacity: .92; }
.lpv-cta:hover { transform: translateY(3px); box-shadow: 0 3px 0 #0c7a31, 0 12px 20px -16px rgba(0,0,0,.55); }
.lpv-cta:focus-visible { outline: 3px solid var(--lpv-navy); outline-offset: 4px; }
.lpv-cta--block { width: 100%; max-width: 460px; }
.lpv-cta-note { margin-top: 10px; font-size: clamp(.78rem, 2.2vw, .86rem); color: var(--lpv-ink-soft); }
.lpv-cta-row { margin-top: clamp(20px, 3vw, 28px); text-align: center; }

@keyframes lpv-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.028); }
}

/* ---------- Hero ---------- */
.lpv-hero { padding: clamp(26px, 4vw, 44px) 0 clamp(30px, 4.5vw, 48px); text-align: center; }
.lpv-rating {
  display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px 10px; padding: 6px 14px; margin-bottom: 14px;
  background: #fff; border: 1px solid var(--lpv-line); border-radius: 999px;
  box-shadow: var(--lpv-shadow); font-weight: 700; font-size: clamp(.78rem, 2.2vw, .9rem);
}
.lpv-stars { color: #f5a300; letter-spacing: 2px; }
.lpv-hero p.lpv-sub {
  max-width: 600px; margin: 0 auto clamp(18px, 3vw, 26px);
  font-size: clamp(1rem, 2.6vw, 1.1rem); color: var(--lpv-ink-soft);
}
.lpv-hero-figure {
  max-width: 680px; margin: 0 auto clamp(18px, 3vw, 26px);
  border-radius: var(--lpv-radius); overflow: hidden; box-shadow: var(--lpv-shadow);
}
.lpv-hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 18px;
}
.lpv-pill {
  padding: 6px 13px; border-radius: 999px; background: #fff;
  border: 1px solid var(--lpv-line); font-size: clamp(.76rem, 2.1vw, .86rem);
  font-weight: 600; color: var(--lpv-ink-soft);
}

/* ---------- Grades ---------- */
.lpv-grid { display: grid; gap: var(--lpv-gap); grid-template-columns: 1fr; }
@media (min-width: 640px) { .lpv-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 640px) { .lpv-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 940px) { .lpv-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 640px) { .lpv-grid--maps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 940px) { .lpv-grid--maps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.lpv-card {
  background: var(--lpv-card); border: 1px solid var(--lpv-line); min-width: 0;
  border-radius: var(--lpv-radius); padding: clamp(16px, 2.6vw, 22px); box-shadow: var(--lpv-shadow);
}
.lpv-card p { font-size: clamp(.92rem, 1.4vw, .98rem); color: var(--lpv-ink-soft); }
.lpv-icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }

/* ---------- Amostras ---------- */
.lpv-map { overflow: hidden; padding: 0; }
.lpv-map figcaption { padding: 12px 16px; font-weight: 700; font-size: .9rem; }

/* ---------- Níveis ---------- */
.lpv-levels { display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 520px) { .lpv-levels { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 860px) { .lpv-levels { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.lpv-level {
  text-align: center; padding: 13px 8px; border-radius: 12px;
  background: #fff; border: 1px solid var(--lpv-line); min-width: 0;
}
.lpv-level b { display: block; font-size: clamp(1.2rem, 3.4vw, 1.4rem); color: var(--lpv-navy); }
.lpv-level span { display: block; font-size: .78rem; color: var(--lpv-ink-soft); }

/* ---------- Antes x Depois ---------- */
.lpv-vs { display: grid; gap: var(--lpv-gap); grid-template-columns: 1fr; }
@media (min-width: 700px) { .lpv-vs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.lpv-vs ul { list-style: none; margin: 0; padding: 0; }
.lpv-vs li {
  display: flex; gap: 9px; align-items: flex-start;
  padding: 8px 0; border-bottom: 1px dashed var(--lpv-line);
  font-size: clamp(.9rem, 1.4vw, .97rem);
}
.lpv-vs li:last-child { border-bottom: 0; }
.lpv-vs li::before { flex: 0 0 auto; font-weight: 900; }
.lpv-vs--bad li::before { content: "✕"; color: var(--lpv-red); }
.lpv-vs--good li::before { content: "✓"; color: var(--lpv-green); }
.lpv-vs--bad { background: #fff6f6; border-color: #f4d4d4; }
.lpv-vs--good { border-color: var(--lpv-green); box-shadow: 0 0 0 2px rgba(22,163,74,.12), var(--lpv-shadow); }

/* ---------- Depoimentos ---------- */
.lpv-quote p { font-size: clamp(.92rem, 1.4vw, .98rem); color: var(--lpv-ink); }
.lpv-author { display: flex; align-items: center; gap: 10px; margin-top: 12px; min-width: 0; }
.lpv-avatar {
  width: 40px; height: 40px; flex: 0 0 40px; border-radius: 50%;
  background: var(--lpv-yellow); color: var(--lpv-ink);
  display: grid; place-items: center; font-weight: 800;
}
.lpv-author > div { min-width: 0; }
.lpv-author b { display: block; font-size: .92rem; }
.lpv-author span { font-size: .78rem; color: var(--lpv-ink-soft); }

/* ---------- Bônus ---------- */
.lpv-bonus-img { border-radius: 12px; border: 1px solid var(--lpv-line); margin-bottom: 12px; }
.lpv-bonus-tag {
  display: inline-block; margin-bottom: 6px; padding: 3px 9px; border-radius: 6px;
  background: var(--lpv-navy); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .09em;
}
.lpv-price-line { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 10px; font-weight: 800; }
.lpv-price-line del { color: var(--lpv-ink-soft); font-weight: 500; }
.lpv-free { color: var(--lpv-green); }

/* ---------- Oferta ---------- */
.lpv-offer { background: var(--lpv-navy); color: #fff; }
.lpv-offer .lpv-eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); color: #fff; }
.lpv-offer .lpv-lead { color: rgba(255,255,255,.8); }
.lpv-offer-box {
  max-width: 600px; margin: 0 auto; background: #fff; color: var(--lpv-ink);
  border-radius: 20px; padding: clamp(20px, 4vw, 30px); text-align: center; box-shadow: var(--lpv-shadow);
}
.lpv-stack { list-style: none; margin: 0 0 16px; padding: 0; text-align: left; }
.lpv-stack li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 9px 0; border-bottom: 1px dashed var(--lpv-line);
  font-size: clamp(.85rem, 2.2vw, .95rem);
}
.lpv-stack li:last-child { border-bottom: 0; }
.lpv-stack span { min-width: 0; }
.lpv-stack b { white-space: nowrap; }
.lpv-total { font-size: clamp(.85rem, 2.2vw, .94rem); color: var(--lpv-ink-soft); }
.lpv-price { font-size: clamp(2.4rem, 11vw, 3.4rem); font-weight: 900; line-height: 1; margin: 4px 0 2px; color: var(--lpv-green); }
.lpv-price small { font-size: .32em; font-weight: 800; }
.lpv-installment { font-size: clamp(.9rem, 2.4vw, 1rem); font-weight: 700; margin-bottom: 12px; }
.lpv-scarcity {
  display: block; margin: 0 auto 14px; max-width: 420px; padding: 8px 12px;
  border-radius: 10px; background: #fff2f2; border: 1px solid #f4cfcf;
  color: var(--lpv-red); font-weight: 800; font-size: clamp(.8rem, 2.2vw, .88rem);
}

/* ---------- Passos ---------- */
.lpv-step-num {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: var(--lpv-yellow); font-weight: 900; margin-bottom: 10px;
}

/* ---------- FAQ ---------- */
.lpv-faq { max-width: 740px; margin: 0 auto; }
.lpv-faq details {
  background: #fff; border: 1px solid var(--lpv-line); border-radius: 12px;
  padding: 13px 16px; margin-bottom: 9px;
}
.lpv-faq summary {
  cursor: pointer; font-weight: 700; list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 12px;
  font-size: clamp(.92rem, 2.4vw, 1rem);
}
.lpv-faq summary::-webkit-details-marker { display: none; }
.lpv-faq summary::after { content: "+"; font-size: 1.3rem; line-height: 1; color: var(--lpv-ink-soft); flex: 0 0 auto; }
.lpv-faq details[open] summary::after { content: "–"; }
.lpv-faq details p { margin: 9px 0 0; color: var(--lpv-ink-soft); font-size: clamp(.88rem, 2.2vw, .95rem); }

/* ---------- Garantia ---------- */
.lpv-guarantee {
  max-width: 700px; margin: 0 auto; text-align: center; padding: clamp(20px, 4vw, 30px);
  border: 2px dashed var(--lpv-yellow-dark); border-radius: 20px; background: #fff;
}

/* ---------- Rodapé ---------- */
.lpv-footer {
  background: #0c0f16; color: rgba(255,255,255,.62);
  padding: 28px 0; font-size: .8rem; text-align: center;
}
.lpv-footer p { margin-bottom: .5em; }
.lpv-footer a { color: rgba(255,255,255,.9); }

/* ---------- Barra fixa mobile ---------- */
.lpv-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 99;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.97); border-top: 1px solid var(--lpv-line);
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 -8px 20px -14px rgba(0,0,0,.5);
}
.lpv-sticky-price { flex: 0 0 auto; line-height: 1.1; text-align: left; }
.lpv-sticky-price del { display: block; font-size: .68rem; color: var(--lpv-ink-soft); }
.lpv-sticky-price b { font-size: 1.02rem; color: var(--lpv-green); }
.lpv-sticky .lpv-cta { flex: 1 1 auto; padding: 12px 14px; font-size: .95rem; animation: none; }
@media (min-width: 900px) { .lpv-sticky { display: none; } }
@media (max-width: 899px) { .lpv-footer { padding-bottom: 88px; } }

@media (prefers-reduced-motion: reduce) {
  .lpv-root *, .lpv-root *::before, .lpv-root *::after {
    transition: none !important; animation: none !important;
  }
}

.lpv-offer-box .lpv-cta-note { margin-top: 16px; }

/* ---------- Trilha: acordeão de níveis ---------- */
.lpv-hint { font-weight: 700; margin: 18px 0 10px; }
.lpv-faq--levels details { border-left: 4px solid var(--lpv-yellow); }
.lpv-faq--levels summary { font-size: 1.05rem; }
.lpv-tag-lv {
  margin-left: auto; margin-right: 10px; padding: 3px 9px; border-radius: 999px;
  background: var(--lpv-navy); color: #fff; font-size: .7rem; font-weight: 800; white-space: nowrap;
}
.lpv-topics { font-size: .92rem; line-height: 1.7; }

/* ---------- Imagem na caixa de oferta ---------- */
.lpv-offer-img { border-radius: 14px; margin: 0 auto 18px; }

/* ---------- Largura total (sem bordas brancas laterais) ---------- */
.lpv-root {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.lpv-wrap {
  max-width: 100%;
  padding-left: clamp(10px, 3vw, 28px);
  padding-right: clamp(10px, 3vw, 28px);
}
/* Neutraliza containers de tema WordPress/Elementor ao redor da LP */
.lpv-root .elementor-container,
.lpv-root .e-con-inner { max-width: 100% !important; }

/* ===== Full-bleed absoluto: zera margens do WP/Elementor e do body ===== */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  overflow-x: hidden;
}
.lpv-root {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.lpv-root .lpv-wrap {
  padding-left: clamp(10px, 3vw, 18px);
  padding-right: clamp(10px, 3vw, 18px);
}
/* neutraliza containers do tema/Elementor que criam faixas brancas */
.elementor-section-boxed > .elementor-container,
.elementor-container,
.e-con,
.e-con-inner,
.entry-content,
.site-content,
.content-area,
.wp-block-group__inner-container {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
