@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=EB+Garamond:ital@0;1&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  --verde-oliva: #53582B;
  --marrom-cafe: #462A14;
  --quase-preto: #270C00;
  --terracota: #733115;
  --terracota-claro: #C17A4E;
  --verde-salvia: #868B5E;
  --creme: #FCF3E8;
  --creme-suave: #F5EAD9;
  --border: rgba(83, 88, 43, 0.16);
  --border-escuro: rgba(252, 243, 232, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--marrom-cafe);
  font-family: 'Work Sans', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; margin: 0 0 14px; letter-spacing: -0.01em; }
h1 { font-size: 36px; }
h2 { font-size: 32px; }
h3 { font-size: 23px; }

.eyebrow {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 14px;
}

/* ============ HERO ESCURO ============ */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% 0%, #6b4a2a 0%, var(--marrom-cafe) 45%, var(--quase-preto) 100%);
  color: var(--creme);
  padding: 96px 24px 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 82% 20%, rgba(252,243,232,0.10) 0, transparent 45%);
  pointer-events: none;
}
.hero-signature {
  position: absolute;
  right: 60px; top: 50px;
  width: 260px; height: 260px;
  opacity: 0.22;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 640px; margin: 0 auto; text-align: center; }
.hero .eyebrow { color: var(--terracota-claro); text-align: center; }
.hero h1 { font-size: 58px; line-height: 1.12; color: var(--creme); }
.hero p.lead { font-size: 17px; color: rgba(252,243,232,0.82); max-width: 520px; margin: 0 auto 32px; }

.container { max-width: 640px; margin: 0 auto; padding: 64px 24px 96px; }
.container-narrow { max-width: 560px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; border: none;
  font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; text-decoration: none; transition: transform .15s, opacity .15s;
}
.btn-primary { background: var(--terracota); color: var(--creme); }
.btn-primary:hover { transform: translateY(-1px); opacity: .94; }
.btn-ghost-escuro { background: transparent; color: var(--creme); border: 1px solid var(--border-escuro); }
.btn-ghost { background: transparent; color: var(--verde-oliva); border: 1px solid var(--border); }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* ============ SEÇÃO CLARA · "para quem" reformulada como espelho ============ */
.secao-clara { background: var(--creme); padding: 72px 24px; }
.pontos-lista { max-width: 620px; margin: 0 auto; }
.ponto-item { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.ponto-item:last-child { border-bottom: none; }
.ponto-marca { font-family: 'Fraunces', serif; font-style: italic; color: var(--terracota); font-size: 20px; line-height: 1; flex-shrink: 0; }
.ponto-texto { font-size: 15.5px; color: var(--marrom-cafe); }

.secao-titulo { text-align: center; max-width: 520px; margin: 0 auto 44px; }
.secao-titulo h2 { color: var(--verde-oliva); font-size: 38px; }
.secao-titulo p { color: var(--verde-salvia); font-size: 15px; }

/* ============ CARD / FORM ============ */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 32px; margin-bottom: 20px;
  box-shadow: 0 12px 32px rgba(70, 42, 20, 0.06);
}

label { display: block; font-weight: 600; margin: 20px 0 7px; color: var(--verde-oliva); font-size: 14px; }
label:first-child { margin-top: 0; }
input[type=text], input[type=tel], input[type=email], textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--creme); font-family: 'Work Sans', sans-serif; font-size: 15px; color: var(--marrom-cafe);
}
input:focus, textarea:focus { outline: 2px solid var(--terracota-claro); outline-offset: 1px; }
textarea { min-height: 90px; resize: vertical; }

.progresso { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--verde-salvia); margin-bottom: 8px; font-weight: 600; }
.barra { height: 5px; background: var(--border); border-radius: 999px; overflow: hidden; margin-bottom: 36px; }
.barra-fill { height: 100%; background: var(--terracota); transition: width .35s ease; }

.upload-campo { border: 1px dashed var(--border); border-radius: 14px; padding: 18px; margin-bottom: 14px; }
.upload-campo small { display: block; color: var(--verde-salvia); margin-top: 4px; }

.nav-etapas { display: flex; justify-content: space-between; margin-top: 36px; }

.score-linha { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.score-nome { flex: 1; font-weight: 600; font-size: 14px; }
.score-barra { flex: 2; height: 7px; background: var(--border); border-radius: 999px; overflow: hidden; }
.score-barra-fill { height: 100%; background: var(--terracota); }
.score-num { width: 40px; text-align: right; font-weight: 700; font-family: 'Fraunces', serif; }

.processando { text-align: center; padding: 100px 24px; color: var(--marrom-cafe); }
.spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--terracota); border-radius: 50%; margin: 0 auto 24px; animation: girar 1s linear infinite; }
@keyframes girar { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation-duration: 2.5s; } }

.whatsapp-cta { display: block; text-align: center; margin-top: 32px; }

.escala-row { display: flex; gap: 8px; }
.escala-opcao { flex: 1; text-align: center; cursor: pointer; margin: 0; }

@media (max-width: 640px) {
  .hero { padding: 72px 20px 88px; }
  .hero h1 { font-size: 40px; }
  .secao-titulo h2 { font-size: 30px; }
  .hero-signature { width: 190px; height: 190px; right: -30px; top: 24px; opacity: 0.10; }
  .container { padding: 40px 18px 72px; }
  .escala-row { flex-direction: column; gap: 6px; }
  .escala-opcao { text-align: left; padding: 12px 14px; }
}
