/* =====================================================================
   Míriam Ribas 55188 · Deputada Estadual · Site oficial
   Identidade (manual set/2026): roxo #3F0672 · magenta #FD3FB5 · amarelo #E8D320 · azul #1D0D7D · branco
   ===================================================================== */

:root {
  /* Manual de identidade (set/2026): Roxo força #3F0672 · Amarelo esperança #E8D320 · Branco cuidado ·
     Azul saúde #1D0D7D · Magenta iniciativa #FD3FB5 */
  --roxo: #3F0672;
  --roxo-700: #350560;
  --roxo-800: #2C044F;
  --roxo-900: #23033F;
  --roxo-claro: #6B3AA0;
  --rosa: #FD3FB5;
  --rosa-escuro: #D9269A;
  --rosa-claro: #FFE4F5;
  --amarelo: #E8D320;
  --azul: #1D0D7D;
  --branco: #FFFFFF;
  --creme: #FAF6FF;
  --lilas: #EFE6FA;
  --texto: #2B2236;
  --texto-suave: #6B6277;
  --borda: rgba(70, 23, 110, .12);

  --font-titulo: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-corpo: "Nunito", "Segoe UI", Arial, sans-serif;
  --font-numero: "Titan One", "Montserrat", Arial, sans-serif;

  --radius: 22px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -20px rgba(38, 2, 77, .35);
  --shadow-rosa: 0 14px 34px -12px rgba(255, 61, 186, .55);
  --container: 1180px;
  --header-h: 78px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-corpo);
  font-size: 17px;
  line-height: 1.65;
  color: var(--texto);
  background: var(--branco);
  overflow-x: clip;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
img { height: auto; } /* evita que o atributo height estique a imagem quando o CSS define só a largura */
a { color: var(--roxo); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-titulo);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--roxo);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.lead { font-size: 1.2rem; color: var(--texto-suave); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--rosa); outline-offset: 3px; }

.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--creme { background: var(--creme); }
.section--roxo { background: var(--roxo-900); color: #fff; }
.section--roxo h2, .section--roxo h3 { color: #fff; }
.section--roxo .lead { color: rgba(255, 255, 255, .8); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-titulo); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--rosa);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--rosa); border-radius: 3px; }
.section--roxo .eyebrow { color: var(--rosa); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--font-titulo); font-weight: 800; font-size: .95rem;
  letter-spacing: .01em; line-height: 1; text-decoration: none !important;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--rosa { background: var(--rosa); color: #fff; box-shadow: var(--shadow-rosa); }
.btn--rosa:hover { background: var(--rosa-escuro); }
.btn--roxo { background: var(--roxo); color: #fff; box-shadow: var(--shadow); }
.btn--roxo:hover { background: var(--roxo-700); }
.btn--branco { background: #fff; color: var(--roxo); }
.btn--branco:hover { background: var(--lilas); }
.btn--outline { border-color: var(--roxo); color: var(--roxo); background: transparent; }
.btn--outline:hover { background: var(--roxo); color: #fff; }
.btn--outline-branco { border-color: rgba(255, 255, 255, .55); color: #fff; background: transparent; }
.btn--outline-branco:hover { background: #fff; color: var(--roxo); }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.05rem; }
.btn--sm { padding: .7rem 1.2rem; font-size: .85rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: .8rem; }
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; line-height: 1.2; }
  .btn--lg { padding: 1rem 1.5rem; font-size: 1rem; }
  .btn-group > .btn { flex: 1 1 auto; }
}

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
/* o blur fica num pseudo-elemento: backdrop-filter no próprio header quebraria o position:fixed do menu mobile */
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
}
.header.is-scrolled { border-color: var(--borda); box-shadow: 0 10px 30px -22px rgba(38, 2, 77, .45); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
.header__logo img { height: 44px; width: auto; }
@media (max-width: 600px) { .header__logo img { height: 36px; } }
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  padding: .55rem .9rem; border-radius: 999px;
  font-family: var(--font-titulo); font-weight: 700; font-size: .9rem; color: var(--roxo);
  transition: background .2s, color .2s; text-decoration: none !important;
}
.nav a:hover { background: var(--lilas); }
.nav a.is-active { background: var(--roxo); color: #fff; }
.header__cta { margin-left: .5rem; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 0; border-radius: 12px;
  background: var(--lilas); color: var(--roxo); align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-menu { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .header__cta { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 55;
    flex-direction: column; align-items: stretch; gap: .4rem;
    padding: 1.5rem 1.25rem 2rem; background: var(--roxo-900);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .3s var(--ease);
    overflow-y: auto;
  }
  body.nav-open .nav { opacity: 1; transform: none; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
  .nav a { color: #fff; font-size: 1.25rem; padding: .9rem 1rem; border-radius: 14px; }
  .nav a:hover { background: rgba(255, 255, 255, .08); }
  .nav a.is-active { background: var(--rosa); }
  .nav .nav__cta-mobile { display: inline-flex; margin-top: 1rem; }
}
@media (min-width: 961px) { .nav__cta-mobile { display: none !important; } }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 600px at 78% 40%, rgba(255, 61, 186, .22), transparent 60%),
    radial-gradient(700px 500px at 20% 90%, rgba(107, 58, 160, .5), transparent 60%),
    linear-gradient(160deg, var(--roxo-800) 0%, var(--roxo-900) 60%, #1B0238 100%);
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 2rem;
  min-height: calc(100svh - var(--header-h)); padding: 3rem 0 0;
}
.hero__text { position: relative; z-index: 2; padding-bottom: 3rem; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .9rem;
  padding: .45rem 1.2rem .45rem .9rem; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18);
  font-family: var(--font-titulo); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
/* número da candidata: grande, rosa sobre o roxo, com um reflexo que percorre só os dígitos */
.hero__badge .num {
  font-family: var(--font-numero); font-size: 2.1rem; line-height: 1; letter-spacing: .05em;
  color: var(--rosa);
  /* o gradiente tem rosa sólido nas duas pontas; a posição vai de 100% (faixa fora, à esquerda) a 0% (faixa fora, à direita),
     sempre dentro da própria imagem, sem repetição: o reflexo atravessa os 5 dígitos e some */
  background: linear-gradient(105deg, var(--rosa) 0%, var(--rosa) 42%, #FFEAF8 50%, var(--rosa) 58%, var(--rosa) 100%);
  background-size: 300% 100%; background-position: 100% 0; background-repeat: no-repeat;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 0 rgba(20, 0, 40, .55));
  animation: brilhoNumero 3.2s linear infinite; /* 1,2 s de reflexo + 2 s parado */
  padding-right: .1em; /* espaço para a sombra do último dígito */
}
@keyframes brilhoNumero { 0% { background-position: 100% 0; } 37.5%, 100% { background-position: 0% 0; } }
@media (prefers-reduced-motion: reduce) { .hero__badge .num { animation: none; background-position: 100% 0; } }
@media (max-width: 960px) { .hero__badge { gap: .7rem; padding-right: 1rem; font-size: .7rem; letter-spacing: .06em; } .hero__badge .num { font-size: 1.8rem; } }
.hero h1 { color: #fff; margin-bottom: .6em; }
.hero h1 .destaque { color: var(--rosa); }
.hero .lead { color: rgba(255, 255, 255, .82); max-width: 560px; font-size: 1.22rem; margin-bottom: 2rem; }
.hero__visual { position: relative; z-index: 1; align-self: end; }
.hero__heart {
  position: absolute; width: 118%; left: -9%; top: -4%; z-index: 0; height: auto;
  opacity: .5; pointer-events: none;
  animation: heartFloat 9s ease-in-out infinite;
}
@keyframes heartFloat { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
.hero__photo {
  position: relative; z-index: 1; margin: 0 auto; width: min(100%, 560px);
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}
.hero__photo img { width: 100%; height: auto; }
.hero__number {
  position: absolute; z-index: 3; left: 50%; bottom: 4%; transform: translateX(-50%);
  font-family: var(--font-numero); font-size: clamp(4rem, 9vw, 7.6rem); line-height: 1; color: var(--rosa);
  letter-spacing: .02em; white-space: nowrap;
  text-shadow: 0 6px 0 var(--roxo-900), 0 8px 0 #fff, 0 26px 40px rgba(0, 0, 0, .4);
  -webkit-text-stroke: 2px #fff; paint-order: stroke fill;
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.2rem; transform: translateX(-50%);
  color: rgba(255, 255, 255, .6); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.hero__scroll span { width: 1px; height: 34px; background: linear-gradient(to bottom, var(--rosa), transparent); animation: scrollHint 1.8s ease-in-out infinite; }
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; min-height: 0; padding-top: 2.5rem; gap: 1rem; }
  .hero__text { padding-bottom: 1rem; text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero .btn-group { justify-content: center; }
  .hero__photo { width: min(100%, 420px); }
  .hero__number { bottom: 3%; font-size: clamp(3.4rem, 15vw, 5.5rem); }
  .hero__scroll { display: none; }
}

/* ---------- faixa de blocos (elemento gráfico do manual: ícones em blocos coloridos) ---------- */
.tiles { overflow: hidden; background: var(--roxo-900); border-top: 4px solid var(--amarelo); border-bottom: 4px solid var(--rosa); }
.tiles__track { display: flex; width: max-content; animation: tilesMove 48s linear infinite; }
.tiles__track:hover { animation-play-state: paused; }
.tile { width: 96px; height: 96px; flex: none; display: grid; place-items: center; color: #fff; }
.tile svg { width: 44px; height: 44px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.tile--roxo { background: var(--roxo); }
.tile--amarelo { background: var(--amarelo); color: var(--roxo); }
.tile--rosa { background: var(--rosa); }
.tile--azul { background: var(--azul); }
.tile--branco { background: #fff; color: var(--roxo); }
.tile--vote { font-family: var(--font-numero); font-size: 1.05rem; line-height: 1.05; text-align: center; letter-spacing: .02em; }
.tile--vote small { display: block; font-family: var(--font-titulo); font-weight: 900; font-size: .7rem; letter-spacing: .1em; margin-bottom: .15em; }
@keyframes tilesMove { to { transform: translateX(-50%); } }
@media (max-width: 600px) { .tile { width: 72px; height: 72px; } .tile svg { width: 32px; height: 32px; } .tile--vote { font-size: .8rem; } .tile--vote small { font-size: .55rem; } }

/* ícones dos cards nas cores do manual, alternando */
.grid > :nth-child(4n+1) .card__icon { background: var(--roxo); color: #fff; }
.grid > :nth-child(4n+2) .card__icon { background: var(--amarelo); color: var(--roxo); }
.grid > :nth-child(4n+3) .card__icon { background: var(--rosa); color: #fff; }
.grid > :nth-child(4n+4) .card__icon { background: var(--azul); color: #fff; }
.card--roxo .card__icon { background: rgba(255, 255, 255, .14) !important; color: #fff !important; }
.proposta:nth-child(4n+1) .proposta__icon { background: var(--roxo); }
.proposta:nth-child(4n+2) .proposta__icon { background: var(--amarelo); color: var(--roxo); }
.proposta:nth-child(4n+3) .proposta__icon { background: var(--rosa); }
.proposta:nth-child(4n+4) .proposta__icon { background: var(--azul); }

/* ---------- faixa marquee ---------- */
.marquee {
  background: var(--rosa); color: var(--roxo-900); overflow: hidden; padding: .9rem 0;
  font-family: var(--font-titulo); font-weight: 900; font-size: 1.05rem; letter-spacing: .14em; text-transform: uppercase;
  border-top: 3px solid var(--roxo-900); border-bottom: 3px solid var(--roxo-900);
}
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track:hover { animation-play-state: paused; }
.marquee__track span { padding: 0 1.6rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 1.6rem; }
.marquee__track span::after { content: "♥"; color: #fff; font-size: 1.1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- grids e cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--borda); border-radius: var(--radius);
  padding: 2rem; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255, 61, 186, .35); }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--lilas); color: var(--roxo); margin-bottom: 1.2rem;
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.card__icon svg { width: 28px; height: 28px; }
.card:hover .card__icon { background: var(--rosa); color: #fff; transform: rotate(-6deg) scale(1.05); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--texto-suave); margin: 0; }
.card--roxo { background: var(--roxo); border-color: transparent; color: #fff; }
.card--roxo h3 { color: #fff; }
.card--roxo p { color: rgba(255, 255, 255, .8); }
.card--roxo .card__icon { background: rgba(255, 255, 255, .12); color: #fff; }
.card__num {
  position: absolute; right: 1.2rem; top: 1rem; font-family: var(--font-numero);
  font-size: 3.2rem; line-height: 1; color: var(--lilas); z-index: 0;
}
.card > *:not(.card__num) { position: relative; z-index: 1; }

/* ---------- quem é (home) ---------- */
.sobre { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.sobre__foto { position: relative; }
.sobre__foto img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.sobre__foto::before {
  content: ""; position: absolute; inset: -14px -14px auto auto; width: 62%; height: 62%;
  border-radius: var(--radius); border: 3px solid var(--rosa); z-index: -1;
}
.sobre__selo {
  position: absolute; left: -1rem; bottom: 2rem; background: #fff; border-radius: 16px;
  padding: .9rem 1.2rem; box-shadow: var(--shadow); display: flex; gap: .8rem; align-items: center;
}
.sobre__selo strong { font-family: var(--font-numero); font-size: 2rem; color: var(--rosa); line-height: 1; }
.sobre__selo span { font-size: .85rem; line-height: 1.2; color: var(--texto-suave); max-width: 120px; }
.pilares { display: grid; gap: .9rem; margin-top: 1.6rem; }
.pilar { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.1rem; border-radius: 16px; background: var(--creme); border: 1px solid var(--borda); }
.pilar__icon { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--roxo); color: #fff; display: grid; place-items: center; }
.pilar__icon svg { width: 22px; height: 22px; }
.pilar strong { display: block; font-family: var(--font-titulo); color: var(--roxo); margin-bottom: .15rem; }
.pilar p { margin: 0; color: var(--texto-suave); font-size: .95rem; }
@media (max-width: 960px) { .sobre { grid-template-columns: 1fr; } .sobre__foto { max-width: 520px; margin-inline: auto; } }

/* ---------- números ---------- */
.numeros { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.numero {
  padding: 1.8rem 1.4rem; border-radius: var(--radius); background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12); text-align: center;
  transition: background .3s, transform .3s var(--ease);
}
.numero:hover { background: rgba(255, 61, 186, .16); transform: translateY(-4px); }
.numero__valor { font-family: var(--font-numero); font-size: clamp(2.6rem, 4.5vw, 3.6rem); line-height: 1; color: var(--rosa); }
.numero__valor small { font-size: .5em; vertical-align: top; }
.numero__label { font-family: var(--font-titulo); font-weight: 700; margin-top: .6rem; font-size: .95rem; }
.numero__desc { color: rgba(255, 255, 255, .65); font-size: .85rem; margin-top: .2rem; }
@media (max-width: 960px) { .numeros { grid-template-columns: repeat(2, 1fr); } }

/* ---------- bandeiras ---------- */
.bandeira { display: flex; flex-direction: column; }
.bandeira__tag { font-family: var(--font-titulo); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--rosa); font-weight: 800; margin-bottom: .6rem; }
.bandeira ul { margin: .8rem 0 0; padding: 0; list-style: none; display: grid; gap: .45rem; }
.bandeira li { padding-left: 1.4rem; position: relative; color: var(--texto-suave); font-size: .95rem; }
.bandeira li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; border-radius: 50%; background: var(--rosa); }

/* ---------- vídeo ---------- */
.video-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--roxo-900);
  aspect-ratio: 16 / 9; box-shadow: var(--shadow);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-wrap__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.video-wrap__cta {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: #fff; text-align: center; padding: 1.5rem;
  background: linear-gradient(to top, rgba(38, 2, 77, .82) 0%, rgba(38, 2, 77, .25) 45%, rgba(38, 2, 77, .1) 100%);
  text-decoration: none !important;
}
.video-wrap__cta strong { font-family: var(--font-titulo); font-size: 1.15rem; text-shadow: 0 2px 12px rgba(0, 0, 0, .5); }
.video-wrap__cta span { color: rgba(255, 255, 255, .85); text-shadow: 0 2px 12px rgba(0, 0, 0, .5); }
@media (max-width: 600px) { .video-wrap { aspect-ratio: 1 / 1; } .video-wrap__poster { object-position: center top; } .video-wrap__cta { justify-content: flex-end; padding-bottom: 2rem; } .eyebrow { font-size: .7rem; letter-spacing: .12em; } }
.play {
  width: 88px; height: 88px; border-radius: 50%; background: var(--rosa); display: grid; place-items: center;
  box-shadow: 0 0 0 12px rgba(255, 61, 186, .25); transition: transform .3s var(--ease);
}
.play svg { width: 34px; height: 34px; margin-left: 4px; color: #fff; }
.video-wrap__cta:hover .play { transform: scale(1.08); }

/* ---------- galeria ---------- */
.galeria { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.galeria a { position: relative; border-radius: 18px; overflow: hidden; display: block; background: var(--lilas); }
.galeria a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.galeria a:nth-child(4) { grid-row: span 2; }
.galeria a:nth-child(6) { grid-column: span 2; }
.galeria img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform .6s var(--ease); }
.galeria .pos-top img { object-position: center top; }
.galeria .pos-right img { object-position: 72% center; }
.galeria a:hover img { transform: scale(1.06); }
.galeria a::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(38, 2, 77, .55), transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.galeria a:hover::after { opacity: 1; }
@media (max-width: 960px) { .galeria { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } .galeria a:nth-child(4) { grid-row: span 1; } .galeria a:nth-child(6) { grid-column: span 1; } .galeria a:nth-child(7) { grid-column: span 2; } }
.galeria-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.galeria-strip a { display: block; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--lilas); }
.galeria-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform .6s var(--ease); }
.galeria-strip a:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .galeria-strip { grid-template-columns: 1fr 1fr; } .galeria-strip a:first-child { grid-column: span 2; aspect-ratio: 16 / 10; } }

.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(20, 0, 40, .92); display: none;
  align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 90vh; max-width: 90vw; border-radius: 14px; box-shadow: var(--shadow); }
.lightbox__close {
  position: absolute; top: 1rem; right: 1rem; width: 48px; height: 48px; border-radius: 50%; border: 0;
  background: #fff; color: var(--roxo); display: grid; place-items: center;
}

/* ---------- territórios ---------- */
.territorios { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--borda); font-family: var(--font-titulo); font-weight: 700; font-size: .9rem; color: var(--roxo);
}
.chip--principal { background: var(--roxo); color: #fff; border-color: var(--roxo); }
.chip svg { width: 16px; height: 16px; }
.mapa-abc {
  border-radius: var(--radius); background: var(--roxo-900); padding: 2rem; color: #fff; position: relative; overflow: hidden;
}
.mapa-abc svg { width: 100%; height: auto; }
@media (max-width: 960px) { .territorios { grid-template-columns: 1fr; } }

/* ---------- apoio banner ---------- */
.apoio-banner {
  background: linear-gradient(120deg, var(--rosa) 0%, #FF62C8 45%, var(--rosa-escuro) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.apoio-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 90% 50%, rgba(255, 255, 255, .22), transparent 60%);
}
.apoio-banner__inner { display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 2.5rem; padding: clamp(3rem, 6vw, 5rem) 0; position: relative; }
.apoio-banner h2 { color: #fff; }
.apoio-banner p { color: rgba(255, 255, 255, .9); max-width: 560px; font-size: 1.1rem; }
.apoio-banner .eyebrow { color: var(--roxo-900); }
.apoio-banner .eyebrow::before { background: var(--roxo-900); }
.apoio-banner__mock { display: flex; gap: 1rem; justify-content: center; align-items: flex-end; }
.apoio-mock {
  width: 150px; aspect-ratio: 4 / 5; border-radius: 16px; background: var(--roxo-900);
  border: 3px solid #fff; box-shadow: var(--shadow); position: relative; overflow: hidden; padding: 12px;
  transform: rotate(-4deg); transition: transform .4s var(--ease);
}
.apoio-mock + .apoio-mock { transform: rotate(3deg) translateY(10px); width: 130px; }
.apoio-banner:hover .apoio-mock { transform: rotate(-2deg) translateY(-4px); }
.apoio-banner:hover .apoio-mock + .apoio-mock { transform: rotate(1deg) translateY(6px); }
.apoio-mock__foto { width: 54%; aspect-ratio: 1; border-radius: 50%; background: linear-gradient(135deg, #fff, #d9c8ee); border: 3px solid var(--rosa); margin: 0 auto; display: grid; place-items: center; color: var(--roxo); }
.apoio-mock__foto svg { width: 55%; height: 55%; }
.apoio-mock__txt { margin-top: 10px; text-align: center; font-family: var(--font-titulo); font-weight: 900; font-size: .55rem; letter-spacing: .06em; text-transform: uppercase; color: #fff; line-height: 1.2; }
.apoio-mock__num { font-family: var(--font-numero); color: var(--rosa); font-size: 1.15rem; text-align: center; margin-top: 6px; line-height: 1; }
.apoio-mock img { height: 22px; width: 62px; object-fit: contain; margin: 8px auto 0; }
@media (max-width: 960px) { .apoio-banner__inner { grid-template-columns: 1fr; text-align: center; } .apoio-banner p { margin-inline: auto; } .apoio-banner .btn-group { justify-content: center; } .apoio-banner__mock { margin-top: 1rem; } }

/* ---------- notícias ---------- */
.post-card { display: flex; flex-direction: column; padding: 0; }
.post-card__img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--lilas); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform .6s var(--ease); }
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__body { padding: 1.5rem 1.7rem 1.8rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-card__meta { font-size: .8rem; color: var(--texto-suave); font-family: var(--font-titulo); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.post-card__meta b { color: var(--rosa); }
.post-card h3 { font-size: 1.25rem; }
.post-card h3 a { color: var(--roxo); }
.post-card .mais { margin-top: auto; font-family: var(--font-titulo); font-weight: 800; font-size: .9rem; color: var(--rosa); display: inline-flex; align-items: center; gap: .4rem; }
.post-card .mais svg { width: 16px; height: 16px; transition: transform .3s; }
.post-card:hover .mais svg { transform: translateX(4px); }

/* artigo */
.artigo-hero { background: var(--creme); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
.artigo-hero .container { max-width: 820px; }
.artigo-hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
.artigo-meta { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; color: var(--texto-suave); font-size: .9rem; font-family: var(--font-titulo); font-weight: 700; }
.artigo-meta .tag { background: var(--rosa-claro); color: var(--rosa-escuro); padding: .3rem .7rem; border-radius: 999px; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.artigo-capa { max-width: 980px; margin: -1rem auto 0; padding: 0 1.25rem; }
.artigo-capa img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center 30%; }
@media (max-width: 600px) { .artigo-capa img { aspect-ratio: 4 / 3; object-position: 65% 30%; } }
.artigo { max-width: 760px; margin: 0 auto; padding: 3rem 1.25rem 4rem; font-size: 1.12rem; }
.artigo p { margin-bottom: 1.4em; }
.artigo h2 { font-size: 1.7rem; margin-top: 2.2em; }
.artigo h3 { font-size: 1.25rem; margin-top: 1.8em; }
.artigo blockquote {
  margin: 2rem 0; padding: 1.5rem 1.8rem; border-left: 5px solid var(--rosa); background: var(--creme);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-family: var(--font-titulo); font-weight: 700; color: var(--roxo); font-size: 1.15rem;
}
.artigo blockquote cite { display: block; margin-top: .6rem; font-size: .85rem; font-weight: 600; color: var(--texto-suave); font-style: normal; }
.artigo ul { padding-left: 1.3rem; }
.artigo li { margin-bottom: .4em; }
.artigo figure { margin: 2rem 0; }
.artigo figure img { border-radius: var(--radius-sm); }
.artigo figcaption { font-size: .85rem; color: var(--texto-suave); margin-top: .5rem; }
.artigo__share { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--borda); }
.artigo__share span { font-family: var(--font-titulo); font-weight: 800; color: var(--roxo); margin-right: .5rem; }
.artigo__fonte { font-size: .9rem; color: var(--texto-suave); }

/* ---------- página interna: hero ---------- */
.page-hero {
  background:
    radial-gradient(700px 400px at 85% 30%, rgba(255, 61, 186, .25), transparent 60%),
    linear-gradient(150deg, var(--roxo-800), var(--roxo-900));
  color: #fff; padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; overflow: hidden;
}
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255, 255, 255, .82); }
.page-hero__inner { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 2rem; }
.page-hero__heart { position: absolute; right: -4%; top: -14%; width: 40%; height: auto; opacity: .32; pointer-events: none; z-index: 0; }
.page-hero > .container { position: relative; z-index: 1; } /* texto e foto sempre por cima do coração decorativo */
.page-hero__img img { border-radius: var(--radius); box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .6); max-height: 520px; width: auto; margin-left: auto; border: 4px solid rgba(255, 255, 255, .9); }
.breadcrumb { font-size: .85rem; color: rgba(255, 255, 255, .65); margin-bottom: 1rem; font-family: var(--font-titulo); font-weight: 700; letter-spacing: .04em; }
.breadcrumb a { color: rgba(255, 255, 255, .85); }
@media (max-width: 960px) { .page-hero__inner { grid-template-columns: 1fr; } .page-hero__img { display: none; } }

/* ---------- história (quem é) ---------- */
.historia { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.historia__texto p { font-size: 1.1rem; }
.historia__aside { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.ficha { background: var(--roxo-900); color: #fff; border-radius: var(--radius); padding: 2rem; }
.ficha h3 { color: var(--rosa); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem; }
.ficha dl { margin: 0; display: grid; gap: .8rem; }
.ficha dt { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .55); font-family: var(--font-titulo); font-weight: 700; }
.ficha dd { margin: 0; font-weight: 700; }
@media (max-width: 960px) { .historia { grid-template-columns: 1fr; } .historia__aside { position: static; } }

.timeline { position: relative; display: grid; gap: 1.5rem; padding-left: 2.2rem; }
.timeline::before { content: ""; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 3px; background: linear-gradient(to bottom, var(--rosa), var(--roxo)); border-radius: 3px; }
.timeline__item { position: relative; }
.timeline__item::before { content: ""; position: absolute; left: -2.2rem; top: 6px; width: 23px; height: 23px; border-radius: 50%; background: #fff; border: 5px solid var(--rosa); box-shadow: 0 0 0 4px #fff; }
.timeline__item strong { display: block; font-family: var(--font-titulo); color: var(--roxo); font-size: 1.1rem; }
.timeline__item p { margin: .2rem 0 0; color: var(--texto-suave); }

.projetos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.projeto { background: #fff; border: 1px solid var(--borda); border-radius: var(--radius); padding: 1.6rem; display: flex; flex-direction: column; gap: .4rem; transition: transform .3s var(--ease), box-shadow .3s; }
.projeto:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.projeto__num { font-family: var(--font-numero); font-size: 2.4rem; color: var(--rosa); line-height: 1; }
.projeto__num small { font-size: .5em; }
.projeto h3 { font-size: 1.1rem; margin: 0; }
.projeto p { margin: 0; color: var(--texto-suave); font-size: .95rem; }
@media (max-width: 960px) { .projetos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .projetos { grid-template-columns: 1fr; } }

.citacao {
  background: var(--roxo); color: #fff; border-radius: var(--radius); padding: clamp(2rem, 5vw, 4rem);
  position: relative; overflow: hidden; text-align: center;
}
.citacao::before { content: "“"; position: absolute; left: 1.5rem; top: -1.5rem; font-family: var(--font-numero); font-size: 12rem; color: rgba(255, 61, 186, .35); line-height: 1; }
.citacao p { font-family: var(--font-titulo); font-weight: 800; font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.35; max-width: 820px; margin: 0 auto 1rem; position: relative; }
.citacao cite { font-style: normal; color: var(--rosa); font-weight: 700; }

/* ---------- propostas ---------- */
.proposta { display: grid; grid-template-columns: 80px 1fr; gap: 1.6rem; padding: 2.2rem 0; border-top: 1px solid var(--borda); }
.proposta:last-child { border-bottom: 1px solid var(--borda); }
.proposta__icon { width: 72px; height: 72px; border-radius: 20px; background: var(--roxo); color: #fff; display: grid; place-items: center; }
.proposta__icon svg { width: 34px; height: 34px; }
.proposta h2 { font-size: 1.6rem; margin-bottom: .3rem; }
.proposta__resumo { color: var(--texto-suave); font-size: 1.05rem; }
.proposta ul { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem 1.5rem; }
.proposta li { position: relative; padding-left: 1.7rem; }
.proposta li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 18px; height: 18px; border-radius: 50%;
  background: var(--rosa-claro) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D9269A' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/11px no-repeat;
}
@media (max-width: 700px) { .proposta { grid-template-columns: 1fr; } .proposta ul { grid-template-columns: 1fr; } }

/* ---------- contato ---------- */
.contato { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contato__lista { display: grid; gap: 1rem; }
.contato__item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem; border-radius: 18px; background: #fff; border: 1px solid var(--borda); transition: transform .3s var(--ease), box-shadow .3s; }
.contato__item:hover { transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.contato__item .ico { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--rosa); color: #fff; display: grid; place-items: center; }
.contato__item .ico svg { width: 22px; height: 22px; }
.contato__item strong { display: block; font-family: var(--font-titulo); color: var(--roxo); }
.contato__item span { color: var(--texto-suave); font-size: .95rem; }
.redes { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .5rem; }
.redes a { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border-radius: 999px; background: var(--lilas); color: var(--roxo); font-family: var(--font-titulo); font-weight: 700; font-size: .85rem; transition: background .2s, color .2s; }
.redes a:hover { background: var(--roxo); color: #fff; text-decoration: none; }
.redes svg { width: 18px; height: 18px; }

.form { background: #fff; border: 1px solid var(--borda); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: block; font-family: var(--font-titulo); font-weight: 700; font-size: .85rem; color: var(--roxo); margin-bottom: .35rem; }
.form input, .form select, .form textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 12px; border: 1.5px solid var(--borda); background: var(--creme);
  font: inherit; color: var(--texto); transition: border-color .2s, box-shadow .2s, background .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 0; border-color: var(--rosa); box-shadow: 0 0 0 4px rgba(255, 61, 186, .18); background: #fff; }
.form textarea { min-height: 120px; resize: vertical; }
.form .campo { margin-bottom: 1rem; }
.form .check { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--texto-suave); }
.form .check input { width: 20px; height: 20px; margin-top: .15rem; flex: none; accent-color: var(--rosa); }
.form__msg { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: 12px; font-weight: 700; display: none; }
.form__msg.ok { display: block; background: #E8F8EE; color: #1B7A3D; }
.form__msg.erro { display: block; background: #FDE8EF; color: #B3123F; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
@media (max-width: 960px) { .contato { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.footer { background: var(--roxo-900); color: rgba(255, 255, 255, .8); padding: 4rem 0 2rem; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: linear-gradient(90deg, var(--rosa), var(--roxo-claro), var(--rosa)); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__logo img { width: 210px; height: auto; margin-bottom: 1rem; }
.footer h4 { color: #fff; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer a { color: rgba(255, 255, 255, .85); }
.footer a:hover { color: var(--rosa); }
.footer__slogan { font-family: var(--font-titulo); font-weight: 800; color: #fff; font-size: 1.05rem; }
.footer__social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; transition: background .2s, transform .2s; }
.footer__social a:hover { background: var(--rosa); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; color: #fff; }
.footer__legal { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .78rem; color: rgba(255, 255, 255, .55); display: grid; gap: .6rem; }
.footer__legal strong { color: rgba(255, 255, 255, .8); text-transform: uppercase; letter-spacing: .06em; }
.footer__credit { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- whatsapp flutuante ---------- */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 50; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .7);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- cookie banner ---------- */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90; max-width: 560px; margin-inline: auto;
  background: #fff; color: var(--texto); border-radius: 18px; padding: 1.2rem 1.4rem; box-shadow: 0 24px 60px -20px rgba(38, 2, 77, .6);
  border: 1px solid var(--borda); display: none; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.cookie.is-visible { display: flex; }
.cookie p { margin: 0; font-size: .9rem; flex: 1 1 280px; }
.cookie .btn-group { gap: .5rem; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- utilidades ---------- */
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.center { text-align: center; }
.destaque-rosa { color: var(--rosa); }
.heart-bg { position: absolute; pointer-events: none; color: var(--rosa); opacity: .12; }
.divider-heart { display: flex; justify-content: center; margin: 2.5rem 0; color: var(--rosa); }
.divider-heart svg { width: 40px; height: 40px; }

/* ---------- gerador "Eu apoio" ---------- */
body[data-page="participe"] .apoio-banner { display: none; }
.ap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem; align-items: start; }
.ap__col { background: #fff; border: 1px solid var(--borda); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.ap__col--res { background: var(--creme); box-shadow: none; min-height: 420px; }
.ap__hidden { display: none !important; }
.ap__step { display: flex; gap: .9rem; align-items: flex-start; margin: 1.6rem 0 .9rem; }
.ap__step:first-child { margin-top: 0; }
.ap__step strong { font-family: var(--font-titulo); color: var(--roxo); font-size: 1.05rem; display: block; }
.ap__step p { margin: .1rem 0 0; color: var(--texto-suave); font-size: .92rem; }
.ap__num { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--rosa); color: #fff; font-family: var(--font-numero); font-size: 1.05rem; display: grid; place-items: center; }
.ap__drop {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; text-align: center;
  padding: 2rem 1rem; border: 2px dashed rgba(70, 23, 110, .3); border-radius: 18px; background: var(--creme); color: var(--roxo);
  cursor: pointer; transition: border-color .2s, background .2s, transform .2s var(--ease);
}
.ap__drop:hover, .ap__drop--over { border-color: var(--rosa); background: var(--rosa-claro); transform: translateY(-2px); }
.ap__drop--ok { border-style: solid; border-color: #2BB673; background: #EAF9F0; color: #1B7A3D; }
.ap__drop svg { width: 40px; height: 40px; }
.ap__drop-txt { font-size: .95rem; line-height: 1.4; }
.ap__drop-txt b { font-family: var(--font-titulo); font-size: 1.05rem; }
.ap__ajuste { text-align: center; }
.ap__frame {
  width: 280px; height: 280px; margin: 0 auto; border-radius: 50%; overflow: hidden; background: var(--lilas);
  border: 5px solid var(--rosa); box-shadow: 0 0 0 5px #fff, var(--shadow); cursor: grab; touch-action: none;
}
.ap__frame canvas { width: 100%; height: 100%; display: block; }
.ap__frame--perfil { border-radius: 24px; border-color: var(--roxo); background: var(--roxo-900); }
.ap__zoom { display: flex; align-items: center; gap: .8rem; max-width: 340px; margin: 1rem auto 0; color: var(--roxo); }
.ap__zoom svg { width: 22px; height: 22px; flex: none; }
.ap__zoom input[type=range] { flex: 1; accent-color: var(--rosa); }
.ap__link { background: none; border: 0; color: var(--rosa-escuro); font-family: var(--font-titulo); font-weight: 800; font-size: .85rem; padding: .3rem 0; white-space: nowrap; }
.ap__link:hover { text-decoration: underline; }
.ap__input { width: 100%; padding: .9rem 1rem; border-radius: 12px; border: 1.5px solid var(--borda); background: var(--creme); font: inherit; font-size: 1rem; }
.ap__input:focus { outline: 0; border-color: var(--rosa); box-shadow: 0 0 0 4px rgba(255, 61, 186, .18); background: #fff; }
.ap__gerar { width: 100%; margin-top: 1.4rem; }
.ap__nota { font-size: .8rem; color: var(--texto-suave); margin: 1rem 0 0; text-align: center; }
.ap__vazio { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--texto-suave); min-height: 380px; gap: 1.2rem; }
.ap__vazio p { max-width: 260px; margin: 0; }
.ap__vazio-card { width: 170px; aspect-ratio: 4 / 5; border-radius: 18px; background: linear-gradient(160deg, #4A1478, var(--roxo-900)); padding: 16px; border: 3px solid #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.ap__vazio-foto { width: 80px; height: 80px; border-radius: 50%; border: 4px solid var(--rosa); background: rgba(255, 255, 255, .15); }
.ap__vazio-txt { font-family: var(--font-titulo); font-weight: 900; color: #fff; font-size: .8rem; letter-spacing: .12em; }
.ap__vazio-num { font-family: var(--font-numero); color: var(--rosa); font-size: 1.5rem; line-height: 1; }
.ap__results { display: grid; gap: 1.2rem; }
.ap__card { background: #fff; border: 1px solid var(--borda); border-radius: 18px; padding: 1rem; text-align: center; animation: apIn .5s var(--ease) both; }
@keyframes apIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.ap__card-lbl { font-family: var(--font-titulo); font-weight: 800; color: var(--roxo); font-size: .9rem; margin-bottom: .7rem; }
.ap__card-lbl small { color: var(--texto-suave); font-weight: 600; margin-left: .3rem; }
.ap__card img { max-height: 380px; width: auto; max-width: 100%; margin: 0 auto .8rem; border-radius: 10px; box-shadow: var(--shadow); }
.ap__card-acts { display: flex; justify-content: center; gap: .6rem; flex-wrap: wrap; }
@media (max-width: 960px) { .ap { grid-template-columns: 1fr; } .ap__col--res { min-height: 0; } }
