:root{
  --green: #407f55;
  --text: #1b1f1d;
  --muted: #6b7470;
  --line: #e7ece9;
  --card: #ffffff;
  --bg: #ffffff;

  --container: 1200px;

  /* topo */
  --topbar-h: 98px;          /* desktop */
  --menu-w: 90%;             /* menu branco menor */
  --faepr-w: 140px;          /* faepr menor */
  --faepr-gap: 10px;         /* "grudado" no menu */
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* seção padrão (anchors do menu) */
.section{
  background: #fff;
  padding: 70px 0;
}
.section__title{
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.section__text{
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 780px;
}

/* =========================
   TOPO
   ========================= */

/* Barra verde fixa */
.topbar{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--topbar-h);
  background: var(--green);
  z-index: 100;
}

/*
  Header:
  - centro do header na linha de corte (fim do verde) => metade no verde / metade no hero
*/
.header{
  position: fixed;
  top: calc(var(--topbar-h) - 12px);
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 120;
}

.header__wrap{ position: relative; }

/* Barra branca 90% do container e centralizada */
.header__inner{
  width: var(--menu-w);
  margin: 0 auto;

  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 1px 1px rgba(0,0,0,.06);

  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
}

.brand__logo{
  width: 260px;
  height: auto;
  object-fit: contain;
}

.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link{
  text-decoration: none;
  color: #2a312e;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 4px;
}

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

.header__right{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__seal{ object-fit: contain; }

/* Tagline */
.header__tagline{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  z-index: 2;
}

.tagline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  letter-spacing: .10em;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 1px 0 rgba(0,0,0,.10);
}

/*
  FAEPR grudado no menu (na área verde)
*/
.topbar__faepr{
  position: fixed;
  top: 40px;
  z-index: 130;
  width: var(--faepr-w);
  height: auto;
  object-fit: contain;

  left: 50%;
  transform: translateX(
    calc(
      (min(var(--container), calc(100vw - 32px)) / 2)
      - (min(var(--container), calc(100vw - 32px)) / 20)
      + var(--faepr-gap)
    )
  );
}

/* Hamburger */
.hamburger{
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.hamburger span{
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: #2a312e;
}

.nav--mobile{
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 22px);
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 6px;
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
  padding: 10px 12px;
  flex-direction: column;
  gap: 0;
  z-index: 160;
}


.nav--mobile .nav__link{
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
}

.nav--mobile .nav__link:last-child{ border-bottom: 0; }
.nav--mobile.is-open{ display: flex; }

/* =========================
   HERO
   ========================= */

.hero{
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
}

.hero__bg{ position: absolute; inset: 0; }
.hero__bg img{ width: 100%; height: 100%; object-fit: cover; }

.hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.60));
}

.hero__content{
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: calc(var(--topbar-h) - 60px);
}

.hero__container{ max-width: 900px; }

.hero__eyebrow{
  color: rgba(255,255,255,.95);
  font-size: 20px;
  letter-spacing: .32em;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero__text{
  color: rgba(255,255,255,.86);
  margin: 0 auto 18px auto;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
}

.hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 26px;
  border: 1px solid rgba(255,255,255,.65);
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .20em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero__btn:hover{
  border-color: rgba(255,255,255,.90);
  color: #fff;
}

/* =========================
   PORTAL (bloco branco)
   ========================= */

.portal{
  background: #fff;
  padding: 56px 0 54px 0;
}

/* Container: grid principal onde cards e notícia coexistem */
.portal__layout{
  display: grid;
  grid-template-columns: 560px 1fr;
  grid-template-rows: auto;
  gap: 0;
  align-items: start;
}

/* CARDS: grid 3x2, fica na coluna 1 mas a 3ª coluna invade a col 2 */
.portal__cards{
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  position: relative;
  display: grid;
  grid-template-columns: 180px 190px 170px;
  gap: 14px;
  align-items: start;
}

/* NOTÍCIA: fica na coluna 2, começa alinhada com os cards */
.portal__news{
  grid-column: 2;
  grid-row: 1;
  margin-left: -50px; /* puxa a notícia pra esquerda, ficando atrás da 3ª coluna de cards */
  padding-left: 70px; /* compensa o margin negativo pro conteúdo não ficar atrás dos cards */
}

.stack{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Cards sem sombras/raio */
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.card--plain{ padding: 16px; }

.card--center{
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
}

.card--tall{ min-height: 210px; }

.card__headerRow{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.card__title{
  margin: 0;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 700;
  color: #2a312e;
}

.card__small{
  font-size: 10px;
  color: var(--muted);
}

.card__titleCentered{
  margin: 0;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 700;
  color: #2a312e;
}

.card__textCentered{
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 220px;
}

.card__textCentered--small{ font-size: 11px; max-width: 180px; }

/* Links dentro dos cards */
.card__link{
  text-decoration: none;
  color: inherit;
  transition: color .2s ease;
}

.card__link:hover{
  color: var(--green);
  text-decoration: underline;
}

.card--clickable{
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s ease;
}

.card--clickable:hover{
  opacity: .9;
}

/* Card SENAR */
.card--senar{
  gap: 6px;
  background: #ececec;
  border-color: #e0e0e0;
}

.senar__logo{
  width: auto;
  height: auto;
  max-width: 100px;
  max-height: 70px;
  object-fit: contain;
}

.senar__calendar{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 6px 0;
  color: #6bb76c;
}

.senar__calendar svg{
  stroke: #6bb76c;
  width: 100%;
  height: 100%;
}

.senar__calendar svg rect[fill]{ fill: #6bb76c; }

.divider{
  width: 68px;
  height: 1px;
  background: var(--line);
}

/* Ícone placeholder */
.icon{
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
}

.icon--people{
  background:
    radial-gradient(circle at 14px 18px, #7a8a83 2px, transparent 3px),
    radial-gradient(circle at 22px 16px, #7a8a83 2px, transparent 3px),
    radial-gradient(circle at 30px 18px, #7a8a83 2px, transparent 3px);
}

/* Card imagem */
.card--image{
  position: relative;
  overflow: hidden;
}

.card__media{
  position: absolute;
  inset: 0;
}

.card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__imageOverlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.60));
}

.card__imageOverlay--bottom{
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,.58), rgba(0,0,0,.10));
}

.card__kicker{
  color: rgba(255,255,255,.85);
  font-size: 10px;
  letter-spacing: .12em;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.card__titleBig{
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.card__titleBig--sm{ font-size: 16px; }

/* Botões */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border-radius: 0;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 700;
  font-family: inherit;
}

.btn--primary{ background: var(--green); color: #fff; }
.btn--primary:hover{ filter: brightness(0.95); }

.btn--ghost{ background: rgba(64,127,85,.90); color: #fff; }
.btn--ghost:hover{ background: rgba(64,127,85,1); }

/* Câmbio */
.fx__name{ font-size: 12px; color: #2a312e; margin-bottom: 8px; }
.fx__row{ display: flex; align-items: center; gap: 10px; }

.fx__badge{
  font-size: 10px;
  font-weight: 700;
  background: #f3f6f4;
  border: 1px solid var(--line);
  padding: 4px 6px;
}

.fx__value{ font-size: 14px; }

.fx__spark{
  margin-top: 10px;
  height: 54px;
  border-top: 1px solid var(--line);
  position: relative;
}

.fx__sparkLine{
  position: absolute;
  left: 0; right: 0;
  top: 20px;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(64,127,85,.15),
    rgba(64,127,85,.65),
    rgba(64,127,85,.20)
  );
}

/* Clima */
.card--weather{
  padding: 10px 12px;
  background: linear-gradient(180deg, #3a8bbf 0%, #6aadd4 100%);
  border-color: rgba(255,255,255,.12);
}

.card--weather .weather__icon{
  color: #ffd54a;
}

.card--weather .weather__icon svg{
  width: 100%;
  height: 100%;
}

.weather__top{
  text-align: center;
  color: rgba(255,255,255,.9);
  font-size: 9px;
  letter-spacing: .12em;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.weather__main{
  display: grid;
  place-items: center;
  gap: 2px;
  margin-bottom: 6px;
  position: relative;
}

.weather__icon{
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
}

.weather__icon svg{ width: 100%; height: 100%; display: block; }

.weather__temp{
  color: #fff;
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
}

.weather__desc{
  color: rgba(255,255,255,.92);
  font-size: 8px;
  letter-spacing: .10em;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.weather__list{
  background: rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 4px 8px;
  margin-top: 6px;
}

.weather__row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,.92);
  font-size: 9px;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.weather__row:last-child{ border-bottom: 0; }

/* Notícia */
.card--news{
  background: #f9f9f9;
  border-color: #efefef;
}

.news{
  padding: 28px;
}

.news__title{
  margin: 0 0 18px 0;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 400;
  color: #2a2a2a;
}

.news__body{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.news__excerpt{
  margin: 0 0 18px 0;
  font-size: 12px;
  line-height: 1.65;
  color: #6e6e6e;
}

.news__media{
  overflow: hidden;
  border-radius: 2px;
  height: 380px;
}

.news__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* =========================
   EVENTOS (novo)
   ========================= */

.events{
  background: #fff;
  padding: 72px 0 76px 0;
}

.events__head{
  text-align: center;
  margin-bottom: 18px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.events__icon{
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.events__kicker{
  font-size: 10px;
  letter-spacing: .22em;
  font-weight: 800;
  text-transform: uppercase;
  color: #6b7470;
}

.events__title{
  margin: 0;
  font-size: 22px;
  letter-spacing: .14em;
  font-weight: 500;
  color: #132019;
  text-transform: uppercase;
}

/* palco com 3 cards */
.events__stage{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  gap: 28px;
  align-items: start;
}

.eventCard{
  position: relative;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.eventCard__link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.eventCard__label{
  text-align: center;
  font-size: 9px;
  letter-spacing: .16em;
  font-weight: 800;
  text-transform: uppercase;
  color: #1b1f1d;
  margin-bottom: 10px;
}

.eventCard__media{
  position: relative;
  width: 100%;
  height: 320px;
  background: #f2f5f3;
  overflow: hidden;
  border: 0;
}

.eventCard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* setas laterais (em cima da imagem) */
.eventCard__arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  cursor: pointer;
  background: #9be25c;
  display: grid;
  place-items: center;
}

.eventCard__arrow svg{ width: 16px; height: 16px; color: #0e1a12; }
.eventCard__arrow--left{ left: 10px; }
.eventCard__arrow--right{ right: 10px; }

/* card central com texto em caixa branca */
.eventCard--main .eventCard__media{
  height: 360px;
}

.eventCard__info{
  position: relative;
  width: 78%;
  margin: -22px auto 0 auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  padding: 18px 20px;
}

.eventCard__infoTitle{
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: 800;
  color: #132019;
  line-height: 1.35;
}

.eventCard__infoText{
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: #6b7470;
}

.events__cta{
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.events__more{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border-radius: 0;
  border: 0;
  background: #2e7c5f;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: .22em;
  font-weight: 800;
  text-transform: uppercase;
}

.events__more:hover{ filter: brightness(0.98); }

/* Setas do card principal: escondidas no desktop, visíveis no mobile */
.eventCard__arrow--main{
  display: none;
}

/* =========================
   BLOCO REVISTA
   ========================= */

.revista{
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: linear-gradient(90deg, #1a705b 0 62%, #9be25c 62% 100%);
}

/* foto no lado esquerdo com degradê suave */
.revista__bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Imagem: empurrada para esquerda */
.revista__bg::before{
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -5%;
  width: 40%;
  background: url("/content/assets/img/revista/revista-bg.jpg") 70% center / cover no-repeat;
  opacity: .18;
  mix-blend-mode: multiply;
}

/* Degradê: começa cedo na imagem para transição bem suave */
.revista__bg::after{
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 8%;
  width: 30%;
  background: linear-gradient(to right, transparent 0%, #1a705b 90%);
}

.revista__grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 360px 0.95fr;
  gap: 34px;
  align-items: center;
}

.revista__left{
  color: #fff;
  padding-right: 8px;
}

.revista__eyebrow{
  font-size: 9px;
  letter-spacing: .22em;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin: 0 0 12px 0;
}

.revista__title{
  margin: 0 0 12px 0;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.revista__text{
  margin: 0 0 18px 0;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  max-width: 420px;
}

/* botão EDIÇÕES */
.revista__btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 18px;
  background: #9be25c;
  color: #1a705b;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 900;
  text-transform: uppercase;
  border: 0;
}

.revista__btnIcon{
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  background: rgba(26,112,91,.14);
  color: #1a705b;
  font-weight: 900;
  line-height: 1;
}

.revista__coverWrap{
  display: grid;
  place-items: center;
}

.revista__coverLink{
  display: block;
  text-decoration: none;
}

.revista__cover{
  width: 340px;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  transform: translateX(18px);
}

.revista__right{
  padding-left: 6px;
}

.revista__headline{
  margin: 0 0 10px 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
  max-width: 360px;
}

.revista__lead{
  margin: 0 0 14px 0;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(26,112,91,.92);
  max-width: 380px;
}

.revista__topics{
  display: grid;
  gap: 10px;
  margin: 10px 0 16px 0;
}

.revista__topicTitle{
  margin: 0 0 2px 0;
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;
}

.revista__topicText{
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(26,112,91,.92);
  max-width: 380px;
}

.revista__btn2{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  background: #1a705b;
  color: #ffffff;
  text-decoration: none;
  font-size: 9px;
  letter-spacing: .18em;
  font-weight: 900;
  text-transform: uppercase;
  border: 0;
}

.revista__btn:hover,
.revista__btn2:hover{ filter: brightness(0.98); }

/* =========================
   BLOCO SERVIÇOS
   ========================= */

.services{
  background: #fff;
  padding: 78px 0;
}

.services__head{
  text-align: center;
  margin-bottom: 26px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.services__icon{
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.services__title{
  margin: 0 0 10px 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #132019;
}

.services__subtitle{
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
}

.services__grid{
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.services__col{
  font-size: 11px;
  line-height: 1.85;
  color: #1b1f1d;
}

/* lista SEM bullets/ícones */
.services__list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.services__list li{
  padding-left: 0;
  position: static;
  margin: 4px 0;
  line-height: 2;
}
.services__list li::before{ content: none; }

.services__cta{
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.services__ctaBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 22px;
  background: #9be25c;
  color: #132019;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: .22em;
  font-weight: 900;
  text-transform: uppercase;
  border: 0;
}

.services__ctaBtn:hover{ filter: brightness(0.98); }

/* =========================
   BLOCO VÍDEO + GALERIA
   ========================= */

.mediawall{
  position: relative;
  overflow: hidden;
  padding: 72px 0 78px 0;
  background: #0f2d24;
}

.mediawall__bg{
  position: absolute;
  inset: 0;
  background: url("/content/assets/img/mediawall/bg-trigo.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.mediawall__band{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0) 0 18%,
      rgba(0,0,0,.38) 18% 82%,
      rgba(0,0,0,0) 82% 100%
    );
}

.mediawall__container{
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
  justify-items: center;
  text-align: center;
}

.mediawall__head,
.mediawall__galleryHead{
  display: grid;
  justify-items: center;
  gap: 8px;
}

.mediawall__kicker{
  font-size: 9px;
  letter-spacing: .22em;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.mediawall__icon{
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.92);
}

.mediawall__icon svg{
  width: 100%;
  height: 100%;
  display: block;
}

.mediawall__video{
  width: min(900px, 100%);
  border: 3px solid rgba(255,255,255,.95);
  background: rgba(255,255,255,.06);
}

.videoFrame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.videoFrame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery{
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 16px;
}

.gallery__track{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery__track::-webkit-scrollbar{ display: none; }

.gallery__item{
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: start;
  text-decoration: none;
  border: 3px solid rgba(255,255,255,.95);
  background: rgba(255,255,255,.06);
  overflow: hidden;
}

.gallery__item img{
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.gallery__nav{
  width: 44px;
  height: 44px;
  border: 0;
  cursor: pointer;
  background: #9be25c;
  display: grid;
  place-items: center;
}

.gallery__nav svg{
  width: 18px;
  height: 18px;
  color: #0e1a12;
}

.gallery__nav:hover{ filter: brightness(0.98); }

/* =========================
   BLOCO DIRETORIA
   ========================= */

.directoria{
  background: #fff;
  padding: 78px 0;
}

.directoria__head{
  text-align: center;
  margin-bottom: 22px;
}

.directoria__tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 9px;
  letter-spacing: .32em;
  font-weight: 800;
  padding: 6px 10px;
  text-transform: uppercase;
}

.directoria__group{
  margin-top: 26px;
  text-align: center;
}

.directoria__groupTag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 8px;
  letter-spacing: .34em;
  font-weight: 900;
  padding: 5px 10px;
  text-transform: uppercase;
  margin: 18px 0 16px 0;
}

.directoria__subLabel{
  font-size: 9px;
  letter-spacing: .18em;
  font-weight: 800;
  text-transform: uppercase;
  color: #1b1f1d;
  margin: 0 0 10px 0;
}

.person{
  text-align: center;
  color: #1b1f1d;
}

.person__photo{
  width: 92px;
  height: 92px;
  object-fit: cover;
  margin: 0 auto 8px auto;
  border: 1px solid var(--line);
  background: #f3f6f4;
}

.person__name{
  margin: 0;
  font-size: 9px;
  letter-spacing: .10em;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.25;
}

.person__role{
  margin: 3px 0 0 0;
  font-size: 10px;
  line-height: 1.2;
  color: var(--muted);
  font-style: italic;
}

.boardGrid{
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 34px;
  justify-items: center;
  align-items: start;
}

.span-4{ grid-column: 1 / -1; }
.span-2{ grid-column: span 2; }
.span-1{ grid-column: span 1; }

.councilGrid{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.peopleRow{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 28px;
  justify-items: center;
}

.commissionsGrid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 22px;
  align-items: start;
}

.commission__title{
  margin: 0 0 12px 0;
  font-size: 9px;
  letter-spacing: .18em;
  font-weight: 900;
  text-transform: uppercase;
  color: #1b1f1d;
  text-align: center;
}

.commission__people{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 14px;
  justify-items: center;
}

.person--mini .person__photo{ width: 64px; height: 64px; }
.person--mini .person__name{ font-size: 8px; letter-spacing: .08em; }
.person--mini .person__role{ font-size: 9px; }

/* =========================
   FOOTER (refeito)
   ========================= */

.site-footer{ margin-top: 0; }

.site-footer__top{
  background: #1a705b;
  color: #fff;
  padding: 54px 0;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.25fr;
  gap: 64px;
  align-items: start;
}

.footer-title{
  margin: 0 0 16px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.footer-brand__logo{
  width: 230px;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer-brand__tagline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1a705b;
  padding: 7px 12px;
  font-size: 9px;
  letter-spacing: .12em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-brand__text{
  margin: 0 0 18px 0;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 320px;
}

.footer-social{
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer-social__btn{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  color: #1a705b;
  display: grid;
  place-items: center;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.18);
}

.footer-social__btn svg{ width: 18px; height: 18px; display: block; }

.footer-contact__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.footer-contact__item{
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.footer-ico{
  width: 32px;
  height: 32px;
  color: rgba(200, 240, 160, .95);
}

.footer-ico svg{ width: 100%; height: 100%; display: block; }

.footer-contact__label{
  font-size: 11px;
  font-weight: 800;
  margin: 0 0 2px 0;
  color: rgba(255,255,255,.95);
}

.footer-contact__value{
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
  color: rgba(255,255,255,.82);
}

.footer-links__group{ margin-bottom: 16px; }

.footer-links__kicker{
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .10em;
  margin: 0 0 10px 0;
  color: rgba(255,255,255,.92);
  text-transform: uppercase;
}

.footer-links__link{
  display: block;
  font-size: 11px;
  line-height: 1.65;
  color: rgba(255,255,255,.80);
  text-decoration: none;
  margin: 0 0 6px 0;
}

.footer-links__link:hover{
  text-decoration: underline;
  color: rgba(255,255,255,.95);
}

.site-footer__bottom{
  background: #ffffff;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #6b7470;
  font-size: 11px;
}

.footer-legal{
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-legal a{
  color: #6b7470;
  text-decoration: none;
}

.footer-legal a:hover{ text-decoration: underline; }

/* =========================
   RESPONSIVO
   ========================= */

@media (max-width: 1100px){
  .nav--desktop{ display: none; }
  .hamburger{ display: inline-block; }

  .header__inner{ width: 100%; }
  .brand__logo{ width: 260px; }

  .topbar__faepr{ display: none; }

  /* Portal: desfaz sobreposição, empilha */
  .portal__layout{
    display: block;
  }
  .portal__cards{
    grid-template-columns: 1fr 1fr;
    margin-bottom: 22px;
  }
  .portal__news{
    margin-left: 0;
    padding-left: 0;
  }
  .news__body{ grid-template-columns: 1fr; }
  .news__media img{ height: 260px; }

  .events__stage{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Mobile: esconde laterais, mostra só o principal como carrossel */
  .eventCard--slot-left,
  .eventCard--slot-right{
    display: none;
  }

  .eventCard__arrow--main{
    display: grid;
  }
}

@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand__text{ max-width: 520px; }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }

  .revista{
    padding: 56px 0 60px 0;
    background: linear-gradient(180deg, #1a705b 0 58%, #9be25c 58% 100%);
  }

  .revista__bg::before{
    width: 100%;
    height: 58%;
  }

  .revista__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .revista__cover{
    transform: none;
    width: 360px;
  }

  .services{
    padding: 58px 0;
  }

  .services__grid{
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 26px;
  }

  .mediawall{
    padding: 56px 0 60px 0;
  }

  .mediawall__video{
    width: min(680px, 100%);
  }

  .gallery{
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
  }

  .gallery__item{ width: 200px; }
  .gallery__item img{ height: 120px; }
  .gallery__item img{ height: 78px; }

  .boardGrid{
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
  }

  .span-2{ grid-column: 1 / -1; }

  .councilGrid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .commissionsGrid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px){
  :root{ --topbar-h: 72px; }

  .brand__logo{ width: 210px; }
  .header__seal{ display: none; }
  .header__tagline{ position: static; transform: none; text-align: center; margin: -1px 0 0 0; padding: 0; }

  .hero{
    min-height: 620px;
    max-height: none;
  }

  .hero__content{
    padding-top: calc(var(--topbar-h) + 42px);
  }

  .portal{ padding: 40px 0 44px 0; }
  .portal__cards{ grid-template-columns: 1fr; }

  .weather__icon{ width: 48px; height: 48px; }
  .news__title{ font-size: 22px; }

  .revista__title{ font-size: 30px; }
  .revista__cover{ width: 320px; }

  .gallery{
    grid-template-columns: 40px 1fr 40px;
  }

  .gallery__nav{ width: 40px; height: 40px; }
  .gallery__item{ width: 100%; max-width: 280px; }
  .gallery__item img{ height: 160px; }

  .boardGrid{
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .peopleRow{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .commissionsGrid{
    grid-template-columns: 1fr;
  }

  .commission__people{
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =============================================
   ADIÇÕES PARA O TEMPLATE PHP
   (superbanner, breadcrumb, páginas internas,
    post, erro 404)
   ============================================= */

/* ----- Superbanner (páginas internas) ----- */
.superbanner{
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  /* fallback se a imagem não carregar */
  background: linear-gradient(135deg, #1a705b 0%, #407f55 40%, #9be25c 100%);
}

.superbanner__img{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.superbanner__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.superbanner__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(26,112,91,.82) 0%,
    rgba(26,112,91,.55) 40%,
    rgba(0,0,0,.35) 100%
  );
}

.superbanner__content{
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 36px;
}

.superbanner__title{
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .02em;
  text-shadow: 0 2px 8px rgba(0,0,0,.18);
}

.superbanner__subtitle{
  margin: 0 0 12px 0;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

/* Breadcrumb */
.breadcrumb{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.breadcrumb__link{
  color: rgba(255,255,255,.65);
  text-decoration: none;
}
.breadcrumb__link:hover{ color: #fff; }
.breadcrumb__sep{ color: rgba(255,255,255,.35); }

.breadcrumb__current{
  color: #9be25c;
  font-weight: 600;
}

@media (max-width: 980px){
  .superbanner{ height: 300px; }
  .superbanner__title{ font-size: 24px; }
}

@media (max-width: 680px){
  .superbanner{ height: 260px; }
  .superbanner__title{ font-size: 20px; }
  .superbanner__content{ padding-bottom: 28px; }
}

/* ----- Main interno (padding entre banner e conteúdo / conteúdo e footer) ----- */
.main-internal{
  padding-top: 48px;
  padding-bottom: 80px;
  min-height: 50vh;
}

/* ----- Post (páginas dinâmicas) ----- */
.post__container{
  width: min(800px, calc(100% - 32px));
  margin: 0 auto;
}

.post__header{
  margin-bottom: 24px;
}

.post__date{
  display: inline-block;
  font-size: 12px;
  color: var(--muted);
}

.post__image{
  margin: 0 0 28px 0;
  overflow: hidden;
}

.post__image img{
  width: 100%;
  height: auto;
  display: block;
}

.post__content{
  font-size: 14px;
  line-height: 1.8;
  color: #2a312e;
}

.post__content p{
  margin: 0 0 1.2em 0;
}

.post__content img{
  margin: 1.5em 0;
}

.post__back{
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.post__backLink{
  color: var(--green);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

.post__backLink:hover{
  text-decoration: underline;
}

/* Post título e resumo */
.post__title{
  margin: 8px 0 10px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 400;
  color: #2a2a2a;
}

.post__resumo{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
}

/* Barra de compartilhamento */
.post__share{
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}

.post__shareLabel{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.post__shareButtons{
  display: flex;
  gap: 8px;
}

.post__shareBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: filter .2s ease, transform .2s ease;
}

.post__shareBtn:hover{
  filter: brightness(0.9);
  transform: translateY(-2px);
  color: #fff;
}

.post__shareBtn svg{ display: block; }

.post__shareBtn--whatsapp{ background: #25D366; }
.post__shareBtn--facebook{ background: #1877F2; }
.post__shareBtn--linkedin{ background: #0A66C2; }
.post__shareBtn--twitter{ background: #1a1a1a; }
.post__shareBtn--email{ background: #6b7470; }

/* Pagination dots */
.pagination__dots{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  font-size: 14px;
  color: var(--muted);
}

/* ----- Erro 404 ----- */
.erro404__container{
  text-align: center;
  padding: 40px 16px 60px;
}

.erro404__code{
  font-size: 80px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

.erro404__heading{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text);
}

.erro404__text{
  max-width: 480px;
  margin: 0 auto 24px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* ----- Listagem de posts (posts.php) ----- */
.posts-list{
  padding: 10px 0 40px;
}

/* Busca */
.posts-search{
  margin-bottom: 28px;
}

.posts-search__form{
  display: flex;
  max-width: 480px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.posts-search__input{
  flex: 1;
  border: 0;
  padding: 10px 14px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #fff;
}

.posts-search__input::placeholder{
  color: #aaa;
}

.posts-search__btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  border: 0;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  transition: filter .2s;
}

.posts-search__btn:hover{
  filter: brightness(.9);
}

.posts-search__result{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.posts-search__clear{
  margin-left: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
}

/* ----- Veja também (post.php) ----- */
.post__related{
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.post__relatedTitle{
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
}

.post__relatedGrid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.relatedCard{
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: box-shadow .2s;
}

.relatedCard:hover{
  box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.relatedCard__media{
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: #f3f6f4;
}

.relatedCard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.relatedCard__body{
  padding: 10px 12px;
}

.relatedCard__date{
  font-size: 9px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.relatedCard__title{
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.posts-list__empty{
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 60px 0;
}

.posts-list__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.postCard{
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: box-shadow .2s ease;
}

.postCard:hover{
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.postCard__media{
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f3f6f4;
}

.postCard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.postCard__media--placeholder{
  background: linear-gradient(135deg, #e7ece9, #d5ddd8);
}

.postCard__body{
  padding: 16px;
}

.postCard__date{
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.postCard__title{
  margin: 6px 0 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.postCard__excerpt{
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Paginação */
.pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
}

.pagination__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.pagination__link:hover{
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.pagination__current{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
}

/* Post tags */
.post__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}

.post__tag{
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--green);
  border: 1px solid var(--line);
  text-transform: uppercase;
}

.post__retranca{
  display: inline-block;
  margin-left: 12px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .10em;
  color: #fff;
  background: var(--green);
  text-transform: uppercase;
}

@media (max-width: 980px){
  .posts-list__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px){
  .posts-list__grid{
    grid-template-columns: 1fr;
  }
}

/* ----- Câmbio: badge variação ----- */
.fx__badge--up{ background: #e8f5e9; color: #2e7d32; border-color: #c8e6c9; }
.fx__badge--down{ background: #ffebee; color: #c62828; border-color: #ffcdd2; }
.fx__arrow{ font-weight: 400; opacity: .5; }

.fx__spark canvas{
  display: block;
  width: 100%;
}

/* ----- Clima: novos elementos ----- */
.weather__wind{
  text-align: center;
  font-size: 8px;
  letter-spacing: .08em;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.weather__humidity{
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  text-align: center;
}

.weather__rowDay{
  flex: 1;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 9px;
}

.weather__rowIcon{
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 6px;
}

.weather__rowIcon svg{
  width: 100%;
  height: 100%;
}

.weather__rowTemp{
  min-width: 24px;
  text-align: right;
  font-weight: 700;
  font-size: 9px;
}

/* ----- Comissões: layout 3 cima + 4 baixo ----- */
.commissionsGrid--top{
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 32px;
}

.commissionsGrid--bottom{
  grid-template-columns: repeat(4, 1fr);
}

.commission__people--text .person__photo{
  width: 220px;
  height: 150px;
  border-radius: 0;
  object-fit: cover;
  object-position: top;
}

.commission__names{
  margin: 4px 0 0 0;
  font-size: 8px;
  letter-spacing: .06em;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.4;
  color: #1b1f1d;
  max-width: 220px;
}

.commission__people--text{
  grid-template-columns: 1fr;
  justify-items: center;
}

@media (max-width: 980px){
  .commissionsGrid--top{
    grid-template-columns: repeat(2, 1fr);
  }
  .commissionsGrid--bottom{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px){
  .commissionsGrid--top,
  .commissionsGrid--bottom{
    grid-template-columns: 1fr;
  }
}

/* =============================
   PÁGINAS ESTÁTICAS
   ============================= */

.page-content{
  padding: 10px 0 48px;
}

.page-content__container{
  max-width: 960px;
}

.page-content h2{
  margin: 28px 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.page-content h3{
  margin: 22px 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.page-content p{
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.7;
  color: #4a4a4a;
}

.page-content a{
  color: var(--green);
}

/* ----- Contato ----- */
.contato__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.contato__titulo{
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.contato__titulo--mt{
  margin-top: 32px;
}

.contato__dados{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contato__item{
  display: flex;
  gap: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #4a4a4a;
}

.contato__item a{
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.contato__icon{
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--green);
  margin-top: 2px;
}

.contato__mapa{
  border: 1px solid var(--line);
  overflow: hidden;
}

.contato__mapa iframe{
  display: block;
  width: 100%;
  min-height: 400px;
}

/* ----- Estrutura ----- */
.estrutura__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.estrutura__titulo{
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
}

.estrutura__lista{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.estrutura__item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4a4a4a;
  padding: 8px 12px;
  background: #f9faf9;
  border-left: 3px solid var(--green);
}

.estrutura__icon{
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--green);
}

/* ----- Agenda SENAR ----- */
.senar-agenda__header{
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.senar-agenda__logo{
  width: 100px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.senar-agenda__titulo{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.senar-agenda__desc{
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #4a4a4a;
}

.senar-agenda__cta{
  text-align: center;
  margin: 32px 0;
}

.btn--lg{
  padding: 14px 28px;
  font-size: 13px;
}

.senar-agenda__info{
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

/* ----- Cookie Banner ----- */
.cookie-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1b1f1d;
  border-top: 3px solid var(--green);
  padding: 16px 20px;
}

.cookie-banner__content{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner__text{
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}

.cookie-banner__text a{
  color: #9be25c;
  text-decoration: underline;
}

.cookie-banner__btn{
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  border: 0;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  cursor: pointer;
  transition: filter .2s;
}

.cookie-banner__btn:hover{
  filter: brightness(.9);
}

@media (max-width: 680px){
  .contato__grid,
  .estrutura__grid{
    grid-template-columns: 1fr;
  }

  .senar-agenda__header{
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__content{
    flex-direction: column;
    text-align: center;
  }
}

/* ----- Quem Somos ----- */
.quem-somos__intro{
  max-width: 780px;
  margin-bottom: 36px;
}

.quem-somos__intro p{
  font-size: 14px;
  line-height: 1.8;
}

.quem-somos__cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quem-somos__card{
  background: #f7f9f8;
  border-left: 4px solid var(--green);
  padding: 28px 24px;
}

.quem-somos__cardIcon{
  color: var(--green);
  margin-bottom: 12px;
}

.quem-somos__cardTitle{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
}

.quem-somos__cardText{
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #4a4a4a;
}

@media (max-width: 680px){
  .quem-somos__cards{
    grid-template-columns: 1fr;
  }
}
