/* AUDITOR ARQUETÍPICO DE LINKEDIN COM IA — Identidade Instituto Simone Saraceni */

:root {
  --roxo-profundo: #2e0d29;
  --roxo: #571b4f;
  --magenta: #a8217e;
  --dourado: #d9a62b;
  --dourado-claro: #f3dd7e;
  --laranja: #ec6c1f;
  --creme: #fdf8ef;
  --texto: #f5edf3;
  --texto-suave: #d9c3d4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  background: radial-gradient(120% 120% at 20% 0%, #6b2160 0%, var(--roxo) 35%, var(--roxo-profundo) 100%);
  color: var(--texto);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.01em;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  background: url("assets/pattern.png") repeat;
  background-size: 420px;
  opacity: 0.05;
  pointer-events: none;
  filter: grayscale(1) brightness(3);
}

.topbar {
  display: flex;
  justify-content: center;
  padding: 28px 20px 8px;
  position: relative;
  z-index: 1;
}

.logo { height: 74px; }

main {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 24px 20px 60px;
  position: relative;
  z-index: 1;
}

.step { display: none; width: 100%; max-width: 720px; }
.step.active { display: block; animation: fade 0.5s ease; }

@keyframes fade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Tipografia ---------- */

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); margin: 14px 0 22px; }
h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 8px; }
h3 {
  font-size: 1.25rem;
  color: var(--dourado-claro);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.gold {
  background: linear-gradient(100deg, var(--dourado) 10%, var(--dourado-claro) 50%, var(--dourado) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--dourado);
  font-weight: 400;
}

/* ---------- Hero ---------- */

.hero { text-align: center; padding-top: 4vh; }

.lead {
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto 14px;
  color: var(--texto);
}

.lead-sub {
  max-width: 540px;
  margin: 0 auto 34px;
  color: var(--texto-suave);
  line-height: 1.65;
}

.hero-points {
  list-style: none;
  margin-top: 38px;
  color: var(--texto-suave);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ---------- Botões ---------- */

.btn-primary, .btn-secondary {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 16px 38px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(100deg, var(--dourado) 0%, var(--dourado-claro) 55%, var(--dourado) 100%);
  color: var(--roxo-profundo);
  box-shadow: 0 8px 30px rgba(217, 166, 43, 0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(217, 166, 43, 0.5); }

.btn-secondary {
  background: transparent;
  color: var(--dourado-claro);
  border: 1px solid var(--dourado);
  margin-top: 12px;
}

.btn-secondary:hover { background: rgba(217, 166, 43, 0.12); }

/* ---------- Cards / formulários ---------- */

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(217, 166, 43, 0.25);
  border-radius: 22px;
  padding: 42px 38px;
  backdrop-filter: blur(8px);
}

.card-sub { color: var(--texto-suave); margin-bottom: 26px; }

form { display: flex; flex-direction: column; gap: 18px; }

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dourado-claro);
}

.optional { text-transform: none; letter-spacing: 0; color: var(--texto-suave); }

input, textarea {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--texto);
  background: rgba(46, 13, 41, 0.55);
  border: 1px solid rgba(217, 166, 43, 0.3);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease;
}

input:focus, textarea:focus { border-color: var(--dourado); }
input::placeholder, textarea::placeholder { color: rgba(217, 195, 212, 0.45); }
textarea { resize: vertical; }

form .btn-primary { margin-top: 10px; }

.form-error { color: #ffb3a0; font-size: 0.9rem; }
.privacy { font-size: 0.78rem; color: var(--texto-suave); text-align: center; }

/* ---------- Loading ---------- */

.loading { text-align: center; padding-top: 10vh; }

.lotus-spinner {
  width: 72px;
  height: 72px;
  margin: 0 auto 30px;
  border-radius: 50%;
  border: 2px solid rgba(217, 166, 43, 0.25);
  border-top-color: var(--dourado);
  animation: spin 1.1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

#loading-msg { margin-top: 14px; color: var(--texto-suave); font-style: italic; }

/* ---------- Resultado ---------- */

.result h2 { margin: 10px 0 30px; }

.demo-badge {
  display: inline-block;
  background: rgba(236, 108, 31, 0.18);
  border: 1px solid var(--laranja);
  color: #ffc9a3;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.result-block {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(217, 166, 43, 0.18);
  border-radius: 18px;
  padding: 28px 30px;
  margin-bottom: 18px;
  line-height: 1.7;
}

.result-block p, .result-block li { color: var(--texto); }

.result-block ul { padding-left: 20px; display: flex; flex-direction: column; gap: 10px; }

.note { font-size: 0.8rem; color: var(--texto-suave); margin-top: 14px; font-style: italic; }

.closing { border-color: rgba(217, 166, 43, 0.4); font-family: "Cormorant Garamond", serif; font-size: 1.15rem; }

/* Indicadores */

.indicators { display: flex; flex-direction: column; gap: 16px; }

.indicator .ind-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.indicator .ind-val { color: var(--dourado-claro); font-weight: 500; }

.bar {
  height: 7px;
  border-radius: 99px;
  background: rgba(46, 13, 41, 0.7);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--magenta), var(--dourado));
  transition: width 1.2s cubic-bezier(0.25, 1, 0.4, 1);
}

/* Tendências */

.tendencias { display: flex; flex-direction: column; gap: 14px; }

.tendencia {
  border-left: 2px solid var(--dourado);
  padding-left: 16px;
}

.tendencia .t-nome {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--dourado-claro);
}

.tendencia .t-sinal { color: var(--texto-suave); font-size: 0.95rem; }

/* CTA do Guia dentro de Oportunidades */

.guia-cta {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(217, 166, 43, 0.25);
  text-align: center;
}

.guia-cta p {
  color: var(--texto-suave);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

/* CTA final */

.cta-box {
  margin-top: 34px;
  text-align: center;
  background: linear-gradient(140deg, rgba(168, 33, 126, 0.25), rgba(217, 166, 43, 0.12));
  border: 1px solid rgba(217, 166, 43, 0.35);
  border-radius: 22px;
  padding: 38px 32px;
}

.cta-box p { margin-bottom: 26px; line-height: 1.7; }

.cta-box .btn-primary, .cta-box .btn-secondary { display: block; max-width: 420px; margin-left: auto; margin-right: auto; }
.cta-box .btn-primary { margin-bottom: 4px; }

footer {
  text-align: center;
  padding: 26px;
  font-size: 0.78rem;
  color: rgba(217, 195, 212, 0.5);
  position: relative;
  z-index: 1;
}

@media (max-width: 560px) {
  .card { padding: 30px 22px; }
  .logo { height: 58px; }
}
