/* ============ Plania · Oficina de Planilhas ============ */
/* Paleta da marca (de _scripts/build_capa.py) */
:root {
  --emer:      #1D9E75;
  --emer-dk:   #0F6E56;
  --emer-deep: #0C5C47;
  --ink:       #1F2937;
  --muted:     #7A828C;
  --white:     #FFFFFF;
  --cream:     #E9F5EF;
  --stripe:    #F7F9F8;
  --headcell:  #E0F2EA;
  --pillg:     #E1F5EE;
  --amber:     #F5B534;
  --amber-tx:  #5C3C00;
  --coral:     #C75B39;

  --bg:        #FBFDFC;
  --card-sh:   0 10px 30px rgba(12, 92, 71, .10);
  --card-sh-lg:0 24px 60px rgba(12, 92, 71, .18);
  --radius:    18px;
  --maxw:      1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, "Segoe UI", Calibri, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 760px; }

/* ============ BRAND MARK ============ */
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 34px; height: 34px;
}
.brand-mark span {
  background: var(--white);
  border-radius: 4px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 22px; font-weight: 800; letter-spacing: -.5px; color: var(--white); }
.brand-text small { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; color: var(--cream); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }

.btn-amber   { background: var(--amber); color: var(--amber-tx); box-shadow: 0 8px 20px rgba(245,181,52,.35); }
.btn-amber:hover { box-shadow: 0 12px 26px rgba(245,181,52,.45); }
.btn-emerald { background: var(--emer); color: var(--white); box-shadow: 0 8px 20px rgba(29,158,117,.3); }
.btn-emerald:hover { background: var(--emer-dk); }
.btn-ghost   { background: transparent; color: var(--emer-dk); border-color: var(--emer); }
.btn-ghost:hover { background: var(--pillg); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }

/* ============ BARRA DE NOVIDADE ============ */
.promo-bar {
  display: block; text-align: center;
  background: var(--amber); color: var(--amber-tx);
  font-size: 14px; font-weight: 600;
  padding: 10px 18px; line-height: 1.45;
  transition: filter .15s ease;
}
.promo-bar:hover { filter: brightness(1.05); }
.promo-bar strong { font-weight: 800; }
.promo-chip {
  display: inline-block;
  background: var(--amber-tx); color: var(--amber);
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  padding: 2px 10px; border-radius: 999px;
  margin-right: 10px; vertical-align: 1px;
}
.promo-arrow { margin-left: 6px; font-weight: 800; }
@media (max-width: 540px) {
  .promo-bar { font-size: 13px; padding: 9px 14px; }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--emer-dk);
  border-bottom: 1px solid var(--emer-deep);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 68px;
}
.nav { display: flex; gap: 28px; }
.nav a { color: var(--cream); font-weight: 600; font-size: 15px; opacity: .92; }
.nav a:hover { color: var(--white); opacity: 1; }
.header-cta { flex-shrink: 0; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 120% at 85% -10%, var(--emer) 0%, var(--emer-dk) 55%, var(--emer-deep) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -120px; bottom: -160px;
  width: 460px; height: 460px; border-radius: 50%;
  background: rgba(12,92,71,.45);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
  padding: 76px 24px 84px;
  position: relative; z-index: 1;
}
.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.14);
  color: var(--cream);
  font-weight: 700; font-size: 13px; letter-spacing: .5px;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900; line-height: 1.05; letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.hero h1 .hl { color: var(--amber); }
.lead { font-size: 18px; color: var(--cream); max-width: 540px; }
.hero .lead strong { color: var(--white); }

.hero-actions { display: flex; gap: 14px; margin: 30px 0 26px; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

.hero-checks { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-checks li {
  font-size: 14.5px; font-weight: 600; color: var(--cream);
  display: flex; align-items: center;
}
.hero-checks li::before {
  content: "✓"; color: var(--amber); font-weight: 900;
  margin-right: 8px;
}

.hero-art img {
  border-radius: 22px;
  box-shadow: var(--card-sh-lg);
  transform: rotate(1.5deg);
}

/* ============ TRUST BAR ============ */
.trustbar { background: var(--emer-deep); }
.trustbar-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  padding: 18px 24px;
}
.trust-item { color: var(--cream); font-size: 15px; font-weight: 500; }
.trust-item .t-num { color: var(--amber); font-weight: 800; margin-right: 4px; }

/* ============ SECTIONS ============ */
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.kicker {
  display: inline-block;
  color: var(--emer); font-weight: 800; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  letter-spacing: -1px; line-height: 1.1; color: var(--ink);
}
.section-head p { margin-top: 16px; color: var(--muted); font-size: 17px; }

/* ============ PRODUCTS ============ */
.products {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid #EAF0EE;
  border-radius: var(--radius);
  box-shadow: var(--card-sh);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--card-sh-lg); }
.product-media { background: var(--cream); }
.product-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-body { padding: 24px 24px 8px; flex: 1; }
.product-body h3 { font-size: 21px; font-weight: 800; color: var(--ink); letter-spacing: -.4px; }
.product-sub { color: var(--emer); font-weight: 700; font-size: 13px; margin-top: 2px; }
.product-desc { color: var(--muted); font-size: 15px; margin: 12px 0 16px; }

.feat-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feat-list li {
  font-size: 14.5px; color: var(--ink); display: flex; align-items: flex-start;
}
.feat-list li::before {
  content: "✓"; color: var(--emer); font-weight: 900; margin-right: 9px;
}

.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px 24px;
}
.price { font-size: 34px; font-weight: 900; color: var(--emer-dk); letter-spacing: -1px; }
.price-cur { font-size: 17px; font-weight: 700; vertical-align: super; margin-right: 2px; }

/* ============ KIT ============ */
.kit-section {
  background: linear-gradient(180deg, #F2FAF6 0%, var(--bg) 100%);
}
.kit-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.badge-amber {
  display: inline-block; background: var(--amber); color: var(--amber-tx);
  font-weight: 800; font-size: 13px; padding: 7px 16px; border-radius: 999px;
  margin-bottom: 18px;
}
.kit-copy h2 { font-size: clamp(30px, 4.4vw, 44px); font-weight: 900; letter-spacing: -1.2px; line-height: 1.05; }
.kit-copy .lead { color: var(--muted); margin-top: 16px; }
.kit-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.kit-list li {
  font-size: 17px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center;
}
.bonus-tag {
  display: inline-block;
  background: var(--amber); color: var(--amber-tx);
  font-size: 11.5px; font-weight: 800; letter-spacing: .5px;
  text-transform: uppercase;
  padding: 2px 10px; border-radius: 999px; margin-left: 10px;
}
.kit-list li::before {
  content: "✓"; color: var(--white); background: var(--emer);
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; margin-right: 12px; flex-shrink: 0;
}
.kit-price-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 8px; }
.kit-price { display: flex; flex-direction: column; line-height: 1; }
.kit-old { color: var(--muted); text-decoration: line-through; font-size: 16px; font-weight: 600; }
.kit-now { font-size: 46px; font-weight: 900; color: var(--emer-dk); letter-spacing: -1.5px; }
.kit-note { color: var(--muted); font-size: 14px; margin-top: 16px; }
.kit-art img { border-radius: 20px; box-shadow: var(--card-sh-lg); }

/* ============ EBOOK ============ */
.ebook-section { background: var(--white); border-block: 1px solid #EAF0EE; }
.ebook-art { max-width: 480px; justify-self: center; }
.ebook-art img { transform: rotate(-1.5deg); }

/* ============ STEPS ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  background: var(--white); border: 1px solid #EAF0EE;
  border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--card-sh);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream); color: var(--emer-dk);
  font-weight: 900; font-size: 20px; margin-bottom: 18px;
}
.step h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ============ BENEFITS ============ */
.benefits-section { background: var(--emer-deep); color: var(--white); }
.benefits-section .kicker { color: var(--amber); }
.benefits-section .section-head h2 { color: var(--white); }
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 28px 24px;
}
.benefit-ic {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--amber); color: var(--amber-tx);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900; margin-bottom: 16px;
}
.benefit h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.benefit p { color: var(--cream); font-size: 14.5px; }

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: var(--white); border: 1px solid #EAF0EE;
  border-radius: 14px; padding: 4px 22px; box-shadow: var(--card-sh);
}
.faq summary {
  cursor: pointer; font-weight: 700; font-size: 17px; color: var(--ink);
  padding: 18px 0; list-style: none; position: relative; padding-right: 32px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--emer); font-size: 26px; font-weight: 400; transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); font-size: 15.5px; padding: 0 0 20px; }

/* ============ CTA FINAL ============ */
.cta-final {
  background: radial-gradient(120% 140% at 50% 0%, var(--emer) 0%, var(--emer-dk) 60%, var(--emer-deep) 100%);
  color: var(--white); text-align: center; padding: 84px 0;
}
.cta-inner h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -1px; }
.cta-inner p { color: var(--cream); font-size: 18px; margin: 14px auto 30px; max-width: 520px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--emer-deep); color: var(--cream); padding: 44px 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { color: var(--cream); font-weight: 600; font-size: 15px; }
.footer-nav a:hover { color: var(--white); }
.footer-copy { width: 100%; color: rgba(233,245,239,.6); font-size: 13px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-inner, .kit-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; max-width: 440px; }
  .products, .steps { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
}
@media (max-width: 540px) {
  .section { padding: 60px 0; }
  .benefits { grid-template-columns: 1fr; }
  .trustbar-inner { justify-content: flex-start; gap: 8px 20px; }
  .trust-item { font-size: 13.5px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
