/* ============================================================
   T/RAWZZI : FORMULÁRIO DE APLICAÇÃO
   Sistema visual: editorial premium claro (formulário) +
   portais dark "Alquimia Imperial" (abertura / conclusão).
   Fontes self-hosted: Fraunces (display) + Inter (UI).
   ============================================================ */

/* ---------- FONTES ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('/static/fonts/fraunces-regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/static/fonts/fraunces-italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/static/fonts/fraunces-bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/inter-variable.ttf') format('truetype');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

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

/* ---------- TOKENS ---------- */
:root {
  /* superfícies claras */
  --ivory: #FAF7F1;
  --ivory-2: #F3EDE1;
  --paper: #FFFFFF;
  --paper-2: #FBF8F1;

  /* tinta */
  --ink: #1E1830;
  --ink-2: #5C5568;
  --ink-3: #66606F;

  /* linhas */
  --line: #ECE4D5;
  --line-2: #E3DAC9;

  /* marca : Alquimia Imperial */
  --roxo: #2D1B4E;
  --roxo-2: #3C2767;
  --roxo-3: #6B3FA0;
  --ouro: #B8923C;
  --ouro-2: #C9A84C;
  --champagne: #E8DCC8;
  --laranja: #E8551F;
  --laranja-2: #FF6A33;

  /* compat (telas dark) */
  --dourado: #C9A84C;
  --roxo-profundo: #2D1B4E;
  --roxo-medio: #6B3FA0;
  --preto: #160C28;
  --branco: #ffffff;

  --erro: #C0492B;
  --ring: rgba(46, 29, 80, 0.16);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-flat: 0 1px 2px rgba(45, 27, 78, 0.04);
  --shadow-card: 0 18px 50px -28px rgba(45, 27, 78, 0.30);
  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--ivory);
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- TELAS ---------- */
.tela { display: none; min-height: 100vh; min-height: 100svh; }
.tela.active { display: flex; }
.tela.active { animation: telaIn .5s var(--ease); }
@keyframes telaIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   PORTAL DARK : ABERTURA + CONCLUSÃO (flat premium)
   ============================================================ */
#tela-abertura,
#tela-conclusao {
  position: relative;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(60% 45% at 50% 92%, rgba(255,206,120,0.32) 0%, rgba(255,200,90,0) 62%),
    radial-gradient(80% 70% at 50% 108%, rgba(232,85,31,0.40) 0%, rgba(232,85,31,0) 60%),
    radial-gradient(76% 84% at 98% 64%, rgba(150,46,92,0.38) 0%, rgba(150,46,92,0) 58%),
    radial-gradient(82% 92% at 2% 22%, rgba(95,55,150,0.42) 0%, rgba(95,55,150,0) 58%),
    linear-gradient(165deg, #18102C 0%, #150B26 55%, #1C1033 100%);
}

.abertura-aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.abertura-aurora .blob { position: absolute; border-radius: 50%; mix-blend-mode: screen; will-change: transform, opacity; }
.blob-1 {
  width: 58vmax; height: 58vmax; left: -18vmax; top: -16vmax;
  background: radial-gradient(circle at center, rgba(107,63,160,0.34) 0%, rgba(107,63,160,0.08) 44%, rgba(107,63,160,0) 68%);
  animation: glow-cool 26s ease-in-out infinite alternate; animation-delay: -7s;
}
.blob-2 {
  width: 78vmax; height: 56vmax; left: 50%; bottom: -18vmax; transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(255,200,110,0.34) 0%, rgba(232,110,40,0.16) 40%, rgba(232,85,31,0) 66%);
  animation: glow-warm 20s ease-in-out infinite alternate;
}
@keyframes glow-cool { 0% { opacity: .4; transform: translate(0,0) scale(1.04); } 100% { opacity: .7; transform: translate(2vmax,2vmax) scale(.97); } }
@keyframes glow-warm { 0% { opacity: .45; transform: translateX(-50%) translateY(0) scale(1); } 100% { opacity: .75; transform: translateX(-50%) translateY(-2vmax) scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .abertura-aurora .blob { animation: none; } }

/* flat: vidro canelado removido visualmente; grão bem sutil */
.abertura-glass { display: none; }
.abertura-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 170px 170px; opacity: 0.05; mix-blend-mode: overlay;
}

.abertura-hero {
  position: relative; z-index: 3; flex: 1;
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 72px 24px 32px;
}

.abertura-card {
  max-width: 600px; width: 100%; text-align: center;
  background: rgba(20,12,34,0.42);
  border: 1px solid rgba(232,220,200,0.14);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.6);
  padding: 52px 46px 46px;
}

.abertura-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--champagne);
}
.abertura-eyebrow .slash { color: var(--laranja); font-weight: 700; }

.abertura-rule { display: block; width: 44px; height: 2px; background: var(--ouro-2); border-radius: 2px; margin: 20px auto 26px; }

.abertura-titulo {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(29px, 4.7vw, 42px); line-height: 1.12; letter-spacing: -0.6px;
  color: #F7F2E9; text-wrap: balance;
  font-optical-sizing: auto;
}
.abertura-titulo em { font-style: italic; color: var(--ouro-2); }

.abertura-lead { max-width: 33em; margin: 26px auto 0; font-size: 16px; line-height: 1.74; color: rgba(245,238,225,0.78); }
.abertura-nota { margin-top: 20px; font-size: 15px; font-weight: 500; color: #F7F2E9; }

.abertura-cta {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 34px;
  background: var(--laranja); color: #fff; border: none; border-radius: 999px;
  padding: 16px 38px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: .2px;
  cursor: pointer; box-shadow: 0 14px 34px -12px rgba(232,85,31,0.7);
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.abertura-cta:hover { background: var(--laranja-2); transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(232,85,31,0.8); }
.abertura-cta .arrow { font-size: 18px; line-height: 1; transition: transform .2s var(--ease); }
.abertura-cta:hover .arrow { transform: translateX(4px); }
.abertura-mins { display: block; margin-top: 16px; font-size: 13px; color: rgba(232,220,200,0.5); }

.abertura-footer {
  position: relative; z-index: 3; width: 100%; max-width: 1120px; margin: 0 auto;
  padding: 22px 40px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; border-top: 1px solid rgba(232,220,200,0.10);
}
.footer-logo { display: flex; align-items: center; }
.footer-logo-img { display: block; height: 24px; width: auto; }
.footer-info { font-size: 12px; line-height: 1.6; color: rgba(232,220,200,0.5); text-align: right; }
.footer-info b { color: rgba(247,242,233,0.82); font-weight: 600; }

@media (max-width: 600px) {
  .abertura-hero { padding: 52px 18px 24px; }
  .abertura-card { padding: 38px 24px 34px; border-radius: 18px; }
  .abertura-footer { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
  .footer-info { text-align: left; }
}

/* ============================================================
   FORMULÁRIO : editorial premium claro / flat
   ============================================================ */
#tela-formulario {
  flex-direction: column; align-items: center;
  background:
    radial-gradient(120% 60% at 50% -10%, #FFFFFF 0%, rgba(255,255,255,0) 60%),
    var(--ivory);
  padding: 0 0 72px;
}

.form-container { width: 100%; max-width: 680px; padding: 0 20px; }

/* CABEÇALHO STICKY : logo + progresso */
.progress-head {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--ivory) 86%, transparent);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding: 16px 0 14px; margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.progress-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.form-brand { display: inline-flex; align-items: center; line-height: 0; }
.form-brand-img { height: 22px; width: auto; display: block; }
.progress-label { font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }

.progress-bar-wrap { width: 100%; height: 5px; background: var(--ivory-2); border-radius: 999px; overflow: hidden; }
.progress-bar-inner {
  height: 100%; width: 0%; border-radius: 999px;
  background: linear-gradient(90deg, var(--ouro-2), var(--laranja));
  transition: width .5s var(--ease);
}

/* BLOCOS (cards) */
.bloco {
  display: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 38px 30px;
  box-shadow: var(--shadow-card);
  margin-top: 12px;
}
.bloco.active { display: block; animation: blocoIn .5s var(--ease); }
@keyframes blocoIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .bloco.active, .tela.active, .voz-rec-dot, .voz-spinner, .envio-spinner, .abertura-cta .arrow { animation: none; }
}

.bloco-header { margin-bottom: 30px; }
.bloco-tag {
  display: inline-block; background: var(--roxo); color: var(--champagne);
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px; margin-bottom: 16px;
}
.bloco-header h2 {
  font-family: 'Fraunces', serif; font-weight: 400; font-optical-sizing: auto;
  font-size: clamp(25px, 4.2vw, 33px); line-height: 1.12; letter-spacing: -0.4px;
  color: var(--ink); text-wrap: balance;
}

/* SUB-BLOCO */
.sub-bloco {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 24px 6px;
  margin: 8px 0 26px;
  position: relative;
}
.sub-bloco::before {
  content: ""; position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px;
  border-radius: 3px; background: linear-gradient(180deg, var(--ouro-2), var(--laranja));
}
.sub-bloco-header {
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--roxo-3); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}

/* CAMPOS */
.campo-grupo { margin-bottom: 26px; }
.campo-grupo > label {
  display: block; font-size: 15px; font-weight: 600; color: var(--ink);
  margin-bottom: 12px; line-height: 1.5;
}
.campo-grupo label small { font-weight: 400; color: var(--ink-3); font-size: 13px; }
.campo-dica { font-size: 13.5px; color: var(--ink-2); margin: -4px 0 18px; line-height: 1.6; }
.obrig { color: var(--erro); }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line-2); border-radius: 12px;
  font-family: 'Inter', sans-serif; font-size: 16px; color: var(--ink);
  background: var(--paper); transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  resize: vertical;
}
select { cursor: pointer; appearance: auto; }
input::placeholder, textarea::placeholder { color: #79736A; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--roxo-3); box-shadow: 0 0 0 4px var(--ring);
}

.canal-link { margin: 6px 0 4px 30px; animation: blocoIn .3s var(--ease); }
.canal-link input { max-width: 480px; }
.link-lbl { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 4px; }

input.erro, textarea.erro { border-color: var(--laranja); box-shadow: 0 0 0 4px rgba(232,85,31,0.12); }
.opcoes-radio.erro, .opcoes-check.erro { outline: 2px solid rgba(232,85,31,0.3); outline-offset: 6px; border-radius: 14px; }

/* OPÇÕES RADIO / CHECK */
.opcoes-radio, .opcoes-check { display: flex; flex-direction: column; gap: 9px; }

.opcao-radio, .opcao-check {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 16px; border: 1px solid var(--line-2); border-radius: 12px;
  cursor: pointer; background: var(--paper);
  transition: border-color .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease), transform .08s var(--ease);
}
.opcao-radio:hover, .opcao-check:hover { border-color: var(--ouro-2); background: var(--paper-2); }
.opcao-radio:active, .opcao-check:active { transform: scale(.992); }
.opcao-radio.selecionada, .opcao-check.selecionada {
  border-color: var(--roxo-3); background: #F6F1FB;
  box-shadow: inset 0 0 0 1px var(--roxo-3);
}

.opcao-radio input[type="radio"], .opcao-check input[type="checkbox"] {
  -webkit-appearance: none; appearance: none; width: 20px; height: 20px; margin: 0; flex-shrink: 0;
  cursor: pointer; border: 2px solid #C8BFAE; background: #fff; transition: border-color .15s var(--ease), background .15s var(--ease);
}
.opcao-radio input[type="radio"] { border-radius: 50%; }
.opcao-radio input[type="radio"]:checked { border-color: var(--roxo-3); background: radial-gradient(circle at center, var(--roxo-3) 0 5px, transparent 6px); }
.opcao-check input[type="checkbox"] { border-radius: 6px; position: relative; }
.opcao-check input[type="checkbox"]:checked { border-color: var(--roxo-3); background: var(--roxo-3); }
.opcao-check input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 5px; top: 1.5px; width: 5px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.opcao-radio span, .opcao-check span { font-size: 14.5px; line-height: 1.5; color: var(--ink); }

/* NICHO (cards grandes) */
.opcoes-nicho { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opcao-grande { padding: 18px 18px; align-items: flex-start; border-radius: 14px; }
.opcao-grande input[type="radio"] { margin-top: 2px; }
.opcao-grande span strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 3px; }
.opcao-grande span small { font-size: 12.5px; color: var(--ink-3); line-height: 1.45; }

/* CAMPO DESTAQUE (perfil do negócio) */
.destaque-campo {
  background: linear-gradient(180deg, #FBF6EC, #FBF8F1);
  border: 1px solid var(--line-2); border-radius: 16px; padding: 22px;
}

/* BOTÕES */
.nav-botoes { display: flex; gap: 12px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.btn-primario {
  background: var(--roxo); color: #fff; border: 1px solid var(--roxo);
  padding: 15px 32px; border-radius: 999px; font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: .2px; cursor: pointer;
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}
.btn-primario:hover { background: var(--roxo-2); transform: translateY(-1px); box-shadow: 0 14px 30px -14px rgba(46,29,80,0.7); }
.btn-secundario {
  background: transparent; color: var(--ink-2); border: 1px solid var(--line-2);
  padding: 15px 24px; border-radius: 999px; font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500; cursor: pointer; transition: all .2s var(--ease);
}
.btn-secundario:hover { border-color: var(--roxo); color: var(--roxo); }
.btn-enviar { flex: 1; text-align: center; }

#btn-enviar { background: var(--laranja); border-color: var(--laranja); box-shadow: 0 14px 30px -14px rgba(232,85,31,0.7); }
#btn-enviar:hover { background: var(--laranja-2); border-color: var(--laranja-2); box-shadow: 0 18px 36px -14px rgba(232,85,31,0.8); }
#btn-enviar:disabled { opacity: .7; cursor: progress; }

/* FOCO VISIVEL (acessibilidade / teclado) */
.opcao-radio input[type="radio"]:focus-visible,
.opcao-check input[type="checkbox"]:focus-visible { outline: 2px solid var(--roxo-3); outline-offset: 3px; }
.opcao-radio:focus-within, .opcao-check:focus-within { border-color: var(--roxo-3); box-shadow: 0 0 0 4px var(--ring); }
.btn-primario:focus-visible, .btn-secundario:focus-visible, #btn-enviar:focus-visible,
.abertura-cta:focus-visible, .form-brand:focus-visible { outline: 2px solid var(--roxo-3); outline-offset: 3px; }
.voz-btn:focus-visible, .voz-btn-rec:focus-visible, .voz-btn-ghost:focus-visible, .voz-btn-link:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; }

/* ============================================================
   CARD DE MENSAGEM DE VOZ (acento dark "Alquimia" no form claro)
   ============================================================ */
.voz-card {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(107,63,160,0.35) 0%, rgba(107,63,160,0) 55%),
    linear-gradient(165deg, #2A1846 0%, #1F1238 100%);
  border: 1px solid rgba(232,220,200,0.12);
  border-radius: 18px; padding: 30px 26px; color: #F2ECE0;
}
.voz-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ouro-2); margin: 0 0 10px; }
.voz-titulo { font-family: 'Fraunces', serif; font-weight: 400; font-size: 21px; line-height: 1.35; color: #fff; margin: 0 0 12px; }
.voz-desc { font-size: 14px; line-height: 1.7; color: rgba(242,236,224,0.72); margin: 0 0 22px; }
.voz-mic-label { display: block; color: rgba(242,236,224,0.6); font-size: 12px; margin-bottom: 6px; }
.voz-select { width: 100%; background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(232,220,200,0.2); border-radius: 10px; padding: 11px 12px; font-size: 13px; font-family: 'Inter', sans-serif; }
.voz-hint { color: rgba(242,236,224,0.7); font-size: 13.5px; line-height: 1.6; margin: 0 0 14px; }
.voz-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

.voz-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ouro-2); color: #241340; border: none;
  padding: 12px 24px; border-radius: 999px; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: transform .15s var(--ease), background .15s var(--ease);
}
.voz-btn:hover { background: #d8b85e; transform: translateY(-1px); }
.voz-btn-rec { background: var(--laranja); color: #fff; }
.voz-btn-rec:hover { background: var(--laranja-2); }
.voz-btn-ghost {
  background: transparent; color: rgba(242,236,224,0.85);
  border: 1px solid rgba(232,220,200,0.28); padding: 11px 22px; border-radius: 999px;
  font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 500; cursor: pointer; transition: border-color .15s var(--ease), color .15s var(--ease);
}
.voz-btn-ghost:hover { border-color: var(--ouro-2); color: #fff; }
.voz-btn-link { display: inline-flex; align-items: center; min-height: 44px; background: none; border: none; color: rgba(242,236,224,0.66); font-size: 12.5px; cursor: pointer; text-decoration: underline; padding: 4px 2px; margin-top: 4px; font-family: 'Inter', sans-serif; }
.voz-btn-link:hover { color: var(--ouro-2); }

.voz-rec-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.voz-rec-dot { width: 11px; height: 11px; background: var(--laranja); border-radius: 50%; animation: pulsar 1.1s infinite; }
.voz-timer { color: #fff; font-size: 14px; font-variant-numeric: tabular-nums; }

.voz-player { width: 100%; margin-bottom: 12px; }
.voz-preview { margin-top: 18px; }
.voz-status { margin-top: 18px; display: flex; align-items: center; gap: 10px; }
.voz-status span { color: rgba(242,236,224,0.72); font-size: 14px; }
.voz-spinner { width: 16px; height: 16px; border: 2px solid rgba(201,168,76,0.35); border-top-color: var(--ouro-2); border-radius: 50%; animation: girar .8s linear infinite; }

.voz-ok { display: flex; align-items: center; gap: 8px; margin: 18px 0 10px; color: #7FE0A6; font-size: 13px; font-weight: 600; }
.voz-transcricao { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 14px 16px; border-left: 3px solid var(--ouro-2); }
.voz-transcricao p { color: rgba(242,236,224,0.82); font-size: 13px; line-height: 1.7; margin: 0; font-style: italic; }

.voz-alerta { margin-bottom: 12px; background: rgba(232,85,31,0.14); border: 1px solid rgba(232,85,31,0.4); border-radius: 10px; padding: 12px 14px; }
.voz-alerta p { color: #FFB59E; font-size: 13px; line-height: 1.55; margin: 0; }
.voz-erro { margin-top: 12px; }
.voz-erro p { color: #FF9A88; font-size: 13px; margin: 0; }

.nivel-wrap { height: 9px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.nivel-bar { height: 100%; width: 0%; background: linear-gradient(90deg, #4CC38A, var(--ouro-2)); border-radius: 999px; transition: width .06s linear; }

@keyframes pulsar { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes girar { to { transform: rotate(360deg); } }

/* ============================================================
   CONCLUSÃO
   ============================================================ */
.conclusao-inner {
  position: relative; z-index: 3; max-width: 540px; width: 100%; text-align: center;
  background: rgba(20,12,34,0.42); border: 1px solid rgba(232,220,200,0.14);
  border-radius: var(--radius-lg); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.6); padding: 52px 46px;
}
.conclusao-icone {
  width: 62px; height: 62px; background: var(--ouro-2); color: #241340; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700;
  margin: 0 auto 26px; box-shadow: 0 12px 30px -10px rgba(201,168,76,0.6);
}
.conclusao-inner h2 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(30px, 5vw, 40px); color: #F7F2E9; margin-bottom: 18px; }
.conclusao-inner p { color: rgba(245,238,225,0.76); font-size: 16px; line-height: 1.74; margin-bottom: 14px; }
.conclusao-assinatura { font-family: 'Fraunces', serif; font-style: italic; color: var(--ouro-2) !important; font-size: 18px !important; margin-top: 26px; }
.conclusao-acoes { margin-top: 28px; display: flex; justify-content: center; }
.conclusao-social {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: 999px;
  border: 1px solid rgba(232,220,200,0.28); color: #F2ECE0;
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.conclusao-social svg { flex-shrink: 0; }
.conclusao-social:hover { border-color: var(--ouro-2); color: #fff; background: rgba(201,168,76,0.10); }
.conclusao-redirect { margin-top: 22px; font-size: 13px; color: rgba(232,220,200,0.6); }
.conclusao-redirect a { color: var(--ouro-2); text-decoration: underline; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 600px) {
  .form-container { padding: 0 14px; }
  .bloco { padding: 28px 20px 24px; border-radius: 18px; }
  .sub-bloco { padding: 20px 18px 6px; }
  .opcoes-nicho { grid-template-columns: 1fr; }
  .nav-botoes { flex-direction: column-reverse; }
  .btn-primario, .btn-secundario { width: 100%; text-align: center; }
  .voz-card { padding: 24px 20px; }
  .canal-link { margin-left: 16px; }
}
