/* Prêmio ABCIC 2026 — estilos públicos (nav, footer, votação) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --verde: #1a3d2e;
  --verde-medio: #2a5c45;
  --verde-claro: #d4e8dc;
  --dourado: #b8922a;
  --dourado-c: #f0d080;
  --preto: #111111;
  --cinza-esc: #3a3a3a;
  --cinza-med: #6b6b6b;
  --cinza-brd: #e0e0dc;
  --cinza-bg: #f5f4f0;
  --branco: #ffffff;
  --creme: #faf9f5;
  --erro: #b42318;
  --erro-bg: #fef3f2;
  --ok-bg: #ecfdf3;
  --ok: #067647;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--creme);
  color: var(--preto);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

a { color: inherit; }

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cinza-brd);
  transition: padding 0.3s ease;
}

.nav-logo img { height: 34px; display: block; }

.logo-premio { display: block; width: auto; object-fit: contain; }
.logo-premio--claro { height: auto; max-height: 120px; max-width: min(320px, 72vw); }
.logo-premio--escuro { height: auto; max-height: 120px; max-width: min(320px, 72vw); }
.logo-premio--nav { max-height: 40px; max-width: 140px; }
.logo-premio--footer { max-height: 130px; max-width: 120px; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--cinza-esc);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--verde); }

.nav-cta {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-medio) 100%) !important;
  color: var(--branco) !important;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--verde-medio);
  box-shadow: 0 10px 20px rgba(26, 61, 46, 0.18);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--verde-medio) 0%, #2f6a4f 100%) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--cinza-brd);
  background: var(--branco);
  color: var(--verde);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
}

.mobile-menu.open { display: block; }

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 360px);
  background: #fff;
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.18);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-title {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde);
  font-weight: 700;
}

.mobile-menu-close {
  border: 1px solid var(--cinza-brd);
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
}

.mobile-menu-links {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #26333f;
  font-size: 1rem;
  padding: 0.65rem 0.7rem;
  border-radius: 8px;
  min-height: 44px;
}

.mobile-menu-links a:hover { background: #f4f7fa; }

.mobile-menu .nav-cta {
  width: 100%;
  justify-content: center;
  display: flex !important;
  margin-top: 0.25rem;
}

/* BOTÕES */
.btn-p {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-medio) 100%);
  color: var(--branco);
  padding: 0.85rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--verde-medio);
  border-radius: 999px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(26, 61, 46, 0.18);
}

.btn-p:hover {
  background: linear-gradient(135deg, var(--verde-medio) 0%, #2f6a4f 100%);
  transform: translateY(-1px);
}

.btn-s {
  background: transparent;
  color: var(--preto);
  padding: 0.85rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(0, 0, 0, 0.22);
  border-radius: 999px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
}

.btn-s:hover {
  border-color: var(--verde);
  color: var(--verde);
  background: rgba(255, 255, 255, 0.85);
}

.btn-s.light {
  color: var(--branco);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-s.light:hover {
  border-color: var(--branco);
  color: var(--branco);
  background: rgba(255, 255, 255, 0.12);
}

/* NAV — página de votação (só logo, sem fixar) */
.page-votacao nav.nav-votacao {
  position: static;
  justify-content: center;
  padding: 1.25rem 5%;
  backdrop-filter: none;
}

.page-votacao .vot-hero {
  margin-top: 0;
}

/* HERO VOTAÇÃO */
.vot-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, var(--verde) 0%, #1f523c 55%, var(--verde-medio) 100%);
  color: var(--branco);
  padding: 4.5rem 5% 3.5rem;
  position: relative;
  overflow: hidden;
}

.vot-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px;
}

.vot-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.vot-hero-logo {
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.vot-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado-c);
  margin-bottom: 1rem;
}

.vot-hero-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--dourado-c);
}

.vot-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.vot-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin-bottom: 1.4rem;
}

.vot-hero-rules {
  display: grid;
  gap: 0.65rem;
}

.vot-rule {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
}

.vot-rule-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(240, 208, 128, 0.18);
  color: var(--dourado-c);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.vot-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.vot-hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 1.4rem;
  backdrop-filter: blur(6px);
}

.vot-hero-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.vot-hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.vot-hero-card li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  padding-left: 1rem;
  position: relative;
}

.vot-hero-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--dourado-c);
}

/* CONTEÚDO */
.vot-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 5% 4.5rem;
}

.vot-alert {
  display: none;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.vot-alert.show { display: block; }

.vot-alert.ok {
  background: var(--ok-bg);
  border-color: #abefc6;
  color: var(--ok);
}

.vot-alert.err {
  background: var(--erro-bg);
  border-color: #fecdca;
  color: var(--erro);
}

.vot-loading {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--cinza-med);
}

.vot-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid var(--cinza-brd);
  border-top-color: var(--verde);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

.vot-categoria,
.vot-lista {
  margin-bottom: 3.5rem;
}

.vot-categoria-head,
.vot-lista-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--verde-claro);
}

.vot-categoria h2,
.vot-lista-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--verde);
  font-weight: 700;
}

.vot-categoria-count {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cinza-med);
  font-weight: 600;
}

.vot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.obra-card {
  background: var(--branco);
  border: 1px solid var(--cinza-brd);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 22px rgba(13, 28, 44, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.obra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(13, 28, 44, 0.1);
}

.obra-card-media {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #e8f0ea, #d4e8dc);
}

.obra-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.obra-card-media-btn {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  cursor: zoom-in;
  background: transparent;
}

.obra-card-media-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.obra-card-zoom {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

.obra-card-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--verde-medio);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.obra-card-body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.obra-badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--verde-claro);
  color: var(--verde);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.obra-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--preto);
}

.obra-card.obra-votada {
  border-color: var(--dourado);
  box-shadow: 0 10px 28px rgba(184, 146, 42, 0.18);
}

.obra-voted-banner {
  background: var(--ok-bg);
  border: 1px solid #abefc6;
  color: var(--ok);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.obra-info-line {
  font-size: 0.86rem;
  color: var(--cinza-med);
  line-height: 1.55;
  margin-bottom: 0.35rem;
}

.obra-info-line strong {
  color: var(--cinza-esc);
  font-weight: 600;
}

.obra-info-local {
  margin-top: 0.15rem;
}

.obra-info-desc {
  font-size: 0.86rem;
  color: var(--cinza-med);
  line-height: 1.6;
  margin-top: 0.45rem;
}

.btn-votar:disabled {
  background: var(--cinza-brd);
  color: var(--cinza-med);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.obra-meta {
  font-size: 0.86rem;
  color: var(--cinza-med);
  line-height: 1.55;
  flex: 1;
}

.obra-meta strong {
  color: var(--cinza-esc);
  font-weight: 600;
}

.obra-card-foot {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--cinza-brd);
}

.btn-votar {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-medio) 100%);
  color: var(--branco);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-votar:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(26, 61, 46, 0.22);
}

.vot-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--branco);
  border: 1px dashed var(--cinza-brd);
  border-radius: 12px;
  color: var(--cinza-med);
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open { display: flex; }

.modal-box {
  width: min(520px, 96vw);
  background: var(--branco);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  max-height: 92vh;
  overflow-y: auto;
}

.modal-head {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-medio) 100%);
  color: var(--branco);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.modal-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.modal-close {
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--branco);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
}

.modal-body { padding: 1.25rem; }

.modal-obra-info {
  background: var(--cinza-bg);
  border: 1px solid var(--cinza-brd);
  border-radius: 10px;
  padding: 0.9rem;
  margin-bottom: 1rem;
}

.modal-obra-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.modal-note {
  background: #fff8e8;
  border: 1px solid #f0dfa8;
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  font-size: 0.86rem;
  color: #6b4f00;
  margin-bottom: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cinza-esc);
  margin-bottom: 0.35rem;
}

.field input {
  width: 100%;
  border: 1px solid var(--cinza-brd);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--preto);
  background: var(--branco);
}

.field input:focus {
  outline: none;
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(26, 61, 46, 0.12);
}

.field input.invalid { border-color: var(--erro); }

.modal-actions {
  display: flex;
  gap: 0.65rem;
  justify-content: flex-end;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.consulta-result {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 10px;
  background: var(--ok-bg);
  border: 1px solid #abefc6;
  color: var(--ok);
  font-size: 0.9rem;
}

.consulta-result.show { display: block; }

.consulta-result.err {
  background: var(--erro-bg);
  border-color: #fecdca;
  color: var(--erro);
}

.modal-box-wide {
  width: min(920px, 96vw);
}

.galeria-body { padding-top: 0.5rem; }

.galeria-stage {
  position: relative;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  min-height: min(58vh, 520px);
  display: grid;
  place-items: center;
}

.galeria-stage img {
  max-width: 100%;
  max-height: min(58vh, 520px);
  object-fit: contain;
  display: block;
}

.galeria-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--verde);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.galeria-prev { left: 0.65rem; }
.galeria-next { right: 0.65rem; }

.galeria-contador {
  text-align: center;
  font-size: 0.82rem;
  color: var(--cinza-med);
  margin: 0.75rem 0;
}

.galeria-thumbs {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.galeria-thumb {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: none;
  cursor: pointer;
  flex: 0 0 auto;
}

.galeria-thumb.active { border-color: var(--verde); }

.galeria-thumb img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* PÁGINA FIM */
.vot-fim-wrap {
  min-height: calc(100vh - 72px);
  margin-top: 72px;
  display: grid;
  place-items: center;
  padding: 3rem 5%;
}

.vot-fim-card {
  width: min(720px, 100%);
  background: var(--branco);
  border: 1px solid var(--cinza-brd);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 16px 40px rgba(13, 28, 44, 0.08);
}

.vot-fim-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--verde-claro);
  color: var(--verde);
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  font-weight: 700;
}

.vot-fim-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--verde);
  margin-bottom: 0.75rem;
}

.vot-fim-card p {
  color: var(--cinza-med);
  margin-bottom: 1.5rem;
}

.vot-fim-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--preto);
  padding: 4.5rem 5%;
}

.ft-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

footer .ft-logo-premio,
footer .logo-premio--footer {
  display: block;
  width: auto;
  height: auto;
  max-height: 130px;
  max-width: 120px;
  margin-bottom: 1.25rem;
}

.ft-desc {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
}

.ft-social { display: flex; gap: 0.6rem; }

.ft-soc {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 700;
}

.ft-soc:hover {
  border-color: var(--verde-claro);
  color: var(--verde-claro);
}

.ft-ct {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde-claro);
  margin-bottom: 1rem;
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ft-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.ft-links a:hover { color: rgba(255, 255, 255, 0.9); }

.ft-btm {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.ft-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.ft-copy a { color: inherit; text-decoration: none; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .vot-hero-inner { grid-template-columns: 1fr; }
  .vot-grid { grid-template-columns: 1fr; }
  .ft-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ft-btm { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .ft-inner { grid-template-columns: 1fr; }
  .vot-hero { padding-top: 3.5rem; }
}
