/* ============================================================
   LP 02 — Ricardo Monteiro | Vereador 2026
   Paleta: Verde/Azul/Amarelo | Montserrat | Sem arredondamentos
   Layout diferenciado: hero invertido, timeline, bandeiras horizontal
   ============================================================ */

/* --- RESET --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p,
a, img, ul, ol, li, article, aside, footer, header,
nav, section, figure, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

ol, ul, menu { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font: inherit; background: none; }

/* --- VARIAVEIS --- */
:root {
  --verde: #138f38;
  --verde-escuro: #23430c;
  --azul: #044794;
  --azul-escuro: #022b5a;
  --amarelo: #ffdd00;
  --amarelo-escuro: #e6c800;
  --branco: #FFFFFF;
  --cinza-claro: #F5F5F5;
  --cinza: #666666;
  --cinza-escuro: #333333;

  --font-main: 'Montserrat', sans-serif;
  --max-w: 1200px;
  --px: 1.25rem;
}

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--cinza-escuro);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.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;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  padding: 1.2rem 0;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}

.nav--scrolled {
  background: var(--amarelo);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0.6rem 0;
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  height: 48px;
  width: auto;
  transition: transform 0.2s, height 0.3s;
}

.nav__logo-img:hover { transform: scale(1.1); }
.nav--scrolled .nav__logo-img { height: 34px; }

.nav__links {
  display: none;
  gap: 2rem;
}

/* Overlay mobile */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 71, 148, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav__overlay--open { opacity: 1; visibility: visible; }

.nav__overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nav__overlay-link {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--branco);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s, transform 0.2s;
  transform: translateY(10px);
  opacity: 0;
}

.nav__overlay--open .nav__overlay-link {
  transform: translateY(0);
  opacity: 1;
}

.nav__overlay--open .nav__overlay-link:nth-child(1) { transition-delay: 0.05s; }
.nav__overlay--open .nav__overlay-link:nth-child(2) { transition-delay: 0.1s; }
.nav__overlay--open .nav__overlay-link:nth-child(3) { transition-delay: 0.15s; }
.nav__overlay--open .nav__overlay-link:nth-child(4) { transition-delay: 0.2s; }
.nav__overlay--open .nav__overlay-link:nth-child(5) { transition-delay: 0.25s; }

.nav__overlay-link:hover { color: var(--amarelo); }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--branco);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

.nav--scrolled .nav__hamburger span {
  background: var(--azul-escuro);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__link {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--branco);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav__link:hover { color: var(--azul); }

.nav--scrolled .nav__link { color: var(--azul-escuro); }
.nav--scrolled .nav__link:hover { color: var(--azul); }

/* ============================================================
   BTN
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn--amarelo { background: var(--amarelo); color: var(--azul-escuro); }
.btn--amarelo:hover { background: var(--amarelo-escuro); }

/* ============================================================
   HERO — Invertido: foto esquerda, conteudo direita
   ============================================================ */
.hero {
  background: url('assets/img/bg-circles.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem var(--px) 0;
  position: relative;
  z-index: 2;
}

.hero__content {
  text-align: center;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto 1.5rem;
}

.hero__slogan {
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--branco);
  opacity: 0.9;
  max-width: 450px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.hero__cta { margin-top: 0.5rem; }

.hero__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__image img {
  height: 52vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
}

/* ============================================================
   QUEM E — Fundo azul-escuro, texto + lista lateral + destaque
   ============================================================ */
.quem-e {
  padding: 4rem 0 3rem;
  background: var(--azul-escuro);
  position: relative;
  overflow: hidden;
}

.quem-e__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quem-e__titulo {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--branco);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.quem-e__texto {
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--branco);
  opacity: 0.9;
  max-width: 750px;
}

.quem-e__lista {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quem-e__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--branco);
  opacity: 0.9;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quem-e__item:last-child { border-bottom: none; }

.quem-e__item::before {
  content: '';
  width: 10px; height: 10px;
  min-width: 10px;
  background: var(--amarelo);
  flex-shrink: 0;
  margin-top: 0.4rem;
}

/* ============================================================
   BANDEIRAS — Horizontal: icone a esquerda, texto a direita
   ============================================================ */
.bandeiras {
  padding: 3.5rem 0;
  background: var(--cinza-claro);
  position: relative;
}

.bandeiras__titulo {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-align: center;
}

.bandeiras__titulo .t-azul { color: var(--azul); }
.bandeiras__titulo .t-verde { color: var(--verde); }
.bandeiras__titulo .t-amarelo { color: var(--amarelo-escuro); }

.bandeiras__lista {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.bandeira-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--branco);
  padding: 1.5rem;
  border-left: 5px solid var(--azul);
  transition: transform 0.2s;
}

.bandeira-item:hover { transform: translateX(4px); }

.bandeira-item__icone {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
}

.bandeira-item__conteudo { flex: 1; }

.bandeira-item__nome {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--azul);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.bandeira-item__frase {
  font-weight: 300;
  font-size: 1rem;
  color: var(--cinza);
  line-height: 1.5;
}

/* ============================================================
   TRAJETORIA — Timeline vertical
   ============================================================ */
.trajetoria {
  padding: 3.5rem 0;
  background: var(--verde-escuro);
  position: relative;
  overflow: hidden;
}

.trajetoria::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 67, 12, 0.95) 0%, rgba(19, 143, 56, 0.85) 100%);
  pointer-events: none;
}

.trajetoria::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 996px; height: 454px;
  background: url('assets/img/chapeu.png') center/contain no-repeat;
  opacity: 0.08;
  filter: blur(3px);
  transform: translate(-50%, -50%) rotate(-15deg);
  pointer-events: none;
}

.trajetoria .container { position: relative; z-index: 2; }

.trajetoria__titulo {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--branco);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.5rem;
}

.trajetoria__titulo em {
  font-style: italic;
  color: var(--amarelo);
  display: block;
  font-weight: 300;
  font-size: 0.7em;
  text-transform: none;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 10px;
  width: 3px;
  background: var(--amarelo);
}

.timeline__item {
  position: relative;
  padding-bottom: 1rem;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__marker {
  position: absolute;
  left: -2.5rem;
  top: 0.2rem;
  width: 18px; height: 18px;
  background: var(--amarelo);
  border: 3px solid var(--verde-escuro);
  z-index: 1;
}

.timeline__content {
  background: var(--branco);
  padding: 1rem 1.25rem;
  transition: transform 0.2s;
}

.timeline__content:hover { transform: translateX(4px); }

.timeline__titulo {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--azul);
  margin-bottom: 0.25rem;
}

.timeline__desc {
  font-weight: 300;
  font-size: 1rem;
  color: var(--cinza);
  line-height: 1.5;
}

/* ============================================================
   PROPOSTAS — Grid 2x2 no desktop
   ============================================================ */
.propostas {
  padding: 3.5rem 0;
  background: var(--azul-escuro);
  position: relative;
  overflow: hidden;
}

.propostas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 43, 90, 0.95) 0%, rgba(4, 71, 148, 0.9) 100%);
  pointer-events: none;
}

.propostas .container { position: relative; z-index: 2; }

.propostas__header { text-align: center; margin-bottom: 2rem; }

.propostas__titulo {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--branco);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.propostas__header .badge {
  display: inline-block;
  background: var(--amarelo);
  color: var(--azul-escuro);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 2rem;
  text-transform: uppercase;
}

.propostas__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.propostas__eixo-titulo {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--amarelo);
  margin-bottom: 0.75rem;
  padding-bottom: 0.3rem;
  border-bottom: 3px solid var(--amarelo);
  display: inline-block;
  text-transform: uppercase;
}

.propostas__lista { display: flex; flex-direction: column; gap: 0.75rem; }

.proposta-card {
  background: var(--branco);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.2s;
}
.proposta-card:hover { transform: translateY(-2px); }

.proposta-card__icone {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--cinza-claro);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proposta-card__icone svg { width: 24px; height: 24px; fill: var(--azul); }

.proposta-card__titulo {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: var(--azul);
  margin-bottom: 0.15rem;
}

.proposta-card__texto {
  font-weight: 300;
  font-size: 1rem;
  color: var(--cinza);
  line-height: 1.5;
}

/* ============================================================
   POR QUE — Foto grande colada no bottom, conteudo centralizado
   ============================================================ */
.por-que {
  padding: 4rem 0 0;
  background: var(--cinza-claro);
  position: relative;
}

.por-que__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.por-que__foto {
  width: 500px;
  max-width: 85%;
  align-self: center;
}

.por-que__foto img {
  width: 100%;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.15));
}

.por-que__content {
  text-align: center;
  padding: 0 0 4rem;
}

.por-que__titulo {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--azul);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.por-que__pontos {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 650px;
  margin: 0 auto;
}

.por-que__ponto {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  padding: 1rem;
  background: var(--branco);
  border-left: 5px solid var(--verde);
}

.por-que__ponto-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--amarelo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--azul-escuro);
}

.por-que__ponto-texto { font-size: 1.05rem; line-height: 1.5; }

.por-que__slogan {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--azul);
  margin-top: 1.25rem;
  text-transform: uppercase;
}

/* ============================================================
   VOTE — Faixa de pedido de voto
   ============================================================ */
.vote {
  padding: 2.5rem 0;
  background: var(--amarelo);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vote__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.vote__label {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--azul-escuro);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vote__numero {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(4rem, 14vw, 9rem);
  color: var(--azul-escuro);
  line-height: 1;
  letter-spacing: 0.05em;
}

.vote__nome {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--azul-escuro);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/* ============================================================
   PARTICIPE — Centralizado com icones de redes
   ============================================================ */
.participe {
  padding: 3.5rem 0;
  background: var(--azul);
  color: var(--branco);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.participe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 71, 148, 0.95) 0%, rgba(2, 43, 90, 1) 100%);
  pointer-events: none;
}

.participe .container { position: relative; z-index: 1; }

.participe__titulo {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.participe__logo {
  max-width: 550px;
  height: auto;
  margin: -5rem auto -4rem;
}

.participe__descricao {
  font-weight: 300;
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.participe__voto {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--amarelo);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.participe__voto strong {
  font-weight: 900;
  font-size: 2.5rem;
  display: block;
  letter-spacing: 0.1em;
}

.participe__redes {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.participe__rede {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  color: var(--branco);
  transition: background 0.2s, transform 0.15s;
}

.participe__rede svg { width: 24px; height: 24px; }

.participe__rede:hover { background: var(--amarelo); color: var(--azul-escuro); transform: translateY(-3px); }
.participe__rede--whatsapp { background: #25D366; }
.participe__rede--whatsapp:hover { background: #1DA851; color: var(--branco); }

/* ============================================================
   MISSÃO — Bloco de fechamento antes do rodapé
   ============================================================ */
.missao {
  padding: 3.5rem 0;
  background: var(--cinza-claro);
  text-align: center;
}

.missao__container {
  max-width: 750px;
  margin: 0 auto;
}

.missao__titulo {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--azul);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.missao__texto {
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cinza-escuro);
  margin-bottom: 1rem;
}

.missao__frase {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--azul);
  margin-top: 1.5rem;
  line-height: 1.6;
}

.missao__frase em {
  font-style: italic;
}

/* ============================================================
   RODAPE
   ============================================================ */
.rodape {
  padding: 2rem 0;
  background: #011d3d;
  color: var(--branco);
  text-align: center;
}

.rodape__marca {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--amarelo);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.rodape__legal {
  font-weight: 300;
  font-size: 0.875rem;
  opacity: 0.6;
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

/* ============================================================
   TABLET (600px)
   ============================================================ */
@media (min-width: 600px) {
  .por-que__foto {
    align-self: center;
  }
}

/* ============================================================
   DESKTOP (960px)
   ============================================================ */
@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }

  /* Hero — texto esquerda, foto direita */
  .hero__container {
    flex-direction: row;
    align-items: stretch;
  }

  .hero__content {
    flex: 1;
    text-align: left;
    align-items: flex-start;
    justify-content: center;
    order: 1;
    padding: 2rem 0;
  }

  .hero__image {
    flex: 0 0 45%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    order: 2;
  }

  .hero__image img {
    height: 85vh;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom right;
  }

  .hero__slogan { margin: 0 0 1.5rem; }
  .hero__logo { max-width: 380px; }

  /* Quem e — desktop */
  .quem-e__container {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .quem-e__texto-box { flex: 1; }
  .quem-e__lista { flex: 0 0 420px; }

  /* Timeline — alternando esquerda/direita */
  .timeline {
    padding-left: 0;
    max-width: 700px;
    margin: 0 auto;
  }

  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline__item {
    display: flex;
    width: 100%;
  }

  .timeline__item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: calc(50% + 2rem);
  }

  .timeline__item:nth-child(even) {
    justify-content: flex-end;
    padding-left: calc(50% + 2rem);
  }

  .timeline__marker {
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
  }

  .timeline__content { max-width: 100%; }

  /* Propostas — grid 2x2 */
  .propostas__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Por que — foto esquerda colada no bottom, conteudo direita */
  .por-que__container {
    flex-direction: row;
    align-items: flex-end;
  }

  .por-que__foto { width: 550px; max-width: 48%; flex-shrink: 0; align-self: flex-end; }
  .por-que__content { text-align: left; flex: 1; padding: 0 0 4rem; }
  .por-que__pontos { margin: 0; }
}

/* ============================================================
   GRANDE (1200px)
   ============================================================ */
@media (min-width: 1200px) {
  .hero__image img { height: 88vh; }
  .hero__logo { max-width: 420px; }
}

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

:focus-visible { outline: 3px solid var(--amarelo); outline-offset: 3px; }

.skip-link {
  position: absolute;
  top: -100%; left: 1rem;
  padding: 0.4rem 0.8rem;
  background: var(--amarelo);
  color: var(--azul-escuro);
  font-family: var(--font-main);
  font-weight: 700;
  z-index: 9999;
}
.skip-link:focus { top: 0.5rem; }
