/* ============================================================
   Landing — Mochila Multifuncional · Cursos Anderson Lima
   Base compartilhada pelas 3 variações. Cada arquivo adiciona
   seu próprio <style> + classe no body (.var-atelie / .var-vitrine
   / .var-convite) pra sobrescrever hero, faixas e ritmo.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
img { max-width: 100%; display: block; }

/* ---------- Reveal (disabled: always visible for max compatibility on Meta-Ads mobile traffic) ---------- */
.reveal { opacity: 1; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.col { width: 100%; max-width: 680px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }

.eyebrow { font-family: var(--font-script); font-weight: 700; color: var(--terracotta);
  font-size: 1.7rem; line-height: 1; margin: 0 0 10px; }
.overline-tag { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--terracotta-700); background: var(--clay-50);
  border: 1px solid var(--clay-100); padding: 6px 12px; border-radius: var(--r-pill); }

/* ---------- Stitch divider ---------- */
.stitch { color: var(--line-strong); width: 100%; max-width: 240px; margin: 0 auto; display: block; }
.stitch line { stroke: currentColor; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 800; font-size: 1.06rem; line-height: 1;
  border: none; border-radius: var(--r-md); padding: 18px 30px; cursor: pointer;
  text-decoration: none; transition: transform 140ms var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-align: center; }
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--terracotta-700); color: #fff; box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.98); background: var(--terracotta-900); }
.btn-lg { font-size: 1.18rem; padding: 21px 38px; }
.btn .arr { transition: transform 200ms var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.cta-note { font-size: 0.9rem; color: var(--ink-faint); margin: 12px 0 0; }

/* ---------- Image placeholder ---------- */
.ph { position: relative; background:
    repeating-linear-gradient(135deg, var(--clay-50) 0 22px, var(--surface) 22px 44px);
  border: 1.5px dashed var(--line-strong); border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--walnut); text-align: center; padding: 28px; overflow: hidden; }
.ph .spool { width: 40px; height: 40px; color: var(--clay); }
.ph .ph-label { font-size: 0.82rem; font-weight: 700; color: var(--walnut); max-width: 80%; }
.ph.solid { background: linear-gradient(150deg, var(--clay-100), var(--clay-50)); border-style: solid; border-color: var(--line); }

/* ---------- Section title block ---------- */
.sec-head { text-align: center; margin-bottom: 40px; }
.sec-head h2 { margin: 0 0 14px; }
.sec-head p { margin: 0 auto; max-width: 560px; font-size: 1.18rem; color: var(--ink-soft); }

/* ---------- Stats (autoridade / prova social) ---------- */
.stats { display: flex; flex-wrap: wrap; gap: 14px; }
.stat { flex: 1 1 0; min-width: 130px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 20px 18px; box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--font-sans); font-weight: 800; font-size: 2rem; color: var(--terracotta);
  line-height: 1; letter-spacing: -0.02em; }
.stat .lbl { font-size: 0.92rem; color: var(--ink-soft); margin-top: 6px; }

/* ---------- Authority block ---------- */
.author { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center; }
.author .portrait { width: 220px; height: 220px; border-radius: var(--r-lg); object-fit: cover;
  box-shadow: var(--shadow-md); border: 4px solid var(--surface); }
.author h2 { margin: 0 0 6px; }
.author .role { color: var(--terracotta-700); font-weight: 700; margin: 0 0 14px; }
@media (max-width: 640px) {
  .author { grid-template-columns: 1fr; gap: 22px; justify-items: center; text-align: center; }
}

/* ---------- Testimonials ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.tcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tcard .quote { font-size: 1rem; color: var(--ink); line-height: 1.55; flex: 1; }
.tcard .quote::before { content: "“"; font-family: var(--font-script); color: var(--clay-300);
  font-size: 2.6rem; line-height: 0; display: block; height: 18px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who .ava { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(150deg, var(--clay-300), var(--terracotta));
  color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex: none; }
.tcard .who .nm { font-weight: 800; font-size: 0.95rem; color: var(--ink); }
.tcard .who .mt { font-size: 0.8rem; color: var(--ink-faint); }
.tcard .stars { color: var(--clay); font-size: 0.95rem; letter-spacing: 2px; }
@media (max-width: 880px) { .tgrid { grid-template-columns: 1fr; } }

/* ---------- Social proof (prints reais) ---------- */
.proof { columns: 3 280px; column-gap: 18px; }
.proof .pcard { break-inside: avoid; margin: 0 0 18px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 10px;
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.proof .pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.proof .pcard img { width: 100%; height: auto; border-radius: var(--r-sm); display: block; }
@media (max-width: 720px) { .proof { columns: 2 160px; column-gap: 12px; } .proof .pcard { margin-bottom: 12px; } }
@media (max-width: 460px) { .proof { columns: 1; } }

/* ---------- Curriculum / lists ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.08rem; color: var(--ink); }
.check-list li .ic { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--clay-50);
  color: var(--terracotta); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.check-list li .ic svg { width: 16px; height: 16px; }

/* ---------- Offer / price box ---------- */
.offer { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; }
.offer .offer-body { padding: 40px; }
.offer .price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.offer .price { font-family: var(--font-sans); font-weight: 800; font-size: 3rem; color: var(--terracotta);
  line-height: 1; letter-spacing: -0.02em; }
.offer .price small { font-size: 1.1rem; font-weight: 700; color: var(--ink-soft); }
.offer .installment { color: var(--ink-soft); font-size: 1.05rem; }
.offer .anchor { color: var(--ink-faint); font-size: 0.98rem; margin: 6px 0 0; }
.offer .anchor b { color: var(--walnut); }

/* ---------- Guarantee seal ---------- */
.guarantee { display: flex; gap: 18px; align-items: center; background: var(--clay-50);
  border: 1px solid var(--clay-100); border-radius: var(--r-md); padding: 20px 22px; }
.guarantee .seal { flex: none; width: 64px; height: 64px; border-radius: 50%;
  border: 2px dashed var(--terracotta); color: var(--terracotta); display: flex; flex-direction: column;
  align-items: center; justify-content: center; font-weight: 800; line-height: 1; text-align: center; }
.guarantee .seal .big { font-size: 1.4rem; }
.guarantee .seal .sm { font-size: 0.5rem; letter-spacing: 0.05em; text-transform: uppercase; }
.guarantee .g-text { font-size: 0.98rem; color: var(--ink-soft); }
.guarantee .g-text b { color: var(--ink); }

/* ---------- FAQ / objections ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 24px; box-shadow: var(--shadow-sm); }
.faq-item .q { font-weight: 800; font-size: 1.1rem; color: var(--ink); margin: 0 0 8px; }
.faq-item .a { margin: 0; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.foot { text-align: center; padding: 48px 24px 56px; color: var(--ink-faint); font-size: 0.9rem; }
.foot .sig { font-family: var(--font-script); font-size: 1.5rem; color: var(--walnut); }

/* ---------- Trust strip ---------- */
.trust { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; align-items: center;
  color: var(--ink-soft); font-size: 0.92rem; }
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust svg { width: 17px; height: 17px; color: var(--success); }
