/* =========================================================
   O Caminho da Conversão · Landing de Lançamento
   Design: fundo quase-preto, acento vermelho, motivo do "caminho"
   Tudo escopado em .cc-lp para não conflitar com o tema do WP
   ========================================================= */

.cc-lp {
  --bg: #0a0a0b;
  --panel: #121214;
  --panel-2: #17171a;
  --line: rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);
  --ink: #f4f4f5;
  --muted: #a1a1aa;
  --faint: #6b6b73;
  --red: #e11d0e;
  --red-2: #b7160a;
  --red-soft: rgba(225,29,14,.14);

  --max: 1140px;
  --radius: 16px;

  --display: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html.cc-html, html.cc-html body { margin: 0; padding: 0; background: #0a0a0b; }

.cc-lp *, .cc-lp *::before, .cc-lp *::after { box-sizing: border-box; }
.cc-lp img { max-width: 100%; height: auto; display: block; }
.cc-lp a { color: inherit; text-decoration: none; }

.cc-wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 24px; }

/* ---------- Tipografia ---------- */
.cc-lp h1, .cc-lp h2, .cc-lp h3 { font-family: var(--display); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; margin: 0; }
.cc-h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
.cc-h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
.cc-h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; }
.cc-red { color: var(--red); }
.cc-lead { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.65; }

.cc-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.cc-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }

/* ---------- Botões ---------- */
.cc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  padding: 16px 28px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  text-align: center;
}
.cc-btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 30px -10px rgba(225,29,14,.6); }
.cc-btn--primary:hover { background: var(--red-2); transform: translateY(-2px); }
.cc-btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.cc-btn--ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.cc-btn--block { width: 100%; }
.cc-btn--lg { padding: 19px 36px; font-size: 1.08rem; }
.cc-btn--soon { background: transparent; color: var(--muted); border-color: var(--line-2); box-shadow: none; }
.cc-btn--soon:hover { transform: translateY(-2px); border-color: var(--red); color: var(--red); background: transparent; }

/* ---------- Header ---------- */
.cc-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(10,10,11,.7); border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.cc-header.is-stuck { border-bottom-color: var(--line); background: rgba(10,10,11,.92); }
.cc-header .cc-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.cc-header__logo img { height: 26px; width: auto; }
.cc-header__cta { display: flex; align-items: center; gap: 18px; }
.cc-header__cta .cc-btn { padding: 11px 22px; font-size: .92rem; }
.cc-header__note { color: var(--muted); font-size: .9rem; }

/* ---------- Section base ---------- */
.cc-section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.cc-section--tight { padding-block: clamp(48px, 6vw, 80px); }
.cc-section__head { max-width: 720px; margin-bottom: 52px; }
.cc-section__head .cc-eyebrow { margin-bottom: 18px; }
.cc-section__head .cc-lead { margin-top: 18px; }

/* ---------- Hero ---------- */
.cc-hero { position: relative; overflow: hidden; padding-top: clamp(48px, 7vw, 96px); }
.cc-hero__glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(700px 420px at 78% 28%, rgba(225,29,14,.18), transparent 60%),
    radial-gradient(900px 500px at 12% 0%, rgba(255,255,255,.05), transparent 55%);
}
.cc-hero__kanji {
  position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
  font-size: clamp(12rem, 32vw, 30rem); line-height: 1; color: rgba(225,29,14,.06);
  z-index: 0; pointer-events: none; user-select: none; font-weight: 700;
}
.cc-hero .cc-wrap { position: relative; z-index: 1; }
.cc-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.cc-hero__eyebrow { margin-bottom: 22px; }
.cc-hero h1 { margin-bottom: 24px; }
.cc-hero__sub { max-width: 560px; margin-bottom: 34px; }
.cc-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.cc-hero__trust { display: flex; align-items: center; gap: 12px; color: var(--faint); font-size: .92rem; }
.cc-hero__trust strong { color: var(--ink); font-weight: 600; }
.cc-hero__trust .cc-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }

.cc-book { position: relative; justify-self: center; }
.cc-book img { width: 100%; max-width: 480px; filter: drop-shadow(0 50px 70px rgba(0,0,0,.65)); border-radius: 6px; }

/* ---------- Lista de sintomas (problema) ---------- */
.cc-problem__intro { max-width: 760px; }
.cc-symptoms { list-style: none; padding: 0; margin: 40px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cc-symptoms li { background: var(--panel); padding: 26px 28px; display: flex; gap: 16px; align-items: flex-start; }
.cc-symptoms li::before { content: ""; flex: 0 0 auto; width: 8px; height: 8px; margin-top: 9px; border-radius: 2px; background: var(--red); transform: rotate(45deg); }
.cc-symptoms p { margin: 0; color: var(--ink); font-size: 1.02rem; }
.cc-problem__kicker { margin-top: 38px; font-family: var(--display); font-weight: 700; font-size: clamp(1.1rem,2vw,1.45rem); letter-spacing: -.01em; max-width: 760px; line-height: 1.3; }
.cc-problem__kicker span { color: var(--red); }

/* ---------- Pilares (método) ---------- */
.cc-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cc-pillar { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; transition: border-color .2s ease, transform .2s ease; }
.cc-pillar:hover { border-color: var(--line-2); transform: translateY(-3px); }
.cc-pillar__tag { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.cc-pillar__kanji { font-size: 1.9rem; color: var(--red); line-height: 1; font-weight: 600; }
.cc-pillar__name { font-family: var(--display); font-weight: 800; font-size: 1.25rem; letter-spacing: -.01em; }
.cc-pillar__role { color: var(--faint); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; font-weight: 600; }
.cc-pillar p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- O caminho (conteúdo / partes) ---------- */
.cc-path { position: relative; margin-top: 10px; }
.cc-path__line { position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--red), rgba(225,29,14,.15)); }
.cc-part { position: relative; padding-left: 64px; padding-bottom: 44px; }
.cc-part:last-child { padding-bottom: 0; }
.cc-part__node { position: absolute; left: 8px; top: 4px; width: 24px; height: 24px; border-radius: 50%; background: var(--bg); border: 2px solid var(--red); display: flex; align-items: center; justify-content: center; }
.cc-part__node::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.cc-part__label { display: block; font-family: var(--display); font-weight: 700; color: var(--red); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; }
.cc-part__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.2rem, 2.2vw, 1.55rem); letter-spacing: -.015em; margin-bottom: 18px; }
.cc-chapters { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.cc-chapters li { background: var(--panel); padding: 16px 22px; display: flex; gap: 16px; align-items: baseline; font-size: 1rem; transition: background .18s ease; }
.cc-chapters li:hover { background: var(--panel-2); }
.cc-chapters .cc-cnum { font-family: var(--display); font-weight: 700; color: var(--faint); font-size: .92rem; min-width: 26px; }

/* ---------- Para quem ---------- */
.cc-fit { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cc-fit__card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; }
.cc-fit__card--yes { border-color: rgba(225,29,14,.35); }
.cc-fit__title { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 800; font-size: 1.25rem; margin-bottom: 22px; }
.cc-fit__mark { width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; flex: 0 0 auto; }
.cc-fit__mark--yes { background: var(--red); color: #fff; }
.cc-fit__mark--no { background: rgba(255,255,255,.08); color: var(--faint); }
.cc-fit ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.cc-fit li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.cc-fit li::before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; margin-top: 9px; background: var(--line-2); }
.cc-fit__card--yes li::before { background: var(--red); }

/* ---------- Autor ---------- */
.cc-author { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cc-author__grid { display: grid; grid-template-columns: .8fr 1.2fr; }
.cc-author__media { background: radial-gradient(120% 120% at 30% 20%, #1b1b1f, #0c0c0e); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; padding: 48px 30px; border-right: 1px solid var(--line); }
.cc-author__media img.cc-author__book { width: 64%; max-width: 230px; filter: drop-shadow(0 28px 40px rgba(0,0,0,.6)); }
.cc-author__media img.cc-author__logo { height: 30px; width: auto; opacity: .9; }
.cc-author__body { padding: 44px 42px; }
.cc-author__body .cc-eyebrow { margin-bottom: 16px; }
.cc-author__body h2 { margin-bottom: 20px; }
.cc-author__body p { color: var(--muted); margin: 0 0 18px; }
.cc-author__body p:last-child { margin-bottom: 0; }
.cc-author__body a.cc-sitelink { color: var(--red); font-weight: 600; }

/* ---------- Clube ---------- */
.cc-clube { position: relative; overflow: hidden; }
.cc-clube__card { background: linear-gradient(135deg, #161617, #0e0e10); border: 1px solid var(--line); border-radius: 20px; padding: clamp(36px, 5vw, 60px); display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center; }
.cc-clube__card .cc-eyebrow { margin-bottom: 16px; }
.cc-clube__card h2 { margin-bottom: 16px; }
.cc-clube__card p { color: var(--muted); margin: 0; max-width: 540px; }
.cc-clube__aside { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.cc-clube__badge { font-family: var(--display); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); text-align: center; }

/* ---------- Oferta ---------- */
.cc-offer { background: var(--panel-2); }
.cc-offer__card { max-width: 920px; margin-inline: auto; background: var(--panel); border: 1px solid var(--line-2); border-radius: 22px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.cc-offer__left { padding: 44px 40px; border-right: 1px solid var(--line); }
.cc-offer__left h3 { margin-bottom: 22px; }
.cc-offer__incl { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.cc-offer__incl li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.cc-offer__incl li::before { content: "✓"; color: var(--red); font-weight: 800; flex: 0 0 auto; }
.cc-offer__right { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; gap: 18px; text-align: center; }
.cc-price__de { color: var(--faint); text-decoration: line-through; font-size: 1.05rem; }
.cc-price__now { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 4.2vw, 2.6rem); letter-spacing: -.03em; line-height: 1; }
.cc-price__split { color: var(--muted); font-size: 1rem; }
.cc-price__format { color: var(--faint); font-size: .92rem; }
.cc-offer__right .cc-btn { margin-top: 6px; }
.cc-pay { color: var(--faint); font-size: .82rem; }
.cc-guarantee { display: inline-flex; align-items: center; gap: 12px; justify-content: center; padding: 12px 18px; border: 1px dashed var(--line-2); border-radius: 12px; color: var(--muted); font-size: .9rem; margin-top: 4px; }
.cc-guarantee b { color: var(--ink); }

/* ---------- FAQ ---------- */
.cc-faq { max-width: 820px; }
.cc-faq__item { border-bottom: 1px solid var(--line); }
.cc-faq__item summary { cursor: pointer; list-style: none; padding: 24px 4px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.cc-faq__item summary::-webkit-details-marker { display: none; }
.cc-faq__item summary::after { content: "+"; color: var(--red); font-size: 1.5rem; font-weight: 400; transition: transform .2s ease; flex: 0 0 auto; }
.cc-faq__item[open] summary::after { transform: rotate(45deg); }
.cc-faq__item p { color: var(--muted); margin: 0 4px 24px; max-width: 700px; }

/* ---------- CTA final ---------- */
.cc-final { position: relative; overflow: hidden; background: linear-gradient(135deg, #1a0604, #0a0a0b 60%); border-top: 1px solid var(--line); }
.cc-final__kanji { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-size: clamp(14rem, 40vw, 34rem); color: rgba(225,29,14,.07); z-index: 0; pointer-events: none; font-weight: 700; }
.cc-final .cc-wrap { position: relative; z-index: 1; text-align: center; }
.cc-final h2 { margin: 0 auto 16px; max-width: 760px; }
.cc-final p { color: var(--muted); font-size: 1.15rem; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.cc-footer { background: #08080a; border-top: 1px solid var(--line); padding-block: 54px; }
.cc-footer .cc-wrap { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: center; }
.cc-footer__brand { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cc-footer__brand img { height: 26px; width: auto; }
.cc-footer__brand span { color: var(--faint); font-size: .9rem; }
.cc-footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.cc-footer__links a { color: var(--muted); font-size: .92rem; }
.cc-footer__links a:hover { color: var(--red); }
.cc-footer__legal { width: 100%; border-top: 1px solid var(--line); padding-top: 22px; color: var(--faint); font-size: .82rem; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Reveal anim (só quando há JS) ---------- */
.cc-lp.cc-js .cc-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.cc-lp.cc-js .cc-reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 920px) {
  .cc-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .cc-book { order: -1; }
  .cc-book img { max-width: 320px; }
  .cc-pillars { grid-template-columns: 1fr; }
  .cc-author__grid { grid-template-columns: 1fr; }
  .cc-author__media { border-right: 0; border-bottom: 1px solid var(--line); padding: 40px 30px; }
  .cc-clube__card { grid-template-columns: 1fr; gap: 28px; }
  .cc-offer__card { grid-template-columns: 1fr; }
  .cc-offer__left { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .cc-lp { font-size: 16px; }
  .cc-symptoms { grid-template-columns: 1fr; }
  .cc-fit { grid-template-columns: 1fr; }
  .cc-header__note { display: none; }
  .cc-wrap { padding-inline: 18px; }
  .cc-part { padding-left: 52px; }
  .cc-path__line { left: 15px; }
  .cc-part__node { left: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .cc-lp *, .cc-lp.cc-js .cc-reveal { transition: none !important; animation: none !important; }
  .cc-lp.cc-js .cc-reveal { opacity: 1; transform: none; }
}

.cc-lp :focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }
