/* =====================================================================
   Lifestyle Paraguay × Eleva — Funil de Captação
   Identidade visual da marca
   Cores:  petróleo #103B32 · verde #1A9D80 · dourado #B8924A
   Fontes: Newsreader (títulos) · Sora (texto e botões)
   ===================================================================== */

:root {
  --petroleo: #103B32;
  --petroleo-2: #0B2A24;   /* variação mais escura p/ profundidade */
  --verde: #1A9D80;
  --verde-hover: #16b493;
  --dourado: #B8924A;
  --dourado-claro: #d3ae66;
  --areia: #F3EEE4;        /* off-white quente p/ textos sobre fundo escuro */
  --texto-suave: #C9D6D0;
  --card: rgba(255, 255, 255, 0.04);
  --card-borda: rgba(184, 146, 74, 0.28);
  --card-borda-ativa: var(--dourado);
  --sombra: 0 20px 60px rgba(0, 0, 0, 0.35);
  --raio: 16px;
  --largura: 560px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  color: var(--areia);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(26,157,128,0.18), transparent 60%),
    linear-gradient(180deg, var(--petroleo) 0%, var(--petroleo-2) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.55;
  display: flex;
  justify-content: center;
  padding: 32px 20px 56px;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: var(--largura);
  display: flex;
  flex-direction: column;
}

/* ---------- Cabeçalho / marca ---------- */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 28px;
}

.brand__logo { width: 68px; height: 68px; display: block; }
.brand__logo svg { width: 100%; height: 100%; display: block; }

.brand__name {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 1.9rem;
  letter-spacing: 0.5px;
  color: var(--areia);
}

.brand__sub {
  font-size: 0.98rem;
  color: var(--texto-suave);
  max-width: 42ch;
}

/* Faixinha dourada decorativa */
.rule {
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
  border-radius: 3px;
  margin: 2px auto 0;
}

/* ---------- Botões do Hub (link-in-bio) ---------- */
.hub-list { display: flex; flex-direction: column; gap: 14px; }

.hub-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--areia);
  background: var(--card);
  border: 1px solid var(--card-borda);
  border-radius: var(--raio);
  padding: 18px 20px;
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
}
.hub-btn:hover {
  transform: translateY(-2px);
  border-color: var(--card-borda-ativa);
  background: rgba(184,146,74,0.08);
}
.hub-btn__icon {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(26,157,128,0.16);
  color: var(--verde);
}
.hub-btn__icon svg { width: 22px; height: 22px; }
.hub-btn__txt { display: flex; flex-direction: column; }
.hub-btn__title { font-weight: 600; font-size: 1.05rem; }
.hub-btn__desc { font-size: 0.86rem; color: var(--texto-suave); }
.hub-btn__arrow { margin-left: auto; color: var(--dourado); opacity: .7; }

/* ---------- Formulários ---------- */
.form-head { margin-bottom: 22px; text-align: center; }
.form-head .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dourado);
  font-weight: 600;
}
.form-head h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 1.7rem;
  margin: 6px 0 8px;
}
.form-head p { font-size: 0.95rem; color: var(--texto-suave); max-width: 46ch; margin: 0 auto; }

.question { margin-bottom: 22px; }
.question__label {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}
.question__label .num {
  color: var(--dourado);
  font-family: 'Newsreader', serif;
  margin-right: 6px;
}

.options { display: flex; flex-direction: column; gap: 10px; }

.option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--card-borda);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
  font-size: 0.95rem;
  color: var(--areia);
  user-select: none;
}
.option:hover { border-color: var(--dourado-claro); }
.option__dot {
  flex: 0 0 20px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--texto-suave);
  transition: border-color .18s ease;
  position: relative;
}
.option.is-selected {
  border-color: var(--verde);
  background: rgba(26,157,128,0.12);
}
.option.is-selected .option__dot { border-color: var(--verde); }
.option.is-selected .option__dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--verde);
}

/* ---------- Botão principal (CTA) ---------- */
.cta {
  width: 100%;
  margin-top: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: #06231d;
  background: linear-gradient(180deg, var(--verde-hover), var(--verde));
  border: none;
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .15s ease, filter .2s ease, opacity .2s ease;
  box-shadow: 0 12px 30px rgba(26,157,128,0.28);
}
.cta:hover:not(:disabled) { transform: translateY(-2px); filter: brightness(1.05); }
.cta:disabled {
  opacity: .45;
  cursor: not-allowed;
  box-shadow: none;
  filter: grayscale(0.4);
}
.cta svg { width: 20px; height: 20px; }

.form-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--texto-suave);
  margin-top: 12px;
  min-height: 1.2em;
}

/* Link discreto de voltar */
.back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--texto-suave);
  text-decoration: none;
  font-size: 0.85rem;
  margin: 0 auto 18px;
  opacity: .8;
  transition: opacity .2s ease;
}
.back:hover { opacity: 1; color: var(--dourado); }

/* ---------- Página de Obrigado ---------- */
.thanks {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 6vh;
}
.thanks__check {
  width: 88px; height: 88px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(26,157,128,0.15);
  border: 2px solid var(--verde);
}
.thanks__check svg { width: 42px; height: 42px; color: var(--verde); }
.thanks h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 2rem;
}
.thanks p { color: var(--texto-suave); max-width: 40ch; }
.spinner {
  width: 26px; height: 26px;
  border: 3px solid rgba(184,146,74,0.25);
  border-top-color: var(--dourado);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.manual-link {
  margin-top: 6px;
  opacity: 0;
  transition: opacity .4s ease;
}
.manual-link.show { opacity: 1; }
.manual-link a {
  color: var(--dourado-claro);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(211,174,102,0.4);
}
.notice {
  margin-top: 10px;
  font-size: 0.82rem;
  color: #e7b877;
  background: rgba(231,184,119,0.08);
  border: 1px solid rgba(231,184,119,0.3);
  border-radius: 10px;
  padding: 10px 14px;
  max-width: 46ch;
}

/* ---------- Rodapé ---------- */
.footer {
  margin-top: 34px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(201,214,208,0.5);
}

/* ---------- Responsivo ---------- */
@media (max-width: 420px) {
  body { padding: 24px 16px 44px; }
  .brand__name { font-size: 1.6rem; }
  .form-head h1 { font-size: 1.45rem; }
  .thanks h1 { font-size: 1.7rem; }
  .hub-btn { padding: 16px 16px; }
}
