/* ============================================================
   Movimento Mineiro Autista — identidade "cartaz civil":
   cores suaves e não-saturadas (recomendação sensorial), mas
   composição de cartaz comunitário — crachás circulares, cartões
   arredondados, nuvem de etiquetas — em vez de boletim de jornal.
   ============================================================ */
:root{
  --paper:        #E8E7DF;
  --paper-raised: #F2F1EA;
  --paper-sunken: #DBDACE;
  --ink:          #24261F;
  --ink-soft:     #4D4F43;
  --ink-mute:     #83816F;
  --line:         color-mix(in srgb, #24261F 14%, transparent);
  --line-strong:  color-mix(in srgb, #24261F 26%, transparent);

  --stone:        #79344B;
  --stone-deep:   #602438;
  --stone-soft:   #B25C79;
  --stone-tint:   color-mix(in srgb, #79344B 12%, var(--paper-raised));

  --gold:         #B04E3F;
  --gold-deep:    #8F3D30;
  --gold-soft:    #D28073;
  --gold-tint:    color-mix(in srgb, #B04E3F 14%, var(--paper-raised));

  /* fixos — não trocam com o tema: usados em superfícies que são
     sempre escuras (crachás, manifesto) para nunca perder contraste */
  --fixed-dark:   #24261F;
  --fixed-light:  #F3F1E9;
  --fixed-gold:   #D28073;
  --fixed-stone-soft: #ECDFE3;

  /* cores reais da logo — usadas só em pequenos detalhes (crachás,
     traço fino), nunca em fundos grandes, por cuidado sensorial */
  --brand-red:    #BE0002;
  --brand-gold:   #F3AB00;
  --brand-green:  #61AE32;
  --brand-blue:   #0062AD;
  --brand-purple: #7C3297;

  --max: 1080px;
  --gutter: clamp(20px, 5vw, 48px);
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --shadow: 0 1px 2px color-mix(in srgb, var(--ink) 6%, transparent), 0 8px 24px color-mix(in srgb, var(--ink) 6%, transparent);

  --display: "Libre Franklin", -apple-system, BlinkMacSystemFont, sans-serif;
  --body:    "Atkinson Hyperlegible", -apple-system, BlinkMacSystemFont, sans-serif;
  --tag:     "Space Mono", ui-monospace, monospace;
}

@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --paper:        #191C17;
    --paper-raised: #21251E;
    --paper-sunken: #12140F;
    --ink:          #E7E6DC;
    --ink-soft:     #B7B6A9;
    --ink-mute:     #82806F;
    --line:         color-mix(in srgb, #E7E6DC 14%, transparent);
    --line-strong:  color-mix(in srgb, #E7E6DC 26%, transparent);
    --stone:        #BD7F94;
    --stone-deep:   #B4647F;
    --stone-soft:   #D2A7B6;
    --stone-tint:   color-mix(in srgb, #BD7F94 14%, var(--paper-raised));
    --gold:         #D28073;
    --gold-deep:    #B04E3F;
    --gold-soft:    #E4A096;
    --gold-tint:    color-mix(in srgb, #D28073 14%, var(--paper-raised));
  }
}
:root[data-theme="dark"]{
  --paper:        #191C17;
  --paper-raised: #21251E;
  --paper-sunken: #12140F;
  --ink:          #E7E6DC;
  --ink-soft:     #B7B6A9;
  --ink-mute:     #82806F;
  --line:         color-mix(in srgb, #E7E6DC 14%, transparent);
  --line-strong:  color-mix(in srgb, #E7E6DC 26%, transparent);
  --stone:        #BD7F94;
  --stone-deep:   #B4647F;
  --stone-soft:   #D2A7B6;
  --stone-tint:   color-mix(in srgb, #BD7F94 14%, var(--paper-raised));
  --gold:         #D28073;
  --gold-deep:    #B04E3F;
  --gold-soft:    #E4A096;
  --gold-tint:    color-mix(in srgb, #D28073 14%, var(--paper-raised));
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
img, svg{ max-width: 100%; height: auto; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--body); font-size: clamp(15.5px, 1.05vw, 17px); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
a{ color: inherit; }
a.link{ color: var(--stone-deep); text-decoration-color: color-mix(in srgb, var(--stone) 50%, transparent); text-underline-offset: 3px; }
a.link:hover{ text-decoration-color: var(--stone); }
*:focus-visible{ outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

.skip{ position:absolute; left:-9999px; background: var(--gold-soft); color:#191C17; padding: 10px 16px; z-index: 100; font-weight:700; border-radius: 8px; }
.skip:focus{ left: 16px; top: 16px; }

h1,h2,h3{ font-family: var(--display); font-weight: 800; letter-spacing: -0.01em; text-wrap: balance; margin: 0; }
p{ margin: 0 0 1em; }
p:last-child{ margin-bottom: 0; }
strong,b{ font-weight: 700; }

.tagword{ font-family: var(--tag); font-size: 11.5px; letter-spacing: 0.06em; }

/* ============ NAV — floating pill ============ */
.navbar{ position: sticky; top: 14px; z-index: 40; padding: 14px var(--gutter) 0; }
.navbar__pill{
  max-width: var(--max); margin: 0 auto; background: var(--paper-raised);
  border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow);
  display:flex; align-items:center; gap: 14px; padding: 8px 10px 8px 16px;
}
.navbar__brand{ display:flex; align-items:center; gap: 9px; flex-shrink:0; }
.navbar__badge{
  width: 34px; height:34px; border-radius: 50%; object-fit: cover; flex-shrink:0;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--ink) 10%, transparent);
}
.navbar__brand b{ font-family: var(--display); font-size: 14.5px; font-weight: 800; white-space: nowrap; }
.navbar__brand .full{ display:inline; }
.navbar__brand .short{ display:none; }
.navbar__links{ display:flex; flex-wrap: nowrap; overflow-x:auto; gap: 4px; scrollbar-width:none; }
.navbar__links::-webkit-scrollbar{ display:none; }
.navbar__links a{
  white-space: nowrap; font-size: 13px; font-weight: 700; padding: 8px 13px; border-radius: 999px;
  color: var(--ink-soft); transition: background 180ms ease, color 180ms ease;
}
.navbar__links a:hover{ background: var(--gold-tint); color: var(--gold-deep); }
.theme-btn{
  margin-left:auto; flex-shrink:0; width: 34px; height:34px; border-radius:50%; border: 1px solid var(--line-strong);
  background: var(--paper); color: var(--ink-soft); cursor:pointer; font-size:15px; display:flex; align-items:center; justify-content:center;
  transition: border-color 180ms ease, color 180ms ease;
}
.theme-btn:hover{ border-color: var(--gold); color: var(--gold-deep); }
@media (max-width: 860px){
  .navbar__brand .full{ display:none; }
  .navbar__brand .short{ display:inline; }
}
@media (max-width: 460px){
  .navbar__brand b{ display:none; }
}

/* ============ SECTIONS shared ============ */
section{ padding: clamp(52px,7vw,96px) 0; scroll-margin-top: 88px; }
.section-tag{
  display:inline-flex; align-items:center; gap: 8px; font-family: var(--tag); font-size: 11.5px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep);
  background: var(--gold-tint); border-radius: 999px; padding: 6px 14px; margin-bottom: 18px;
}
.section-tag::before{ content:"●"; font-size: 7px; color: var(--gold); }
.section-title{ font-size: clamp(28px,4vw,46px); line-height: 1.08; max-width: 18ch; }
.section-lede{ margin-top: 16px; max-width: 60ch; color: var(--ink-soft); font-size: clamp(15.5px,1.1vw,17.5px); line-height: 1.65; }

.center{ text-align:center; }
.center .section-title{ margin-left:auto; margin-right:auto; }
.center .section-lede{ margin-left:auto; margin-right:auto; }

/* ============ HERO ============ */
.hero{ position: relative; padding-top: clamp(64px,9vw,120px); padding-bottom: clamp(48px,7vw,88px); overflow: hidden; }
.hero__motif{
  position:absolute; top:-140px; right:-160px; width: 620px; height:620px; z-index:0; opacity:0.5;
  pointer-events:none;
}
.hero__inner{ position:relative; z-index:1; text-align:center; }
.hero__title{
  font-size: clamp(36px,6.8vw,72px); line-height: 1; max-width: 18ch; margin: 0 auto; letter-spacing: -0.02em;
  font-weight: 900;
  background: linear-gradient(120deg, var(--gold-deep) 0%, var(--gold-deep) 22%, var(--ink) 72%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__subtitle{
  margin: 22px auto 0; font-family: var(--display); font-weight: 700; color: var(--ink-soft);
  font-size: clamp(19px,2.6vw,30px); line-height: 1.2; max-width: 18ch;
}
.hero__subtitle .hl{ color: var(--gold-deep); }
.hero__lede{ margin: 28px auto 0; max-width: 54ch; font-size: clamp(16.5px,1.3vw,19px); color: var(--ink-soft); line-height:1.6; }
.hero__lede .hl-line{
  font-weight: 800; color: var(--gold-deep);
  background-image: linear-gradient(var(--gold-tint), var(--gold-tint));
  background-repeat: no-repeat; background-size: 100% 40%; background-position: 0 90%;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.hero__ctas{ display:flex; gap: 12px; justify-content:center; flex-wrap:wrap; margin-top: 30px; }
.hero__stats{ display:flex; gap: 14px; justify-content:center; flex-wrap:wrap; margin-top: 60px; }
.stat-chip{
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 17px 24px; text-align:left; min-width: 156px; box-shadow: var(--shadow);
}
.stat-chip b{ display:block; font-family: var(--display); font-size: 26px; color: var(--stone-deep); line-height:1; }
.stat-chip span{ display:block; margin-top: 6px; font-size: 12px; color: var(--ink-mute); line-height:1.4; }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; gap: 8px; font-family: var(--display); font-weight: 800; font-size: 14.5px;
  color: var(--paper-raised); background: var(--ink); border: none; border-radius: 999px; padding: 15px 26px; cursor:pointer;
  text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--ghost{
  background: transparent; color: var(--gold-deep); border: 2px solid var(--gold-deep); padding: 13px 24px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}
.btn--ghost:hover{ background: var(--gold-deep); color: var(--paper-raised); }
.btn--ghost svg{ width: 13px; height: 13px; flex-shrink: 0; }
.btn--gold{ background: var(--gold-deep); }
.btn--block{ width:100%; justify-content:center; }

/* ============ QUEM SOMOS — split ============ */
.split{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px,4vw,56px); align-items:start; }
@media (max-width: 820px){ .split{ grid-template-columns: 1fr; } }
.split__statement{ font-family: var(--display); font-weight: 700; font-size: clamp(21px,2.1vw,28px); line-height: 1.4; color: var(--ink); }
.split__statement em{ font-style: normal; color: var(--stone-deep); }
.split__body{ margin-top: 20px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.card-stack{ display:flex; flex-direction:column; gap: 14px; }
.card{
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px 22px; box-shadow: var(--shadow);
}
.card--gold{ background: var(--gold-tint); border-color: color-mix(in srgb, var(--gold) 30%, transparent); }
.card h4{ font-family: var(--display); font-size: 14px; letter-spacing: 0.02em; color: var(--gold-deep); margin: 0 0 8px; text-transform: uppercase; }
.card p{ font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* ============ BANDEIRAS — badge cards ============ */
.flag-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 36px; }
@media (max-width: 940px){ .flag-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .flag-grid{ grid-template-columns: 1fr; } }
.flag-card{
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px; box-shadow: var(--shadow);
}
.flag-card__badge{
  width: 42px; height:42px; border-radius: 50%; display:flex; align-items:center; justify-content:center;
  font-family: var(--display); font-weight: 800; font-size: 15px; margin-bottom: 14px; color: var(--fixed-light);
}
.flag-card h3{ font-size: 17.5px; margin-bottom: 8px; line-height:1.25; }
.flag-card p{ font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin:0; }

/* ============ QUOTE PANEL (diagnóstico) — tinted, not inverted ============ */
.quote-panel{
  background: var(--gold-tint); border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  border-radius: var(--r-lg); padding: clamp(32px,5vw,56px); box-shadow: var(--shadow);
}
.quote-panel blockquote{
  margin: 0; font-family: var(--display); font-weight: 800; font-size: clamp(26px,4vw,44px); line-height: 1.15;
  color: var(--ink); max-width: 20ch;
}
.quote-panel .section-lede{ margin-top: 22px; color: var(--ink-soft); }
.quote-panel .hl-line{ font-weight: 800; color: var(--gold-deep); font-size: 1.15em; }

/* ============ TIMELINE triplet (famílias) ============ */
.timeline{ margin-top: 28px; display:flex; flex-direction:column; gap: 0; max-width: 46ch; }
.timeline__item{ display:flex; gap: 16px; padding-bottom: 22px; position:relative; }
.timeline__item::before{ content:""; position:absolute; left:6px; top: 22px; bottom:-2px; width:2px; background: var(--line-strong); }
.timeline__item:last-child::before{ display:none; }
.timeline__dot{ width: 14px; height:14px; border-radius:50%; background: var(--stone); flex-shrink:0; margin-top: 4px; }
.timeline__item:nth-child(2) .timeline__dot{ background: var(--gold); }
.timeline__text{ font-family: var(--display); font-weight: 700; font-size: clamp(17px,1.6vw,20px); color: var(--ink); }

/* ============ TAG CLOUD (políticas + minas) ============ */
.tag-cloud{ display:flex; flex-wrap:wrap; gap: 9px; margin-top: 26px; }
.tag-pill{
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft); background: var(--paper-raised);
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px;
}
.tag-pill--muted{ color: var(--ink-mute); background: transparent; border-style: dashed; }

/* ============ PRINCÍPIOS — icon chip cards ============ */
.chip-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 30px; }
.chip--wide{ grid-column: span 2; }
@media (max-width: 920px){ .chip-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .chip-grid{ grid-template-columns: 1fr; } .chip--wide{ grid-column: auto; } }
.chip{ background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px; }
.chip__icon{ width:30px;height:30px;border-radius:50%; background: var(--stone-tint); color: var(--stone-deep); display:flex; align-items:center; justify-content:center; font-family:var(--display); font-weight:800; font-size:13px; margin-bottom:10px; }
.chip__icon svg{ width:16px; height:16px; }
.chip b{ display:block; font-family: var(--display); font-size: 14.5px; margin-bottom: 4px; }
.chip span{ font-size: 12.5px; color: var(--ink-mute); line-height: 1.5; }

/* ============ MINAS — scatter panel ============ */
.scatter-panel{ margin-top: 24px; border: 1.5px dashed var(--line-strong); border-radius: var(--r-lg); padding: clamp(24px,3.5vw,36px); }

/* ============ NOTÍCIAS ============ */
.soon-card{
  border-radius: var(--r-lg); background: var(--stone-tint); border: 1px solid color-mix(in srgb, var(--stone) 25%, transparent);
  padding: clamp(26px,3.5vw,38px); display:flex; flex-wrap:wrap; gap: 20px; align-items:center; justify-content:space-between;
}
.soon-card p{ max-width: 44ch; font-size: 14.5px; color: var(--ink-soft); margin:0; }

/* ============ PARTICIPE forms ============ */
.form-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 30px; }
@media (max-width: 940px){ .form-grid{ grid-template-columns: 1fr; } }
.form-card{ background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow); display:flex; flex-direction:column; }
.form-card__badge{
  display:inline-flex; align-items:center; font-family: var(--tag); font-size: 10.5px; letter-spacing:0.06em; text-transform:uppercase;
  color: var(--gold-deep); background: var(--gold-tint); border-radius:999px; padding: 5px 12px; margin-bottom: 12px; width: fit-content;
}
.form-card h3{ font-size: 19px; margin-bottom: 8px; line-height:1.25; }
.form-card p.desc{ font-size: 13px; color: var(--ink-soft); line-height:1.55; margin-bottom: 16px; }
.field{ margin-bottom: 11px; }
.field label{ display:block; font-size: 11.5px; font-weight: 700; color: var(--ink-mute); margin-bottom: 5px; }
.field input, .field select, .field textarea{
  width:100%; font-family: var(--body); font-size: 14.5px; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line-strong); border-radius: var(--r-sm); padding: 9px 12px;
}
.field textarea{ resize:vertical; min-height: 68px; }
.form-card .btn{ margin-top: 6px; }
.form-status{ font-size: 13px; margin-top: 14px; color: var(--stone-deep); font-weight:700; display:none; }
.form-status.visible{ display:block; }
.proto-note{ font-size: 12px; color: var(--ink-mute); margin-top: 14px; }

/* ============ CONTATO — tinted panel, not inverted ============ */
.contact-panel{
  background: var(--stone-tint); border: 1px solid color-mix(in srgb, var(--stone) 25%, transparent);
  border-radius: var(--r-lg); padding: clamp(28px,4vw,44px); display:grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}
@media (max-width: 900px){ .contact-panel{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .contact-panel{ grid-template-columns: 1fr; } }
.contact-item{ display:flex; flex-direction:column; gap:6px; }
.contact-item__icon{ width:36px;height:36px;border-radius:50%; background: var(--paper-raised); display:flex; align-items:center; justify-content:center; font-family:var(--display); font-weight:800; color:var(--stone-deep); margin-bottom:4px; }
.contact-item__icon svg{ width:18px; height:18px; }
.contact-item h4{ font-family: var(--tag); font-size: 11px; letter-spacing:0.08em; text-transform:uppercase; color: var(--ink-mute); margin:0; }
.contact-item a{ font-family: var(--display); font-weight:700; font-size: 16px; color: var(--ink); overflow-wrap: anywhere; word-break: break-word; }
.contact-item p{ font-size: 12.5px; color: var(--ink-mute); margin:0; }

/* ============ DOAÇÃO — dedicated cards, distinct from the plain contact grid ============ */
.donate-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 8px; }
@media (max-width: 900px){ .donate-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .donate-grid{ grid-template-columns: 1fr; } }
.donate-card{
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--shadow); display:flex; flex-direction:column; gap: 12px; min-width: 0;
}
.donate-card .btn{ max-width: 100%; overflow-wrap: anywhere; word-break: break-word; white-space: normal; text-align: center; }
.donate-card--active{ background: var(--gold-tint); border-color: color-mix(in srgb, var(--gold) 32%, transparent); }
.donate-card__top{ display:flex; align-items:center; justify-content:space-between; gap: 10px; }
.donate-card__icon{
  width: 44px; height:44px; border-radius:50%; flex-shrink:0;
  background: var(--gold-tint); color: var(--gold-deep); display:flex; align-items:center; justify-content:center;
}
.donate-card--active .donate-card__icon{ background: var(--paper); }
.donate-card__icon svg{ width:20px; height:20px; }
.donate-card__status{
  font-family: var(--tag); font-size: 10px; letter-spacing:0.07em; text-transform:uppercase; color: var(--ink-mute);
  background: var(--paper-sunken); border-radius:999px; padding: 5px 11px; white-space:nowrap;
}
.donate-card h4{ font-family: var(--display); font-weight:800; font-size: 17px; margin:0; color: var(--ink); }
.donate-card p{ font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin:0; flex:1; }
.donate-card .btn{ margin-top: 2px; font-size: 13px; padding: 12px 20px; }

/* ============ MANIFESTO — rounded dark poster, contained not full-bleed ============ */
.manifesto{
  /* superfície sempre escura, de propósito, nos dois temas — por
     isso usa tokens fixos em vez dos que trocam com o tema */
  background: var(--stone-deep); color: var(--fixed-light); border-radius: var(--r-lg);
  padding: clamp(44px,7vw,80px) clamp(24px,5vw,64px); position:relative; overflow:hidden;
  display:flex; align-items:center; gap: clamp(28px,5vw,72px); flex-wrap:wrap;
}
.manifesto__content{ flex: 1 1 420px; min-width:0; }
.manifesto__motif{ flex: 0 0 auto; width: clamp(220px,26vw,380px); height:auto; opacity:0.4; margin-left:auto; pointer-events:none; }
@media (max-width: 760px){ .manifesto__motif{ display:none; } }
.manifesto__lines{ position:relative; z-index:1; max-width: 42ch; }
.manifesto__lines p{ font-family: var(--display); font-weight: 800; font-size: clamp(21px,3vw,34px); line-height: 1.3; margin: 0 0 0.5em; color: var(--fixed-light); }
.manifesto__lines p.hi{ color: var(--fixed-gold); }
.manifesto__lines p.small{ font-family: var(--body); font-weight: 400; font-size: clamp(14.5px,1.5vw,17px); color: color-mix(in srgb, var(--fixed-light) 78%, transparent); line-height:1.6; }
.manifesto__sign{ position:relative; z-index:1; margin-top: 32px; padding-top: 22px; border-top: 1px solid color-mix(in srgb, var(--fixed-light) 22%, transparent); }
.manifesto__sign b{ font-family: var(--display); font-size: 20px; display:block; color: var(--fixed-light); }
.manifesto__sign span{ font-family: var(--tag); font-size: 12px; color: var(--fixed-stone-soft); }

/* ============ FOOTER — simple stacked ============ */
footer.site{ padding: clamp(40px,6vw,64px) 0 clamp(28px,4vw,40px); text-align:center; }
.footer-badge{ width:56px;height:56px;border-radius:50%; object-fit:cover; margin: 0 auto 14px; box-shadow: 0 0 0 1px color-mix(in srgb, var(--ink) 10%, transparent); }

/* ============ HERO LOGO + traço fino da logo ============ */
.hero__seal{ width: clamp(104px,14vw,156px); height: clamp(104px,14vw,156px); border-radius:50%; object-fit:cover; margin: 0 auto 30px; box-shadow: var(--shadow); position:relative; z-index:1; }
.hero__spectrum{ display:flex; justify-content:center; gap:4px; margin: 26px 0 0; }
.hero__spectrum span{ width: 22px; height: 4px; border-radius: 2px; display:block; }
.footer-name{ font-family: var(--display); font-weight: 800; font-size: 18px; }
.footer-tag{ font-size: 13px; color: var(--ink-mute); margin-top: 4px; }
.footer-links{ display:flex; flex-wrap:wrap; justify-content:center; gap: 8px 4px; margin-top: 24px; }
.footer-links a{ font-size: 13px; font-weight:700; color: var(--ink-soft); padding: 8px 13px; border-radius:999px; }
.footer-links a:hover{ background: var(--stone-tint); color: var(--stone-deep); }
.footer-social{ display:flex; justify-content:center; gap: 10px; margin-top: 18px; }
.footer-social a{
  width:38px;height:38px;border-radius:50%; border:1px solid var(--line-strong); display:flex; align-items:center; justify-content:center;
  font-family: var(--tag); font-size: 11px; color: var(--ink-soft);
}
.footer-social a svg{ width:18px; height:18px; }
.footer-social a:hover{ border-color: var(--gold); color: var(--gold-deep); }
.footer-bottom{ margin-top: 28px; font-family: var(--tag); font-size: 11.5px; color: var(--ink-mute); }