/* ==========================================================================
   Abaixo Assinado Doutor Gearhead — folha de estilo pública
   Paleta da campanha: dois tons (preto-carvão -> grafite) + laranja único.
   ========================================================================== */

:root {
  --ink: #08090a;
  --coal: #101113;
  --coal-soft: #17181b;
  --steel: #1e1f23;
  --steel-soft: #26282d;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --orange: #f26522;
  --orange-bright: #ff7c34;
  --orange-deep: #d1440d;
  --orange-glow: rgba(242, 101, 34, 0.32);

  --text: #f2f2f4;
  --text-soft: #aeb0b5;
  --text-mute: #7c7e85;
  --danger: #e2685f;
  --success: #4fbf8b;

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

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Sora", -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;
}

/* Camada de textura: ruído sutil por cima de tudo, sem capturar cliques. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.4;
  mix-blend-mode: overlay;
  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.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

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, 7rem) 0 clamp(3rem, 9vw, 5rem);
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(242, 101, 34, 0.13), transparent 55%),
    linear-gradient(168deg, var(--coal) 0%, var(--coal-soft) 45%, var(--steel) 100%);
  overflow: hidden;
  text-align: center;
}

/* Malha técnica de fundo — remete a papel milimetrado / projeto de engenharia. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 60% at 50% 25%, #000 20%, transparent 80%);
}

/* Faixas diagonais do material de campanha: dois riscos laranja cruzando o topo
   em ângulo, bem apagados para não competir com o nome. */
.hero__streaks {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero__streaks span {
  position: absolute;
  height: 190%;
  background: linear-gradient(180deg, transparent, var(--orange), transparent);
  transform: rotate(24deg);
  filter: blur(1px);
}

.hero__streaks span:nth-child(1) { left: 6%;  top: -45%; width: 10px; opacity: 0.18; }
.hero__streaks span:nth-child(2) { left: 13%; top: -45%; width: 3px;  opacity: 0.3; }
.hero__streaks span:nth-child(3) { right: 8%; top: -45%; width: 7px;  opacity: 0.16; }
.hero__streaks span:nth-child(4) { right: 3%; top: -45%; width: 2px;  opacity: 0.26; }

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

/* Canto chanfrado: a forma angular das etiquetas do material de campanha. */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.05rem;
  border: 1px solid var(--line-strong);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}

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

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--orange-glow); }
  70%  { box-shadow: 0 0 0 9px rgba(242, 101, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 101, 34, 0); }
}

.hero__title { margin: 1.6rem 0 0; }

.hero__kicker {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 6.5vw, 2.6rem);
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-transform: uppercase;
  color: var(--text-mute);
  line-height: 1;
}

/* Nome em duas palavras, como no material de campanha: DOUTOR em prata clara,
   GEARHEAD em laranja. Cada palavra tem sua própria varredura de brilho. */
.hero__name {
  display: block;
  margin-top: 0.15em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.3rem, 16.5vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.6));
}

.hero__word {
  position: relative;
  display: block;
  /* Folga no topo: com line-height apertado o background-clip corta acentos. */
  padding-top: 0.05em;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__word--light {
  background-image: linear-gradient(178deg, #ffffff 4%, #d8d8dc 34%, #8d8e94 54%, #f4f4f6 72%, #9a9ba1 100%);
}

.hero__word--accent {
  background-image: linear-gradient(178deg, #ff9558 4%, var(--orange-bright) 34%, var(--orange) 58%, var(--orange-deep) 100%);
}

.hero__word::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.8) 50%, transparent 62%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 260% 100%;
  background-position: 190% 0;
  animation: sheen 4.6s var(--ease) 0.9s infinite;
}

.hero__word--accent::after { animation-delay: 1.05s; }

@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(--orange), var(--orange-bright));
  box-shadow: 0 0 22px var(--orange-glow);
}

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

.hero__count {
  display: inline-flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-top: 2rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.hero__count strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--orange-bright);
  font-variant-numeric: tabular-nums;
}

.hero__count span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ========================================================  LANDING IPVA  */

/* Título longo: reduz a escala do nome do hero só nesta página. */
.hero--ipva .hero__name { font-size: clamp(1.9rem, 8.5vw, 4.6rem); line-height: 1.04; }
.hero--ipva .hero__kicker { font-size: clamp(1rem, 4vw, 1.5rem); }

.ipva-figure {
  max-width: 860px;
  margin: 0 auto 2rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px -32px rgba(0, 0, 0, 0.9), 0 0 40px -14px var(--orange-glow);
}

.ipva-figure img { width: 100%; height: auto; display: block; }

.ipva-body { max-width: 68ch; margin: 0 auto; }
.ipva-body p { margin: 1rem 0 0; color: var(--text-soft); font-size: 0.97rem; }

/* Itens "na prática" com marcador laranja. */
.ipva-check {
  position: relative;
  padding-left: 1.6rem;
}

.ipva-check::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.75rem;
  height: 0.75rem;
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 16%, 84% 0, 38% 66%);
  background: var(--orange-bright);
}

/* ------------------------------------------------------------  O gate  */

.gate {
  max-width: 620px;
  margin: 2.6rem auto 0;
  text-align: center;
  padding-top: 2.2rem;
  border-top: 1px dashed rgba(242, 101, 34, 0.4);
}

.gate__lock {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.9rem;
  display: grid;
  place-items: center;
  color: var(--orange-bright);
  border: 1px solid rgba(242, 101, 34, 0.45);
  border-radius: 50%;
  background: rgba(242, 101, 34, 0.08);
  box-shadow: 0 0 34px -8px var(--orange-glow);
}

.gate__lock svg { width: 26px; height: 26px; }

.gate__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 5.5vw, 2rem);
  text-transform: uppercase;
}

.gate__note {
  max-width: 52ch;
  margin: 0 auto 1.6rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.gate .form-card { text-align: left; }

.gate__already { margin-top: 1.4rem; }

.gate__toggle {
  border: 0;
  background: none;
  padding: 0.3rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--orange-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.gate__verify { max-width: 420px; margin: 1rem auto 0; text-align: left; }

/* ----------------------------------------------------  Conteúdo aberto  */

.unlocked { max-width: 720px; margin: 2.4rem auto 0; }

.unlocked__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  max-width: fit-content;
  margin: 0 auto 2rem;
  padding: 0.55rem 1.2rem;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  border: 1px solid rgba(79, 191, 139, 0.45);
  background: rgba(79, 191, 139, 0.1);
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 500;
}

.unlocked__badge svg { width: 15px; height: 15px; flex: 0 0 auto; }

.unlocked__title {
  margin: 2.2rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 5.5vw, 2.1rem);
  text-transform: uppercase;
  text-align: center;
}

.unlocked__cta { margin: 2.4rem 0 0; text-align: center; }
.unlocked__cta .btn { width: min(480px, 100%); }

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

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

.invited {
  max-width: 46ch;
  margin: 1.4rem auto -0.6rem;
  padding: 0.55rem 1.1rem;
  display: inline-block;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  border: 1px solid rgba(242, 101, 34, 0.35);
  background: rgba(242, 101, 34, 0.09);
  font-size: 0.82rem;
  color: var(--text-soft);
}

.invited strong { color: var(--orange-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: 800;
  font-size: clamp(1.7rem, 6vw, 2.2rem);
  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); }

/* Vídeo vertical de agradecimento: contido para não dominar a tela — o clique
   no play é convite, o protagonista continua sendo o link logo abaixo. */
.share__video {
  display: block;
  width: min(300px, 78vw);
  aspect-ratio: 9 / 16;
  margin: 0 auto 1.3rem;
  border: 1px solid rgba(242, 101, 34, 0.35);
  border-radius: 14px;
  background: #000;
  object-fit: cover;
  box-shadow: 0 22px 50px -24px rgba(0, 0, 0, 0.85), 0 0 30px -12px var(--orange-glow);
}

.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(242, 101, 34, 0.5);
  background: rgba(6, 7, 9, 0.6);
  font-size: 0.8rem;
  color: var(--orange-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.04), rgba(255, 255, 255, 0.01));
}

.rank__item--top { border-color: rgba(242, 101, 34, 0.4); }

.rank__pos {
  flex: 0 0 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  background: var(--steel-soft);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-soft);
}

.rank__item--top .rank__pos { background: var(--orange); color: #fff; }

.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: 700;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange-bright);
  white-space: nowrap;
}

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

.placar__score { margin-top: 1.8rem; }

.placar__score strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 20vw, 7rem);
  line-height: 0.9;
  color: var(--orange-bright);
  font-variant-numeric: tabular-nums;
  filter: drop-shadow(0 10px 30px rgba(242, 101, 34, 0.25));
}

.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(--orange-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: 800;
  /* 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(--orange-bright);
  font-variant-numeric: tabular-nums;
}

.goal__now span,
.goal__target span {
  font-size: 0.63rem;
  font-weight: 500;
  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: 600;
  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(6, 7, 9, 0.6);
  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(--orange), var(--orange-bright));
  box-shadow: 0 0 16px var(--orange-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);
}

/* ==============================================================  CARDS  */

.section {
  padding: clamp(3rem, 9vw, 5.5rem) 0;
  background: linear-gradient(180deg, var(--steel) 0%, var(--coal) 100%);
}

.section--form {
  background: linear-gradient(180deg, var(--coal) 0%, var(--ink) 100%);
  padding-bottom: clamp(3.5rem, 10vw, 6rem);
}

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

.section__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--orange);
}

.section__title {
  margin: 0.7rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 6.5vw, 3rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

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

.cards {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 350px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--steel-soft);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}

@media (min-width: 720px) {
  .card { min-height: 400px; }

  /* Reserva duas linhas para título e subtítulo e encosta o texto na base da
     caixa, de modo que etiqueta, título e chamada fiquem na mesma linha
     horizontal nos três cards mesmo quando um título quebra em duas linhas. */
  .card__title {
    display: flex;
    align-items: flex-end;
    min-height: 2.04em;
  }

  .card__sub { min-height: 3.1em; }
}

.card__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* O assunto fica no meio da foto; subir o recorte tira o carro de baixo do
     degradê que escurece o rodapé do card. */
  object-position: center 38%;
  filter: saturate(1.15) contrast(1.05) brightness(1.25);
  transform: scale(1.04);
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Véu concentrado no rodapé: as fotos já nascem quase pretas, então o topo
     fica limpo e só a faixa do texto recebe escurecimento. */
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(8, 9, 10, 0.1) 32%,
    rgba(8, 9, 10, 0.84) 58%,
    rgba(8, 9, 10, 0.96) 100%
  );
  transition: background 0.5s var(--ease);
}

.card:hover,
.card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(242, 101, 34, 0.45);
  box-shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(242, 101, 34, 0.12);
  outline: none;
}

.card:hover .card__bg,
.card:focus-visible .card__bg { transform: scale(1.12); filter: saturate(0.95) contrast(1.1); }

.card__index {
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.13);
  letter-spacing: -0.03em;
}

.card__eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.3rem 0.7rem;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  align-self: flex-start;
}

.card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 5.4vw, 1.85rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.card__sub {
  margin: 0.6rem 0 0;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.card__cue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-bright);
}

.card__cue svg { transition: transform 0.4s var(--ease); }
.card:hover .card__cue svg { transform: translateX(5px); }

/* =============================================================  MODAL  */

.modal {
  width: min(680px, calc(100% - 2rem));
  max-height: min(86vh, 780px);
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, var(--coal-soft), var(--ink));
  color: var(--text);
  box-shadow: 0 40px 110px -30px rgba(0, 0, 0, 0.95);
  overflow: hidden;
}

.modal::backdrop {
  background: rgba(5, 6, 7, 0.78);
  backdrop-filter: blur(7px);
}

.modal[open] { animation: modal-in 0.45s var(--ease); }

@keyframes modal-in {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.modal__head {
  position: relative;
  padding: 1.7rem 3.4rem 1.4rem 1.7rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.modal__eyebrow {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
}

.modal__title {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 5.6vw, 2.1rem);
  line-height: 1.03;
  text-transform: uppercase;
}

.modal__close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  cursor: pointer;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.modal__close:hover {
  color: var(--orange-bright);
  border-color: rgba(242, 101, 34, 0.5);
  transform: rotate(90deg);
}

.modal__body {
  padding: 1.6rem 1.7rem 1.9rem;
  overflow-y: auto;
  max-height: min(56vh, 480px);
  font-size: 0.95rem;
  color: var(--text-soft);
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}

.modal__body p { margin: 0 0 1rem; }
.modal__body p:last-child { margin-bottom: 0; }
.modal__body p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.5rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.2em;
  line-height: 0.72;
  color: var(--orange-bright);
}

.modal__foot {
  display: flex;
  gap: 0.8rem;
  padding: 1.1rem 1.7rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), opacity 0.3s var(--ease);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange) 55%, var(--orange-deep));
  box-shadow: 0 14px 34px -14px rgba(242, 101, 34, 0.7);
}

.btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px -16px rgba(242, 101, 34, 0.55);
}

.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%; }

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.34;
  filter: grayscale(0.6);
  transform: none;
  box-shadow: none;
}

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

.form-card {
  max-width: 620px;
  margin-inline: auto;
  padding: clamp(1.5rem, 5vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(242, 101, 34, 0.07), transparent 60%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: 0 32px 80px -40px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

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

.field__input {
  width: 100%;
  padding: 1.55rem 1.05rem 0.62rem;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(6, 7, 9, 0.55);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.field__input::placeholder { color: transparent; }

.field__input:focus {
  outline: none;
  border-color: rgba(242, 101, 34, 0.65);
  background: rgba(6, 7, 9, 0.78);
  box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.12);
}

.field__label {
  position: absolute;
  top: 1.05rem;
  left: 1.1rem;
  font-size: 0.95rem;
  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.72rem) scale(0.72);
  color: var(--orange-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 1.3rem 0;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.022);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.consent:has(input:checked) {
  border-color: rgba(242, 101, 34, 0.45);
  background: rgba(242, 101, 34, 0.07);
}

.consent input { position: absolute; opacity: 0; width: 0; height: 0; }

.consent__box {
  flex: none;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-top: 1px;
  border: 1.5px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(6, 7, 9, 0.5);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.consent__box svg {
  width: 13px;
  height: 13px;
  stroke: #1a1206;
  stroke-width: 3.2;
  stroke-dasharray: 22;
  stroke-dashoffset: 22;
  transition: stroke-dashoffset 0.35s var(--ease);
}

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

.consent input:checked + .consent__box svg { stroke-dashoffset: 0; }
.consent input:focus-visible + .consent__box { box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.18); }

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

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

.alert {
  margin-bottom: 1.3rem;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(226, 104, 95, 0.4);
  border-left-width: 3px;
  border-radius: 11px;
  background: rgba(226, 104, 95, 0.09);
  font-size: 0.86rem;
  color: #f0b4ae;
}

/* ============================================================  RODAPÉ  */

.footer {
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-mute);
}

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

/* ==========================================================  OBRIGADO  */

.thanks {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 2.5rem 0;
  text-align: center;
  background:
    radial-gradient(110% 70% at 50% 0%, rgba(242, 101, 34, 0.14), transparent 58%),
    linear-gradient(168deg, var(--coal) 0%, var(--steel) 55%, var(--ink) 100%);
}

.thanks__seal {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 0 auto 2rem;
  border: 1px solid rgba(242, 101, 34, 0.4);
  border-radius: 50%;
  background: rgba(242, 101, 34, 0.09);
  animation: seal-in 0.7s var(--ease) both;
}

.thanks__seal svg {
  width: 44px;
  height: 44px;
  stroke: var(--orange-bright);
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: draw 0.7s var(--ease) 0.35s forwards;
}

@keyframes seal-in {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: none; }
}

@keyframes draw { to { stroke-dashoffset: 0; } }

.thanks__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 12vw, 5rem);
  line-height: 1;
  padding-top: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(178deg, #ffffff 5%, #d8d8dc 40%, #94959b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.thanks__count {
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 14vw, 5.5rem);
  line-height: 1;
  color: var(--orange-bright);
  font-variant-numeric: tabular-nums;
}

.thanks__count-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ==========================================  ENTRADA / ACESSIBILIDADE  */

.reveal { animation: rise 0.8s var(--ease) both; }
.reveal-1 { animation-delay: 0.06s; }
.reveal-2 { animation-delay: 0.14s; }
.reveal-3 { animation-delay: 0.22s; }
.reveal-4 { animation-delay: 0.3s; }

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

/* ==========================================================================
   SITE DE CAMPANHA — componentes próprios (mesma identidade do abaixo-assinado)
   ========================================================================== */

/* -------------------------------------------------------------- Navegação */

.topnav {
  position: relative;
  z-index: 3;
  padding: 1rem 0;
}

.topnav__inner { display: flex; align-items: center; gap: 1.2rem; }

.topnav__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  margin-right: auto;
}

.topnav__brand em,
.footer__brand em { font-style: normal; color: var(--orange-bright); }

.topnav__links { display: none; gap: 1.4rem; }
.topnav__links a {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
}
.topnav__links a:hover { color: var(--orange-bright); }
.topnav__cta { padding: 0.65rem 1.1rem; font-size: 0.7rem; }

@media (min-width: 900px) { .topnav__links { display: flex; } }

/* ------------------------------------------------------------------- Hero */

.chero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--coal);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.chero__bg { position: absolute; inset: 0; z-index: -2; }
.chero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: 0.42; }

.chero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 70% at 20% 30%, rgba(8, 9, 10, 0.55), transparent 70%),
    linear-gradient(180deg, rgba(8, 9, 10, 0.35) 0%, rgba(8, 9, 10, 0.55) 55%, var(--ink) 100%);
}

.chero__grid {
  display: grid;
  gap: 2.4rem;
  align-items: center;
  padding-top: clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
}

@media (min-width: 900px) {
  .chero__grid { grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); text-align: left; }
  .chero__text .hero__badge { margin-left: 0; }
  .chero__text .hero__kicker { text-indent: 0; }
  .chero__lead { margin-left: 0; }
}

.chero__title .hero__name { font-size: clamp(3.2rem, 13vw, 7.2rem); }
.chero__title .hero__kicker { font-size: clamp(1.1rem, 4.5vw, 1.7rem); letter-spacing: 0.3em; }

.chero__lead { max-width: 58ch; margin-top: 1.6rem; font-size: clamp(0.98rem, 2.4vw, 1.12rem); }

.chero__ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; justify-content: center; }
@media (min-width: 900px) { .chero__ctas { justify-content: flex-start; } }

/* Retrato de campanha (2:3) com o número como arte integrada */
.chero__portrait {
  position: relative;
  width: min(520px, 88vw);
  margin: 1.2rem auto 2.2rem;
}

@media (min-width: 900px) { .chero__portrait { margin: 0 0 0 auto; } }

.chero__portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(242, 101, 34, 0.45);
  clip-path: polygon(26px 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%, 0 26px);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.95), 0 0 60px -20px var(--orange-glow);
}

/* Véu inferior para o número assentar sobre a foto. */
.chero__portrait::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 10, 0.88));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
  pointer-events: none;
}

.chero__portrait figcaption {
  position: absolute;
  left: 6%; right: 6%; bottom: 7%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

/* 3012 — numeral gigante em Big Shoulders, laranja com sombra de tinta. */
.chero__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5.2rem, 22vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
  color: var(--orange-bright);
  text-shadow:
    0 0 28px rgba(242, 101, 34, 0.55),
    4px 4px 0 var(--orange-deep),
    8px 8px 0 rgba(8, 9, 10, 0.9);
  font-variant-numeric: tabular-nums;
}

.chero__numnote {
  display: inline-block;
  padding: 0.32rem 0.75rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}

/* --------------------------------------------------------- Redes sociais */

.social {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  padding: 0;
  margin: 1.6rem 0 0;
  justify-content: center;
}
@media (min-width: 900px) { .social { justify-content: flex-start; } }

.social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  color: var(--text-soft);
  transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.social a:hover { color: #fff; background: var(--orange); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; fill: currentColor; }

/* ------------------------------------------------------------- Quem é */

.about { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .about { grid-template-columns: minmax(260px, 400px) 1fr; gap: clamp(2rem, 6vw, 4.5rem); } }

.about__portrait {
  width: min(400px, 82vw);
  margin: 0 auto;
  clip-path: polygon(26px 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%, 0 26px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.95);
}
.about__portrait img { width: 100%; height: auto; display: block; }

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

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

.facts { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 0.5rem; }
.facts li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.86rem;
  color: var(--text);
}
.facts li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 0.55rem; height: 0.55rem;
  background: var(--orange);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
}

/* Vídeo (thumbnail + play, abre no YouTube) */
.video {
  position: relative;
  display: block;
  max-width: 880px;
  margin: clamp(2.5rem, 7vw, 4rem) auto 0;
  overflow: hidden;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  text-decoration: none;
  color: var(--text);
}
.video img { width: 100%; height: auto; display: block; filter: brightness(0.78); transition: transform 0.6s var(--ease), filter 0.4s var(--ease); }
.video:hover img { transform: scale(1.03); filter: brightness(0.9); }

.video__play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 78px; height: 78px;
  display: grid; place-items: center;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(242, 101, 34, 0.25), 0 18px 40px -14px rgba(0, 0, 0, 0.8);
}
.video__play svg { width: 34px; height: 34px; fill: #fff; margin-left: 4px; }

.video__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.2rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 10, 0.92));
  font-size: 0.82rem;
  color: var(--text-soft);
  text-align: center;
}

/* ------------------------------------------------- Seções com imagem de fundo */

.section--dark { position: relative; isolation: isolate; overflow: hidden; background: var(--coal); }
.section__bg { position: absolute; inset: 0; z-index: -1; }
.section__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.section__bg--strong img { opacity: 0.5; }
.section--dark::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(8, 9, 10, 0.25) 30%, rgba(8, 9, 10, 0.25) 70%, var(--ink) 100%);
}

/* --------------------------------------------------------------- Bandeiras */

.platform {
  list-style: none;
  counter-reset: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 700px) { .platform { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .platform { grid-template-columns: repeat(3, 1fr); } }

.platform__item {
  position: relative;
  padding: 1.3rem 1.3rem 1.3rem 1.3rem;
  border: 1px solid var(--line);
  background: rgba(8, 9, 10, 0.72);
  backdrop-filter: blur(6px);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.platform__item:hover { border-color: rgba(242, 101, 34, 0.5); transform: translateY(-3px); }

.platform__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--orange-bright);
}
.platform__head {
  margin: 0.5rem 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  line-height: 1.1;
}
.platform__desc { margin: 0; font-size: 0.86rem; color: var(--text-soft); }

/* -------------------------------------------------------------- Propostas */

.proof { margin: 1.1rem 0 0; font-size: 0.9rem; color: var(--text-soft); }
.proof strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--orange-bright); font-weight: 800; vertical-align: -2px; }

.cards--links .card { text-decoration: none; color: var(--text); }

.feature {
  display: grid;
  margin-top: 1.2rem;
  border: 1px solid var(--line-strong);
  background: var(--coal);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.feature:hover { border-color: rgba(242, 101, 34, 0.55); }
@media (min-width: 800px) { .feature { grid-template-columns: 1.1fr 1fr; } }

.feature__img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; display: block; }
.feature__body { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; padding: clamp(1.4rem, 4vw, 2.4rem); }
.feature__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  line-height: 1.05;
  text-transform: uppercase;
}
.feature__sub { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 0.4rem; }

/* -------------------------------------------------------------- Comunidade */

.community { text-align: center; max-width: 760px; }
.community .section__title { font-size: clamp(1.9rem, 6.5vw, 3.2rem); }
.community__body { max-width: 58ch; margin: 1.2rem auto 1.8rem; }
.community__body p { margin: 0.9rem 0 0; color: var(--text-soft); font-size: 0.98rem; }

/* ------------------------------------------------------------------ Apoio */

.support { text-align: center; max-width: 720px; }
.support__ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 1.6rem; }

/* ----------------------------------------------------------- Rodapé legal */

.footer--legal { padding: 3rem 0 2.4rem; text-align: center; }
.footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
}
.footer__links { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.4rem; padding: 0; margin: 1rem 0 1.6rem; }
.footer__links a { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; }

.footer__legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-soft);
}
.footer__legal p { margin: 0.35rem 0; }
.footer__legal strong { color: var(--text); letter-spacing: 0.03em; }
.footer__legal a { color: var(--orange-bright); text-decoration: none; }
.footer__admin { margin: 1.4rem 0 0; font-size: 0.72rem; }
