:root{
  --bg:#ffffff;
  --card:#ffffff;

  --text:#0b0d12;
  --muted:#5b6574;

  --line: rgba(11,13,18,.12);

  --green-neon:#1fff71;
  --green-light:#1eff7f;
  --green-main:#076e48;
  --green-dark:#024b02;
  --green-darker:#0b3b33;

  --radius:18px;
  --shadow: 0 18px 50px rgba(0,0,0,.10);
}

/* BASE */
*{ box-sizing:border-box; }

html,
body{
  margin:0;
  padding:0;
  font-family: Inter, system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Arial;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

body::-webkit-scrollbar{ display:none; }

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

.container-seta{
  position: absolute;
}

#btnTopo{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #0b3b33;
  border: none;
  z-index: 999;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}

.container{ width:min(1000px, 92%); margin:0 auto; }

.section{ padding:34px 0; }

.section-title{ margin:6px 0 18px; }
.section-title h2{
  margin:0;
  letter-spacing:-.02em;
  font-weight:950;
  font-size:34px;
}
.section-title p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
  max-width:68ch;
}

.hoverlift{
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.hoverlift:hover{
  transform: translateY(-4px);
  filter: brightness(1.02);
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: var(--green-main);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(255,255,255,.10);
  padding:10px 0;
}
.header__inner{
  display:flex;
  align-items:center;
  gap:14px;
  padding:10px 0;
}
.header__brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.header__logo{ height:60px; width:auto; }

.header__nav{
  margin-left:auto;
  display:flex;
  gap:10px;
}
.header__nav a{
  color:#fff;
  font-weight:800;
  letter-spacing:.08em;
  font-size:12px;
  padding:10px 12px;
  border-radius:14px;
  opacity:.92;
  transition: background .18s ease, opacity .18s ease, transform .18s ease;
}
.header__nav a:hover{
  opacity:1;
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.header__cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  font-weight:900;
  letter-spacing:.06em;
  font-size:12px;
  border:3px solid rgba(31,255,113,.70);
  background: var(--green-main);
  color:#fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  transition: transform .18s ease, background .18s ease;
}
.header__cta:hover{
  transform: translateY(-2px);
  background: rgba(31,255,113,.14);
  border-color: rgba(31,255,113,.95);
}
.header__cta-ico{
  width:22px;
  height:22px;
  rotate:-22deg;
  display:grid;
  place-items:center;
  border-radius:10px;
  background: rgba(31,255,113,.18);
  transition: all .3s ease-in-out;
}
.header__cta:hover .header__cta-ico{ rotate:0deg; }

.header__burger{
  display:none;
  margin-left:8px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:8px 10px;
  font-size:18px;
}

.header__mobile{
  display:none;
  border-top:1px solid rgba(255,255,255,.10);
  padding:10px 0 14px;
}
.header__mobile a{
  display:block;
  padding:10px 0;
  color:#fff;
  font-weight:800;
  letter-spacing:.06em;
  font-size:12px;
}
.header__mobile-cta{
  margin-top:8px;
  border:2px solid rgba(31,255,113,.65);
  border-radius:14px;
  padding:10px 12px !important;
  background: rgba(31,255,113,.12);
}

/* BARRA DE MENSAGENS */
.top-marquee {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 10px 0;

}

.top-marquee__inner {
  width: 100%;
  overflow: hidden;
}

.top-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.top-marquee__track span {
  display: flex;
  align-items: center;
}

.top-marquee__track img {
  height: 60px;   /* 🔥 controla tamanho aqui */
  width: auto;
  margin: 0 20px 0 20px;
  display: block;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* SLIDER */
.hero-slider{
  position:relative;
  overflow:hidden;
  background:#07110d;

  /* full-bleed */
  left:50%;
  margin-left:-50vw;
  width:100vw;
}

.hero-slider__track{
  position:relative;
  height: clamp(280px, 44vw, 540px);
}

/* slides sobrepostos */
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition: opacity .45s ease;
}

.hero-slide.is-active{
  opacity:1;
  pointer-events:auto;
}

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

.hero-slide__overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(900px 360px at 18% 62%, rgba(0,0,0,.18), transparent 70%);
}

/* controles */
.hero-slider__btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.32);
  color:#fff;
  font-size:30px;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:5;
}

.hero-slider__btn--prev{ left: 14px; }
.hero-slider__btn--next{ right: 14px; }

.hero-slider__dots{
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom: 14px;
  display:flex;
  gap:10px;
  z-index:6;
}

.dot{
  width:10px; height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.18);
  cursor:pointer;
}

.dot.is-active{
  background: rgba(31,255,113,.92);
  border-color: rgba(31,255,113,.98);
}

/* ✅ MOBILE: inteiro e SEM "pretão" / SEM display:none */
@media (max-width: 980px){
  .hero-slider__track{
    height: clamp(220px, 52vw, 340px);
  }

  .hero-slide img{
    object-fit: contain;         /* mostra inteiro */
    background: transparent;
  }

  /* evita bug/flash no iOS */
  .hero-slide,
  .hero-slide img,
  .hero-slide__overlay{
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: opacity;
  }
}



/* NOTÍCIAS */
.cards{ display:grid; gap:14px; }
.cards--latest{ grid-template-columns: repeat(3, 1fr); }

.card{
  position:relative;
  background:var(--card);
  border:1px solid rgba(2,75,2,.20);
  border-radius:20px;
  overflow:hidden;
  box-shadow: 0 22px 70px rgba(0,0,0,.12);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:3px;
  background: linear-gradient(90deg, rgba(31,255,113,.98), rgba(30,255,127,.60), rgba(31,255,113,.98));
  opacity:.70;
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(0,0,0,.16);
  border-color: rgba(31,255,113,.50);
}
.card__media{
  height:270px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-color: rgba(0,0,0,.04);
  position:relative;
}
.card__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 220px at 20% 20%, rgba(31,255,113,.26), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.38));
  opacity:.90;
}
.card__body{ padding:14px 14px 16px; }

.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-size:12px;
  color:var(--muted);
}
.badge b{
  color:#042016;
  font-weight:900;
  padding:4px 10px;
  border-radius:999px;
  background: rgba(31,255,113,.22);
  border:1px solid rgba(31,255,113,.45);
}
.card__title{
  margin:10px 0 6px;
  font-size:16px;
  line-height:1.2;
  color:#063827;
  letter-spacing:-.01em;
  font-weight:900;
}
.card__excerpt{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

#noticias .container{
  cursor: pointer;
}

/* EXPO TV */
.tv{
  background:#d7d7d7;
  padding:26px 0 34px;
}
.tv__title{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}
.tv__icon{
  width:28px;
  height:28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.55);
  border:2px solid rgba(0,0,0,.10);
  color:#0b0d12;
  font-weight:900;
}
.tv__title h2{
  margin:0;
  font-size:34px;
  font-weight:950;
  letter-spacing:-.02em;
  color:#0b0d12;
}

.tv-hero{
  position:relative;
  display:block;
  width:100%;
  border-radius:14px;
  overflow:hidden;
  background:#000;
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
  border:1px solid rgba(0,0,0,.10);
}



.tv-hero__bg{
  width:100%;
  height:350px;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .35s ease;
}
.tv-hero:hover .tv-hero__bg{ transform: scale(1.05); }

.tv-hero__shine{
  position:absolute;
  inset:-60%;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.10) 40%, transparent 60%);
  transform: translateX(-40%);
  opacity:0;
}
.tv-hero:hover .tv-hero__shine{ animation: shine 1.2s ease; }

@keyframes shine{
  0%{ opacity:0; transform: translateX(-45%); }
  20%{ opacity:1; }
  100%{ opacity:0; transform: translateX(40%); }
}

.tv-hero__play{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width:84px;
  height:84px;
  border-radius:999px;
  background: rgba(255,255,255,.16);
  border:2px solid rgba(255,255,255,.35);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
  transition: transform .18s ease;
}
.tv-hero:hover .tv-hero__play{
  transform: translate(-50%,-50%) scale(1.06);
}
.tv-hero__play::before{
  content:"";
  position:absolute;
  left:34px;
  top:26px;
  width:0;
  height:0;
  border-left:26px solid rgba(255,215,0,.85);
  border-top:16px solid transparent;
  border-bottom:16px solid transparent;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.25));
}

.tv-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
  margin-top:18px;
}
.tv-card{
  position:relative;
  display:block;
  border-radius:12px;
  overflow:hidden;
  background:#000;
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 46px rgba(0,0,0,.16);
}
.tv-card img{
  width:100%;
  height:300px;
  object-fit: cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
  transition: transform .35s ease, filter .35s ease;
}
.tv-card:hover img{
  transform: scale(1.04);
  filter: saturate(1.18) contrast(1.10);
}
.tv-card__play{
  position:absolute;
  left:16px;
  bottom:16px;
  width:56px;
  height:56px;
  border-radius:999px;
  background: rgba(0,0,0,.30);
  border:2px solid rgba(255,255,255,.30);
  box-shadow: 0 18px 44px rgba(0,0,0,.25);
  transition: transform .18s ease;
}
.tv-card:hover .tv-card__play{ transform: scale(1.06); }
.tv-card__play::before{
  content:"";
  position:absolute;
  left:23px;
  top:18px;
  width:0;
  height:0;
  border-left:18px solid rgba(255,215,0,.85);
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
}

/* GALERIA */
.gallery{
  background: var(--green-main);
  padding:32px 0 46px;
}
.gallery .container p{
  color:#fff;
  font-weight:100;
  font-size:.8rem;
  margin-top:-10px;
}
.gallery__title{
  margin:0 0 18px;
  color:#fff;
  font-weight:950;
  letter-spacing:-.02em;
  font-size:34px;
}
.gallery__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  align-items: stretch;
}
.gallery__item{
  position:relative;
  display:block;
  border-radius:18px;
  overflow:hidden;
  background: rgba(0,0,0,.22);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.18);
  cursor: zoom-in;
  transform: translateZ(0);
}
.gallery__item::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 220px at 20% 25%, rgba(31,255,113,.22), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.55));
  opacity:.9;
  pointer-events:none;
}
.gallery__item::before{
  content:"⤢  ABRIR FOTO";
  position:absolute;
  left:14px;
  bottom:14px;
  padding:8px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:950;
  letter-spacing:.10em;
  text-transform: uppercase;
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  z-index:2;
  pointer-events:none;
}
.gallery__item img{
  width:100%;
  height:230px;
  object-fit: cover;
  display:block;
  filter: saturate(1.05) contrast(1.08) brightness(.98);
  transform: scale(1.02);
  transition: transform .35s ease, filter .35s ease;
}
.gallery__item:hover img{
  transform: scale(1.07);
  filter: saturate(1.18) contrast(1.12) brightness(1.02);
}
.gallery__item--wide{ grid-column: span 2; }
.gallery__item--wide img{ height:240px; }

/* MAPA DO PALCO */
.stage-map{
  width:100%;
  display:block;
  text-align:left;
  position:relative;
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(2,75,2,.18);
  box-shadow: 0 22px 70px rgba(0,0,0,.10);
  cursor: zoom-in;
  padding:0;
}
.stage-map__img{
  width:100%;
  height:auto;
  display:block;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(1.05) contrast(1.05);
}
.stage-map:hover .stage-map__img{
  transform: scale(1.03);
  filter: saturate(1.10) contrast(1.08);
}
.stage-map__hint{
  position:absolute;
  right:14px;
  bottom:14px;
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform: uppercase;
  color:#042016;
  background: rgba(31,255,113,.22);
  border:1px solid rgba(31,255,113,.45);
  backdrop-filter: blur(8px);
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
}
.lightbox.is-open{ display:block; }

.lightbox__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.72);
}
.lightbox__panel{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width: min(1200px, 92vw);
  height: min(86vh, 900px);
  background:#0b0f12;
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lightbox__img{
  width:100%;
  height:100%;
  object-fit: contain;
  display:block;
  background:#0b0f12;
}
.lightbox__close{
  position:absolute;
  top:10px;
  right:12px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size:28px;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:2;
}
.lightbox__close:hover{ background: rgba(255,255,255,.16); }

/* =========================
   FOOTER (NOVO MODELO)
========================= */
.footer-srnp{
  background: #0B3B33;
  color: rgba(255,255,255,.92);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 34px 0;
}

.footer-srnp__grid{
  display:grid;
  grid-template-columns: 260px 1fr 320px;
  gap: 26px;
  align-items:center;
}

.footer-srnp__brand{
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-srnp__logo{
  height: 56px;
  width:auto;
  display:block;
  filter: brightness(1.02);
}

.footer-srnp__title{
  margin:0 0 8px;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.4;
}

.footer-srnp__kicker{
  margin:0 0 8px;
  font-weight: 900;
  font-size: 13px;
}

.footer-srnp__text{
  margin:0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}

.footer-srnp__info{
  text-align:center;
}

.footer-srnp__contact{
  text-align:center;
}

.footer-srnp__social{
  margin-top: 10px;
  display:flex;
  justify-content:center;
  gap: 10px;
}

.footer-srnp__social a{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  transition: transform .18s ease, background .18s ease;
}
.footer-srnp__social a:hover{
  transform: translateY(-2px);
  background: rgba(31,255,113,.10);
  border-color: rgba(31,255,113,.30);
}

.footer-pro__bottom span{
  font-size: .6rem;
}

/* MOBILE: centralizado e empilhado (igual a imagem) */
@media (max-width: 980px){
  .footer-srnp{
    padding: 26px 0;
  }

  .footer-srnp__grid{
    grid-template-columns: 1fr;
    gap: 14px;
    text-align:center;
  }

  .footer-srnp__logo{
    height: 60px;
  }

  .footer-srnp__info,
  .footer-srnp__contact{
    text-align:center;
  }
}


/* WHATS */
.whats-float{
  position:fixed;
  left:18px;
  bottom:18px;
  z-index:5;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius:18px;
  background: linear-gradient(180deg, rgba(2,75,2,.96), rgba(11,59,51,.94));
  border:2px solid rgba(31,255,113,.60);
  box-shadow: 0 22px 48px rgba(0,0,0,.22);
  color:#fff;
}
.whats-float__dot{
  display:flex;
  align-items:center;
  justify-content:center;
  width:16px;
  height:16px;
  border-radius:999px;
  background: rgba(31,255,113,.98);
  box-shadow: 0 12px 22px rgba(0,0,0,.25), 0 0 0 6px rgba(31,255,113,.15);
}
.whats-float__text strong{
  display:block;
  font-weight:950;
  letter-spacing:.02em;
  font-size:13px;
}
.whats-float__text span{
  display:block;
  font-weight:900;
  letter-spacing:.03em;
  font-size:12px;
  opacity:.95;
  text-transform: uppercase;
}

/* FIX iOS / GPU */
.hero-slider,
.hero-slider__track{
  background:#07110d;
}
.hero-slide,
.hero-slide img,
.hero-slide__overlay{
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: opacity, transform;
}

/* RESPONSIVO */
@media (max-width:980px){
  .top-marquee__track{
    font-size:12px;
    gap:40px;
    animation-duration: 18s;
  }

  .top-marquee::before,
  .top-marquee::after{
    width:36px;
  }

  .header__nav{ display:none; }
  .header__cta{ display:none; }
  .header__burger{ display:block; margin-left:auto; }
  .header__mobile.is-open{ display:block; }

  .footer-pro__grid{ grid-template-columns: 1fr 1fr; }

  .cards--latest{
    display:grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    grid-template-columns: unset;
    overflow-x:auto;
    overflow-y:hidden;
    gap:14px;
    padding:4px 2px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-stop: always;
    touch-action: pan-x;
  }
  .cards--latest .card{
    scroll-snap-align: start;
    user-select:none;
    -webkit-user-select:none;
  }
  .cards--latest::-webkit-scrollbar{ height:8px; }
  .cards--latest::-webkit-scrollbar-thumb{
    background: rgba(2,75,2,.25);
    border-radius:999px;
  }
  .cards--latest::-webkit-scrollbar-track{
    background: rgba(0,0,0,.05);
    border-radius:999px;
  }

  .gallery__grid{
    display:grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    grid-template-columns: unset;
    overflow-x:auto;
    overflow-y:hidden;
    gap:14px;
    padding:6px 2px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }
  .gallery__item{
    scroll-snap-align: start;
    user-select:none;
    -webkit-user-select:none;
    -webkit-touch-callout:none;
  }
  .gallery__item img{
    height:240px;
    width:100%;
    object-fit: cover;
    border-radius:18px;
    pointer-events:none;
  }
  .gallery__item--wide{ grid-column:auto; }

  .gallery__grid::-webkit-scrollbar{ height:8px; }
  .gallery__grid::-webkit-scrollbar-thumb{
    background: rgba(2,75,2,.25);
    border-radius:999px;
  }
  .gallery__grid::-webkit-scrollbar-track{
    background: rgba(0,0,0,.05);
    border-radius:999px;
  }

  /* slider mobile */
  .hero-slider__track{ height:auto !important; }

  .hero-slide{
    position:relative !important;
    inset:auto !important;
    opacity:0;
    display:none;
    transform:none !important;
  }
  .hero-slide.is-active{
    display:block;
    opacity:1;
  }
  .hero-slide img{
    width:100%;
    height:auto !important;
    object-fit: contain !important;
    display:block;
    background: transparent !important;
  }
  .hero-slide__overlay{
    position:absolute !important;
    inset:0 !important;
  }
  .hero-slide__content{
    position:absolute !important;
    left:0;
    right:0;
    bottom:12px;
  }
  .hero-slider__dots{ bottom:10px; }
}

@media (max-width:560px){
  .footer-pro__grid{ grid-template-columns: 1fr; }
  .gallery__grid{ grid-template-columns: 1fr; }
  .gallery__item--wide{ grid-column:auto; }
}

@media (max-width:420px){
  .cards--latest{ grid-auto-columns: 92%; }
  .gallery__grid{ grid-auto-columns: 92%; }
  .gallery__item img{ height:220px; }
}

/* MOBILE: VÍDEOS vira carrossel lateral */
@media (max-width:980px){
  .tv-hero{
    border-radius:16px;
    overflow:hidden;
  }

  .tv-hero__bg{
    height:160px;
    width:100%;
    object-fit: cover;
    object-position:center;
    background:#000;
  }

  .tv-grid{
    display:grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    grid-template-columns: unset;
    overflow-x:auto;
    overflow-y:hidden;
    gap:14px;
    padding:6px 14px 14px;
    scroll-padding-left:14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior:smooth;
    scroll-snap-stop: always;
    touch-action: pan-x;
  }

  .tv-card{
    scroll-snap-align: start;
    user-select:none;
    -webkit-user-select:none;
    -webkit-touch-callout:none;
  }

  .tv-card img{
    width:100%;
    height:200px;
    object-fit: cover;
    pointer-events:none;
  }

  .tv-grid::-webkit-scrollbar{ height:8px; }
  .tv-grid::-webkit-scrollbar-thumb{
    background: rgba(2,75,2,.25);
    border-radius:999px;
  }
  .tv-grid::-webkit-scrollbar-track{
    background: rgba(0,0,0,.05);
    border-radius:999px;
  }
}

@media (max-width:420px){
  .tv-grid{ grid-auto-columns: 92%; }
  .tv-card img{ height:210px; }
}



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

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

/* =========================
   QUEM SOMOS (NOVO / MODERNO)
========================= */

.header__nav a.is-current,
.header__mobile a.is-current{
  background: rgba(255,255,255,.12);
  border-radius: 14px;
  opacity: 1;
}

/* HERO */
.about-hero{
  position: relative;
  padding: 44px 0 34px;
  background:
    radial-gradient(1000px 420px at 10% 0%, rgba(31,255,113,.16), transparent 60%),
    radial-gradient(900px 380px at 92% 10%, rgba(2,75,2,.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, rgba(31,255,113,.04) 100%);
}

.about-hero__inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
  padding: 18px 0 0;
}

.about-hero__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 11px;
  color: #063827;
  background: rgba(31,255,113,.18);
  border: 1px solid rgba(31,255,113,.40);
  margin-bottom: 14px;
}

.about-hero__title{
  margin: 0 0 10px;
  font-family: Anton, Inter, system-ui;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: clamp(44px, 4.8vw, 74px);
  line-height: .92;
  color: #0b0d12;
}
.about-hero__title span{ color: var(--green-main); }

.about-hero__subtitle{
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
  font-size: 15.6px;
  line-height: 1.85;
}

.about-hero__chips{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.chip{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .04em;
  color: #063827;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(2,75,2,.14);
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

/* imagem hero */
.about-hero__media{
  position: relative;
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid rgba(2,75,2,.14);
  box-shadow: 0 30px 100px rgba(0,0,0,.14);
  background: #0b0f12;
  min-height: 440px;
}
.about-hero__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.10) brightness(.96);
  transition: transform .7s ease, filter .7s ease;
}
.about-hero__media:hover img{
  transform: scale(1.10);
  filter: saturate(1.14) contrast(1.14) brightness(.99);
}
.about-hero__mediaOverlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(760px 300px at 30% 30%, rgba(31,255,113,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.62));
  pointer-events:none;
}
.about-hero__badge{
  position:absolute;
  left: 16px;
  bottom: 16px;
  display:flex;
  align-items:flex-end;
  gap:10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}
.about-hero__badgeNum{
  font-family: Anton, Inter, system-ui;
  font-size: 44px;
  line-height: 1;
  color: rgba(31,255,113,.96);
  letter-spacing: .04em;
}
.about-hero__badgeTxt{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  margin-bottom: 4px;
}

/* STORY */
.about-story{
  padding: 46px 0 64px;
}
.about-story__grid{
  display:grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 22px;
  align-items: start;
}

.about-story__text{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(2,75,2,.14);
  box-shadow: 0 28px 90px rgba(0,0,0,.08);
  border-radius: 24px;
  padding: 28px 28px 22px;
}

.about-story__text h2{
  margin: 0 0 12px;
  font-weight: 950;
  letter-spacing: -.02em;
  font-size: 22px;
  color: #063827;
}

.about-story__text p{
  text-align: justify;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.95;
  font-size: 15.2px;
}

.about-story__closing{
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(2,75,2,.12);
}

/* keywords premium */
.kw{
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(31,255,113,.18);
  border: 1px solid rgba(31,255,113,.32);
  color: #063827;
  font-weight: 900;
  letter-spacing: .01em;
  white-space: nowrap;
}

/* aside cards */
.about-story__aside{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.about-kpi{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 16px 16px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(2,75,2,.14);
  box-shadow: 0 18px 55px rgba(0,0,0,.06);
}

.about-kpi__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  flex: 0 0 44px;
  margin-top: 2px;
  background: rgba(31,255,113,.18);
  border: 1px solid rgba(31,255,113,.34);
  color:#063827;
  font-size: 18px;
}

.about-kpi__text b{
  display:block;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -.01em;
  color: #063827;
  margin-bottom: 4px;
}
.about-kpi__text span{
  display:block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.about-cta{
  margin-top: 6px;
  padding: 18px 16px;
  border-radius: 22px;
  background:
    radial-gradient(520px 220px at 20% 20%, rgba(31,255,113,.16), transparent 60%),
    rgba(0,239,162,.08);
  border: 1px solid rgba(2,75,2,.14);
}
.about-cta h3{
  margin: 0 0 6px;
  font-weight: 950;
  color:#063827;
}
.about-cta p{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 13.5px;
}

/* IMPACT */
.about-impact{
  padding: 54px 0 70px;
  background: #0b3b33;
  color: rgba(255,255,255,.92);
  border-top: 1px solid rgba(255,255,255,.08);
}
.about-impact__head{
  margin-bottom: 18px;
}
.about-impact__head h2{
  margin:0 0 8px;
  font-family: Anton, Inter, system-ui;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(28px, 3vw, 40px);
  color:#fff;
}
.about-impact__head p{
  margin:0;
  color: rgba(255,255,255,.75);
  max-width: 70ch;
}

.about-impact__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.impact-card{
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.impact-card__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(31,255,113,.16);
  border: 1px solid rgba(31,255,113,.26);
  color: rgba(31,255,113,.95);
  margin-bottom: 10px;
}
.impact-card h3{
  margin:0 0 6px;
  font-weight: 950;
  color:#fff;
}
.impact-card p{
  margin:0;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  font-size: 13.5px;
}

/* MOBILE */
@media (max-width: 980px){
  .about-hero__inner{ grid-template-columns: 1fr; }
  .about-hero__media{ min-height: 280px; border-radius: 18px; }
  .about-story__grid{ grid-template-columns: 1fr; }
  .about-story__text{ padding: 18px 16px; border-radius: 18px; }
  .about-impact__grid{ grid-template-columns: 1fr; }
  .kw{ white-space: normal; border-radius: 14px; }
}

/* =========================
   EXPO (FUNDO CLARO PREMIUM)
========================= */
.expo-impact{
  padding: 66px 0 78px;
  background: #D7D7D7;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
  color: #0b0d12;
}

.expo-impact__title{
  margin: 0 0 10px;
  font-family: Anton, Inter, system-ui;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.05;
  color:#063827;
}

.expo-impact__subtitle{
  margin: 0;
  max-width: 70ch;
  font-size: 14.5px;
  line-height: 1.7;
  color: #3c4a46;
}

/* GRID */
.expo-impact__grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD */
.expo-card{
  padding: 24px 22px 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  transition: all .25s ease;
}

.expo-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0,0,0,.12);
  border-color: rgba(31,255,113,.40);
}

/* ÍCONE */
.expo-card__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(31,255,113,.18);
  border: 1px solid rgba(31,255,113,.40);
  color: #076e48;
  margin-bottom: 14px;
}

/* TÍTULO */
.expo-card h3{
  margin: 0 0 8px;
  font-weight: 950;
  font-size: 18px;
  color:#063827;
}

/* TEXTO */
.expo-card p{
  margin:0;
  font-size: 13.8px;
  line-height: 1.7;
  color:#4c5a55;
}

/* MOBILE */
@media (max-width: 980px){
  .expo-impact{
    padding: 54px 0 62px;
  }

  .expo-impact__grid{
    grid-template-columns: 1fr;
  }

  .expo-card{
    border-radius: 18px;
  }
}

/* =========================
   NEWS MODAL (NOTÍCIA ABERTA)
========================= */
.news-modal{
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}
.news-modal.is-open{ display:block; }

.news-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
}

.news-modal__panel{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width: min(980px, 92vw);
  background: #fff;
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.30);
  overflow: hidden;
}

.news-modal__close{
  position:absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.08);
  color: #0b0d12;
  font-size: 26px;
  line-height: 1;
  display:grid;
  place-items:center;
  cursor:pointer;
}

.news-modal__head{
  padding: 28px 28px 10px;
}

.news-modal__title{
  margin:0;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 950;
  letter-spacing: -.02em;
  color:#0b0d12;
}

.news-modal__sub{
  margin:6px 0 0;
  color:#6b6b6b;
  font-size: 13px;
}

.news-modal__body{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 18px;
  padding: 0 28px 28px;
  align-items: start;
}

.news-modal__media{
  margin:0;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: #f2f2f2;
}

.news-modal__media img{
  width:100%;
  height: 420px;
  object-fit: cover;
  display:block;
}

.news-modal__text{
  height: 420px;
  overflow: auto;
  text-align: justify;
  padding-right: 10px;
  color:#1a1f24;
  font-size: 14px;
  line-height: 1.75;
}

/* scrollbar discreta */
.news-modal__text::-webkit-scrollbar{ width: 10px; }
.news-modal__text::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.18);
  border-radius: 999px;
}
.news-modal__text::-webkit-scrollbar-track{
  background: rgba(0,0,0,.06);
  border-radius: 999px;
}

/* mobile */
@media (max-width: 980px){
  .news-modal__head{ padding: 22px 18px 10px; }
  .news-modal__body{
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }
  .news-modal__media img{ height: 240px; }
  .news-modal__text{ height: min(46vh, 360px); }
}

.card__read{
  margin-top:12px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.04em;
  color: var(--green-main);
  text-transform: uppercase;
}
body.no-scroll,
html.no-scroll {
  overflow: hidden !important;
}

/* =========================
   AGENDA 2026 (CARD CLICÁVEL)
========================= */
.agenda-card{
  width:100%;
  border:0;
  padding:0;
  text-align:left;
  cursor:pointer;

  position:relative;
  border-radius: 22px;
  overflow:hidden;

  background:#0b0f12;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 22px 70px rgba(0,0,0,.10);
}

.agenda-card__img{
  width:100%;
  height: 420px;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(1.05) contrast(1.05);
}

.agenda-card:hover .agenda-card__img{
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.10);
}

.agenda-card__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 260px at 18% 20%, rgba(31,255,113,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.55));
}

.agenda-card__content{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color:#fff;
}

.agenda-card__pill{
  display:inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(31,255,113,.18);
  border: 1px solid rgba(31,255,113,.35);
  color: rgba(255,255,255,.95);
}

.agenda-card__title{
  margin: 10px 0 6px;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 950;
  letter-spacing: -.02em;
}

.agenda-card__text{
  margin:0;
  max-width: 70ch;
  color: rgba(255,255,255,.82);
  font-size: 13.5px;
  line-height: 1.65;
}

.agenda-card__cta{
  display:inline-flex;
  margin-top: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(31,255,113,.95);
}

/* mobile */
@media (max-width: 980px){
  .agenda-card{ border-radius: 18px; }
  .agenda-card__img{ height: 260px; }
  .agenda-card__content{ left: 14px; right: 14px; bottom: 14px; }
}

/* =========================
   AGENDA (FORMATAÇÃO DO TEXTO NO MODAL)
========================= */
.agenda-modal{
  padding: 2px 2px 4px;
}

.agenda-modal__title{
  margin: 0 0 12px;
  font-weight: 950;
  font-size: 18px;
  letter-spacing: -.01em;
  color:#0b0d12;
}
.agenda-modal__title span{
  color: var(--green-main);
}

.agenda-modal__divider{
  border: 0;
  height: 1px;
  background: rgba(0,0,0,.10);
  margin: 18px 0;
}

.agenda-day{
  margin-bottom: 16px;
}

.agenda-day__head{
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 8px;
  color:#0b0d12;
}

.agenda-day__list{
  margin: 0;
  padding-left: 18px; /* bolinha igual da imagem */
}

.agenda-day__list li{
  margin: 0 0 8px;
  color:#1a1f24;
  line-height: 1.6;
  font-size: 14px;
}

.time{
  font-weight: 900;
  color:#063827;
  background: rgba(31,255,113,.16);
  border: 1px solid rgba(31,255,113,.35);
  padding: 2px 8px;
  border-radius: 999px;
  margin-right: 6px;
  display:inline-block;
}

.tag{
  font-weight: 900;
  font-size: 12px;
  color:#4c5a55;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.10);
  padding: 2px 8px;
  border-radius: 999px;
  margin-right: 6px;
  display:inline-block;
}

.agenda-block{
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
}
.agenda-block__label{
  margin-bottom: 8px;
}

/* =========================
   PERFIL INSTITUCIONAL
========================= */

.profile{
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 10px;
}

.profile__image{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

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

.profile__content{
  max-width: 720px;
}

.profile__name{
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -.02em;
  color: #0b3b33;
}

.profile__role{
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(31,255,113,.15);
  border: 1px solid rgba(31,255,113,.35);
  color: #024b02;
}

.profile__content p{
  margin: 0 0 16px;
  line-height: 1.8;
  font-size: 14px;
  color: #2b2f33;
  text-align: justify;
}

/* MOBILE */
@media (max-width: 980px){

  .profile{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .profile__image img{
    height: 800px;
  }

  .profile__content{
    text-align: left;
  }

  .profile__name{
    font-size: 24px;
  }

}

