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

:root {
  --clr-primary:      #1565C0;   /* azul escuro principal */
  --clr-primary-dark: #0D3B7A;   /* azul bem escuro */
  --clr-light:        #BBDEFB;   /* azul claro suave */
  --clr-white:        #FFFFFF;
  --clr-text-dark:    #0D1B2A;
  --clr-text-muted:   #5a6a7a;
  --clr-bg-section:   #EEF4FB;

  --ff-base: 'Segoe UI', Arial, sans-serif;
  --header-h: 85px;
  --tr: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-base);
  color: var(--clr-text-dark);
  background: var(--clr-white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

img {
  display: block;
  max-width: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: #071F45;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  border: none;
  outline: none;
}

.header.scrolled {
  background: #071F45;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  border: none;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header__logo a { display: flex; align-items: center; }

.header__logo-img {
  height: 75px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav desktop */
.header__nav {
  transition: margin 0.4s ease;
}

.header__nav-list {
  display: flex; align-items: center; gap: 2rem;
}

.header__nav-link {
  font-size: 0.95rem; font-weight: 600;
  color: rgba(255,255,255,0.88);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--tr), transform var(--tr);
  display: inline-block;
}

.header__nav-link:hover {
  color: var(--clr-white);
  transform: scale(1.12);
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 0.4rem; border-radius: 4px;
  transition: background var(--tr);
}

.header__hamburger:hover { background: rgba(255,255,255,0.12); }

.hamburger__line {
  display: block; width: 26px; height: 2.5px;
  background: var(--clr-white); border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr), background 0.4s ease;
  transform-origin: center;
}

/* Quando transparente, hamburguer fica azul escuro */
.header.scrolled .hamburger__line {
  background: var(--clr-primary-dark);
}

.header__hamburger.is-open .hamburger__line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header__hamburger.is-open .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__hamburger.is-open .hamburger__line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Menu mobile */
.header__mobile-nav {
  max-height: 0; overflow: hidden;
  background: #071F45;
  border: none;
  transition: max-height 0.4s ease;
}

.header__mobile-nav.is-open {
  max-height: 320px;
}

.header__mobile-list {
  display: flex; flex-direction: column;
  padding: 0.75rem 1.5rem 1.25rem;
}

.header__mobile-link {
  display: block; padding: 0.8rem 0;
  font-size: 1rem; font-weight: 600;
  color: rgba(255,255,255,0.88);
  transition: color var(--tr), padding-left var(--tr);
}

.header__mobile-link:hover { color: var(--clr-white); padding-left: 0.5rem; }

/* ============================================================
   HERO ESTÁTICO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 89vh;
  min-height: 520px;
  margin-top: var(--header-h);
  overflow: hidden;
}

/* Foto de fundo */
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  max-width: none;
}

/* Overlay: gradiente escuro vindo de baixo + leve escurecimento geral */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.30) 45%,
      rgba(0,0,0,0.10) 100%);
  z-index: 1;
}

/* Conteúdo centralizado */
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  gap: 1.1rem;
}

/* Eyebrow — tagline pequena acima do título */
.hero__eyebrow {
  display: inline-block;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: rgba(53, 40, 197, 0.85);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  animation: fadeUp 0.7s ease 0.1s both;
}

/* Título principal */
.hero__title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.12;
  text-shadow: 0 3px 16px rgba(0,0,0,0.4);
  max-width: 820px;
  animation: fadeUp 0.7s ease 0.25s both;
}

/* Destaque no subtítulo */
.hero__highlight {
  display: inline;
  color: #000000;
  font-weight: 800;
  background: #FFD600;
  padding: 0.1rem 0.6rem;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Subtítulo */
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  font-weight: 400;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  max-width: 580px;
  animation: fadeUp 0.7s ease 0.4s both;
}

/* Botões */
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s ease 0.55s both;
}

.hero__btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  transition: background var(--tr), color var(--tr),
              transform var(--tr), box-shadow var(--tr);
}

.hero__btn--primary {
  background: var(--clr-white);
  color: var(--clr-primary-dark);
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
}

.hero__btn--primary:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 6px 24px rgba(33,150,243,0.45);
  transform: translateY(-2px);
}

.hero__btn--outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.7);
}

.hero__btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--clr-white);
  transform: translateY(-2px);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 1.4rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.7;
  animation: bounceDown 1.8s ease-in-out infinite;
}

.hero__scroll-arrow {
  display: block;
  width: 22px; height: 22px;
  border-right: 3px solid var(--clr-white);
  border-bottom: 3px solid var(--clr-white);
  transform: rotate(45deg);
  border-radius: 2px;
}

/* ============================================================
   ANIMAÇÕES DO HERO
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SECTION GALERIA / SLIDER MENOR
   ============================================================ */
.gallery {
  background: var(--clr-bg-section);
  padding: 5rem 1.5rem 4rem;
}

/* Cabeçalho da section */
.gallery__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.gallery__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 0.6rem;
}

.gallery__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--clr-text-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

/* Linha decorativa abaixo do título */
.gallery__title::after {
  content: '';
  display: block;
  width: 50px; height: 3px;
  background: var(--clr-primary);
  border-radius: 2px;
  margin: 0.6rem auto 0;
}

.gallery__desc {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* Wrapper do slider com setas nas laterais */
.gallery__slider-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

/* Área do slider */
.gallery__slider {
  position: relative;
  width: 100%;
  /* Proporção 4:3 para fotos retrato ficarem bem */
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

/* Cada slide da galeria */
.gslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.gslide--active {
  opacity: 1;
  pointer-events: auto;
}

/* Imagem */
.gslide__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  max-width: none;
  /* Ken Burns leve */
  transform: scale(1.04);
  transition: transform 5s ease;
}

.gslide--active .gslide__img {
  transform: scale(1);
}

/* Legenda na base do slide */
.gslide__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: var(--clr-white);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 2rem 1.25rem 0.9rem;
  text-align: center;
  z-index: 2;
}

/* Setas */
.gallery__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: var(--clr-white);
  border: none;
  color: var(--clr-primary-dark);
  font-size: 1.8rem;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.18);
  transition: background var(--tr), color var(--tr), transform var(--tr);
}

.gallery__arrow:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-50%) scale(1.1);
}

.gallery__arrow--prev { left: -22px; }
.gallery__arrow--next { right: -22px; }

/* Dots */
.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.gdot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #b0c4d8;
  border: none; cursor: pointer;
  transition: background var(--tr), width var(--tr), transform var(--tr);
}

.gdot--active {
  background: var(--clr-primary);
  width: 26px;
  border-radius: 8px;
  transform: none;
}

/* ============================================================
   SECTION FORMULÁRIO DE CONTATO
   ============================================================ */
.contact {
  background: #071F45;
  padding: 5rem 1.5rem;
}

.contact__container {
  max-width: 820px;
  margin: 0 auto;
}

/* Cabeçalho */
.contact__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #BBDEFB;
  margin-bottom: 0.6rem;
}

.contact__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.contact__title::after {
  content: '';
  display: block;
  width: 50px; height: 3px;
  background: #1565C0;
  border-radius: 2px;
  margin: 0.6rem auto 0;
}

.contact__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Formulário */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

.form__required {
  color: #90CAF9;
}

.form__input {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: var(--ff-base);
  color: var(--clr-white);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  width: 100%;
}

.form__input::placeholder {
  color: rgba(255,255,255,0.35);
}

.form__input:focus {
  border-color: #1565C0;
  background: rgba(255,255,255,0.11);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.3);
}

/* Select */
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form__select option {
  background: #071F45;
  color: var(--clr-white);
}

/* Textarea */
.form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

/* Rodapé do form */
.form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* Botão enviar */
.form__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: #1565C0;
  color: var(--clr-white);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--ff-base);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(21,101,192,0.4);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.form__btn:hover {
  background: #0D3B7A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,101,192,0.5);
}

.form__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Input com erro */
.form__input--error {
  border-color: #EF9A9A !important;
  box-shadow: 0 0 0 3px rgba(239,154,154,0.25) !important;
}

/* Mensagem de sucesso */
.form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
  animation: fadeUp 0.5s ease both;
}

.form__success.is-visible {
  display: flex;
}

.form__success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(21,101,192,0.25);
  border: 2px solid #1565C0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: #90CAF9;
}

.form__success-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-white);
}

.form__success-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 480px;
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

/* ≤ 1024px */
@media (max-width: 1024px) {
  .header__nav-list { gap: 1.4rem; }

  .gallery__slider-wrap { max-width: 680px; }
  .gallery__arrow--prev { left: -14px; }
  .gallery__arrow--next { right: -14px; }
}

/* ≤ 768px */
@media (max-width: 768px) {
  .header__nav    { display: none; }
  .header__hamburger { display: flex; }

  /* Foca na esquerda da foto para mostrar o vereador de óculos */
  .hero__img {
    object-position: 10% 35%;
  }

  .hero__scroll-hint { display: none; }

  /* Slider: setas entram para dentro do card */
  .gallery__arrow--prev { left: 8px; }
  .gallery__arrow--next { right: 8px; }
  .gallery__arrow {
    background: rgba(255,255,255,0.85);
    width: 38px; height: 38px;
    font-size: 1.5rem;
  }
}

/* ≤ 600px — slider ocupa toda a largura */
@media (max-width: 600px) {
  .gallery {
    padding: 3.5rem 1rem 3rem;
  }

  .gallery__slider-wrap {
    max-width: 100%;
  }

  /* Em mobile passa para proporção mais quadrada */
  .gallery__slider {
    aspect-ratio: 3 / 4;
    border-radius: 12px;
  }

  .gallery__arrow--prev { left: 6px; }
  .gallery__arrow--next { right: 6px; }
}

/* ≤ 480px */
@media (max-width: 480px) {
  :root { --header-h: 60px; }

  /* Formulário: colunas viram 1 coluna */
  .form__row {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 3.5rem 1rem;
  }

  .form__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .form__btn {
    justify-content: center;
  }

  .logo-placeholder { width: 110px; height: 40px; }

  .hero__actions { gap: 0.75rem; }
  .hero__btn { padding: 0.7rem 1.5rem; font-size: 0.88rem; }

  .gallery__title { font-size: 1.5rem; }
  .gslide__caption { font-size: 0.82rem; }
}

/* Landscape mobile pequeno */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: 95vh;
    min-height: 320px;
  }
  .hero__subtitle { display: none; }
  .hero__title { font-size: 1.8rem; }
}




/* walney css */





/* ============================================================
   PROJETO — VEREADOR ALEX FREITAS
   CSS PRINCIPAL
   ============================================================

   ORGANIZAÇÃO:

   01. Reset e base
   02. Variáveis
   03. Tipografia geral
   04. Container geral
   05. Seção 01 — Trajetória
   06. Seção 02 — Saúde
   07. Seção 03 — Parlamento
   08. Seção 04 — Cultura / Intercâmbio
   09. Seção 05 — Transparência
   10. Seção 06 — Legislação
   11. Seção 07 — Instagram
   12. Responsividade
   13. Acessibilidade

   ------------------------------------------------------------
   DE-PARA DOS NOMES (nome antigo -> nome novo)
   ------------------------------------------------------------
   section-eyebrow        -> rotulo-secao

   trajectory-section      -> secao-trajetoria
   trajectory-container     -> container-trajetoria
   trajectory-images       -> trajetoria-galeria
   trajectory-image        -> trajetoria-foto
   trajectory-image--profile  -> trajetoria-foto--perfil
   trajectory-image--activity -> trajetoria-foto--atividade
   trajectory-image--main    -> trajetoria-foto--principal
   trajectory-content       -> trajetoria-texto
   #trajectory-title        -> #titulo-trajetoria

   health-section          -> secao-saude
   health-container         -> container-saude
   health-content          -> saude-texto
   #health-title           -> #titulo-saude
   health-visual           -> saude-area-visual
   health-decoration        -> saude-forma
   health-decoration--blue    -> saude-forma--azul
   health-decoration--yellow   -> saude-forma--amarela
   health-photo            -> saude-foto

   parliament-section        -> secao-parlamento
   parliament-container       -> container-parlamento
   #parliament-title        -> #titulo-parlamento
   parliament-photo         -> parlamento-foto
   parliament-content        -> parlamento-texto

   culture-exchange-section     -> secao-cultura
   culture-exchange-container    -> container-cultura
   #culture-exchange-title     -> #titulo-cultura
   culture-exchange-photo      -> cultura-foto
   culture-exchange-content     -> cultura-texto
   culture-exchange-closing     -> cultura-destaque-final

   transparency-section       -> secao-transparencia
   #transparency-title       -> #titulo-transparencia
   transparency-content       -> transparencia-cartao
   transparency-button        -> transparencia-botao

   legislation-section        -> secao-leis
   legislation-container       -> container-leis
   legislation-header        -> leis-cabecalho
   #legislation-title        -> #titulo-leis
   legislation-grid         -> leis-grade
   legislation-card         -> lei-cartao
   legislation-card-header     -> lei-cartao-cabecalho
   legislation-year         -> lei-ano
   legislation-number        -> lei-numero

   instagram-section         -> secao-instagram
   instagram-container        -> container-instagram
   instagram-header         -> instagram-cabecalho
   #instagram-title         -> #titulo-instagram
   instagram-grid          -> instagram-grade
   instagram-post          -> instagram-video

   ============================================================ */

/* ============================================================
   01. RESET E CONFIGURAÇÕES BASE
   ============================================================ */

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

html {
  margin: 0;
  padding: 0;

  scroll-behavior: smooth;

  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;

  margin: 0;
  padding: 0;

  overflow-x: hidden;

  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  font-size: 16px;
  line-height: 1.65;

  color: #172033;
  background: #ffffff;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  width: 100%;
}

img {
  display: block;

  width: 100%;
  max-width: 100%;
  height: auto;
}

iframe {
  display: block;

  width: 100%;

  border: 0;
}

a {
  color: inherit;

  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ============================================================
   02. VARIÁVEIS DO PROJETO
   ============================================================ */

:root {
  /* ----------------------------------------------------------
     CORES
     ---------------------------------------------------------- */

  --color-blue: #174ea6;
  --color-blue-dark: #103875;
  --color-blue-light: #edf4ff;

  --color-yellow: #f2c400;
  --color-yellow-light: #fff8d6;

  --color-text: #172033;
  --color-text-secondary: #596273;
  --color-text-light: #727b8c;

  --color-white: #ffffff;
  --color-background: #ffffff;
  --color-background-light: #f5f7fa;

  --color-border: #e5e9ef;
  --color-border-dark: #d7dde6;

  /* ----------------------------------------------------------
     LARGURAS
     ---------------------------------------------------------- */

  --container-width: 1280px;
  --container-width-large: 1440px;

  /* ----------------------------------------------------------
     ESPAÇAMENTOS
     ---------------------------------------------------------- */

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* ----------------------------------------------------------
     BORDAS
     ---------------------------------------------------------- */

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* ----------------------------------------------------------
     SOMBRAS
     ---------------------------------------------------------- */

  --shadow-soft: 0 12px 35px rgba(20, 31, 56, 0.08);

  --shadow-medium: 0 20px 55px rgba(20, 31, 56, 0.12);

  --shadow-image: 0 28px 70px rgba(20, 31, 56, 0.16);

  /* ----------------------------------------------------------
     TRANSIÇÕES
     ---------------------------------------------------------- */

  --transition-fast: 180ms ease;
  --transition-normal: 260ms ease;
}

/* ============================================================
   03. TIPOGRAFIA GERAL
   ============================================================ */

/* ------------------------------------------------------------
   PEQUENO TEXTO DE IDENTIFICAÇÃO DA SEÇÃO
   ------------------------------------------------------------ */

.rotulo-secao {
  display: inline-block;

  margin-bottom: 0.85rem;

  font-size: 0.75rem;
  font-weight: 800;

  line-height: 1.2;
  letter-spacing: 0.15em;

  text-transform: uppercase;

  color: var(--color-blue);
}

/* ------------------------------------------------------------
   TÍTULOS PRINCIPAIS DAS SEÇÕES
   ------------------------------------------------------------ */

.trajetoria-texto h1,
.saude-texto h2,
.parlamento-texto h2,
.cultura-texto h2,
.transparencia-cartao h2,
.leis-cabecalho h2,
.instagram-cabecalho h2 {
  margin: 0;

  font-weight: 800;

  line-height: 1.08;
  letter-spacing: -0.035em;

  color: var(--color-text);
}

/* ------------------------------------------------------------
   H1 — TRAJETÓRIA
   ------------------------------------------------------------ */

.trajetoria-texto h1 {
  max-width: 760px;

  font-size: clamp(2.5rem, 5vw, 5rem);
}

/* ------------------------------------------------------------
   H2 — DEMAIS SEÇÕES
   ------------------------------------------------------------ */

.saude-texto h2,
.parlamento-texto h2,
.cultura-texto h2,
.transparencia-cartao h2,
.leis-cabecalho h2,
.instagram-cabecalho h2 {
  font-size: clamp(2.15rem, 4vw, 3.8rem);
}

/* ------------------------------------------------------------
   H3
   ------------------------------------------------------------ */

.trajetoria-texto h2,
.saude-texto h3,
.parlamento-texto h3,
.cultura-texto h3 {
  margin: 2rem 0 0.75rem;

  font-size: clamp(1.15rem, 2vw, 1.45rem);

  font-weight: 800;

  line-height: 1.2;

  color: var(--color-text);
}

/* ------------------------------------------------------------
   PARÁGRAFOS
   ------------------------------------------------------------ */

.trajetoria-texto p,
.saude-texto p,
.parlamento-texto p,
.cultura-texto p,
.transparencia-cartao p,
.leis-cabecalho p,
.lei-cartao p,
.instagram-cabecalho p {
  margin: 1rem 0 0;

  color: var(--color-text-secondary);

  font-size: clamp(0.98rem, 1.15vw, 1.08rem);

  line-height: 1.75;
}

/* ============================================================
   04. CONTAINERS
   ============================================================ */

.container-trajetoria,
.container-saude,
.container-parlamento,
.container-cultura,
.transparencia-cartao,
.container-leis,
.container-instagram {
  width: min(calc(100% - 2.5rem), var(--container-width));

  margin-inline: auto;
}

/* ============================================================
   CONFIGURAÇÃO PADRÃO DAS SEÇÕES
   ============================================================ */

.secao-trajetoria,
.secao-saude,
.secao-parlamento,
.secao-cultura,
.secao-leis {
  position: relative;

  width: 100%;

  background: var(--color-background);
}

/* ============================================================
   05. SEÇÃO 01 — TRAJETÓRIA
   ============================================================ */

.secao-trajetoria {
  padding: clamp(5rem, 9vw, 9rem) 0 clamp(5rem, 9vw, 9rem);
}

/* ------------------------------------------------------------
   GRID DA TRAJETÓRIA
   ------------------------------------------------------------ */

.container-trajetoria {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  align-items: center;

  gap: clamp(3rem, 6vw, 7rem);
}

/* ------------------------------------------------------------
   ÁREA DE IMAGENS
   ------------------------------------------------------------ */

.trajetoria-galeria {
  position: relative;

  width: 100%;

  min-height: 650px;
}

/* ------------------------------------------------------------
   TODAS AS FOTOS DA TRAJETÓRIA
   ------------------------------------------------------------ */

.trajetoria-foto {
  position: absolute;

  overflow: hidden;

  background: var(--color-background-light);

  box-shadow: var(--shadow-image);
}

/* ------------------------------------------------------------
   FOTO PRINCIPAL
   ------------------------------------------------------------ */

.trajetoria-foto--principal {
  z-index: 1;

  top: 6%;
  right: 7%;
  bottom: 5%;
  left: 12%;

  border-radius: var(--radius-lg);
}

.trajetoria-foto--principal img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}

/* ------------------------------------------------------------
   FOTO PEQUENA — PERFIL
   ------------------------------------------------------------ */

.trajetoria-foto--perfil {
  z-index: 3;

  top: 1%;
  left: 0;

  width: clamp(125px, 16vw, 205px);

  aspect-ratio: 1 / 1;

  border: 6px solid var(--color-white);

  border-radius: var(--radius-sm);
}

.trajetoria-foto--perfil img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* ------------------------------------------------------------
   FOTO PEQUENA — ATIVIDADE
   ------------------------------------------------------------ */

.trajetoria-foto--atividade {
  z-index: 3;

  right: 0;
  bottom: 0;

  width: clamp(125px, 16vw, 205px);

  aspect-ratio: 1 / 1;

  border: 6px solid var(--color-white);

  border-radius: var(--radius-sm);
}

.trajetoria-foto--atividade img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* ------------------------------------------------------------
   TEXTO DA TRAJETÓRIA
   ------------------------------------------------------------ */

.trajetoria-texto {
  padding-block: 1rem;
}

/* ============================================================
   06. SEÇÃO 02 — SAÚDE
   ============================================================ */

.secao-saude {
  padding: clamp(5rem, 9vw, 9rem) 0;

  border-top: 1px solid var(--color-border);
}

/* ------------------------------------------------------------
   GRID DA SAÚDE
   ------------------------------------------------------------ */

.container-saude {
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);

  align-items: center;

  gap: clamp(3rem, 6vw, 7rem);
}

/* ------------------------------------------------------------
   CONTEÚDO DA SAÚDE
   ------------------------------------------------------------ */

.saude-texto {
  position: relative;

  z-index: 4;
}

.saude-texto p {
  max-width: 700px;
}

.saude-texto h3 {
  margin-top: 2.5rem;
}

/* ------------------------------------------------------------
   ÁREA VISUAL DA SAÚDE
   ------------------------------------------------------------ */

.saude-area-visual {
  position: relative;

  min-height: 650px;

  display: flex;

  align-items: center;
  justify-content: center;
}

/* ------------------------------------------------------------
   FOTO DA SAÚDE
   ------------------------------------------------------------ */

.saude-foto {
  position: absolute;

  z-index: 3;

  top: 50%;
  left: 50%;

  width: min(76%, 430px);

  aspect-ratio: 378 / 547;

  overflow: hidden;

  transform: translate(-50%, -50%);

  border-radius: var(--radius-lg);

  background: var(--color-white);

  box-shadow: var(--shadow-image);
}

.saude-foto img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}

/* ------------------------------------------------------------
   DECORAÇÕES DA SAÚDE
   ------------------------------------------------------------ */

.saude-forma {
  position: absolute;

  border-radius: 50%;
}

/* AZUL */

.saude-forma--azul {
  z-index: 1;

  left: 1%;
  bottom: 5%;

  width: 42%;
  height: 62%;

  background: var(--color-blue);
}

/* AMARELO */

.saude-forma--amarela {
  z-index: 1;

  top: 5%;
  right: 1%;

  width: 38%;
  height: 55%;

  background: var(--color-yellow);
}

/* ============================================================
   07. SEÇÃO 03 — ATUAÇÃO PARLAMENTAR
   ============================================================ */

.secao-parlamento {
  padding: clamp(5rem, 9vw, 9rem) 0;

  border-top: 1px solid var(--color-border);
}

/* ------------------------------------------------------------
   GRID DO PARLAMENTO
   ------------------------------------------------------------ */

.container-parlamento {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  align-items: center;

  gap: clamp(3rem, 6vw, 7rem);
}

/* ------------------------------------------------------------
   FOTO
   ------------------------------------------------------------ */

.parlamento-foto {
  overflow: hidden;

  border-radius: var(--radius-lg);

  background: var(--color-background-light);

  box-shadow: var(--shadow-image);
}

.parlamento-foto img {
  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;

  object-position: center;
}

/* ------------------------------------------------------------
   TEXTO
   ------------------------------------------------------------ */

.parlamento-texto {
  padding-block: 1rem;
}

.parlamento-texto p {
  max-width: 700px;
}

/* ============================================================
   08. SEÇÃO 04 — CULTURA / PARTICIPAÇÃO / INTERCÂMBIO
   ============================================================ */

.secao-cultura {
  padding: clamp(5rem, 9vw, 9rem) 0;

  border-top: 1px solid var(--color-border);
}

/* ------------------------------------------------------------
   GRID
   ------------------------------------------------------------ */

.container-cultura {
  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(0, 0.9fr);

  align-items: center;

  gap: clamp(3rem, 6vw, 7rem);
}

/* ------------------------------------------------------------
   CONTEÚDO
   ------------------------------------------------------------ */

.cultura-texto {
  min-width: 0;
}

.cultura-texto p {
  max-width: 730px;
}

/* ------------------------------------------------------------
   DESTAQUE FINAL
   ------------------------------------------------------------ */

.cultura-destaque-final {
  margin-top: 1.75rem !important;

  color: var(--color-blue) !important;

  font-size: 1.05rem !important;
}

/* ------------------------------------------------------------
   FOTO
   ------------------------------------------------------------ */

.cultura-foto {
  overflow: hidden;

  border-radius: var(--radius-lg);

  background: var(--color-background-light);

  box-shadow: var(--shadow-image);
}

.cultura-foto img {
  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  object-position: center;
}

/* ============================================================
   09. SEÇÃO 05 — ACOMPANHAMENTO / TRANSPARÊNCIA
   ============================================================ */

.secao-transparencia {
  width: 100%;

  padding: clamp(3.5rem, 6vw, 5.5rem) 1.25rem;

  background: var(--color-background-light);
}

/* ------------------------------------------------------------
   CONTEÚDO (esta classe também funciona como container, ver bloco 04)
   ------------------------------------------------------------ */

.transparencia-cartao {
  max-width: 900px;

  padding: clamp(2rem, 4vw, 3.5rem);

  text-align: center;

  background: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-soft);
}

/* ------------------------------------------------------------
   TÍTULO
   ------------------------------------------------------------ */

.transparencia-cartao h2 {
  max-width: 750px;

  margin-inline: auto;
}

/* ------------------------------------------------------------
   TEXTO
   ------------------------------------------------------------ */

.transparencia-cartao p {
  max-width: 700px;

  margin-inline: auto;
}

/* ------------------------------------------------------------
   BOTÃO
   ------------------------------------------------------------ */

.transparencia-botao {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  margin-top: 1.75rem;

  padding: 0.75rem 1.35rem;

  color: var(--color-white);

  background: var(--color-blue);

  border-radius: var(--radius-pill);

  font-size: 0.95rem;
  font-weight: 750;

  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.transparencia-botao:hover {
  background: var(--color-blue-dark);

  transform: translateY(-2px);

  box-shadow: 0 8px 22px rgba(23, 78, 166, 0.2);
}

/* ============================================================
   10. SEÇÃO 06 — LEGISLAÇÃO
   ============================================================ */

.secao-leis {
  padding: clamp(5rem, 9vw, 9rem) 0;

  border-top: 1px solid var(--color-border);
}

/* ------------------------------------------------------------
   CABEÇALHO
   ------------------------------------------------------------ */

.leis-cabecalho {
  width: min(100%, 850px);

  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.leis-cabecalho p {
  max-width: 760px;
}

/* ------------------------------------------------------------
   GRID DE CARDS
   ------------------------------------------------------------ */

.leis-grade {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 1.25rem;
}

/* ------------------------------------------------------------
   CARD
   ------------------------------------------------------------ */

.lei-cartao {
  display: flex;

  flex-direction: column;

  min-width: 0;
  min-height: 100%;

  padding: clamp(1.4rem, 2.5vw, 2rem);

  background: var(--color-background-light);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-md);

  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.lei-cartao:hover {
  transform: translateY(-5px);

  border-color: rgba(23, 78, 166, 0.25);

  box-shadow: var(--shadow-soft);
}

/* ------------------------------------------------------------
   CABEÇALHO DO CARD
   ------------------------------------------------------------ */

.lei-cartao-cabecalho {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 0.55rem;

  margin-bottom: 1.25rem;
}

/* ------------------------------------------------------------
   ANO
   ------------------------------------------------------------ */

.lei-ano {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 27px;

  padding: 0.25rem 0.6rem;

  color: var(--color-white);

  background: var(--color-blue);

  border-radius: var(--radius-pill);

  font-size: 0.7rem;
  font-weight: 800;

  line-height: 1;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

/* ------------------------------------------------------------
   NÚMERO DA LEI
   ------------------------------------------------------------ */

.lei-numero {
  color: var(--color-text-secondary);

  font-size: 0.82rem;

  font-weight: 700;
}

/* ------------------------------------------------------------
   TÍTULO DO CARD
   ------------------------------------------------------------ */

.lei-cartao h3 {
  margin: 0;

  color: var(--color-text);

  font-size: clamp(1.2rem, 1.8vw, 1.5rem);

  font-weight: 800;

  line-height: 1.2;

  letter-spacing: -0.015em;
}

/* ------------------------------------------------------------
   TEXTO DO CARD
   ------------------------------------------------------------ */

.lei-cartao p {
  margin-top: 1rem;
  margin-bottom: 0;

  font-size: 0.95rem;

  line-height: 1.65;
}

/* ============================================================
   11. SEÇÃO 07 — INSTAGRAM
   ============================================================ */

.secao-instagram {
  width: 100%;

  margin-top: 0;

  padding: clamp(5rem, 9vw, 8rem) 1.25rem;

  background: var(--color-background-light);
}

/* ------------------------------------------------------------
   CONTAINER
   ------------------------------------------------------------ */

.container-instagram {
  width: min(100%, var(--container-width));

  margin-inline: auto;
}

/* ------------------------------------------------------------
   CABEÇALHO
   ------------------------------------------------------------ */

.instagram-cabecalho {
  width: min(100%, 850px);

  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.instagram-cabecalho h2 {
  max-width: 800px;
}

.instagram-cabecalho p {
  max-width: 700px;
}

/* ------------------------------------------------------------
   GRID
   ------------------------------------------------------------ */

.instagram-grade {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 1rem;

  align-items: start;
}

/* ------------------------------------------------------------
   POST
   ------------------------------------------------------------ */

.instagram-video {
  width: 100%;

  aspect-ratio: 9 / 16;

  overflow: hidden;

  background: var(--color-white);

  border-radius: var(--radius-md);

  box-shadow: var(--shadow-soft);
}

/* ============================================================
   12. RESPONSIVIDADE
   ============================================================ */

/* ============================================================
   MONITORES GRANDES — 1600px+
   ============================================================ */

@media (min-width: 1600px) {
  :root {
    --container-width: 1400px;
  }

  .container-trajetoria,
  .container-saude,
  .container-parlamento,
  .container-cultura,
  .container-leis,
  .container-instagram {
    width: min(calc(100% - 4rem), var(--container-width));
  }

  .trajetoria-galeria {
    min-height: 720px;
  }

  .saude-area-visual {
    min-height: 720px;
  }

  .container-trajetoria,
  .container-saude,
  .container-parlamento,
  .container-cultura {
    gap: clamp(4rem, 6vw, 8rem);
  }

  .leis-grade {
    gap: 1.5rem;
  }
}

/* ============================================================
   MONITORES MUITO GRANDES — 1920px+
   ============================================================ */

@media (min-width: 1920px) {
  :root {
    --container-width: 1480px;
  }

  .trajetoria-galeria {
    min-height: 780px;
  }

  .saude-area-visual {
    min-height: 780px;
  }

  .trajetoria-texto h1 {
    font-size: 5rem;
  }
}

/* ============================================================
   DESKTOP / NOTEBOOK — ATÉ 1100px
   ============================================================ */

@media (max-width: 1100px) {
  :root {
    --container-width: 1080px;
  }

  .container-trajetoria,
  .container-saude,
  .container-parlamento,
  .container-cultura {
    gap: 3rem;
  }

  .trajetoria-galeria {
    min-height: 560px;
  }

  .saude-area-visual {
    min-height: 580px;
  }

  .saude-foto {
    width: min(75%, 390px);
  }

  .leis-grade {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-grade {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================================================
   TABLET — ATÉ 800px
   ============================================================ */

@media (max-width: 800px) {
  /* ----------------------------------------------------------
     CONTAINERS
     ---------------------------------------------------------- */

  .container-trajetoria,
  .container-saude,
  .container-parlamento,
  .container-cultura {
    grid-template-columns: 1fr;

    gap: 2.5rem;
  }

  /* ----------------------------------------------------------
     TRAJETÓRIA
     ---------------------------------------------------------- */

  .trajetoria-galeria {
    width: 100%;

    max-width: 700px;

    min-height: 600px;

    margin-inline: auto;
  }

  .trajetoria-foto--principal {
    top: 7%;
    right: 8%;
    bottom: 6%;
    left: 12%;
  }

  .trajetoria-foto--perfil,
  .trajetoria-foto--atividade {
    width: clamp(125px, 23vw, 180px);
  }

  /* ----------------------------------------------------------
     SAÚDE
     ---------------------------------------------------------- */

  .saude-area-visual {
    order: -1;

    min-height: 590px;

    width: 100%;
  }

  .saude-foto {
    width: min(72%, 390px);
  }

  .saude-forma--azul {
    left: 5%;
    bottom: 4%;

    width: 35%;
    height: 58%;
  }

  .saude-forma--amarela {
    top: 4%;
    right: 5%;

    width: 32%;
    height: 48%;
  }

  /* ----------------------------------------------------------
     PARLAMENTO
     ---------------------------------------------------------- */

  .parlamento-foto {
    width: 100%;

    max-width: 680px;

    margin-inline: auto;
  }

  /* ----------------------------------------------------------
     CULTURA
     ---------------------------------------------------------- */

  .cultura-foto {
    width: 100%;

    max-width: 700px;

    margin-inline: auto;
  }

  /* ----------------------------------------------------------
     TRANSPARÊNCIA
     ---------------------------------------------------------- */

  .transparencia-cartao {
    width: 100%;
  }

  /* ----------------------------------------------------------
     LEGISLAÇÃO
     ---------------------------------------------------------- */

  .leis-grade {
    grid-template-columns: 1fr;
  }

  /* ----------------------------------------------------------
     INSTAGRAM
     ---------------------------------------------------------- */

  .instagram-grade {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================================================
   CELULAR — ATÉ 600px
   ============================================================ */

@media (max-width: 600px) {
  /* ----------------------------------------------------------
     CONTAINERS
     ---------------------------------------------------------- */

  .container-trajetoria,
  .container-saude,
  .container-parlamento,
  .container-cultura,
  .container-leis,
  .container-instagram {
    width: calc(100% - 2rem);
  }

  /* ----------------------------------------------------------
     SEÇÕES
     ---------------------------------------------------------- */

  .secao-trajetoria,
  .secao-saude,
  .secao-parlamento,
  .secao-cultura,
  .secao-leis {
    padding: 4.5rem 0;
  }

  /* ----------------------------------------------------------
     TÍTULOS
     ---------------------------------------------------------- */

  .trajetoria-texto h1 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .saude-texto h2,
  .parlamento-texto h2,
  .cultura-texto h2,
  .transparencia-cartao h2,
  .leis-cabecalho h2,
  .instagram-cabecalho h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  /* ----------------------------------------------------------
     TRAJETÓRIA
     ---------------------------------------------------------- */

  .trajetoria-galeria {
    min-height: 450px;
  }

  .trajetoria-foto--principal {
    top: 7%;
    right: 7%;
    bottom: 7%;
    left: 9%;

    border-radius: var(--radius-md);
  }

  .trajetoria-foto--perfil,
  .trajetoria-foto--atividade {
    width: 115px;

    border-width: 5px;

    border-radius: 14px;
  }

  /* ----------------------------------------------------------
     SAÚDE
     ---------------------------------------------------------- */

  .saude-area-visual {
    min-height: 500px;
  }

  .saude-foto {
    width: min(76%, 340px);

    border-radius: var(--radius-md);
  }

  .saude-forma--azul {
    left: 2%;

    width: 36%;
    height: 52%;
  }

  .saude-forma--amarela {
    right: 2%;

    width: 32%;
    height: 45%;
  }

  /* ----------------------------------------------------------
     PARLAMENTO
     ---------------------------------------------------------- */

  .parlamento-foto {
    border-radius: var(--radius-md);
  }

  /* ----------------------------------------------------------
     CULTURA
     ---------------------------------------------------------- */

  .cultura-foto {
    border-radius: var(--radius-md);
  }

  /* ----------------------------------------------------------
     TRANSPARÊNCIA
     ---------------------------------------------------------- */

  .secao-transparencia {
    padding: 3rem 1rem;
  }

  .transparencia-cartao {
    padding: 2rem 1.25rem;

    border-radius: var(--radius-md);
  }

  /* ----------------------------------------------------------
     LEGISLAÇÃO
     ---------------------------------------------------------- */

  .lei-cartao {
    padding: 1.35rem;
  }

  /* ----------------------------------------------------------
     INSTAGRAM
     ---------------------------------------------------------- */

  .secao-instagram {
    padding: 4.5rem 1rem;
  }

  .instagram-grade {
    grid-template-columns: 1fr;

    gap: 1.25rem;
  }

  .instagram-video {
    width: 100%;

    max-width: 420px;

    margin-inline: auto;
  }
}

/* ============================================================
   CELULARES PEQUENOS — ATÉ 380px
   ============================================================ */

@media (max-width: 380px) {
  /* ----------------------------------------------------------
     TRAJETÓRIA
     ---------------------------------------------------------- */

  .trajetoria-galeria {
    min-height: 380px;
  }

  .trajetoria-foto--perfil,
  .trajetoria-foto--atividade {
    width: 92px;

    border-width: 4px;
  }

  .trajetoria-foto--principal {
    top: 8%;
    right: 6%;
    bottom: 8%;
    left: 9%;
  }

  /* ----------------------------------------------------------
     SAÚDE
     ---------------------------------------------------------- */

  .saude-area-visual {
    min-height: 440px;
  }

  .saude-foto {
    width: 78%;

    border-radius: 16px;
  }

  .saude-forma--azul {
    width: 34%;
    height: 48%;
  }

  .saude-forma--amarela {
    width: 30%;
    height: 42%;
  }

  /* ----------------------------------------------------------
     TIPOGRAFIA
     ---------------------------------------------------------- */

  .trajetoria-texto h1 {
    font-size: 2.15rem;
  }

  .saude-texto h2,
  .parlamento-texto h2,
  .cultura-texto h2,
  .transparencia-cartao h2,
  .leis-cabecalho h2,
  .instagram-cabecalho h2 {
    font-size: 1.85rem;
  }

  .trajetoria-texto p,
  .saude-texto p,
  .parlamento-texto p,
  .cultura-texto p,
  .transparencia-cartao p,
  .leis-cabecalho p,
  .lei-cartao p,
  .instagram-cabecalho p {
    font-size: 0.96rem;
  }
}

/* ============================================================
   13. ACESSIBILIDADE
   ============================================================ */

/* ------------------------------------------------------------
   FOCO PELO TECLADO
   ------------------------------------------------------------ */

a:focus-visible {
  outline: 3px solid var(--color-yellow);

  outline-offset: 4px;

  border-radius: 4px;
}

/* ------------------------------------------------------------
   REDUÇÃO DE MOVIMENTO
   ------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;

    scroll-behavior: auto !important;
  }
}
