/* =============================================================
   JúniorMar 70222 — Landing
   Paleta oficial da campanha: laranja, ciano, azul royal, azul
   marinho e amarelo (extraída do material gráfico do candidato).
   ============================================================= */

:root {
  --orange:      #F5821F;
  --orange-dark: #DC6A0A;
  --teal:        #0FB5C9;
  --teal-dark:   #0A93A4;
  --blue:        #2D52A8;
  --blue-dark:   #21408A;
  --navy:        #14265E;
  --gold:        #FFC93C;
  --whats:       #25D366;
  --whats-dark:  #1DA851;

  --bg:          #FFFFFF;
  --bg-soft:     #F5F8FD;
  --bg-tint:     #EEF4FC;
  --line:        rgba(20, 38, 94, 0.10);
  --line-strong: rgba(20, 38, 94, 0.20);

  --text:        #14265E;
  --text-soft:   #46578C;
  --text-mute:   #7B89B4;
  --text-light:  #FFFFFF;

  --radius:      18px;
  --radius-sm:   12px;
  --radius-lg:   28px;

  --shadow-sm:   0 4px 16px rgba(20, 38, 94, .08);
  --shadow-md:   0 14px 40px rgba(20, 38, 94, .12);
  --shadow-lg:   0 28px 70px rgba(20, 38, 94, .18);

  --font-display: 'Anton', 'Archivo Black', Impact, system-ui, sans-serif;
  --font-body:    'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 86px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: 1rem; }
.mono { font-variant-numeric: tabular-nums; letter-spacing: .08em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }

/* ============================= BOTÕES ============================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border: 0; border-radius: 999px; cursor: pointer;
  font-weight: 800; font-size: .95rem; letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(245,130,31,.32); }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn--ghost:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--sm { padding: 10px 18px; font-size: .85rem; }
.btn--block { display: flex; width: 100%; }

/* ============================= NAVBAR ============================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.nav-logo img { height: 58px; width: auto; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-weight: 700; font-size: .92rem; color: var(--text-soft);
  padding: 6px 0; border-bottom: 2px solid transparent; transition: color .18s, border-color .18s;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--blue); border-color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 44px; height: 40px; background: transparent; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px; padding: 0 8px;
}
.nav-toggle span { display: block; height: 3px; border-radius: 3px; background: var(--navy); transition: transform .25s, opacity .2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================= HERO — ARTE DO TOPO ============================= */
.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;
}

.hero-topo { position: relative; z-index: 2; }
.hero-topo img { width: 100%; height: auto; display: block; }

/* Com a arte no ar: ela substitui o topo em HTML e traz a própria faixa de
   ícones — a faixa do site sairia duplicada logo abaixo. */
.tem-topo #hero-classic { display: none; }
.tem-topo .hero > .faixa { display: none; }
.tem-topo .hero { padding-top: 0; }

.hero-topo-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; padding-top: 26px; padding-bottom: 30px;
}
.hero-topo-bar__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-topo-bar__count { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }

/* No celular a arte larga fica pequena demais para se sustentar sozinha:
   ela vira faixa e o bloco de texto do topo volta logo abaixo — a não ser
   que a campanha tenha exportado uma arte vertical (tem-topo-mobile). */
@media (max-width: 860px) {
  .tem-topo:not(.tem-topo-mobile) #hero-classic { display: grid; }
  .tem-topo:not(.tem-topo-mobile) #hero-classic .hero-media { display: none; }
  .tem-topo:not(.tem-topo-mobile) .hero-topo-bar { display: none; }
  .tem-topo:not(.tem-topo-mobile) .hero-copy { padding-top: 28px; }
  .tem-topo:not(.tem-topo-mobile) .hero > .faixa { display: block; }
}

@media (max-width: 860px) {
  .hero-topo-bar { justify-content: center; text-align: center; }
  .hero-topo-bar__num { width: 100%; display: grid; justify-items: center; }
  .hero-topo-bar__cta { width: 100%; }
  .hero-topo-bar__cta .btn { flex: 1 1 100%; }
}

/* ============================= HERO ============================= */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F8FE 100%);
  padding: 54px 0 0;
}
/* As formas geométricas ficam atrás da foto (coluna da direita) para não
   competirem com o texto do hero. */
.hero-shape { position: absolute; bottom: 0; pointer-events: none; }
.hero-shape--teal {
  left: -14%; right: -22%; height: 74%; z-index: 0;
  background: var(--teal);
  clip-path: polygon(6% 12%, 100% 0, 100% 100%, 0 100%);
}
.hero-shape--orange {
  left: -14%; right: -22%; height: 26%; z-index: 1;
  background: var(--orange);
  clip-path: polygon(0 58%, 100% 0, 100% 100%, 0 100%);
}
.hero-dots {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: radial-gradient(rgba(45,82,168,.14) 1.6px, transparent 1.6px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: end;
  padding-bottom: 0;
}
.hero-copy { padding-bottom: 76px; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line-strong); color: var(--blue);
  padding: 8px 16px; border-radius: 999px; font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; box-shadow: var(--shadow-sm);
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .45; transform: scale(.82);} }

.hero-title { margin: 20px 0 16px; line-height: .95; }
.hero-title__kicker {
  display: block; font-family: var(--font-body); font-weight: 800;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem); color: var(--blue);
  text-transform: uppercase; letter-spacing: .04em;
}
.hero-title__main {
  display: block; font-family: var(--font-display);
  font-size: clamp(3.2rem, 8.5vw, 6rem); color: var(--orange);
  text-transform: uppercase; letter-spacing: .01em;
  text-shadow: 3px 3px 0 #fff, 6px 6px 0 rgba(45,82,168,.18);
}
.hero-text { max-width: 34rem; color: var(--text-soft); font-size: 1.03rem; margin-bottom: 26px; }
.hero-text strong { color: var(--text); }

.hero-number { margin-bottom: 26px; }
.hero-number__label {
  display: block; font-size: .72rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 8px;
}
.urn-digits { display: flex; gap: 8px; }
.urn-digits span {
  display: grid; place-items: center;
  width: 58px; height: 68px; border-radius: 10px;
  background: var(--blue); color: #fff;
  font-family: var(--font-display); font-size: 2.4rem; line-height: 1;
  box-shadow: 0 8px 20px rgba(45,82,168,.28);
}
.urn-digits--sm span { width: 40px; height: 48px; font-size: 1.6rem; border-radius: 8px; box-shadow: none; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.hero-count { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.hero-count__box {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 8px 14px; text-align: center; min-width: 68px; box-shadow: var(--shadow-sm);
}
.hero-count__box strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--blue); line-height: 1.1; }
.hero-count__box span { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-mute); font-weight: 700; }
.hero-count__label { font-size: .85rem; color: var(--text-soft); margin-left: 6px; }

.hero-media { position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: 440px; }
.hero-photo { position: relative; z-index: 2; width: 100%; max-width: 460px; }
.hero-photo img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 22px 40px rgba(20,38,94,.28)); }
.hero-photo__placeholder {
  display: grid; place-items: center; gap: 12px; text-align: center;
  aspect-ratio: 4/5; max-width: 330px; margin: 0 auto 34px;
  border: 2px dashed var(--line-strong); border-radius: var(--radius-lg);
  color: var(--text-mute); background: #fff; padding: 24px; box-shadow: var(--shadow-md);
}
.hero-photo__placeholder code { background: var(--bg-tint); padding: 2px 6px; border-radius: 6px; font-size: .85em; }

.hero-badge {
  position: absolute; right: 0; top: 18px; z-index: 3;
  background: #fff; border-radius: 16px; padding: 12px 18px; text-align: center;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.hero-badge__party { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--teal); letter-spacing: .12em; }
.hero-badge__num { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--blue); line-height: 1; }

/* faixa de ícones (rodapé do material gráfico) */
.faixa {
  position: relative; z-index: 3; height: 44px;
  background-image: url('img/faixa-icones.svg');
  background-size: auto 100%; background-repeat: repeat-x;
}

/* ============================= STRIP ============================= */
.strip { background: var(--navy); color: #fff; padding: 26px 0; }
.strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.strip-item { display: flex; align-items: center; gap: 14px; }
.strip-item svg { color: var(--gold); flex-shrink: 0; }
.strip-item strong { display: block; font-size: .98rem; }
.strip-item span { font-size: .84rem; color: rgba(255,255,255,.72); }

/* ============================= SEÇÕES ============================= */
.section { padding: 78px 0; }
.section--light { background: var(--bg-soft); }
.section--tint  { background: var(--bg-tint); }

.eyebrow {
  font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.eyebrow--light { color: var(--gold); }

.h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.1;
  text-transform: uppercase; color: var(--navy); margin-bottom: 16px;
}
.h2--light { color: #fff; }
.h2 .hl { color: var(--orange); }

.p { color: var(--text-soft); margin-bottom: 14px; }
.p--center { max-width: 46rem; margin-left: auto; margin-right: auto; }
.p--light { color: rgba(255,255,255,.82); }
.p--light strong { color: #fff; }

.section-head { text-align: center; margin-bottom: 42px; }

.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: start; }
.grid-2--tight { align-items: center; }

.tick-list { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.tick-list li { position: relative; padding-left: 30px; font-weight: 600; color: var(--text); }
.tick-list li::before {
  content: ''; position: absolute; left: 0; top: 6px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* card lateral do "Sobre" */
.about-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-md); position: sticky; top: 100px;
}
.about-card__head { border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 6px; }
.about-card__head img { height: 92px; width: auto; }
.about-list { display: grid; gap: 2px; margin-bottom: 22px; }
.about-list > div { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.about-list dt { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-mute); font-weight: 800; }
.about-list dd { font-weight: 700; text-align: right; }

/* ============================= CARDS ============================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  border-top: 5px solid var(--blue);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card h3 { font-size: 1.16rem; margin-bottom: 8px; color: var(--navy); }
.card p { color: var(--text-soft); font-size: .95rem; }
.card-ico {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  margin-bottom: 16px; color: #fff;
}
.card--orange { border-top-color: var(--orange); } .card--orange .card-ico { background: var(--orange); }
.card--teal   { border-top-color: var(--teal);   } .card--teal   .card-ico { background: var(--teal); }
.card--blue   { border-top-color: var(--blue);   } .card--blue   .card-ico { background: var(--blue); }
.card--navy   { border-top-color: var(--navy);   } .card--navy   .card-ico { background: var(--navy); }

/* ============================= NÚMEROS (resultados) ============================= */
.numeros { margin-top: 54px; }
.numeros-titulo {
  text-align: center; font-weight: 800; color: var(--navy); margin-bottom: 22px;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
}
.numeros-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.numero {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 14px; text-align: center; box-shadow: var(--shadow-sm);
}
.numero strong {
  display: block; font-family: var(--font-display); font-size: 2rem; line-height: 1;
  color: var(--orange); margin-bottom: 8px;
}
.numero span { font-size: .78rem; color: var(--text-soft); font-weight: 600; display: block; }

/* ============================= COMPROMISSOS ============================= */
.card-num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  font-family: var(--font-display); font-size: 1.5rem; color: #fff; margin-bottom: 14px;
}
.card--orange .card-num { background: var(--orange); }
.card--teal   .card-num { background: var(--teal); }
.card--blue   .card-num { background: var(--blue); }
.card--navy   .card-num { background: var(--navy); }

.card-list { list-style: none; margin-top: 14px; display: grid; gap: 8px; }
.card-list li { position: relative; padding-left: 26px; font-weight: 700; color: var(--navy); font-size: .93rem; }
.card-list li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/11px no-repeat;
}

.card--cta {
  background: linear-gradient(140deg, var(--navy) 0%, var(--blue) 100%);
  border-color: transparent; border-top-color: var(--gold); color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.card--cta h3 { color: #fff; font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; }
.card--cta p { color: rgba(255,255,255,.82); }
.card--cta .btn { align-self: flex-start; margin-top: 6px; }

/* ============================= ACCORDION ============================= */
.accordion { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.acc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.acc summary {
  cursor: pointer; list-style: none; padding: 18px 52px 18px 20px; position: relative;
  font-weight: 800; color: var(--navy); display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: ''; position: absolute; right: 20px; top: 50%; width: 11px; height: 11px;
  border-right: 3px solid var(--orange); border-bottom: 3px solid var(--orange);
  transform: translateY(-70%) rotate(45deg); transition: transform .22s ease;
}
.acc[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.acc summary:hover { background: var(--bg-soft); }
.acc-tag {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800;
  color: #fff; padding: 5px 11px; border-radius: 999px;
}
.acc-tag--orange { background: var(--orange); }
.acc-tag--teal   { background: var(--teal); }
.acc-tag--blue   { background: var(--blue); }
.acc-tag--navy   { background: var(--navy); }
.acc ul { list-style: none; padding: 0 20px 20px 20px; display: grid; gap: 10px; }
.acc li { position: relative; padding-left: 22px; color: var(--text-soft); }
.acc li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

/* ============================= COMO VOTAR ============================= */
.steps { list-style: none; display: grid; gap: 12px; margin: 22px 0 16px; }
.steps li { display: flex; align-items: center; gap: 12px; color: var(--text-soft); font-weight: 600; }
.steps li span {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue); color: #fff; font-weight: 800; font-size: .9rem;
}
.steps li b { color: var(--text); }
.note { font-size: .86rem; color: var(--text-mute); }

.urn {
  background: #2B3140; border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-lg); max-width: 440px; margin: 0 auto; width: 100%;
}
.urn-screen { background: #E9EEF3; border-radius: 10px; padding: 18px; position: relative; min-height: 250px; }
.urn-screen__title { font-weight: 800; font-size: .82rem; letter-spacing: .08em; color: #2B3140; margin-bottom: 12px; }
.urn-screen__name { font-size: .86rem; color: #2B3140; margin-top: 6px; }
.urn-photo {
  position: absolute; right: 18px; bottom: 46px; width: 78px; height: 96px;
  background: #fff; border: 1px solid #C6CFD8; border-radius: 6px;
  display: grid; place-items: center; color: #9AA6B4;
}
.urn-screen__hint { margin-top: 16px; font-size: .74rem; color: #5A6577; max-width: 60%; }
.urn-keys { display: flex; gap: 10px; margin-top: 16px; }
.urn-key {
  flex: 1; text-align: center; padding: 12px 6px; border-radius: 8px;
  font-weight: 800; font-size: .74rem; letter-spacing: .04em;
}
.urn-key--white  { background: #F2F4F7; color: #2B3140; }
.urn-key--orange { background: var(--orange); color: #fff; }
.urn-key--green  { background: #16A34A; color: #fff; }

/* ============================= COLIGAÇÃO ============================= */
.coalition {
  background: linear-gradient(120deg, var(--navy) 0%, var(--blue) 100%);
  padding: 70px 0; color: #fff; position: relative; overflow: hidden;
}
.coalition::after {
  content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(15,181,201,.22);
}
.coalition-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.coalition-nums { display: grid; gap: 14px; }
.coalition-num {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: center; gap: 20px;
  backdrop-filter: blur(6px);
}
.coalition-num strong { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.coalition-num--alt strong { color: var(--teal); }
.coalition-num--federal strong { color: var(--orange); }
.coalition-num span { font-size: .9rem; color: rgba(255,255,255,.86); font-weight: 600; }

/* ============================= APOIE ============================= */
.support-ways { display: grid; gap: 12px; margin-top: 24px; }
.way {
  display: flex; align-items: center; gap: 14px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.way:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: var(--teal); }
.way svg { color: var(--teal); flex-shrink: 0; }
.way strong { display: block; font-size: .98rem; }
.way span { font-size: .85rem; color: var(--text-mute); }

.form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-md);
}
.form-title { font-size: 1.25rem; margin-bottom: 18px; color: var(--navy); }
.field { display: block; margin-bottom: 14px; }
.field > span { display: block; font-size: .82rem; font-weight: 800; color: var(--text-soft); margin-bottom: 6px; }
.field input[type=text], .field input[type=tel], .field select {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line-strong); border-radius: 10px;
  background: #fff; color: var(--text); transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(15,181,201,.15);
}
.field input[aria-invalid="true"] { border-color: #EF4444; }
.field--check { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; }
.field--check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--orange); flex-shrink: 0; }
.field--check span { font-size: .84rem; color: var(--text-soft); font-weight: 500; }
.field--check a { color: var(--blue); text-decoration: underline; }
.form-note { margin-top: 12px; font-size: .82rem; color: var(--text-mute); text-align: center; }
.form-note.is-error { color: #DC2626; font-weight: 700; }
.form-note.is-ok { color: var(--whats-dark); font-weight: 700; }

/* ============================= REDES ============================= */
.social { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.social-item {
  display: grid; place-items: center; gap: 10px; padding: 26px 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-weight: 700; font-size: .9rem; color: var(--text-soft);
  transition: transform .18s, box-shadow .18s, color .18s;
}
.social-item svg { color: var(--blue); }
.social-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--blue); }
.social-item[hidden] { display: none; }

/* ============================= FOOTER ============================= */
.footer { background: var(--navy); color: #fff; }
.footer .faixa { margin-bottom: 40px; }
.footer-inner { display: grid; grid-template-columns: 1.1fr .8fr 1.3fr; gap: 34px; padding-bottom: 40px; }
.footer-brand img { height: 104px; width: auto; background: #fff; border-radius: 14px; padding: 10px 14px; }
.footer-brand p { margin-top: 14px; color: rgba(255,255,255,.72); font-size: .9rem; max-width: 22rem; }
.footer-links { display: grid; gap: 10px; align-content: start; }
.footer-links a { color: rgba(255,255,255,.78); font-size: .92rem; font-weight: 600; }
.footer-links a:hover { color: var(--gold); }
.footer-legal p { font-size: .82rem; color: rgba(255,255,255,.62); margin-bottom: 8px; }
.footer-legal strong { color: var(--gold); }
.footer-copy { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); }

/* ============================= WHATSAPP FLUTUANTE ============================= */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whats); color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.42);
  transition: transform .2s ease, background .2s ease;
}
.wa-float:hover { transform: scale(1.08); background: var(--whats-dark); }

/* ============================= REVEAL ============================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================= RESPONSIVO ============================= */
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .numeros-grid { grid-template-columns: repeat(3, 1fr); }
  .social { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .coalition-inner { grid-template-columns: 1fr; }
  .about-card { position: static; }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height .28s ease;
  }
  .nav-links.is-open { max-height: 340px; }
  .nav-links a { padding: 15px 22px; border-bottom: 1px solid var(--line); border-left: 3px solid transparent; }
  .nav-links a:hover, .nav-links a.is-active { border-bottom-color: var(--line); border-left-color: var(--orange); }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 24px; }
  .hero-media { min-height: 0; margin-bottom: -2px; }
  .hero-photo { max-width: 360px; }
  .hero-badge { top: 0; right: 4px; padding: 8px 14px; }
  .hero-shape--teal { left: -22%; right: -22%; height: 54%; }
  .hero-shape--orange { left: -22%; right: -22%; height: 20%; }
  .grid-2 { grid-template-columns: 1fr; gap: 34px; }
  .strip-inner { grid-template-columns: 1fr; gap: 14px; }
  .section { padding: 58px 0; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .social { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .urn-digits span { width: 48px; height: 58px; font-size: 2rem; }
  .hero-cta .btn { flex: 1 1 100%; }
  .nav-logo img { height: 46px; }
  .hero-count__label { margin-left: 0; }
}
