/* ════════════════════════════════════════════════════════════════
   MÉTODO ORDEM · Folha de estilo compartilhada das páginas de produto
   (low ticket / Organização Pessoal)
   Mesma identidade do site: ouro sobre preto, Cormorant + DM Sans.
   Usada por: controle-financeiro, controle-de-estoque,
   desenvolvimento-pessoal-pro, planner-anual, rotina-produtiva,
   checklist-30-dias e kit-metodo-ordem.
═══════════════════════════════════════════════════════════════════ */

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

:root {
  --bg: #0A0A0A;
  --gold: #C9A84C;
  --gold-light: #E3C97A;
  --gold-dark: #6B5A29;
  --card-bg: #0E0B02;
  --white: #FFFFFF;
  --gray: #888888;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  padding-bottom: 70px;
  overflow-x: hidden;
}

/* ────────── NAV (voltar) ────────── */
nav {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 22px 24px; display: flex; align-items: center; gap: 10px;
  z-index: 10; flex-wrap: wrap;
}
nav a {
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(201,168,76,0.7); transition: color 0.2s;
  background: rgba(10,10,10,0.5); padding: 8px 14px; border-radius: 6px;
  border: 1px solid rgba(201,168,76,0.2); backdrop-filter: blur(8px);
}
nav a:hover { color: var(--gold); }
nav a svg {
  width: 13px; height: 13px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ────────── HERO ────────── */
.hero-wrap { position: relative; width: 100%; min-height: 460px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  /* Placeholder premium em gradiente — troque por uma foto do produto
     quando ela chegar:  background-image: url('thumb.jpg'), <os gradientes abaixo>; */
  background:
    radial-gradient(130% 110% at 85% -10%, rgba(201,168,76,0.18) 0%, transparent 55%),
    linear-gradient(160deg, rgba(26,19,4,0.0) 0%, var(--bg) 72%),
    linear-gradient(135deg, #1a1304 0%, #0a0800 100%);
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 150px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}
.hero-corner {
  position: absolute; top: 80px; right: 22px; width: 30px; height: 30px;
  border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold);
  opacity: 0.55; z-index: 3;
}
.hero-content {
  position: relative; z-index: 4;
  max-width: 640px; margin: 0 auto;
  padding: 112px 28px 58px;
}
.hero-tag {
  font-size: 9.5px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.hero-tag::after { content: ''; width: 40px; height: 1.5px; background: var(--gold); opacity: 0.5; }
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(33px, 5.4vw, 52px); font-weight: 600; line-height: 1.08;
  margin-bottom: 18px;
}
.hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 15.5px; color: rgba(255,255,255,0.72); line-height: 1.7;
  max-width: 530px; margin-bottom: 26px;
}

/* ─── Hero em duas colunas: copy + capa do produto ─── */
.hero-content.has-figure { max-width: 1040px; display: flex; gap: 52px; align-items: center; }
.hero-copy { flex: 1 1 0; min-width: 0; }
.hero-figure { flex-shrink: 0; }
.hero-figure img {
  display: block; height: 470px; width: auto; max-width: 100%;
  border-radius: 14px; border: 1px solid rgba(201,168,76,0.35);
  box-shadow: 0 26px 64px rgba(0,0,0,0.62);
}

/* ─── Preço inline (no hero) ─── */
.price-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.price-anchor { font-size: 16px; color: var(--gray); text-decoration: line-through; }
.price-now {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 46px; color: var(--gold); line-height: 1;
}
.price-note { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }

/* ─── Botão ouro ─── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0A0A0A; font-weight: 600; font-size: 12px; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 15px 32px; border-radius: 7px;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 30px rgba(201,168,76,0.16);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(201,168,76,0.28); }
.btn-gold .arr { transition: transform 0.25s; }
.btn-gold:hover .arr { transform: translateX(4px); }

/* ────────── SEÇÕES ────────── */
.section { max-width: 640px; margin: 0 auto; padding: 0 28px 42px; }
.section-label {
  font-size: 9.5px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 18px; height: 1.5px; background: var(--gold); opacity: 0.55; }
.section h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600;
  margin-bottom: 16px; line-height: 1.2;
}
.section p { font-size: 14.5px; color: var(--gray); line-height: 1.8; margin-bottom: 12px; }
.section p strong { color: #cfcfcf; font-weight: 600; }

.accent-box {
  background: var(--card-bg); border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0; padding: 20px 22px; margin: 22px 0;
}
.accent-box p { font-size: 15.5px; color: var(--white); font-style: italic; margin: 0; line-height: 1.6; }

/* ─── Lista "O que tem dentro" ─── */
.features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 6px; }
.features li {
  background: var(--card-bg); border: 1px solid #1c1600; border-radius: 10px;
  padding: 15px 18px; display: flex; gap: 13px; align-items: flex-start;
  font-size: 14px; line-height: 1.55; color: var(--gray);
}
.features li::before {
  content: '✓'; color: var(--gold); font-weight: 700; font-size: 13px;
  flex-shrink: 0; margin-top: 1px;
}
.features li b { color: var(--white); font-weight: 600; }

/* ─── Divisor ─── */
.sep { width: 50px; height: 1.5px; background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); margin: 6px auto 42px; }

/* ────────── BLOCO DE OFERTA ────────── */
.offer-wrap { max-width: 640px; margin: 0 auto; padding: 0 28px; }
.offer-box {
  background: linear-gradient(180deg, #100c02, #0b0900);
  border: 1px solid var(--gold-dark); border-radius: 16px;
  padding: 38px 28px; text-align: center; position: relative; overflow: hidden;
}
.offer-box::before {
  content: ''; position: absolute; top: -42%; left: 50%; transform: translateX(-50%);
  width: 170%; height: 130px; background: radial-gradient(closest-side, rgba(201,168,76,0.16), transparent);
}
.offer-inner { position: relative; z-index: 2; }
.offer-label { font-size: 9.5px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.offer-price { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 4px; flex-wrap: wrap; }
.offer-price .price-now { font-size: 54px; }
.offer-sub { font-size: 13px; color: var(--gray); margin-bottom: 22px; }
.guarantee {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px;
  color: rgba(255,255,255,0.72); border: 1px solid #1c1600; background: var(--bg);
  border-radius: 30px; padding: 8px 16px; margin-bottom: 24px;
}
.guarantee svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.offer-box .btn-gold { font-size: 12.5px; padding: 16px 30px; }
.kit-hint { font-size: 12.5px; color: var(--gray); margin-top: 18px; font-style: italic; line-height: 1.5; }
.kit-hint a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-dark); transition: border-color 0.2s; }
.kit-hint a:hover { border-color: var(--gold); }

/* ────────── BANNER DO KIT (cross-sell) ────────── */
.kit-banner {
  display: flex; align-items: center; gap: 16px;
  max-width: 640px; margin: 30px auto 0; padding: 18px 22px;
  background: linear-gradient(135deg, rgba(20,16,3,0.9), rgba(10,8,0,0.9));
  border: 1px solid var(--gold-dark); border-radius: 14px;
  text-decoration: none; transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.kit-banner:hover { border-color: rgba(201,168,76,0.55); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,0.5); }
.kit-banner .star { font-size: 22px; flex-shrink: 0; }
.kit-banner .kb-body { flex: 1; }
.kit-banner .kb-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--white); margin-bottom: 2px; }
.kit-banner .kb-body p { font-size: 12.5px; color: var(--gray); line-height: 1.45; }
.kit-banner .kb-body s { color: var(--gray); }
.kit-banner .kb-body b { color: var(--gold); }
.kit-banner .kb-arrow { color: var(--gold); font-size: 18px; flex-shrink: 0; }

/* ────────── RODAPÉ ────────── */
.foot { text-align: center; margin-top: 50px; font-size: 10px; letter-spacing: 6px; text-transform: uppercase; color: var(--gold-dark); }
.foot a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; }
.foot a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════════
   VARIAÇÃO: página do KIT (oferta principal)
   adicione  class="kit"  no <body> para ativar
═══════════════════════════════════════════════════════════════════ */
body.kit .hero-bg {
  background:
    radial-gradient(130% 120% at 50% -10%, rgba(201,168,76,0.26) 0%, transparent 58%),
    linear-gradient(160deg, rgba(26,19,4,0.0) 0%, var(--bg) 74%),
    linear-gradient(135deg, #1d1505 0%, #0a0800 100%);
}
body.kit .hero-content { text-align: center; max-width: 680px; }
body.kit .hero-tag { justify-content: center; }
body.kit .hero-tag::after { display: none; }
body.kit .hero-sub { margin-left: auto; margin-right: auto; }
body.kit .price-row { justify-content: center; }

/* lista de itens inclusos no kit */
.kit-items { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.kit-items li {
  display: flex; align-items: center; gap: 14px;
  background: var(--card-bg); border: 1px solid #1c1600; border-radius: 10px;
  padding: 14px 18px;
}
.kit-items li .ki-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(201,168,76,0.12); border: 1px solid var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 12px;
}
.kit-items li .ki-thumb {
  width: 42px; height: 58px; flex-shrink: 0; border-radius: 6px;
  object-fit: cover; object-position: top center;
  border: 1px solid var(--gold-dark); background: #1a1200;
}
.kit-items li .ki-name { flex: 1; font-size: 14px; color: var(--white); font-weight: 500; }
.kit-items li .ki-price { font-size: 13px; color: var(--gray); }
.kit-anchor-row {
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px solid #1c1600; margin-top: 14px; padding-top: 16px;
}
.kit-anchor-row .kar-label { font-size: 13px; color: var(--gray); }
.kit-anchor-row .kar-value { font-size: 17px; color: var(--gray); text-decoration: line-through; }

/* ────────── RESPONSIVO ────────── */
@media (max-width: 580px) {
  .hero-content { padding: 100px 22px 50px; }
  .section, .offer-wrap, .kit-banner { padding-left: 22px; padding-right: 22px; }
  .price-now { font-size: 40px; }
  .offer-price .price-now { font-size: 46px; }
  .kit-banner { flex-wrap: wrap; }
}
@media (min-width: 1024px) {
  .hero-wrap { min-height: 520px; }
  .hero-figure img { height: 510px; }
}

/* Hero com capa — empilha em telas menores (copy em cima, capa embaixo) */
@media (max-width: 860px) {
  .hero-content.has-figure { flex-direction: column; align-items: flex-start; gap: 34px; max-width: 640px; }
  .hero-figure { align-self: center; }
  .hero-figure img { height: 400px; }
}
@media (max-width: 430px) {
  .hero-figure img { height: 330px; }
}
