/* Manual do Mestre — layout LARGO (landing do ebook e página da aplicação)
   Reutiliza os tokens de style.css. Acrescenta a grelha larga, a navegação,
   o vídeo, os "ecrãs" escuros e os componentes de comparação. */

.largo { --maxw: 1060px; }
.largo .wrap { max-width: 1060px; }
.largo .hd { max-width: 1060px; }
.largo .sticky-cta .inner { max-width: 1060px; }
.largo section { padding: 72px 0; }
.largo h2 { font-size: clamp(26px, 4.2vw, 38px); }

/* ---------- Navegação ---------- */
.nav { display: none; margin-left: auto; gap: 26px; align-items: center; }
.nav a { color: var(--txt-2); text-decoration: none; font-size: 14px; font-weight: 600; }
.nav a:hover { color: var(--txt); }
.nav .btn-nav {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; padding: 12px 20px; border-radius: 10px; font-size: 14px;
}
.nav .btn-nav:hover { color: #fff; }
@media (min-width: 860px) { .nav { display: flex; } .largo .hd-price { display: none; } }

/* ---------- Hero ---------- */
.largo-hero { position: relative; overflow: hidden; padding: 64px 0 56px; }
.largo-hero::before {
  content: ''; position: absolute; inset: -40% 20% auto -20%; height: 560px;
  background: radial-gradient(ellipse at 30% 30%, rgba(249,115,22,0.10), transparent 62%);
  pointer-events: none;
}
.largo-hero > * { position: relative; }
.largo-hero h1 { font-size: clamp(32px, 6vw, 54px); max-width: 15ch; }
.largo-hero .sub { max-width: 54ch; font-size: clamp(17px, 2.2vw, 20px); }
.hero-cols { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .hero-cols { grid-template-columns: 1.05fr 0.95fr; gap: 56px; } }

.cta-row { display: flex; flex-direction: column; gap: 10px; max-width: 380px; }
@media (min-width: 560px) { .cta-row { flex-direction: row; } .cta-row > * { flex: 1; } }
.cta-row .btn, .cta-row .btn-ghost { width: auto; }

.trust { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; }
.trust span { font-size: 13px; color: var(--txt-3); display: flex; align-items: center; gap: 7px; }
.trust span::before { content: '✓'; color: var(--green); font-weight: 800; }

/* ---------- Simulação do telemóvel ---------- */
.phone {
  background: var(--navy); border: 1px solid var(--navy-2);
  border-radius: 26px; padding: 14px; max-width: 380px; margin: 0 auto;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.35);
  color: #e8edf5;
}
.phone-bar { display: flex; align-items: center; gap: 9px; padding: 4px 6px 14px; }
.phone-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--navy-2); }
.phone-bar .t { margin-left: auto; font-size: 11px; color: #8b9bb8; }
.chat { display: flex; flex-direction: column; gap: 10px; }
.msg { border-radius: 14px; padding: 12px 14px; font-size: 14px; line-height: 1.5; max-width: 88%; }
.msg.eu { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; }
.msg.ia { background: var(--navy-2); border: 1px solid #1c2d5c; color: #e8edf5; border-bottom-left-radius: 5px; }
.msg.ia strong { color: #fb923c; }
.msg .linha { display: flex; gap: 8px; padding: 3px 0; }
.msg .linha b { color: #9aa8bd; font-weight: 600; min-width: 74px; flex-shrink: 0; }

/* ---------- Comparação ---------- */
.compare { display: grid; gap: 14px; }
@media (min-width: 720px) { .compare { grid-template-columns: 1fr 1fr; gap: 18px; } }
.comp-card { border-radius: var(--radius-lg); padding: 26px; border: 1px solid var(--line); background: var(--bg-2); }
.comp-card.mau { border-color: #fecaca; background: #fef2f2; }
.comp-card.bom { border-color: #bbf7d0; background: #f0fdf4; }
.comp-card h3 { font-size: 17px; margin-bottom: 14px; }
.comp-card.mau h3 { color: var(--red); }
.comp-card.bom h3 { color: var(--green); }
.comp-card ul { list-style: none; }
.comp-card li { display: flex; gap: 10px; padding: 8px 0; font-size: 15px; color: var(--txt-2); }
.comp-card li::before { flex-shrink: 0; font-weight: 800; }
.comp-card.mau li::before { content: '✕'; color: var(--red); }
.comp-card.bom li::before { content: '✓'; color: var(--green); }
.comp-soma { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); font-size: 15px; color: var(--txt); }
.comp-soma b { font-size: 26px; font-weight: 900; display: block; letter-spacing: -0.02em; }
.comp-card.mau .comp-soma b { color: var(--red); }
.comp-card.bom .comp-soma b { color: var(--green); }

/* ---------- Passos ---------- */
.passos { display: grid; gap: 16px; counter-reset: p; }
@media (min-width: 780px) { .passos { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.passo { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 22px; position: relative; }
.passo::before {
  counter-increment: p; content: counter(p);
  position: absolute; top: -14px; left: 22px;
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; font-size: 15px; font-weight: 900;
  display: grid; place-items: center;
}
.passo .ico { font-size: 28px; display: block; margin: 8px 0 12px; }
.passo h3 { margin-bottom: 7px; }
.passo p { font-size: 15px; margin: 0; }

/* ---------- Funcionalidades ---------- */
@media (min-width: 640px) { .largo .grid.g3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .largo .grid.g3 { grid-template-columns: repeat(3, 1fr); } }
.largo .feat { border-radius: var(--radius-lg); padding: 24px; transition: border-color .15s ease, transform .15s ease; }
.largo .feat:hover { border-color: var(--orange); transform: translateY(-3px); }

/* ---------- Planos ---------- */
.planos { display: grid; gap: 16px; align-items: start; }
@media (min-width: 900px) { .planos { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.largo .plan { border-radius: var(--radius-lg); padding: 28px 24px; height: 100%; display: flex; flex-direction: column; }
.largo .plan + .plan { margin-top: 0; }
.largo .plan ul { flex: 1; }
.largo .plan .btn { width: 100%; }
@media (min-width: 900px) { .largo .plan.best { transform: scale(1.035); } }

/* ---------- Honestidade ---------- */
.honesto { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; }
.honesto ul { list-style: none; margin-top: 14px; }
.honesto li { display: flex; gap: 11px; padding: 9px 0; font-size: 15px; color: var(--txt-2); }
.honesto li::before { content: '—'; color: var(--txt-3); flex-shrink: 0; }

/* ---------- FAQ em duas colunas ---------- */
@media (min-width: 880px) { .faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; align-items: start; } }

/* A barra fixa não pode tapar o rodapé quando se chega ao fim. */
.largo footer { padding-bottom: 108px; }
@media (min-width: 860px) { .largo footer { padding-bottom: 40px; } }

/* ---------- CTA final ---------- */
.final {
  background: var(--navy);
  border-radius: 24px; padding: 48px 28px; text-align: center;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
}
.final h2, .final .lead { color: #fff; }
.final .lead { color: #c7d0e0; }
.final h2 { margin-bottom: 12px; }
.final .cta-row { margin: 26px auto 0; justify-content: center; }

/* ---------- Vídeo (Vimeo, sem controlos, em loop) ---------- */
.video {
  position: relative; border-radius: 20px; overflow: hidden;
  background: var(--navy); aspect-ratio: 16 / 9;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-som {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.94); color: var(--txt);
  border: none; border-radius: 100px; padding: 14px 18px; min-height: 44px;
  font: 700 13px/1 var(--font); cursor: pointer;
  box-shadow: 0 6px 18px rgba(15,23,42,0.25);
}
.video-som:hover { background: #fff; }

/* ---------- Painel de poupança (ecrã escuro) ---------- */
.painel {
  background: var(--navy); border: 1px solid var(--navy-2); color: #e8edf5;
  border-radius: 22px; padding: 22px; box-shadow: 0 30px 70px rgba(15, 23, 42, 0.3);
}
.painel-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.painel-av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: grid; place-items: center; font-weight: 800; color: #fff;
}
.painel-top small { display: block; color: #8b9bb8; font-size: 12px; }
.painel-metricas { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.metrica { background: var(--navy-2); border-radius: 14px; padding: 14px; }
.metrica small { display: block; color: #8b9bb8; font-size: 12px; margin-bottom: 4px; }
.metrica b { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; display: block; }
.metrica .verde { color: #4ade80; }
.metrica .laranja { color: #fb923c; }
.painel-lista { margin-top: 14px; border-top: 1px solid var(--navy-2); padding-top: 12px; }
.painel-lista div { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; }
.painel-lista small { color: #8b9bb8; display: block; font-size: 12px; }
.painel-lista b { color: #4ade80; white-space: nowrap; }

/* ---------- Dores (3 cartões) ---------- */
.dores { display: grid; gap: 14px; }
@media (min-width: 780px) { .dores { grid-template-columns: repeat(3, 1fr); } }
.dor { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; display: flex; gap: 12px; }
.dor::before { content: '✕'; color: var(--red); font-weight: 900; font-size: 18px; flex-shrink: 0; }
.dor p { margin: 0; font-size: 15px; }

/* ---------- Faixa de números ---------- */
.numeros { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; text-align: center; }
@media (min-width: 720px) { .numeros { grid-template-columns: repeat(4, 1fr); } }
.numero b { display: block; font-size: 34px; font-weight: 900; color: var(--orange); letter-spacing: -0.02em; }
.numero span { font-size: 14px; color: var(--txt-2); }

/* ---------- Secções alternadas ---------- */
.branca { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
