/* ============================================================
   Casa dos Patudos — Museu de Alpiarça
   Landing de campanha · Novas 7 Maravilhas de Portugal 2026
   main.css — mobile-first
   ============================================================ */

/* Fallback com métricas ajustadas à Lato — evita salto de layout (CLS) ao trocar de fonte */
@font-face{
  font-family:"Lato Fallback";
  src:local("Arial");
  ascent-override:101.03%;
  descent-override:21.8%;
  line-gap-override:0%;
  size-adjust:97.38%;
}

:root{
  /* Paleta da marca */
  --green:        #1A5C2E;
  --green-deep:   #123F20;
  --green-tint:   #EEF3EC;
  --green-line:   #C9D9C7;
  --gold:         #B8860B;
  --gold-soft:    #E9D8A6;
  --white:        #FFFFFF;
  --paper:        #FBFAF6;
  --ink:          #444444;
  --ink-soft:     #6A6A66;
  --red:          #C0392B;
  --red-deep:     #9C2A1E;

  /* Tipografia */
  --serif: "Lato", "Lato Fallback", "Helvetica Neue", Arial, sans-serif;
  --sans:  "Lato", "Lato Fallback", "Helvetica Neue", Arial, sans-serif;

  /* Métrica */
  --header-h: 60px;
  --maxw: 1180px;
  --gutter: 20px;
  --radius: 4px;
}

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

html{ scroll-behavior:smooth; scroll-padding-top: calc(var(--header-h) + 8px); }

body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  font-size:17px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{ display:block; max-width:100%; height:auto; }
a{ color:var(--green); }

/* ---------- Layout helpers ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 var(--gutter); }
.section{ padding: 56px 0; }
.section--tight{ padding: 40px 0; }

.eyebrow{
  font-family:var(--sans);
  font-weight:700;
  font-size:.74rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  margin:0 0 14px;
  display:flex; align-items:center; gap:12px;
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--gold); display:inline-block; }

h1,h2,h3{ font-family:var(--serif); color:var(--green-deep); font-weight:900; line-height:1.08; }
h2{ font-size: clamp(1.7rem, 4.6vw, 2.6rem); margin:0 0 .45em; letter-spacing:-.015em; font-weight:900; }
h3{ font-size:1.3rem; margin:0 0 .3em; font-weight:900; color:var(--green-deep); letter-spacing:-.01em; }
p{ margin:0 0 1.1em; }
.lead{ font-size:1.12rem; color:var(--ink); }
.section-intro{ max-width:62ch; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:var(--header-h);
  background:rgba(255,255,255,.96);
  backdrop-filter:saturate(1.1) blur(6px);
  border-bottom:1px solid #E7E5DC;
  display:flex; align-items:center;
}
.site-header .wrap{ display:flex; align-items:center; gap:14px; justify-content:space-between; }
.brand-logos{ display:flex; align-items:center; gap:14px; min-width:0; }
.brand-logos img{ height:38px; width:auto; }
.brand-divider{ width:1px; height:30px; background:#DEDCD2; }

.main-nav{ display:none; }

.header-actions{ display:flex; align-items:center; gap:10px; }
.vote-pill{
  display:inline-flex; align-items:center; gap:7px;
  background:var(--red); color:#fff; text-decoration:none;
  font-weight:700; font-size:.92rem; letter-spacing:.01em;
  padding:9px 13px; border-radius:100px;
  box-shadow:0 2px 10px rgba(192,57,43,.28);
  white-space:nowrap;
}
.vote-pill:hover{ background:var(--red-deep); }
.vote-pill .pill-label{ display:none; }

.nav-toggle{
  display:inline-flex; flex-direction:column; justify-content:center; gap:5px;
  width:42px; height:42px; border:1px solid #DDDBD1; background:#fff; border-radius:var(--radius);
  cursor:pointer; padding:0 9px;
}
.nav-toggle span{ height:2px; background:var(--green-deep); border-radius:2px; transition:.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* Mobile dropdown nav */
.mobile-nav{
  position:fixed; top:var(--header-h); left:0; right:0; z-index:99;
  background:#fff; border-bottom:1px solid #E7E5DC;
  transform:translateY(-120%); transition:transform .3s ease; box-shadow:0 18px 40px rgba(0,0,0,.10);
}
.mobile-nav.open{ transform:translateY(0); }
.mobile-nav a{
  display:block; padding:15px 20px; color:var(--green-deep); text-decoration:none;
  font-weight:600; border-top:1px solid #F0EEE6;
}
.mobile-nav a:first-child{ border-top:none; }
.mobile-nav a:hover{ background:var(--green-tint); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; margin-top:var(--header-h);
  min-height: calc(100svh - var(--header-h));
  display:flex; align-items:flex-end;
  background:#0c2916;
  overflow:hidden;
}
.hero__img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position: 50% 48%;
}
.hero__scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(8,28,16,.94) 0%, rgba(8,28,16,.74) 26%, rgba(8,28,16,.30) 52%, rgba(8,28,16,0) 76%);
}
.hero__inner{ position:relative; z-index:2; padding-top:46px; padding-bottom:40px; width:100%; }
.hero__badge{
  display:inline-flex; align-items:center; gap:9px;
  background:rgba(255,255,255,.12); border:1px solid rgba(233,216,166,.45);
  color:#F4ECD6; backdrop-filter:blur(4px); text-decoration:none;
  font-size:.74rem; font-weight:700; letter-spacing:.13em; text-transform:uppercase;
  padding:7px 14px; border-radius:100px; margin-bottom:22px; transition:background .2s, border-color .2s;
  max-width:calc(100% - 96px);
}
@media (min-width:560px){ .hero__badge{ max-width:none; } }
a.hero__badge:hover{ background:rgba(255,255,255,.2); border-color:var(--gold-soft); }
.hero__name{
  color:#fff; font-family:var(--serif); font-weight:900;
  font-size: clamp(2.3rem, 8.4vw, 4.4rem); line-height:1; letter-spacing:-.02em;
  margin:0 0 .12em; max-width:14ch; text-shadow:0 2px 28px rgba(0,0,0,.42);
}
.hero__museu{
  display:block; font-family:var(--sans); font-weight:600; color:var(--gold-soft);
  font-size:clamp(.72rem,2.1vw,.92rem); letter-spacing:.26em; text-transform:uppercase;
  margin-top:14px; text-shadow:none;
}
.hero__slogan{
  color:#fff; font-family:var(--sans); font-weight:700; text-transform:uppercase;
  font-size:clamp(.92rem,2.8vw,1.4rem); letter-spacing:.06em; line-height:1.3;
  margin:18px 0 0; text-shadow:0 1px 14px rgba(0,0,0,.4);
}
.hero h1{
  color:#fff; font-size: clamp(2.6rem, 9.5vw, 5.2rem); font-weight:600;
  line-height:1.02; letter-spacing:-.01em; margin:0 0 .34em; max-width:15ch;
  text-shadow:0 2px 28px rgba(0,0,0,.4);
}
.hero .lead{ color:#EAE7DD; font-size:1.06rem; max-width:54ch; margin-bottom:26px; }

.hero__cta{ display:flex; flex-direction:column; gap:12px; align-items:flex-start; }
.cta-row{ display:flex; flex-wrap:wrap; gap:12px; align-items:center; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--sans); font-weight:700; font-size:1.02rem;
  padding:15px 24px; border-radius:100px; text-decoration:none; cursor:pointer;
  border:2px solid transparent; transition:transform .12s ease, background .2s ease, box-shadow .2s;
  min-height:52px; line-height:1.1;
}
.btn:active{ transform:translateY(1px); }
.btn--vote{
  background:var(--red); color:#fff; font-size:1.08rem;
  box-shadow:0 8px 24px rgba(192,57,43,.34);
}
.btn--vote:hover{ background:var(--red-deep); }
.btn--ghost{
  background:rgba(255,255,255,.10); color:#fff; border-color:rgba(255,255,255,.55);
  backdrop-filter:blur(3px);
}
.btn--ghost:hover{ background:rgba(255,255,255,.20); }
.btn--green{ background:var(--green); color:#fff; }
.btn--green:hover{ background:var(--green-deep); }
.btn--gold-outline{ background:transparent; color:var(--green-deep); border-color:var(--gold); }
.btn--gold-outline:hover{ background:var(--gold); color:#fff; }
.btn--block{ width:100%; }

.legal-note{ font-size:.78rem; line-height:1.5; color:rgba(255,255,255,.78); max-width:46ch; margin:4px 0 0; }
.legal-note--dark{ color:var(--ink-soft); }

/* ============================================================
   GRITO DE GUERRA
   ============================================================ */
.warcry{
  background:var(--green-deep); color:#fff; text-align:center;
  padding:54px var(--gutter); position:relative; overflow:hidden;
}
.warcry::before,.warcry::after{
  content:""; position:absolute; width:140%; height:46px; left:-20%;
  background-image:repeating-linear-gradient(-45deg,#fff 0 14px, transparent 14px 28px);
  opacity:.07;
}
.warcry::before{ top:0; }
.warcry::after{ bottom:0; }
.warcry__chant{
  font-family:var(--serif); font-weight:900; color:#fff;
  font-size:clamp(2rem,9vw,5rem); line-height:1; letter-spacing:.01em; margin:0;
}
.warcry__chant span{ color:var(--gold-soft); }
.warcry__sub{
  margin:16px 0 0; color:#E9D8A6; font-weight:600; letter-spacing:.16em;
  text-transform:uppercase; font-size:clamp(.8rem,2.6vw,1.05rem);
}

/* ============================================================
   CURIOSIDADE PATUDOS (nome)
   ============================================================ */
.namebox{ background:var(--white); }
.namebox .wrap{ display:flex; flex-direction:column; gap:18px; align-items:flex-start; }
.namebox__icon{
  font-size:2.2rem; line-height:1; width:64px; height:64px; flex:none;
  display:flex; align-items:center; justify-content:center;
  background:var(--green-tint); border-radius:50%; border:1px solid var(--green-line);
}
.namebox h2{ font-size:clamp(1.4rem,5vw,2rem); }
.namebox p{ max-width:60ch; margin:0; }

/* ============================================================
   GENERIC SECTION VARIANTS
   ============================================================ */
.bg-white{ background:var(--white); }
.bg-paper{ background:var(--paper); }
.bg-tint{ background:var(--green-tint); }

/* Split media + text */
.split{ display:flex; flex-direction:column; gap:26px; }
.split__media{ position:relative; }
.split__media img{ width:100%; border-radius:var(--radius); aspect-ratio:4/3; object-fit:cover; }
.media-cap{
  font-size:.78rem; color:var(--ink-soft); margin-top:8px; font-style:italic;
}

/* ============================================================
   CARDS — curiosidades
   ============================================================ */
.card-grid{ display:grid; grid-template-columns:1fr; gap:16px; margin-top:32px; }
.curio{
  background:var(--white); border:1px solid #ECEAE0; border-radius:var(--radius);
  padding:22px 20px; transition:border-color .2s, transform .15s, box-shadow .2s;
}
.curio:hover{ border-color:var(--green-line); transform:translateY(-2px); box-shadow:0 10px 26px rgba(20,63,32,.07); }
.curio__icon{ font-size:1.6rem; line-height:1; margin-bottom:12px; }
.curio h3{ font-size:1.05rem; margin-bottom:.3em; }
.curio p{ margin:0; font-size:.95rem; color:var(--ink-soft); line-height:1.6; }

/* ============================================================
   FACTOS (arquitectura)
   ============================================================ */
.facts{ list-style:none; margin:28px 0 0; padding:0; display:grid; grid-template-columns:1fr; gap:0; }
.facts li{
  display:flex; gap:14px; align-items:baseline;
  padding:15px 0; border-top:1px solid var(--green-line);
}
.facts li:last-child{ border-bottom:1px solid var(--green-line); }
.facts .fact-key{
  font-family:var(--serif); color:var(--gold); font-weight:800; font-size:1.15rem;
  flex:none; min-width:54px;
}
.facts .fact-val{ color:var(--ink); font-size:.98rem; }
.facts .fact-val strong{ color:var(--green-deep); }

/* ============================================================
   OBRAS EMBLEMÁTICAS
   ============================================================ */
.works{ display:grid; grid-template-columns:1fr; gap:24px; margin-top:34px; }
.work{
  background:var(--white); border:1px solid #ECEAE0; border-radius:var(--radius); overflow:hidden;
  display:flex; flex-direction:column;
}
.work__media{
  position:relative; aspect-ratio:4/3; background:#20301f;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.work__media img{ width:100%; height:100%; object-fit:cover; }
/* Jarra Beethoven — peça vertical, mostrada por inteiro (mantém grelha alinhada) */
.work__media--tall{
  background:radial-gradient(120% 100% at 50% 16%, #2c4430 0%, #16271a 72%);
}
.work__media--tall img{ object-fit:contain; padding:12px; }
.eyebrow--center{ justify-content:center; color:var(--gold); }
.eyebrow--center::before{ background:var(--gold); }
/* placeholder for not-yet-supplied artwork photos */
.imgslot{
  position:absolute; inset:0;
  background:
    repeating-linear-gradient(-45deg, #243a26 0 11px, #1f3221 11px 22px);
  color:#cfe0cf; display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:22px; gap:8px;
}
.imgslot__tag{
  font-family:"SFMono-Regular",ui-monospace,Menlo,Consolas,monospace;
  font-size:.72rem; letter-spacing:.02em; color:#9fc6a6;
  background:rgba(0,0,0,.28); padding:5px 10px; border-radius:3px; word-break:break-all;
}
.imgslot__hint{ font-size:.8rem; color:#bcd3bd; max-width:30ch; }
.imgslot__icon{ font-size:1.8rem; opacity:.85; }

.work__body{ padding:22px 22px 24px; display:flex; flex-direction:column; gap:0; }
.work__kicker{ font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); font-weight:700; margin-bottom:8px; }
.work h3{ font-size:1.55rem; margin-bottom:.45em; }
.work p{ font-size:.96rem; color:var(--ink); }
.work blockquote{
  margin:6px 0 16px; padding:14px 18px; border-left:3px solid var(--gold);
  background:var(--green-tint); color:var(--green-deep); font-style:italic; font-size:1.05rem; line-height:1.5; border-radius:0 var(--radius) var(--radius) 0;
}
.work blockquote cite{
  display:block; margin-top:8px; font-style:normal; font-weight:700; font-size:.82rem;
  letter-spacing:.02em; color:var(--gold);
}
.ficha{
  margin-top:auto; border-top:1px dashed #D8D6CB; padding-top:14px;
  font-size:.82rem; color:var(--ink-soft); line-height:1.55;
}
.ficha strong{ color:var(--green-deep); }

/* ============================================================
   GALLERY BAND
   ============================================================ */
.gallery-band{ display:grid; grid-template-columns:1fr; gap:14px; }
.gallery-band figure{ margin:0; }
.gallery-band img{ width:100%; aspect-ratio:3/2; object-fit:cover; border-radius:var(--radius); }
.gallery-band figcaption{ font-size:.82rem; color:var(--ink-soft); margin-top:8px; font-style:italic; }
@media (min-width:760px){ .gallery-band{ grid-template-columns:1fr 1fr; gap:22px; } }

/* ============================================================
   SALAS (rooms) — imagem + descrição alternadas
   ============================================================ */
.rooms{ display:flex; flex-direction:column; gap:40px; margin-top:36px; }
.room{ display:flex; flex-direction:column; gap:20px; }
.room__media img{ width:100%; border-radius:var(--radius); aspect-ratio:3/2; object-fit:cover; }
.room__title{ margin:0 0 .4em; }
.room__text{ color:var(--ink); font-size:1rem; line-height:1.7; margin:0 0 1em; }
.room__text:last-child{ margin-bottom:0; }
@media (min-width:880px){
  .room{ flex-direction:row; align-items:center; gap:48px; }
  .room__media{ flex:1.05; }
  .room__text-wrap{ flex:1; }
  .room--reverse{ flex-direction:row-reverse; }
}

/* ============================================================
   APELO NACIONAL — banda editorial (imagem + painel)
   ============================================================ */
.appeal{ display:grid; grid-template-columns:1fr; background:var(--green-deep); color:#fff; }
.appeal__media{ position:relative; min-height:300px; }
.appeal__media img{ width:100%; height:100%; object-fit:cover; object-position:50% 30%; position:absolute; inset:0; }
.appeal__media::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(18,63,32,0) 50%, rgba(18,63,32,.9) 100%);
}
.appeal__panel{ display:flex; align-items:center; padding:48px var(--gutter); }
.appeal__inner{ max-width:600px; }
.appeal__panel h2{ color:#fff; max-width:18ch; }
.appeal__panel p{ color:#E8E6DC; font-size:1.06rem; line-height:1.7; margin:0 0 1.1em; }
.appeal__pull{
  color:var(--gold-soft) !important; font-size:clamp(1.25rem,3vw,1.6rem); font-weight:800;
  line-height:1.3; margin:18px 0 0 !important; max-width:26ch; letter-spacing:-.005em;
}
@media (min-width:880px){
  .appeal{ grid-template-columns:1.05fr .95fr; min-height:560px; }
  .appeal__media{ min-height:auto; order:2; }
  .appeal__panel{ order:1; }
  .appeal__media::after{ background:linear-gradient(to left, rgba(18,63,32,0) 70%, rgba(18,63,32,.6) 100%); }
  .appeal__panel{ padding:72px clamp(40px,5vw,80px); }
}

/* ============================================================
   CTA BLOCK (intermédio + final)
   ============================================================ */
.votecta{ background:var(--green); color:#fff; }
.votecta--final{ background:var(--green-deep); }
.votecta .wrap{ display:flex; flex-direction:column; gap:22px; align-items:flex-start; }
.votecta .eyebrow{ color:var(--gold-soft); }
.votecta .eyebrow::before{ background:var(--gold-soft); }
.votecta h2{ color:#fff; font-size:clamp(1.5rem,5vw,2.2rem); }
.vote-options{ display:flex; flex-direction:column; gap:14px; width:100%; }
.vote-opt{
  display:flex; gap:14px; align-items:center;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius); padding:16px 18px;
}
.vote-opt__num{
  font-family:var(--serif); font-weight:800; color:var(--gold-soft); font-size:1.3rem; flex:none;
}
.vote-opt__txt{ font-size:.96rem; color:#EDEBE2; }
.vote-opt__txt b{ color:#fff; font-size:1.18rem; display:block; font-family:var(--serif); letter-spacing:.02em; }
.vote-opt__txt a{ color:#fff; }

.bignum{
  font-family:var(--serif); font-weight:900; color:#fff;
  font-size:clamp(2rem,9vw,3.4rem); letter-spacing:.02em; line-height:1; margin:0;
  text-decoration:none; display:inline-block;
}
.bignum:hover{ color:var(--gold-soft); }

.qr-slot{
  width:120px; height:120px; flex:none; background:#fff; border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center; text-align:center; padding:10px;
  color:#8a8a84; font-family:ui-monospace,monospace; font-size:.62rem; line-height:1.3;
  border:1px solid #d9d7cd;
}

/* ============================================================
   VISITAR
   ============================================================ */
.visit{ display:flex; flex-direction:column; gap:28px; }
.visit__info{ display:flex; flex-direction:column; gap:0; }
.info-list{ list-style:none; margin:18px 0 0; padding:0; }
.info-list li{ display:flex; gap:12px; padding:12px 0; border-top:1px solid #ECEAE0; align-items:flex-start; }
.info-list li:first-child{ border-top:none; }
.info-list .ico{ color:var(--gold); flex:none; font-size:1.05rem; width:22px; text-align:center; }
.info-list a{ color:var(--green); text-decoration:none; word-break:break-word; }
.info-list a:hover{ text-decoration:underline; }
.info-list .muted{ color:var(--ink-soft); font-size:.92rem; }
.map-embed{ width:100%; aspect-ratio:16/10; border:0; border-radius:var(--radius); filter:saturate(.95); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background:#10130F; color:#C7CCC3; padding:48px 0 28px; font-size:.92rem; }
.site-footer a{ color:#D8DED0; }
.footer-grid{ display:flex; flex-direction:column; gap:30px; }
.footer-brand img{ height:54px; width:auto; margin-bottom:14px; }
.footer-brand .muni{ color:#9AA294; font-size:.85rem; }
.footer-col h4{ font-family:var(--sans); font-size:.74rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-soft); margin:0 0 12px; font-weight:700; }
.footer-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px; }
.footer-col a{ text-decoration:none; color:#C7CCC3; }
.footer-col a:hover{ color:#fff; }
.footer-vote{ font-family:var(--serif); font-weight:800; color:#fff; font-size:1.4rem; text-decoration:none; }
.footer-legal{
  margin-top:30px; padding-top:22px; border-top:1px solid #2A2E25;
  display:flex; flex-direction:column; gap:14px; color:#8B917F; font-size:.78rem; line-height:1.6;
}
.footer-legal .links{ display:flex; flex-wrap:wrap; gap:8px 18px; }
.footer-legal .links a{ color:#A9AF9D; text-decoration:none; }
.footer-legal .links a:hover{ color:#fff; }

/* ============================================================
   RESPONSIVE — tablet / desktop
   ============================================================ */
@media (min-width:560px){
  .vote-pill .pill-label{ display:inline; }
  .card-grid{ grid-template-columns:1fr 1fr; }
  .works{ grid-template-columns:1fr 1fr; }
  .qr-row{ display:flex; gap:20px; align-items:center; }
}

@media (min-width:880px){
  :root{ --header-h:80px; }
  body{ font-size:18px; }
  .section{ padding:84px 0; }
  .section--tight{ padding:60px 0; }
  .main-nav{ display:flex; align-items:center; gap:30px; }
  .main-nav a{
    text-decoration:none; color:var(--green-deep); font-weight:600; font-size:.96rem;
    position:relative; padding:6px 0;
  }
  .main-nav a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--gold); transition:width .25s; }
  .main-nav a:hover::after{ width:100%; }
  .nav-toggle{ display:none; }
  .brand-logos img{ height:50px; }

  .namebox .wrap{ flex-direction:row; align-items:center; gap:30px; }
  .namebox__icon{ width:84px; height:84px; font-size:2.8rem; }

  .split{ flex-direction:row; align-items:center; gap:48px; }
  .split__text{ flex:1; }
  .split__media{ flex:1; }
  .split--reverse{ flex-direction:row-reverse; }

  .card-grid--6{ grid-template-columns:repeat(3,1fr); }
  .works{ grid-template-columns:repeat(3,1fr); }

  .facts{ grid-template-columns:1fr 1fr; column-gap:40px; }
  .facts li{ }

  .votecta .wrap{ }
  .vote-options{ flex-direction:row; }
  .vote-opt{ flex:1; }

  .footer-grid{ flex-direction:row; justify-content:space-between; }
  .footer-brand{ max-width:300px; }
  .footer-cols{ display:flex; gap:60px; }

  .visit{ flex-direction:row; }
  .visit__info{ flex:1; }
  .visit__map{ flex:1.2; }
}

@media (min-width:880px){
  .hero__inner{ padding-bottom:64px; }
  .hero .lead{ font-size:1.18rem; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; }
}

/* ============================================================
   REVISÃO — tipografia sóbria, selo 7 Maravilhas, sem emojis
   ============================================================ */
.ico-svg{ width:1.05em; height:1.05em; flex:none; display:inline-block; vertical-align:-.14em; }

/* Hero: selo + slogan */
.hero__sub{
  color:var(--gold-soft); font-weight:700; text-transform:uppercase;
  letter-spacing:.16em; font-size:clamp(.78rem,2.3vw,1rem); margin:8px 0 22px;
}
.hero__stamp{
  position:absolute; top:14px; right:12px; z-index:3; width:80px;
  filter:drop-shadow(0 8px 20px rgba(0,0,0,.32));
}
.hero__stamp img{ width:100%; height:auto; }
@media (min-width:560px){
  .hero__stamp{ top:22px; right:20px; width:104px; }
}
@media (min-width:880px){
  .hero__stamp{ top:34px; right:34px; width:150px; }
}

/* Header vote pill icon */
.vote-pill .ico-svg{ width:1em; height:1em; }

/* Curio cards — índice numérico em vez de emoji */
.curio__no{
  font-weight:800; font-size:.86rem; letter-spacing:.18em; color:var(--gold);
  display:block; margin-bottom:14px; padding-bottom:11px; border-bottom:1px solid var(--green-line);
}

/* Stat strip (arquitectura) */
.stats{
  display:grid; grid-template-columns:1fr 1fr; gap:1px;
  background:var(--green-line); border:1px solid var(--green-line);
  border-radius:var(--radius); overflow:hidden; margin-top:30px;
}
.stat{ background:var(--white); padding:20px 18px; }
.stat__num{ font-weight:800; color:var(--gold); font-size:clamp(1.35rem,3.6vw,1.95rem); line-height:1; letter-spacing:.005em; }
.stat__lbl{ display:block; margin-top:9px; font-size:.7rem; letter-spacing:.13em; text-transform:uppercase; color:var(--ink-soft); font-weight:600; }
@media (min-width:760px){ .stats{ grid-template-columns:repeat(5,1fr); } }

/* Painel de voto verde (CTA) */
.votepanel{ background:var(--green); border-radius:8px; padding:34px 24px; text-align:center; color:#fff; }
.votepanel--deep{ background:var(--green-deep); }
.votepanel__label{ font-weight:700; text-transform:uppercase; letter-spacing:.18em; color:var(--gold-soft); font-size:.82rem; margin:0 0 16px; }
.votepanel__num{
  display:inline-flex; align-items:center; gap:14px; font-weight:800; color:#fff;
  font-size:clamp(2.1rem,8.5vw,3.4rem); letter-spacing:.02em; text-decoration:none; line-height:1;
}
.votepanel__num:hover{ color:var(--gold-soft); }
.votepanel__num .ico-svg{ width:.62em; height:.62em; color:var(--gold-soft); }
.votepanel__divider{ width:64px; height:1px; background:rgba(255,255,255,.32); margin:20px auto; }
.votepanel__app{ margin:0; font-weight:700; text-transform:uppercase; letter-spacing:.06em; font-size:clamp(1rem,3.4vw,1.35rem); color:#fff; display:inline-flex; align-items:center; gap:10px; }
.votepanel__app .ico-svg{ color:var(--gold-soft); }
.votepanel__legal{ margin:18px auto 0; font-size:.8rem; color:rgba(255,255,255,.82); max-width:52ch; line-height:1.55; }
.votepanel__qr{ display:flex; flex-direction:column; align-items:center; gap:12px; }
.votepanel__qr .qr-slot{ width:128px; height:128px; }
@media (min-width:760px){
  .votepanel__final{ display:flex; align-items:center; justify-content:center; gap:40px; text-align:left; flex-wrap:wrap; }
  .votepanel__final .votepanel__qr{ order:2; }
}

/* Visit — rótulos em texto, sem emoji */
.info-list li{ align-items:flex-start; }
.info-list .lbl{
  flex:none; width:88px; font-size:.7rem; letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold); font-weight:700; padding-top:4px;
}
.info-list .val{ flex:1; }

/* Footer vote */
.footer-vote{ display:inline-flex; align-items:center; gap:10px; }
.footer-vote .ico-svg{ width:.8em; height:.8em; color:var(--gold-soft); }

/* Footer redes sociais + município */
.footer-social{ display:flex; gap:12px; margin-top:18px; }
.footer-social a{
  display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:50%;
  border:1px solid #2F3429; color:#D8DED0;
  transition:background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover{ background:var(--gold-soft); border-color:var(--gold-soft); color:#1A1C16; transform:translateY(-2px); }
.footer-social .ico-svg{ width:20px; height:20px; }
.footer-muni-link{
  display:inline-flex; align-items:center; gap:9px;
  margin-top:16px; font-family:var(--sans); font-size:.85rem;
  color:#9AA294; text-decoration:none;
}
.footer-muni-link:hover{ color:#fff; }
.footer-muni-link .ico-svg{ width:1em; height:1em; color:var(--gold-soft); }

/* Buttons sem emoji — espaçamento de ícone */
.btn .ico-svg{ width:1.05em; height:1.05em; }

/* ============================================================
   ORIGEM DO NOME — banda editorial (imagem + painel)
   ============================================================ */
.nameedit{ display:grid; grid-template-columns:1fr; background:var(--green-deep); }
.nameedit__media{ position:relative; min-height:300px; }
.nameedit__media img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.nameedit__media::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(18,63,32,0) 55%, rgba(18,63,32,.85) 100%);
}
.nameedit__panel{ display:flex; align-items:center; padding:48px var(--gutter); }
.nameedit__inner{ max-width:560px; }
.nameedit__panel h2{ color:#fff; }
.nameedit__text{ color:#EDEFE9; font-size:clamp(1.05rem,2.4vw,1.3rem); line-height:1.65; margin:0 0 1em; }
.nameedit__text strong{ color:var(--gold-soft); font-weight:800; }
.nameedit__text--muted{ color:#AFC2AE; font-size:1.02rem; margin:0; }
@media (min-width:880px){
  .nameedit{ grid-template-columns:1.05fr .95fr; min-height:520px; }
  .nameedit__media{ min-height:auto; }
  .nameedit__media::after{ background:linear-gradient(to right, rgba(18,63,32,0) 70%, rgba(18,63,32,.6) 100%); }
  .nameedit__panel{ padding:64px clamp(40px,5vw,80px); }
}

/* ============================================================
   PRESS KIT / PARTILHA
   ============================================================ */
.presskit{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:32px 0; }
.presskit__item{
  position:relative; display:block; border-radius:var(--radius); overflow:hidden;
  border:1px solid #E1DFD4; background:#fff; text-decoration:none; color:inherit;
}
.presskit__item img{ width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform .3s; }
.presskit__item:hover img{ transform:scale(1.04); }
.presskit__dl{
  position:absolute; left:0; right:0; bottom:0;
  display:flex; align-items:center; justify-content:center; gap:8px;
  background:rgba(18,63,32,.92); color:#fff; font-size:.8rem; font-weight:600;
  letter-spacing:.04em; text-transform:uppercase; padding:10px 8px;
  transform:translateY(100%); transition:transform .25s;
}
.presskit__item:hover .presskit__dl,
.presskit__item:focus-visible .presskit__dl{ transform:translateY(0); }
.presskit__item .presskit__always{
  position:absolute; top:10px; right:10px; background:rgba(255,255,255,.92); color:var(--green-deep);
  border-radius:100px; padding:5px 11px; font-size:.7rem; font-weight:700; letter-spacing:.04em;
}
.presskit__video{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  text-align:center; aspect-ratio:4/3; padding:18px;
  background:repeating-linear-gradient(-45deg,#EEF3EC 0 12px,#E6EEE4 12px 24px);
  color:var(--ink-soft); font-size:.85rem;
}
.presskit__video span:first-child{ font-weight:700; color:var(--green-deep); letter-spacing:.04em; text-transform:uppercase; font-size:.78rem; }
.presskit__actions{ display:flex; flex-wrap:wrap; gap:12px; align-items:center; margin-top:6px; }
@media (min-width:760px){ .presskit{ grid-template-columns:repeat(4,1fr); } .presskit--3{ grid-template-columns:repeat(3,1fr); } }

/* ============================================================
   VÍDEO
   ============================================================ */
.videoblock{ background:var(--green-tint); }
.videoframe{
  max-width:980px; margin:34px auto 0; border-radius:8px; overflow:hidden;
  background:#0c2916; box-shadow:0 24px 60px rgba(18,63,32,.22);
}
.videoframe video{ display:block; width:100%; aspect-ratio:16/9; object-fit:cover; background:#0c2916; }

.presskit__subtitle{ margin:38px 0 16px; font-size:1.15rem; color:var(--green-deep); }
.presskit--videos{ grid-template-columns:1fr; }
@media (min-width:560px){ .presskit--videos{ grid-template-columns:1fr 1fr; } }
.presskit__item--video{ position:relative; }
.presskit__item--video video{ width:100%; aspect-ratio:16/9; object-fit:cover; display:block; background:#1f3221; }
.presskit__play{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:2;
  width:56px; height:56px; border-radius:50%; background:rgba(255,255,255,.92);
  display:flex; align-items:center; justify-content:center; color:var(--green-deep);
  box-shadow:0 6px 18px rgba(0,0,0,.28); transition:transform .2s, background .2s;
}
.presskit__item--video:hover .presskit__play{ transform:translate(-50%,-50%) scale(1.08); background:#fff; }
.presskit__play .ico-svg{ width:24px; height:24px; margin-left:3px; }
