/* ==========================================================================
   Lista de Apoio Ton Proencio — folha de estilo pública
   Paleta: roxo profundo + dourado sobre quase-preto (a paleta da foto oficial).
   Linguagem própria: halo radial, orbes de luz, cantos suaves — nada de chanfro.
   ========================================================================== */

:root {
  --ink: #0a0712;
  --plum: #150e26;
  --plum-soft: #1c1233;
  --slate: #241a3d;
  --slate-soft: #2c2148;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.17);

  --violet: #7c3aed;
  --violet-bright: #9d5cff;
  --violet-deep: #5b21b6;
  --violet-glow: rgba(124, 58, 237, 0.35);

  --gold: #d4a942;
  --gold-bright: #f0cd6e;
  --gold-deep: #a87f24;
  --gold-glow: rgba(212, 169, 66, 0.3);

  --text: #f3f1f7;
  --text-soft: #b4adc6;
  --text-mute: #7f7794;
  --danger: #e2685f;
  --success: #4fbf8b;

  --shell: min(1180px, 100% - 2.5rem);
  --radius: 20px;
  --radius-lg: 28px;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.shell { width: var(--shell); margin-inline: auto; }

/* ===========================================================  CABEÇALHO  */

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(3.5rem, 12vw, 6.5rem) 0 clamp(3rem, 9vw, 5rem);
  background:
    radial-gradient(130% 95% at 50% -15%, var(--violet-glow), transparent 58%),
    linear-gradient(170deg, var(--plum) 0%, var(--plum-soft) 48%, var(--ink) 100%);
  overflow: hidden;
  text-align: center;
}

/* Halo dourado atrás do nome — assinatura visual deste projeto. */
.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  width: min(760px, 120vw);
  aspect-ratio: 1;
  z-index: -1;
  background: radial-gradient(circle, rgba(212, 169, 66, 0.14) 0%, transparent 62%);
  pointer-events: none;
}

/* Orbes de luz flutuando devagar — substituem as faixas diagonais do "irmão". */
.hero__orbs { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }

.hero__orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: float 9s var(--ease) infinite alternate;
}

.hero__orbs span:nth-child(1) { left: 8%;  top: 22%; width: 10px; height: 10px; background: var(--gold);   opacity: 0.5;  animation-delay: 0s; }
.hero__orbs span:nth-child(2) { left: 16%; top: 64%; width: 6px;  height: 6px;  background: var(--violet-bright); opacity: 0.55; animation-delay: 1.2s; }
.hero__orbs span:nth-child(3) { right: 12%; top: 30%; width: 8px;  height: 8px;  background: var(--gold-bright); opacity: 0.45; animation-delay: 2.1s; }
.hero__orbs span:nth-child(4) { right: 22%; top: 70%; width: 5px;  height: 5px;  background: var(--violet-bright); opacity: 0.5;  animation-delay: 0.7s; }
.hero__orbs span:nth-child(5) { left: 44%; top: 12%; width: 4px;  height: 4px;  background: var(--gold);   opacity: 0.4;  animation-delay: 3s; }

@keyframes float {
  from { transform: translateY(0)    scale(1); }
  to   { transform: translateY(-26px) scale(1.15); }
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: min(560px, 80%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.15rem;
  border: 1px solid rgba(212, 169, 66, 0.4);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(212, 169, 66, 0.07);
  backdrop-filter: blur(6px);
}

.hero__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 0 var(--gold-glow);
  animation: pulse 2.8s var(--ease) infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--gold-glow); }
  70%  { box-shadow: 0 0 0 9px rgba(212, 169, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 169, 66, 0); }
}

.hero__title { margin: 1.6rem 0 0; }

.hero__kicker {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 5.5vw, 2.2rem);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  color: var(--text-mute);
  line-height: 1;
}

/* Nome em dourado metálico com varredura de brilho. */
.hero__name {
  position: relative;
  display: block;
  margin-top: 0.18em;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.1rem, 15vw, 8rem);
  line-height: 0.98;
  padding-top: 0.05em;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  background: linear-gradient(176deg, #ffe9ad 6%, var(--gold-bright) 30%, var(--gold) 54%, #8a6a1e 78%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 26px rgba(212, 169, 66, 0.18));
}

.hero__name::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  /* Repete o padding do elemento: o inset:0 mede a borda, então sem isso a
     camada de brilho fica deslocada e vira um texto fantasma. */
  padding-top: 0.05em;
  background: linear-gradient(100deg, transparent 38%, rgba(255, 255, 255, 0.85) 50%, transparent 62%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 260% 100%;
  background-position: 190% 0;
  animation: sheen 5s var(--ease) 1s infinite;
}

@keyframes sheen {
  0%, 62%  { background-position: 190% 0; }
  100%     { background-position: -60% 0; }
}

.hero__rule {
  width: 78px;
  height: 3px;
  margin: 1.9rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--violet), var(--gold));
  box-shadow: 0 0 22px var(--violet-glow);
}

.hero__lead {
  max-width: 64ch;
  margin: 1.5rem auto 0;
  font-size: clamp(0.96rem, 2.6vw, 1.1rem);
  color: var(--text-soft);
}

/* ==========================================================  INDICAÇÃO  */

.invited {
  max-width: 46ch;
  margin: 1.4rem auto -0.6rem;
  padding: 0.55rem 1.2rem;
  display: inline-block;
  border: 1px solid rgba(157, 92, 255, 0.4);
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  font-size: 0.82rem;
  color: var(--text-soft);
}

.invited strong { color: var(--violet-bright); font-weight: 600; }

.share { text-align: center; animation: rise 0.6s var(--ease) both; }

.share__seal { margin-bottom: 1rem; }

.share__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 6vw, 2.2rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.share__lead {
  max-width: 46ch;
  margin: 0 auto 1.4rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.share__lead strong { color: var(--text); }

.share__linkbox {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  max-width: 520px;
  margin: 0 auto 0.9rem;
}

.share__url {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 0.75rem 0.95rem;
  border: 1px dashed rgba(212, 169, 66, 0.55);
  border-radius: 12px;
  background: rgba(8, 5, 15, 0.6);
  font-size: 0.8rem;
  color: var(--gold-bright);
  word-break: break-all;
  text-align: left;
  user-select: all;
}

.share__copy { white-space: nowrap; }
.share__copy.is-copied { color: var(--success); border-color: rgba(79, 191, 139, 0.5); }

.share__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 520px;
  margin: 0 auto;
}

@media (min-width: 560px) {
  .share__actions { flex-direction: row; }
  .share__actions .share__wa { flex: 1.4; }
  .share__actions .btn--ghost { flex: 1; }
}

.share--page { margin: 2.2rem auto 0; max-width: 560px; }

/* ------------------------------------------------------------  Ranking  */

.section--rank { padding-top: 0; }

.rank {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  display: grid;
  gap: 0.55rem;
}

.rank__item {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.rank__item--top { border-color: rgba(212, 169, 66, 0.45); }

.rank__pos {
  flex: 0 0 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--slate-soft);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-soft);
}

.rank__item--top .rank__pos {
  background: linear-gradient(160deg, var(--gold-bright), var(--gold-deep));
  color: #241703;
}

.rank__who { flex: 1; min-width: 0; text-align: left; line-height: 1.3; }
.rank__who strong { display: block; font-weight: 600; font-size: 0.95rem; }
.rank__who small { color: var(--text-mute); font-size: 0.74rem; }

.rank__count {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  white-space: nowrap;
}

/* -------------------------------------------------------------  Placar  */

.placar__score { margin-top: 1.8rem; }

.placar__score strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4rem, 20vw, 7rem);
  line-height: 0.9;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  filter: drop-shadow(0 10px 30px rgba(212, 169, 66, 0.28));
}

.placar__score span {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.placar__position { margin: 1.1rem 0 0; font-size: 0.95rem; color: var(--text-soft); }
.placar__position a { color: var(--gold-bright); }

.placar__hint { margin: 2rem auto 0; max-width: 48ch; font-size: 0.78rem; color: var(--text-mute); }

/* ========================================================  META / PROGRESSO  */

.goal {
  width: min(560px, 100%);
  margin: 2.4rem auto 0;
  padding: 1.3rem 1.4rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(8px);
  text-align: left;
}

.goal__figures {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.goal__now strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  /* Teto contido: com 6 dígitos o bloco ainda cabe ao lado da meta em 390px. */
  font-size: clamp(2.5rem, 9.5vw, 3.2rem);
  line-height: 0.9;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}

.goal__now span,
.goal__target span {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.goal__now span { display: block; margin-top: 0.3rem; }

.goal__target { text-align: right; }

.goal__target strong {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-soft);
  font-variant-numeric: tabular-nums;
}

.goal__track {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(5, 3, 10, 0.65);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* Marcos de 25/50/75% para dar escala à barra quando o preenchimento é pequeno. */
.goal__mark {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.13);
  z-index: 2;
}

.goal__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--violet-bright) 55%, var(--gold-bright));
  box-shadow: 0 0 16px var(--violet-glow);
  animation: goal-fill 1.5s var(--ease) 0.35s both;
}

/* Traço mínimo visível: sinaliza "já começou" sem inflar a porcentagem exibida. */
.goal__fill.is-started { min-width: 7px; }

.goal__fill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  background-size: 220% 100%;
  animation: goal-sheen 3.4s var(--ease) 1.9s infinite;
}

@keyframes goal-fill {
  from { width: 0; }
  to   { width: var(--target); }
}

@keyframes goal-sheen {
  0%, 55% { background-position: 200% 0; }
  100%    { background-position: -120% 0; }
}

.goal__note {
  margin: 0.8rem 0 0;
  font-size: 0.78rem;
  color: var(--text-mute);
}

.goal__note strong { color: var(--text-soft); font-weight: 500; font-variant-numeric: tabular-nums; }

.goal--thanks {
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.045);
}

/* =============================================================  SEÇÕES  */

.section { padding: clamp(3.2rem, 10vw, 5.5rem) 0; }

.section__head { text-align: center; margin-bottom: clamp(2rem, 6vw, 3rem); }

.section__eyebrow {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 7vw, 3rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

.section__sub {
  max-width: 56ch;
  margin: 0.9rem auto 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* =====================================================  QUEM É TON  */

.about {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .about { grid-template-columns: minmax(280px, 380px) 1fr; gap: clamp(2rem, 6vw, 4.5rem); }
}

.about__portrait {
  position: relative;
  width: min(320px, 82vw);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 169, 66, 0.35);
  box-shadow:
    0 30px 70px -30px rgba(0, 0, 0, 0.9),
    0 0 44px -10px var(--violet-glow);
}

/* Anel de brilho dourado que percorre a moldura da foto. */
.about__portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--ring, 0deg), transparent 0 70%, var(--gold-bright) 82%, transparent 94%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ring 5.5s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@property --ring {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes ring { to { --ring: 360deg; } }

.about__portrait img {
  width: 100%;
  /* height:auto é obrigatório: sem ele o atributo height="" do HTML vira a
     altura usada e o aspect-ratio abaixo é ignorado (imagem esticada). */
  height: auto;
  display: block;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
}

.about__portrait figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.1rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(8, 5, 15, 0.92));
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-align: center;
}

.about__text { text-align: left; }

.about__text .section__eyebrow,
.about__text .section__title { text-align: left; }

@media (max-width: 859px) {
  .about__text { text-align: center; }
  .about__text .section__eyebrow,
  .about__text .section__title { text-align: center; }
}

.about__body p { margin: 1.1rem 0 0; color: var(--text-soft); font-size: 0.97rem; }
.about__body p:first-child { margin-top: 1.3rem; }

.about__cta { margin-top: 1.8rem; }

/* =========================================================  FORMULÁRIO  */

.section--form {
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(124, 58, 237, 0.1), transparent 60%),
    linear-gradient(180deg, var(--ink), var(--plum) 130%);
}

.form-card {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(1.6rem, 5.5vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014));
  box-shadow: 0 40px 90px -46px rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
}

.alert {
  margin-bottom: 1.2rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(226, 104, 95, 0.4);
  border-radius: 12px;
  background: rgba(226, 104, 95, 0.1);
  color: #f2b9b4;
  font-size: 0.86rem;
}

.field { position: relative; margin-bottom: 1rem; }

.field__input {
  width: 100%;
  padding: 1.5rem 1rem 0.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(8, 5, 15, 0.55);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field__input::placeholder { color: transparent; }

.field__input:focus {
  outline: none;
  border-color: rgba(157, 92, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.16);
}

.field__label {
  position: absolute;
  top: 1rem;
  left: 1.05rem;
  font-size: 0.92rem;
  color: var(--text-mute);
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}

.field__input:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label {
  transform: translateY(-0.7rem) scale(0.72);
  color: var(--violet-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field--error .field__input { border-color: rgba(226, 104, 95, 0.6); }

.field__error {
  display: block;
  margin: 0.35rem 0 0 0.2rem;
  font-size: 0.76rem;
  color: var(--danger);
}

.field__hint {
  display: block;
  margin: 0.3rem 0 0 0.2rem;
  font-size: 0.7rem;
  color: var(--text-mute);
}

/* Checkbox custom */

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.2rem 0 1.4rem;
  cursor: pointer;
  user-select: none;
}

.consent input { position: absolute; opacity: 0; pointer-events: none; }

.consent__box {
  flex: 0 0 22px;
  height: 22px;
  margin-top: 2px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(8, 5, 15, 0.55);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.consent__box svg { width: 13px; height: 13px; stroke: #241703; stroke-width: 2.4; opacity: 0; transition: opacity 0.2s var(--ease); }

.consent input:checked + .consent__box {
  background: linear-gradient(150deg, var(--gold-bright), var(--gold));
  border-color: var(--gold);
}

.consent input:checked + .consent__box svg { opacity: 1; }

.consent input:focus-visible + .consent__box { box-shadow: 0 0 0 4px rgba(212, 169, 66, 0.2); }

.consent__text { font-size: 0.85rem; color: var(--text-soft); }
.consent__text strong { color: var(--text); font-weight: 600; }

.form-note {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  color: var(--text-mute);
  text-align: center;
}

/* =============================================================  BOTÕES  */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet-bright), var(--violet) 55%, var(--violet-deep));
  box-shadow: 0 14px 34px -14px rgba(124, 58, 237, 0.75);
}

.btn--primary:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(124, 58, 237, 0.9); }

.btn--primary:disabled { opacity: 0.45; cursor: not-allowed; }

.btn--ghost { color: var(--text-soft); border-color: var(--line-strong); background: transparent; }
.btn--ghost:hover { color: var(--text); border-color: var(--text-mute); }

.btn--block { width: 100%; }

/* ==============================================================  THANKS  */

.thanks { padding: clamp(4rem, 14vw, 7rem) 0; text-align: center; }

.thanks__seal {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 169, 66, 0.5);
  background: radial-gradient(circle at 35% 30%, rgba(212, 169, 66, 0.22), rgba(212, 169, 66, 0.05));
  box-shadow: 0 0 44px -8px var(--gold-glow);
  animation: rise 0.7s var(--ease) both;
}

.thanks__seal svg { width: 40px; height: 40px; stroke: var(--gold-bright); stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.thanks__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 10vw, 4.2rem);
  letter-spacing: 0.02em;
  line-height: 1.02;
  text-transform: uppercase;
}

.thanks__lead {
  max-width: 52ch;
  margin: 1.2rem auto 0;
  color: var(--text-soft);
}

.thanks__lead strong { color: var(--gold-bright); }

/* ==============================================================  FOOTER  */

.footer {
  padding: 2.2rem 0 2.6rem;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-mute);
}

.footer a { color: var(--text-soft); text-decoration: none; }
.footer a:hover { color: var(--gold-bright); }

/* ==========================================================  ANIMAÇÕES  */

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { animation: rise 0.8s var(--ease) both; }
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.16s; }
.reveal-3 { animation-delay: 0.28s; }
.reveal-4 { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
