/* ============================================================
   Base global — reset enxuto + tipografia da marca (Onest).
   ============================================================ */
/* ============================================================
   Tokens de design — Pré Candidatura Fernanda Magalhães
   Paleta oficial (ver paleta-de-cores). Um único ponto de verdade
   para cores, tipografia e raios usados na página.
   ============================================================ */
:root {
  /* --- Paleta --- */
  --laranja-forte: #ca5c2b;
  --laranja: #cf7233;
  --laranja-dourado: #d9962e;
  --roxo-escuro: #4f2d70;
  --roxo: #5d3a8a;
  --roxo-claro: #7a5799;
  --verde: #439c65;
  --creme: #fbf6ef;
  --grafite: #353535;

  /* --- Papéis semânticos --- */
  --cta-inicio: var(--laranja-dourado); /* gradiente do botão CTA */
  --cta-fim: var(--laranja-forte);
  --titulo-destaque: var(--laranja); /* "FERNANDA MAGALHÃES" */
  --titulo-verde: var(--verde); /* "EU VOU" */
  --eyebrow: var(--laranja-dourado); /* linha de apoio acima do título */
  --texto-claro: var(--creme);
  --texto-suave: rgba(251, 246, 239, 0.82);

  /* Campos (pílulas translúcidas sobre o fundo roxo) */
  --campo-fundo: rgba(93, 58, 138, 0.45);
  --campo-borda: rgba(174, 143, 209, 0.75);
  --campo-borda-foco: var(--laranja-dourado);
  --campo-placeholder: rgba(251, 246, 239, 0.6);

  /* --- Tipografia --- */
  --fonte: 'Onest', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* --- Formas --- */
  --raio-pill: 999px;
  --raio-card: 22px;
}

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

* {
  margin: 0;
}

html,
body,
#root {
  height: 100%;
}

body {
  font-family: var(--fonte);
  color: var(--texto-claro);
  background: var(--roxo-escuro);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}
/* ============================================================
   Hero — fundo full-bleed (Fernanda) + coluna de conteúdo à esquerda.
   Foco atual: desktop (modelo-pc). O mobile será refinado depois.
   ============================================================ */
._hero_vvmbn_5 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--roxo-escuro);
}

/* Imagem de fundo já composta (roxo + Fernanda à direita).
   `contain` mostra a imagem INTEIRA no enquadramento original (sem zoom/corte),
   como no modelo. Ancorada à direita: o espaço que sobra à esquerda fica roxo
   (mesma cor do fundo), justamente onde entra o texto. */
._bg_vvmbn_20 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  z-index: 0;
}

/* Telas MAIS ALTAS que 16:9 (ex.: 16:10): o `contain` deixaria faixas em
   cima/embaixo. Aqui usamos `cover`, que recorta apenas a sobra de roxo à
   ESQUERDA (ancorado à direita) — a Fernanda continua inteira e no tamanho
   natural, sem faixas e sem zoom. Em telas mais largas segue o `contain`. */
@media (max-aspect-ratio: 16 / 9) {
  ._bg_vvmbn_20 {
    object-fit: cover;
  }
}

/* Véu para dar legibilidade ao texto no lado esquerdo. */
._overlay_vvmbn_41 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(38, 20, 58, 0.94) 0%,
    rgba(50, 28, 74, 0.78) 32%,
    rgba(50, 28, 74, 0.28) 52%,
    rgba(50, 28, 74, 0) 68%
  );
}

._content_vvmbn_54 {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 5vw; /* AJUSTE AQUI: respiro geral do bloco (topo/laterais) */
}

._col_vvmbn_63 {
  max-width: 580px; /* AJUSTE AQUI: largura máxima da coluna de conteúdo */
}

/* Wrappers do texto e do formulário. No desktop/Modelo 1 apenas empilham
   (sem efeito visual); o Modelo 2 usa-os para separar banner e formulário. */
._text_vvmbn_69 {
  display: block;
}

._formArea_vvmbn_73 {
  display: block;
}

._eyebrow_vvmbn_77 {
  margin: 0 0 12px;
  /* AJUSTE AQUI: tamanho da linha "Vamos construir esse novo capítulo juntos?" */
  font-size: clamp(0.85rem, 1.05vw, 1rem);
  font-weight: 600;
  color: var(--eyebrow);
}

._title_vvmbn_85 {
  margin: 0 0 28px;
  /* AJUSTE AQUI: tamanho do título. O 3º valor é o teto no desktop;
     o do meio (vw) controla o crescimento com a largura da tela. */
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  color: var(--texto-claro);
  text-wrap: balance;
}

._green_vvmbn_98 {
  color: var(--titulo-verde);
}

._orange_vvmbn_102 {
  color: var(--titulo-destaque);
}

/* ---------- Informações do evento (data / local) ---------- */
._eventInfo_vvmbn_107 {
  margin: 0 0 22px;
  animation: _heroReveal_vvmbn_1 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.22s;
}

._eventLine_vvmbn_113 {
  margin: 0 0 4px;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--texto-claro);
}

._eventLabel_vvmbn_122 {
  color: var(--laranja-dourado);
}

._eventNote_vvmbn_126 {
  margin: 8px 0 0;
  font-size: clamp(0.85rem, 1vw, 0.98rem);
  font-weight: 500;
  color: var(--texto-suave);
}

/* ============================================================
   Desktop/tablet: encaixar a Hero na ALTURA da tela (sem rolagem).
   Fontes e espaçamentos escalam com a altura da janela (vh), então o conjunto
   cabe em 100dvh — de laptops (curtos) a monitores grandes. O 3º valor de cada
   clamp() é o teto (tamanho "cheio" em telas altas). Mobile (<=900px) não muda.
   ============================================================ */
@media (min-width: 901px) {
  ._content_vvmbn_54 {
    padding-top: clamp(14px, 3vh, 42px);
    padding-bottom: clamp(14px, 3vh, 42px);
  }

  ._eyebrow_vvmbn_77 {
    margin-bottom: clamp(6px, 1.4vh, 12px);
  }

  ._title_vvmbn_85 {
    font-size: clamp(1.35rem, 4.3vh, 2.6rem);
    margin-bottom: clamp(10px, 2.6vh, 28px);
  }

  ._eventInfo_vvmbn_107 {
    margin-bottom: clamp(8px, 2.2vh, 22px);
  }

  ._eventLine_vvmbn_113 {
    font-size: clamp(0.9rem, 1.9vh, 1.1rem);
  }

  ._eventNote_vvmbn_126 {
    margin-top: clamp(4px, 1vh, 8px);
    font-size: clamp(0.82rem, 1.7vh, 0.98rem);
  }
}

/* ---------- Entrada (aparecem ao carregar/atualizar a página) ----------
   Escalonado: eyebrow → título → (formulário continua em FormContact). */
@keyframes _heroReveal_vvmbn_1 {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

._eyebrow_vvmbn_77,
._title_vvmbn_85 {
  animation: _heroReveal_vvmbn_1 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

._eyebrow_vvmbn_77 {
  animation-delay: 0.05s;
}

._title_vvmbn_85 {
  animation-delay: 0.15s;
}

/* Acessibilidade: sem animação para quem prefere movimento reduzido. */
@media (prefers-reduced-motion: reduce) {
  ._eyebrow_vvmbn_77,
  ._title_vvmbn_85,
  ._eventInfo_vvmbn_107 {
    animation: none;
  }
}

/* ============================================================
   MODELO 1 (mobile) — imagem de fundo em tela cheia, texto + formulário
   sobrepostos. Comportamento responsivo original.
   ============================================================ */
@media (max-width: 900px) {
  ._hero_vvmbn_5[data-mobile='1'] ._overlay_vvmbn_41 {
    background: linear-gradient(
      180deg,
      rgba(38, 20, 58, 0.86) 0%,
      rgba(50, 28, 74, 0.72) 50%,
      rgba(38, 20, 58, 0.9) 100%
    );
  }

  ._hero_vvmbn_5[data-mobile='1'] ._bg_vvmbn_20 {
    object-position: 72% center;
  }

  ._hero_vvmbn_5[data-mobile='1'] ._col_vvmbn_63 {
    max-width: 100%;
  }
}

/* ============================================================
   MODELO 2 (mobile) — imagem no topo como banner (borda RETA) com o texto
   sobre ela, e o formulário logo abaixo em fundo roxo. (Modelo aprovado.)

   A Fernanda é AMPLIADA e recortada nos dedos da mão (o corpo abaixo some).
   Isso não é possível com `object-fit` numa faixa em retrato (mostraria a
   figura inteira), então a imagem entra como `background` da faixa (`.overlay`),
   com `background-size` de altura explícita — o excedente de baixo é cortado.
   ============================================================ */
@media (max-width: 900px) {
  ._hero_vvmbn_5[data-mobile='2'] {
    display: block;
    background: var(--roxo-escuro);
    /* AJUSTE AQUI: altura da faixa do topo */
    --banner-h: clamp(400px, 112vw, 540px);
    /* AJUSTE AQUI: zoom da foto (maior % = mais ampliada = corta mais embaixo,
       aproximando o corte dos dedos da mão) */
    --img-zoom: 150%;
    /* AJUSTE AQUI: posição horizontal da Fernanda dentro da faixa */
    --img-x: 74%;
  }

  /* A imagem <img> full-bleed some no Modelo 2 (usamos background na faixa). */
  ._hero_vvmbn_5[data-mobile='2'] ._bg_vvmbn_20 {
    display: none;
  }

  /* Faixa do topo: foto (ampliada/cortada) + véu de legibilidade, borda RETA. */
  ._hero_vvmbn_5[data-mobile='2'] ._overlay_vvmbn_41 {
    inset: auto;
    top: 0;
    left: 0;
    right: 0;
    height: var(--banner-h);
    border-radius: 0; /* reto entre a foto e o formulário */
    background-image:
      linear-gradient(
        116deg,
        rgba(38, 20, 58, 0.92) 0%,
        rgba(45, 25, 66, 0.6) 42%,
        rgba(45, 25, 66, 0.1) 72%,
        rgba(45, 25, 66, 0) 100%
      ),
      url('/assets/bg-fernanda-lVsgblsc.webp');
    background-repeat: no-repeat, no-repeat;
    /* véu cobre tudo; foto com altura ampliada (corta a parte de baixo). */
    background-size: cover, auto var(--img-zoom);
    background-position: center, var(--img-x) top;
  }

  ._hero_vvmbn_5[data-mobile='2'] ._content_vvmbn_54 {
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  ._hero_vvmbn_5[data-mobile='2'] ._col_vvmbn_63 {
    max-width: 100%;
  }

  /* Texto ocupa a altura da faixa (sobreposto à foto). O padding direito grande
     mantém o texto na ESQUERDA, sem sobrepor a Fernanda. */
  ._hero_vvmbn_5[data-mobile='2'] ._text_vvmbn_69 {
    min-height: var(--banner-h);
    box-sizing: border-box;
    /* AJUSTE AQUI: respiro (o 2º valor empurra o texto p/ longe da Fernanda) */
    padding: 40px 45% 22px 26px;
  }

  /* Formulário abaixo da faixa, sobre o fundo roxo. */
  ._hero_vvmbn_5[data-mobile='2'] ._formArea_vvmbn_73 {
    padding: 30px 26px 48px; /* AJUSTE AQUI: respiro do formulário abaixo */
  }

  /* Texto reduzido para caber à esquerda sem invadir a foto. */
  ._hero_vvmbn_5[data-mobile='2'] ._eyebrow_vvmbn_77 {
    font-size: clamp(0.82rem, 3.4vw, 1rem);
  }

  ._hero_vvmbn_5[data-mobile='2'] ._title_vvmbn_85 {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
    letter-spacing: -0.5px;
  }
}
/* ============================================================
   Formulário de confirmação — pílulas translúcidas sobre o fundo
   roxo, seguindo o modelo (placeholder em caixa alta, borda lavanda).
   ============================================================ */
._wrap_7her9_5 {
  width: 100%;
}

._subtitle_7her9_9 {
  margin: 0 0 16px;
  font-size: 0.98rem; /* AJUSTE AQUI: tamanho da frase acima dos campos */
  font-weight: 500;
  color: var(--texto-suave);
}

._form_7her9_16 {
  display: flex;
  flex-direction: column;
  gap: 11px; /* AJUSTE AQUI: espaço vertical entre os campos */
  max-width: 460px; /* AJUSTE AQUI: largura máxima do formulário */
}

._group_7her9_23 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

/* Campo em formato de pílula (input e select). */
._field_7her9_31 {
  width: 100%;
  padding: 13px 22px; /* AJUSTE AQUI: altura/respiro interno das pílulas */
  border-radius: var(--raio-pill);
  border: 1.5px solid var(--campo-borda);
  background: var(--campo-fundo);
  color: var(--texto-claro);
  font-size: 0.95rem; /* AJUSTE AQUI: tamanho do texto/placeholder dos campos */
  font-weight: 500;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

._field_7her9_31::placeholder {
  color: var(--campo-placeholder);
  font-weight: 500;
  letter-spacing: 0.6px;
}

._field_7her9_31:hover {
  border-color: rgba(200, 178, 224, 0.9);
}

._field_7her9_31:focus {
  outline: none;
  border-color: var(--campo-borda-foco);
  background: rgba(93, 58, 138, 0.6);
  box-shadow: 0 0 0 3px rgba(217, 150, 46, 0.25);
}

/* Select: herda a pílula, com seta customizada. */
._select_7her9_67 {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fbf6ef' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

._select_7her9_67 option {
  color: #2a1740;
  background: var(--creme);
}

/* Linha UF + Cidade. */
._row_7her9_83 {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
}

._groupUf_7her9_89 {
  min-width: 0;
}

._groupCidade_7her9_93 {
  min-width: 0;
}

._actions_7her9_97 {
  margin-top: 12px;
}

/* ---------- Checkbox de consentimento (LGPD) ---------- */
._consent_7her9_102 {
  margin-top: 2px;
}

._consentLabel_7her9_106 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--texto-suave);
}

._consentBox_7her9_116 {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--laranja-dourado);
  cursor: pointer;
}

._consentLink_7her9_125 {
  color: var(--laranja-dourado);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

._consentLink_7her9_125:hover {
  filter: brightness(1.1);
}

/* Desktop/tablet: campos/espaçamentos escalam com a ALTURA da tela para a Hero
   caber sem rolagem (ver Hero.module.css). Mobile (<=900px) não muda. */
@media (min-width: 901px) {
  ._subtitle_7her9_9 {
    margin-bottom: clamp(8px, 1.8vh, 16px);
    font-size: clamp(0.9rem, 1.9vh, 0.98rem);
  }

  ._form_7her9_16 {
    gap: clamp(6px, 1.3vh, 11px);
  }

  ._field_7her9_31 {
    padding-top: clamp(8px, 1.5vh, 13px);
    padding-bottom: clamp(8px, 1.5vh, 13px);
    font-size: clamp(0.88rem, 1.8vh, 0.95rem);
  }

  ._consentLabel_7her9_106 {
    font-size: clamp(0.74rem, 1.5vh, 0.82rem);
  }

  ._actions_7her9_97 {
    margin-top: clamp(6px, 1.4vh, 12px);
  }
}

/* ---------- Entrada escalonada (continua a sequência do Hero) ----------
   A frase surge após o título, depois cada campo, e o botão por último. */
@keyframes _fcReveal_7her9_1 {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

._subtitle_7her9_9,
._form_7her9_16 > * {
  animation: _fcReveal_7her9_1 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

._subtitle_7her9_9 {
  animation-delay: 0.28s;
}

/* Campos, aceite e botão, um a um
   (nome → e-mail → whatsapp → cidade → LGPD → botão). */
._form_7her9_16 > *:nth-child(1) {
  animation-delay: 0.38s;
}
._form_7her9_16 > *:nth-child(2) {
  animation-delay: 0.46s;
}
._form_7her9_16 > *:nth-child(3) {
  animation-delay: 0.54s;
}
._form_7her9_16 > *:nth-child(4) {
  animation-delay: 0.62s;
}
._form_7her9_16 > *:nth-child(5) {
  animation-delay: 0.7s;
}
._form_7her9_16 > *:nth-child(6) {
  animation-delay: 0.78s;
}
._form_7her9_16 > *:nth-child(7) {
  animation-delay: 0.86s;
}
._form_7her9_16 > *:nth-child(8) {
  animation-delay: 0.94s;
}

@media (prefers-reduced-motion: reduce) {
  ._subtitle_7her9_9,
  ._form_7her9_16 > * {
    animation: none;
  }
}

._error_7her9_219 {
  margin: 0;
  padding-left: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #ffd9a8;
}

._formError_7her9_227 {
  margin: 4px 0 0;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(202, 92, 43, 0.2);
  border: 1px solid rgba(202, 92, 43, 0.5);
  font-size: 0.9rem;
  color: #ffe0c4;
}

/* Rótulo acessível, escondido visualmente (o modelo usa só placeholders). */
._srOnly_7her9_238 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Tela de sucesso ---------- */
._success_7her9_251 {
  max-width: 520px;
  padding: 32px 30px;
  border-radius: var(--raio-card);
  background: rgba(79, 45, 112, 0.55);
  border: 1.5px solid var(--campo-borda);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
}

._successIcon_7her9_262 {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde), #368152);
  box-shadow: 0 10px 24px -10px rgba(67, 156, 101, 0.8);
}

._successTitle_7her9_273 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--texto-claro);
}

._successText_7her9_280 {
  margin: 0;
  font-size: 1rem;
  color: var(--texto-suave);
}

._voucherBtn_7her9_286 {
  margin-top: 22px;
  padding: 15px 30px;
  border: 0;
  border-radius: var(--raio-pill);
  background: linear-gradient(100deg, var(--cta-inicio), var(--cta-fim));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 14px 30px -12px rgba(202, 92, 43, 0.65);
  transition: transform 0.14s ease, filter 0.14s ease;
}

._voucherBtn_7her9_286:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

._whatsapp_7her9_305 {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--texto-claro);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 560px) {
  ._success_7her9_251 {
    padding: 26px 20px;
  }
}

/* ---------- Modelo 2 (mobile): formulário centralizado abaixo do banner ----------
   O seletor de atributo `[data-mobile='2']` vem do Hero (ancestral) e é global,
   então alcança as classes deste módulo. Alinha o conjunto ao centro, como no
   modelo aprovado. */
@media (max-width: 900px) {
  [data-mobile='2'] ._subtitle_7her9_9 {
    text-align: center;
  }

  [data-mobile='2'] ._form_7her9_16 {
    max-width: 100%;
  }

  [data-mobile='2'] ._actions_7her9_97 {
    display: flex;
    justify-content: center;
  }
}
/* CTA da marca — pílula laranja com gradiente (modelo "PODE CONTAR COMIGO"). */
._button_uqgd8_2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px; /* AJUSTE AQUI: tamanho do botão (altura/largura) */
  border: 0;
  border-radius: var(--raio-pill);
  background: linear-gradient(100deg, var(--cta-inicio) 0%, var(--cta-fim) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem; /* AJUSTE AQUI: tamanho do texto do botão */
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow:
    0 14px 30px -12px rgba(202, 92, 43, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition:
    transform 0.14s ease,
    filter 0.14s ease,
    box-shadow 0.14s ease;
}

._button_uqgd8_2:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 20px 38px -14px rgba(202, 92, 43, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

._button_uqgd8_2:active:not(:disabled) {
  transform: translateY(0);
}

._button_uqgd8_2:focus-visible {
  outline: 3px solid rgba(251, 246, 239, 0.9);
  outline-offset: 3px;
}

._button_uqgd8_2:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

._block_uqgd8_46 {
  width: 100%;
}

/* Desktop/tablet: botão escala com a ALTURA da tela para a Hero caber sem
   rolagem (ver Hero.module.css). Mobile (<=900px) mantém o tamanho cheio. */
@media (min-width: 901px) {
  ._button_uqgd8_2 {
    padding-top: clamp(10px, 1.9vh, 14px);
    padding-bottom: clamp(10px, 1.9vh, 14px);
    font-size: clamp(0.88rem, 1.8vh, 0.95rem);
  }
}

._label_uqgd8_60 {
  display: inline-block;
  line-height: 1;
}
/* ============================================================
   Voucher / Ingresso — Pré Candidatura Fernanda Magalhães
   Identidade: roxo (#4F2D70/#5D3A8A) + laranja/dourado (#CA5C2B/#D9962E).
   Página isolada (rota /ingresso), aberta em nova aba após a confirmação.
   ============================================================ */
.qrv {
  min-height: 100dvh;
  margin: 0;
  padding: 28px 18px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: linear-gradient(180deg, #3b2257 0%, #4f2d70 100%);
  font-family: var(--fonte);
  color: var(--creme);
}

/* ---------- Cabeçalho de conclusão (topo, fora do card) ---------- */
.qrv__intro {
  width: min(380px, 100%);
  box-sizing: border-box;
  text-align: center;
}

.qrv__intro-title {
  margin: 0;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.12;
  color: var(--creme);
}

.qrv__intro-accent {
  color: var(--laranja-dourado);
}

.qrv__intro-text {
  margin: 10px 0 0;
  font-size: 0.94rem;
  line-height: 1.5;
  color: rgba(251, 246, 239, 0.82);
}

.qrv__intro-text strong {
  color: var(--creme);
  font-weight: 700;
}

/* barra de progresso */
.qrv__progress {
  margin-top: 18px;
  text-align: left;
}

.qrv__progress-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--creme);
}

.qrv__progress-pct {
  font-size: 1rem;
  font-weight: 800;
  color: var(--laranja-dourado);
}

.qrv__progress-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(251, 246, 239, 0.18);
  overflow: hidden;
}

.qrv__progress-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--verde), #368152);
  transform-origin: left center;
  animation: qrvProgressGrow 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes qrvProgressGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* ---------- Card ---------- */
.qrv__card {
  width: min(380px, 100%);
  background: var(--creme);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 4px 10px rgba(30, 15, 48, 0.25),
    0 26px 54px -18px rgba(30, 15, 48, 0.7);
}

/* ---------- Header (roxo) ---------- */
.qrv__header {
  position: relative;
  padding: 28px 22px 26px;
  text-align: center;
  background: linear-gradient(155deg, #6a3f9c 0%, #5d3a8a 46%, #4f2d70 100%);
  color: #fff;
  border-bottom: 3px solid var(--laranja-dourado);
}

.qrv__medallion {
  width: 74px;
  height: 74px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--laranja-dourado), var(--laranja-forte));
  box-shadow: 0 10px 22px -10px rgba(202, 92, 43, 0.8);
}

.qrv__medallion svg {
  width: 40px;
  height: 40px;
}

.qrv__event-title {
  margin: 0;
  font-weight: 800;
  font-size: 1.32rem;
  line-height: 1.12;
  letter-spacing: 0.2px;
}

.qrv__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 6px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--laranja-dourado), var(--laranja-forte));
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.qrv__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

/* ---------- Corpo ---------- */
.qrv__body {
  padding: 24px 22px 26px;
  background: var(--creme);
  color: var(--grafite);
}

.qrv__code-label {
  margin: 0;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #9a8ea6;
}

.qrv__code-value {
  margin: 4px 0 0;
  text-align: center;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  color: var(--laranja-forte);
}

.qrv__divider {
  height: 0;
  margin: 20px 0;
  border: 0;
  border-top: 2px dashed #e2d3c2;
}

.qrv__qr-wrap {
  width: min(220px, 64vw);
  margin: 0 auto;
  padding: 14px;
  background: #fff;
  border: 3px solid var(--laranja-dourado);
  border-radius: 16px;
}

.qrv__qr-wrap svg {
  display: block;
  width: 100%;
  height: auto;
}

/* linhas de informação */
.qrv__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.qrv__row-icon {
  flex: none;
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 11px;
  color: var(--roxo);
  background: rgba(93, 58, 138, 0.12);
}

.qrv__row-label {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9a8ea6;
}

.qrv__row-value {
  margin: 2px 0 0;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--grafite);
}

.qrv__hint {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(217, 150, 46, 0.14);
  border: 1px solid rgba(202, 92, 43, 0.3);
  font-size: 0.82rem;
  line-height: 1.4;
  color: #7a4a1e;
  text-align: center;
}

/* ---------- Ações ---------- */
.qrv__actions {
  width: min(380px, 100%);
  display: flex;
  gap: 12px;
}

.qrv__btn-share {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 16px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(100deg, var(--laranja-dourado), var(--laranja-forte));
  box-shadow: 0 12px 24px -12px rgba(202, 92, 43, 0.75);
  transition: transform 0.12s ease, filter 0.12s ease;
}

.qrv__btn-share:not(:disabled):hover {
  filter: brightness(1.05);
}

.qrv__btn-download {
  flex: none;
  width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(251, 246, 239, 0.7);
  border-radius: 14px;
  cursor: pointer;
  color: var(--creme);
  background: rgba(251, 246, 239, 0.08);
  transition: transform 0.12s ease, background 0.12s ease;
}

.qrv__btn-share:not(:disabled):active,
.qrv__btn-download:not(:disabled):active {
  transform: translateY(1px);
}

.qrv__btn-download:not(:disabled):hover {
  background: rgba(251, 246, 239, 0.16);
}

.qrv__btn-share:disabled,
.qrv__btn-download:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Botão "Entrar no Grupo" (WhatsApp) — verde característico do app. */
.qrv__btn-whatsapp {
  width: min(380px, 100%);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 24px -12px rgba(37, 211, 102, 0.8);
  transition: transform 0.12s ease, background 0.12s ease;
}

.qrv__btn-whatsapp:hover {
  background: #1eba59;
}

.qrv__btn-whatsapp:active {
  transform: translateY(1px);
}

.qrv__actions-hint {
  width: min(380px, 100%);
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(251, 246, 239, 0.72);
}

/* ---------- Estado vazio (link inválido) ---------- */
.qrv__empty {
  width: min(380px, 100%);
  margin-top: 12vh;
  padding: 30px 24px;
  text-align: center;
  background: var(--creme);
  color: var(--grafite);
  border-radius: 20px;
  box-shadow: 0 26px 54px -18px rgba(30, 15, 48, 0.7);
}

.qrv__empty h1 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--roxo-escuro);
}

.qrv__empty p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6a5f75;
}
/* ============================================================
   Layout de documentos legais (Termo de Imagem / Privacidade).
   Leitura confortável sobre o fundo da marca.
   ============================================================ */
._page_qpri7_9 {
  min-height: 100%;
  padding: 40px 20px 72px;
  background: var(--roxo-escuro);
}

._container_qpri7_21 {
  max-width: 760px;
  margin: 0 auto;
}

._back_qpri7_31 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--laranja-dourado);
  text-decoration: none;
}

._back_qpri7_31:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

._card_qpri7_63 {
  padding: 36px 38px;
  border-radius: var(--raio-card);
  background: rgba(93, 58, 138, 0.35);
  border: 1.5px solid var(--campo-borda);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

._title_qpri7_81 {
  margin: 0 0 6px;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--texto-claro);
  line-height: 1.2;
}

._subtitle_qpri7_97 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--texto-suave);
}

._updated_qpri7_109 {
  margin: 0 0 26px;
  font-size: 0.8rem;
  color: var(--campo-placeholder);
}

._section_qpri7_121 {
  margin-top: 26px;
}

._section_qpri7_121 h2 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--texto-claro);
}

._section_qpri7_121 p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--texto-suave);
}

._section_qpri7_121 ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

._section_qpri7_121 li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--texto-suave);
}

._section_qpri7_121 a {
  color: var(--laranja-dourado);
  text-decoration: underline;
  text-underline-offset: 2px;
}

._note_qpri7_193 {
  margin-top: 28px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(217, 150, 46, 0.12);
  border: 1px solid rgba(217, 150, 46, 0.4);
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--texto-suave);
}

@media (max-width: 560px) {
  ._card_qpri7_63 {
    padding: 26px 20px;
  }

  ._title_qpri7_81 {
    font-size: 1.4rem;
  }
}
/* ============================================================
   Banner de consentimento de cookies (LGPD / ANPD).
   Segue a paleta da marca (roxo + creme + laranja).
   ============================================================ */

/* ---------- Banner de primeiro nível (barra inferior) ---------- */
._banner_1m8oj_13 {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(1080px, calc(100% - 24px));
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(48, 27, 68, 0.97);
  border: 1.5px solid var(--campo-borda);
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: _ccUp_1m8oj_1 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

._bannerText_1m8oj_53 {
  flex: 1 1 auto;
  min-width: 0;
}

._bannerTitle_1m8oj_63 {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--texto-claro);
}

._bannerDesc_1m8oj_79 {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--texto-suave);
}

._bannerDesc_1m8oj_79 a,
._modalIntro_1m8oj_95 a {
  color: var(--laranja-dourado);
  text-decoration: underline;
  text-underline-offset: 2px;
}

._bannerActions_1m8oj_107 {
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- Botões (mesmo destaque, sem dark patterns) ---------- */
._btnGhost_1m8oj_123,
._btnPrimary_1m8oj_125 {
  padding: 11px 20px;
  border-radius: var(--raio-pill);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition:
    transform 0.14s ease,
    filter 0.14s ease,
    background 0.14s ease;
}

._btnGhost_1m8oj_123 {
  border: 1.5px solid var(--campo-borda);
  background: transparent;
  color: var(--texto-claro);
}

._btnGhost_1m8oj_123:hover {
  background: rgba(174, 143, 209, 0.18);
}

._btnPrimary_1m8oj_125 {
  border: 0;
  background: linear-gradient(100deg, var(--cta-inicio), var(--cta-fim));
  color: #fff;
  box-shadow: 0 12px 26px -14px rgba(202, 92, 43, 0.7);
}

._btnPrimary_1m8oj_125:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* ---------- Botão flutuante (reabrir preferências) ---------- */
._reopen_1m8oj_197 {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 999;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--campo-borda);
  background: rgba(48, 27, 68, 0.92);
  color: var(--texto-claro);
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.7);
  transition: transform 0.14s ease, background 0.14s ease;
}

._reopen_1m8oj_197:hover {
  transform: translateY(-2px);
  background: rgba(93, 58, 138, 0.95);
}

/* ---------- Modal de preferências (segundo nível) ---------- */
._overlay_1m8oj_243 {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(20, 10, 30, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: _ccFade_1m8oj_1 0.2s ease both;
}

._modal_1m8oj_95 {
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 26px 26px 22px;
  border-radius: var(--raio-card);
  background: var(--roxo-escuro);
  border: 1.5px solid var(--campo-borda);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.8);
  animation: _ccUp_1m8oj_1 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

._modalTitle_1m8oj_293 {
  margin: 0 0 6px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--texto-claro);
}

._modalIntro_1m8oj_95 {
  margin: 0 0 18px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--texto-suave);
}

._category_1m8oj_321 {
  padding: 14px 0;
  border-top: 1px solid rgba(174, 143, 209, 0.28);
}

._categoryHead_1m8oj_331 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

._categoryName_1m8oj_347 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--texto-claro);
}

._always_1m8oj_359 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--verde);
}

._categoryDesc_1m8oj_371 {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--texto-suave);
}

/* ---------- Toggle switch ---------- */
._switch_1m8oj_387 {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex: none;
  cursor: pointer;
}

._switch_1m8oj_387 input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

._slider_1m8oj_419 {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(174, 143, 209, 0.35);
  border: 1px solid var(--campo-borda);
  transition: background 0.16s ease;
}

._slider_1m8oj_419::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--creme);
  transition: transform 0.16s ease;
}

._switch_1m8oj_387 input:checked + ._slider_1m8oj_419 {
  background: linear-gradient(100deg, var(--cta-inicio), var(--cta-fim));
  border-color: transparent;
}

._switch_1m8oj_387 input:checked + ._slider_1m8oj_419::before {
  transform: translateX(20px);
}

._switch_1m8oj_387 input:focus-visible + ._slider_1m8oj_419 {
  box-shadow: 0 0 0 3px rgba(217, 150, 46, 0.4);
}

._modalActions_1m8oj_487 {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

/* ---------- Animações ---------- */
@keyframes _ccUp_1m8oj_1 {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* O banner usa translateX para centralizar; anima só a opacidade/deslocamento vertical. */
._banner_1m8oj_13 {
  animation-name: _ccBannerUp_1m8oj_1;
}

@keyframes _ccBannerUp_1m8oj_1 {
  from {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes _ccFade_1m8oj_1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  ._banner_1m8oj_13,
  ._modal_1m8oj_95,
  ._overlay_1m8oj_243 {
    animation: none;
  }
}

/* ---------- Responsivo (mobile) ---------- */
@media (max-width: 720px) {
  ._banner_1m8oj_13 {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    bottom: 10px;
    padding: 16px 18px;
  }

  ._bannerActions_1m8oj_107 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* "Aceitar" ocupa a linha inteira abaixo, mantendo o mesmo destaque visual. */
  ._bannerActions_1m8oj_107 ._btnPrimary_1m8oj_125 {
    grid-column: 1 / -1;
  }

  ._modalActions_1m8oj_487 {
    flex-direction: column-reverse;
  }

  ._modalActions_1m8oj_487 ._btnGhost_1m8oj_123,
  ._modalActions_1m8oj_487 ._btnPrimary_1m8oj_125 {
    width: 100%;
    text-align: center;
  }
}
