* {
  margin: 0px;
  padding: 0px;
  border: 0px;
  list-style-type: none;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 300;
  color: #333;
  background-color: #fff;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.mobile {
  display: block;
}

.desktop {
  display: none;
}

/* ANIMAÇÃO */
.anime {
  opacity: 0;
}

.fromLeft {
  transform: translate3d(-100px, 0px, 0px);
}

.fromRight {
  transform: translate3d(100px, 0px, 0px);
}

.fromBottom {
  transform: translate3d(0px, 100px, 0px);
}

.fromTop {
  transform: translate3d(0px, -100px, 0px);
}

.fromDiagTopLeft {
  transform: translate3d(-100px, -100px, 0px);
}

.fromDiagTopRight {
  transform: translate3d(100px, -100px, 0px);
}

.fromDiagBottomLeft {
  transform: translate3d(-100px, 100px, 0px);
}

.fromDiagBottomRight {
  transform: translate3d(100px, 100px, 0px);
}

.start {
  opacity: 1;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transform: translate3d(0px, 0px, 0px);
}

.delay05s {
  transition-delay: 0.5s;
}

.delay1s {
  transition-delay: 1s;
}

.delay15s {
  transition-delay: 1.5s;
}

.delay2s {
  transition-delay: 2s;
}

/* HX */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  text-transform: uppercase;
  text-align: center;
  font-weight: normal;
}

h2 {
  font-size: 1.45em;
  padding: 25px 0px 20px;
}

input,
select,
textarea,
.custom-select span {
  outline: none;
  font-size: 1.125rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.5);
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
}

/* OVERLAY */
.overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.62);
  z-index: 20;
  overflow: auto;
}

.holder {
  position: relative;
}

.wrapper {
  width: 90%;
  position: relative;
}

.wrapper.image {
  width: auto;
  height: auto;
  padding: 15px;
  position: static;
}

.wrapper.image.portrait {
  height: auto;
}

.portrait .media-container img {
  width: auto;
  /*height: 75%;*/
  height: 100%;
}

.portrait .media-container figcaption {
  height: 25%;
}

.image .media-container {
  width: 100%;
  padding: 0px;
  height: 100%;
}

.media-container figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative
}

.media-container figcaption {
  display: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 0.9em;
  padding: 10px;
  width: 100%;
}

.media-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-container {
  display: flex;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

button.fechar {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 31px;
  height: 31px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 5;
}

button.fechar::before,
button.fechar::after {
  position: absolute;
  content: "";
  height: 42px;
  width: 2px;
  background-color: #fff;
  /* #005eae */
}

button.fechar::before {
  transform: rotate(45deg);
}

button.fechar::after {
  transform: rotate(-45deg);
}

.img-popup {
  cursor: pointer;
}

.wrapperVideo {
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.aspect-ratio {
  position: relative;
  max-width: 100%;
  height: auto;
}

.aspect-ratio>* {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aspect-ratio-16-9 {
  padding-top: 56.25%;
}

/* MOBILE */
button#menu {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 20px;
  border-width: 0;
  position: relative;
}

button#menu::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  border-top: 4px solid #0d678a;
  border-bottom: 4px solid #0d678a;
}

button#menu::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  border-bottom: 4px solid #0d678a;
}

button#menu.aberto::before {
  position: absolute;
  border-bottom: none;
  transform: rotate(45deg);
  top: 7px;
  left: -2px;
}

button#menu.aberto::after {
  position: absolute;
  transform: rotate(-45deg);
  top: 4px;
  left: -2px;
  height: 4px;
}

hr {
  width: 100%;
  border: none;
  height: 2px;
  background: #fff;
}

.fundo * {
  /* color: #fff; */
  color: #0156B8;
}

/* HEADER */
.header.nav {
  display: none;
  width: 100%;
  /* background: linear-gradient(90deg, rgba(8, 198, 127, 1) 0%, rgba(0, 112, 223, 1) 100%); */
  position: fixed;
  top: 43px;
  left: 0;
  height: 100%;
  z-index: 1000;
}

nav li {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #2084B2;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-size: 1.75em;
  margin: 4% 0;
}

nav span {
  background: #fff;
  display: block;
  width: 60%;
  padding: 3% 0;
}

nav span a {
  background: linear-gradient(90deg, rgba(8, 198, 127, 1) 0%, rgba(0, 112, 223, 1) 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.redes {
  padding-top: 4%;
  border-top: 2px solid #fff;
  margin-top: 8%;
  text-align: center;
}

.redes span {
  color: #fff;
  text-transform: uppercase;
}

.redes ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-top: 4%;
}

.redes-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.redes-icons i {
  font-size: 1.25rem;
  line-height: 1;
}

.redes--light i {
  color: #fff;
}

.header.logo {
  position: fixed;
  width: 100%;
  height: 45px;
  background: #fff;
  color: #0055B8;
  font-family: 'Poppins', sans-serif;
  z-index: 10;
}

.header.logo button#menu::before {
  border-top-color: #0055B8;
  border-bottom-color: #0055B8;
}

.header.logo button#menu::after {
  border-bottom-color: #0055B8;
}

.header.logo>.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header.logo .redes {
  display: none;
}

.header.logo img {
  height: 19px;
}

/* CONTAINER */
.container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0px 15px;
}

/* MAIN */
main {
  overflow: hidden;
}

section {
  position: relative;
}

/* HERO */
.hero {
  /*height: 100vh;*/
  background-image: url(../img/base/bg-top.png);
  /* background-repeat: no-repeat; */
  /* background-position: right center; */
  background-position: top center;
  background-size: cover;
  /* background-size: 50%; */
  padding: 45px 0 0;
}

.logoForum img {
  width: 60%;
  margin: 4% auto;
  max-width: 226px;
  max-height: 260px;
}

.textos {
  text-transform: uppercase;
  text-align: center;
}

.textos span {
  font-size: 0.95em;
}

.textos h1 {
  font-size: 1.55em;
  margin: 15px 0 30px;
}

.textos>p {
  font-size: 0.9em;
  text-transform: none;
  margin-bottom: 35px;
}

#countdown {
  width: 100%;
  max-width: 350px;
  display: flex;
  border: 1px solid #fff;
  border-left: none;
  border-right: none;
  padding: 10px 0;
  margin: 0 auto;
}

#countdown>div {
  width: 25%;
}

#countdown p {
  font-size: 2.5em;
  position: relative;
}

#countdown span {
  display: block;
  font-size: 0.69rem;
  text-transform: uppercase;
}

.horas p::after,
.minutos p::after {
  content: ":";
  display: block;
  width: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.hero .apoio {
  margin-top: 20px;
}

.apoio span {
  font-size: 0.90em;
}

.apoio ul {
  display: flex;
  width: 100%;
  max-width: 350px;
  margin: 10px auto 0;
}

.apoio li {
  display: flex;
  width: 33.33%;
  justify-content: center;
  align-items: center;
}

.hero .botao span {
  background: linear-gradient(90deg, rgba(8, 198, 127, 1) 0%, rgba(0, 112, 223, 1) 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.hero .botao {
  background: #fff;
  margin-top: 20px;
}

.hero .botao {
  margin-top: 45px;
}

.hero .logo,
.hero .intro {
  width: 100%;
}

.hero .logo img {
  max-width: 40%;
  margin: 10px auto 0;
}

.hero .intro h2 {
  text-transform: none;
}

.wrap {
  flex-wrap: wrap;
}

.wrapperVideo {
  padding: 20px 0;
}

/* FÓRUM */
#forum {
  padding: 40px 0;
}

#forum h2 {
  font-size: 1.3em;
  padding-top: 0;
  line-height: normal;
  background: linear-gradient(90deg, rgba(0, 108, 231, 1) 0%, rgba(1, 134, 188, 1) 50%, rgba(8, 192, 132, 1) 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#forum .texto {
  font-size: 1.02em;
  color: #5a5a5a;
  line-height: 1.8em;
  margin-bottom: 30px;
}

/* HISTÓRIA */
#historia {
  /* background: url(../img/bg-historia.jpg) no-repeat center right; */
  background: url(/img/base/bg-middle.png) no-repeat center right;
  background-size: cover;
  padding: 30px 0;
  color: #0156B8;
}

#historia h2 {
  padding-top: 0;
  font-weight: bolder;
}

#historia .texto p {
  line-height: 1.4em;
  color: #0156B8;
  font-weight: 400;
}

#historia .texto p+p {
  margin-top: 20px;
}

#historia a {
  color: #0067ef;
  /* background: #fff; */
  padding: 1px 3px;
}

/* DESAFIOS */
#desafios.section-desafios {
  position: relative;
  padding: 48px 0 56px;
  background: #f4f7fb;
}

#desafios:not(.section-desafios) {
  padding: 40px 0px;
  background: #2CB4D2;
  background: linear-gradient(90deg, rgba(44, 180, 210, 1) 0%, rgba(92, 197, 167, 1) 12%, rgba(151, 212, 104, 1) 45%, rgba(46, 185, 203, 1) 78%);
}

#desafios:not(.section-desafios) p {
  font-size: 0.8em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.6em;
  padding-left: 4rem;
}


#desafios:not(.section-desafios) h2 {
  font-size: 1.45em;
}

.desafios>li+li {
  margin-top: 35px;
}

.desafios h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: url(../img/bg-desafios.png) no-repeat top center;
  background-size: cover;
  height: 60px;
}

.desafios h3 span {
  display: block;
}

.desafios h3 span,
.desafios h4 span {
  text-transform: none;
  font-size: 0.85em;
}

.desafios h4 {
  padding: 20px;
  text-transform: none;
}

.desafios h4 span {
  margin-right: 5px;
}

.desafios ul li {
  list-style-type: disc;
  margin-left: 20px;
}

.desafios ul li+li {
  margin-top: 10px;
}

.desafios2 {
  width: 100%;
  display: grid;
  /* grid-template-columns: 25% 25% 25% 25%; */
  grid-template-columns: 33% 33% 30%;
  grid-row-gap: 25px;
  justify-content: space-between;
}

#desafios .desafios2 h2 {
  padding: 0px;
  color: #FFF;
  font-size: 1.2em;
}

.desafios2 li div {
  margin-top: 70%;
  width: 100%;
  color: #FFF;
  font-size: 0.65em;
}

.seta {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.08%;
  padding-left: 22%;
  padding-right: 19%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.seta.um {
  background-image: url(../img/seta1.png);
}

.seta.um div {
  margin-top: 100%;
}

.seta.dois {
  background-image: url(../img/seta2.png);
}

.seta.dois div {
  margin-top: 100%;
}

.seta.tres {
  text-align: left;
  padding-left: 8%;
  padding-right: 8%;
}

.quadrado {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  align-self: center;
}

.quadrado img {
  width: 70%;
  margin-top: 10%;
}


/* Coalizão Multissetorial */
#coalizao-multissetorial {
  padding: 40px 0px;
}

#coalizao-multissetorial h2 {
  font-size: 1.45em;
}

.img {
  position: absolute;
  width: 109px;
  height: 0px;
  padding-bottom: 109px;
  z-index: 1;
  top: -38%;
  right: calc(50% - 109px/2);
}

.img img {
  border-radius: 50%;
  /* filter: grayscale(100%) !important; */
}

#coalizao-multissetorial li {
  position: relative;
  margin-top: 109px;
}

.rect {
  background: #dbe5ef;
  border-radius: 9px;
  padding: 30px 15px 15px;
}

.rect p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85em;
  text-align: center;
  height: 80px;
}

.rect p strong {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
}

.rect div {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 15px 0 0;
  height: 100px;
}

.rect div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* OBJETIVOS / PÚBLICO-ALVO */
.section-objetivos {
  padding: 40px 0;
}

.objetivos-card {
  background: linear-gradient(90deg, #00aeef 0%, #79d3a8 50%, #d4df30 100%);
  border-radius: 24px;
  padding: 3px;
}

.objetivos-card__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #fff;
  border-radius: 21px;
  padding: 32px 28px;
}

.objetivos-card__col h2 {
  color: #0156b8;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
  padding: 0 0 20px;
  letter-spacing: 0.02em;
}

.objetivos-card__col ul {
  color: #0156b8;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
}

.objetivos-card__col--objetivos ul li {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  text-transform: none;
}

.objetivos-card__col--objetivos ul li:last-child {
  margin-bottom: 0;
}

.objetivos-card__col--objetivos ul li strong {
  font-weight: 700;
}

.objetivos-card__col--publico ul li {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  text-transform: none;
}

.objetivos-card__col--publico ul li:last-child {
  margin-bottom: 0;
}

.objetivos-card__separator {
  display: none;
}

/* DESAFIOS — matriz moderna */
.desafios-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-desafios .container {
  max-width: 1180px;
}

.section-desafios__titulo {
  font-family: 'Montserrat', sans-serif;
  color: #0156b8;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0 0 36px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.desafios-matrix {
  display: flex;
  flex-direction: column;
  gap: 10px;
  --desafios-quadrado: clamp(72px, 22vw, 119px);
}

.desafios-matrix__header,
.desafios-matrix__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) var(--desafios-quadrado) var(--desafios-quadrado);
  gap: 8px;
  align-items: center;
}

.desafios-matrix__header {
  padding: 0 0 8px;
}

.desafios-matrix__col-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

.desafios-matrix__col-label--desafio {
  color: #0156b8;
  grid-column: 1;
}

.desafios-matrix__col-label--proposta {
  color: #1a9fb8;
  grid-column: 2;
}

.desafios-matrix__row {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.desafios-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 0;
}

.desafios-cell--desafio {
  grid-column: 1;
}

.desafios-cell--proposta {
  grid-column: 2;
}

.desafios-cell--ods {
  grid-column: 3;
}

.desafios-cell--acao {
  grid-column: 4;
}

.desafios-cell__tag {
  display: none;
}

.desafios-cell__shape {
  position: relative;
  width: 100%;
  height: 0;
  /* Proporção ~302×200 (mesmo viewBox do SVG), equivalente ao layout anterior */
  padding-bottom: 66.225%;
}

.desafios-cell__chevron {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.desafios-cell__chevron-path {
  paint-order: stroke fill;
}

.desafios-cell__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  /* Área útil: corpo da seta (evita o entalhe à esquerda e a ponta à direita) */
  padding: 12% 16% 12% 14%;
  font-family: 'Montserrat', sans-serif;
  /* Escala com a largura da tela; limites para leitura em mobile e destaque em desktop */
  font-size: clamp(0.8rem, 0.62rem + 1.35vw, 1.02rem);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  z-index: 1;
}


.desafios-cell--ods,
.desafios-cell--acao {
  align-items: center;
  justify-content: center;
}

.desafios-cell__ods-img,
.desafios-cell__acao-img {
  width: var(--desafios-quadrado);
  height: var(--desafios-quadrado);
  max-width: 100%;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* PATROCINADORES */
.section-patrocinadores {
  background: #fff;
  padding: 48px 0 56px;
}

.section-patrocinadores .container {
  max-width: 1100px;
}

.section-patrocinadores__titulo,
.section-patrocinadores__subtitulo {
  font-family: 'Montserrat', sans-serif;
  color: #0156b8;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section-patrocinadores__titulo {
  font-size: 1.75rem;
  padding: 0 0 40px;
}

.section-patrocinadores__subtitulo {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0 0 16px;
}

.section-patrocinadores__linha {
  border: 0;
  border-top: 1px solid #0156b8;
  margin: 0 0 28px;
}

.patrocinio-master {
  margin-bottom: 48px;
}

.patrocinio-master__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 32px;
  margin-bottom: 24px;
}

.patrocinio-master__row:last-child {
  margin-bottom: 0;
}

.patrocinio-master__item {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  max-width: 260px;
}

.patrocinio-master__item img {
  width: auto;
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.patrocinadores-triplo {
  margin-bottom: 48px;
}

.patrocinadores-triplo__titulos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 0;
}

.patrocinadores-triplo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.patrocinadores-triplo__col {
  text-align: center;
}

.patrocinadores-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.patrocinadores-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.patrocinadores-logos img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.patrocinadores-logos--apoio {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
}

.patrocinadores-logos--apoio li {
  flex: 1 1 0;
  min-width: 0;
  max-width: 33.333%;
  width: auto;
}

.patrocinadores-logos--apoio img {
  max-height: 72px;
}

.patrocinadores-logos--especial img {
  max-height: 80px;
}

.patrocinadores-logos--institucional {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 20px;
}

.patrocinadores-logos--institucional li {
  flex: 1 1 calc(50% - 12px);
  max-width: calc(50% - 12px);
  width: auto;
}

.patrocinadores-logos--institucional img {
  max-height: 72px;
}

.patrocinadores-rodape {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}

.patrocinadores-rodape__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.patrocinadores-rodape__logo img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.patrocinadores-rodape__col:first-child .patrocinadores-rodape__logo img {
  max-height: 29px;
}

.patrocinadores-rodape__col:last-child .patrocinadores-rodape__logo img {
  max-height: 29px;
}

/* PROTAGONISTAS */
#protagonistas,
#participantes {
  padding: 40px 0px;
}

.protagonistas,
.participantes {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 10px;
  margin-bottom: 30px;
}

.protagonistas li:nth-child(n+7),
.participantes li:nth-child(n+7) {
  display: none;
}

.protagonistas li img,
.participantes li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.protagonistas figcaption,
.participantes figcaption {
  text-align: center;
  padding: 10px 0px;
}

.protagonistas figcaption h5,
.participantes figcaption h5 {
  color: #26264b;
  font-size: 0.90em;
}

.protagonistas figcaption span,
.participantes figcaption span {
  color: #8b8b9a;
  font-size: 0.81em;
}

.botao {
  display: table;
  width: auto;
  margin: 0 auto;
  background: url(../img/bg-botao.png) no-repeat center center;
  background-size: auto;
  background-size: cover;
  font-size: 0.9em;
  color: #fff;
  text-transform: uppercase;
  padding: 15px 20px;
  text-align: center;
}

/* AGENDA */
#agenda {
  padding: 30px 0 15px;
}

#agenda p {
  text-align: center;
  font-size: 0.85em;
  text-transform: uppercase;
}

#agenda h2 {
  font-size: 1.45em;
  margin: 5px 0 40px;
}

.abas {
  display: flex;
  flex-wrap: wrap;
}

.abas li {
  background: #f5f3ef;
  text-transform: uppercase;
  text-align: center;
}

.abas a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: linear-gradient(90deg, rgba(0, 108, 231, 1) 0%, rgba(1, 134, 188, 1) 50%, rgba(8, 192, 132, 1) 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
}

.abas a:hover,
a.clicado {
  background: url(../img/bg-agenda-dia.png) no-repeat center center;
  background-size: cover;
  background-clip: border-box;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: white;
}

.dia {
  width: 100%;
  font-size: 0.9em;
  margin-bottom: 10px;
  padding: 20px;
}

.dia span {
  display: block;
  font-size: 0.75em;
}

.manha,
.tarde {
  flex: 1;
}

.manha {
  margin-right: 5px;
}

.tarde {
  margin-left: 5px;
}

.hora div {
  display: table;
  background: url(../img/bg-hora.png) no-repeat center center;
  background-size: cover;
  color: #fff;
  margin: 10px auto 15px;
  padding: 15px;
  text-align: center;
  border-radius: 30px;
  width: auto;
}

.agenda {
  border: 10px solid #f5f3ef;
}

.agenda>ul {
  display: none;
  opacity: 0;
}

.agenda-texto {
  background: #f8f7f4;
  padding: 10px;
}

.agenda h5,
.agenda h6 {
  text-align: left;
}

.agenda h5 {
  font-size: 0.85em;
  color: #0076d6;
}

.agenda h6 {
  font-size: 1.1em;
  color: #26264b;
  margin: 15px 0;
}

.agenda>ul>li {
  margin: 10px;
}

.agenda>ul>li+li {
  border-top: 2px solid #f4f2ee;
}

.agenda ul ul li {
  color: #8c8c9a;
  font-size: 0.90em;
}

.agenda ul ul li+li {
  padding-top: 10px;
}

.agenda ul ul li span {
  color: #06b191;
}

.intervalo {
  display: flex;
  align-items: center;
  padding: 20px 0px 10px;
}

.intervalo span {
  display: block;
  flex: 1;
  font-size: 0.87em;
  text-align: center;
}

.intervalo span.hora-icon {
  color: #0076d6;
  font-size: 1.02em;
  padding-top: 22px;
  background-image: url(../img/icon-hora.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 22px;
}

.intervalo.banner {
  justify-content: center;
}

.intervalo.banner img {
  justify-content: center;
}

/* PATROCÍNIO */
#patrocinio>section {
  display: flex;
  /* margin-bottom: 25px; */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 0px 0px 30px;
}

.patrocinio {
  background-image: url(../img/bg-patrocinio.jpg);
}

.apoio-especial {
  background-image: url(../img/bg-apoio-especial.jpg);
}

.apoio-institucional {
  background-image: url(../img/bg-apoio-institucional.jpg);
}

.patrocinio ul ul,
.apoio-especial ul,
.apoio-institucional ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.patrocinio ul ul li,
.apoio-especial li,
.apoio-institucional li {
  display: flex;
  width: 50%;
  justify-content: center;
  align-items: center;
}

.patrocinio ul li.master ul li img {
  padding: 0;
}

.patrocinio ul ul li img {
  padding: 10px;
}

.apoio-especial li img,
.apoio-institucional li img {
  padding: 20px;
}

/* FOOTER */
.footer-bar {
  background: #fff;
  color: #0055B8;
  font-family: 'Poppins', sans-serif;
  padding: 32px 0 40px;
}

.footer-bar .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-contato {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-contato__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0055B8;
  font-family: inherit;
  font-size: 0.95em;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.footer-contato__item b {
  font-weight: 600;
}

.footer-contato__item:hover {
  opacity: 0.75;
}

.footer-contato__item i {
  font-size: 1.15em;
}

.footer-bar .footer-redes.redes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
}

.footer-bar .redes span {
  color: #0055B8;
  font-family: inherit;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-bar .redes ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
}

.footer-bar .redes-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0055B8;
}

.footer-bar .redes-icons i {
  color: #fff;
  font-size: 1rem;
}

.footer {
  background: #15162b;
  color: #fff;
  padding: 30px 0px;
  text-align: center;
}

.realizacao img {
  height: 31px;
  width: auto;
  margin: 10px auto 0;
}

.footer ul.infos li+li {
  padding-top: 30px;
}

.footer h3 {
  color: #fff;
}

.footer h3+a,
.footer h3+span {
  color: #0067ef;
}

.footer h3,
.footer .redes span {
  font-size: 0.93em;
}

.footer nav,
.footer .redes {
  display: none;
}

/* DOWNLOADS */
#downloads {
  background: url(../img/bg-downloads.jpg) no-repeat top center;
  background-size: cover;
  height: calc(234px + 45px);
  padding-top: 45px;
}

#downloads h2 {
  padding-top: 0;
}

#downloads .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.downloads ul {
  margin: 70px 0;
}

.downloads li+li {
  margin-top: 50px;
}

.downloads li p {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.downloads .botao {
  background: url(../img/bg-botao2.png) no-repeat center center;
  background-size: contain;
  width: 181px;
  height: 47px;
  font-weight: bold;
}

@media screen and (min-width: 480px) {
  .hero {
    height: auto;
    padding: 30px 0;
  }

  .desafios2 li div {
    font-size: 0.8em;
  }

  /* Coalizão Multissetorial */
  .img {
    top: 0;
    right: unset;
    left: 0;
  }

  #coalizao-multissetorial ul {
    display: flex;
    flex-direction: column;
  }

  #coalizao-multissetorial li {
    margin-top: 0px;
    display: flex;
    max-width: 462px;
  }

  #coalizao-multissetorial li:nth-child(2n) {
    align-self: flex-end;
  }

  #coalizao-multissetorial li:nth-child(2n) .img {
    left: unset;
    right: 0;
  }

  #coalizao-multissetorial li:nth-child(2n) .rect {
    margin: 14px 22px 13px 0px;
  }

  #coalizao-multissetorial li:nth-child(2n) .rect p {
    padding-left: 0;
    padding-right: 95px;
    text-align: right;
  }

  #coalizao-multissetorial li:nth-child(2n) .rect div {
    order: -1;
  }

  .rect {
    width: 428px;
    padding: 0px;
    height: 82px;
    display: flex;
    margin: 14px 0 13px 22px;
    justify-content: center;
    align-items: center;
  }

  .rect p {
    font-size: 0.7em;
    padding-left: 95px;
    width: 72.73%;
    height: auto;
    text-align: left;
  }

  .rect div {
    align-items: center;
    padding: 10px;
    width: 120px;
    height: 100%;
  }

  .rect div img {
    object-fit: contain;
  }
}

@media screen and (min-width: 830px) {
  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }

  /* MOBILE */
  button#menu {
    display: none;
  }

  /* HEADER */
  .header.nav {
    display: block;
    position: static;
    height: 77px;
    /* background: url(../img/bg-header.png) no-repeat center center; */
    /* background-size: cover; */
  }

  .header.nav .redes {
    display: none;
  }

  nav {
    height: 100%;
  }

  nav ul {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center
  }

  nav li {
    position: relative;
  }

  nav li::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    left: calc(100% + 10px);
  }

  nav li:nth-child(n+7)::after {
    display: none;
  }

  nav a {
    margin: 0;
    font-size: 0.9em;
    font-weight: 400;
  }

  nav span {
    padding: 0;
    width: auto;
  }

  nav span a {
    padding: 15px 35px;
  }

  .header.logo {
    position: static;
  }

  .header.logo .redes {
    padding-top: 0;
    border-top: none;
    margin-top: 0;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header.logo .redes span {
    color: #0055B8;
    font-family: inherit;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-right: 0;
  }

  .header.logo .redes ul {
    padding: 0;
    justify-content: flex-start;
    gap: 10px;
    width: auto;
  }

  .header.logo .redes-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0055B8;
  }

  .header.logo .redes-icons:not(.redes--light) i {
    color: #fff;
    font-size: 1rem;
  }


  /* CONTAINER */
  .container {
    min-width: 830px;
    width: 61.90%;
    max-width: 1170px;
    padding: 0px 25px;
  }

  .container.noPadding {
    padding: 0;
  }

  /* HERO */
  /*
  .hero {
     border-bottom: 16px solid #15162b; 
    }
    */
  .hero>.container {
    display: flex;
  }

  .logoForum {
    width: 35.93%;
  }

  .logoForum img {
    width: 84%;
    margin: 16% auto 0;
    max-width: unset;
    max-height: unset;
  }

  .textos {
    width: 64.07%;
  }

  .textos h1 {
    font-size: 2.25em;
    margin: 25px 0 30px;
  }

  .textos>p {
    width: 90%;
    font-size: 0.9em;
    font-weight: 400;
    margin: 0 auto 35px;
  }

  #countdown,
  apoio ul {
    width: 65.43%;
  }

  .hero .logo {
    width: 15%;
  }

  .hero .logo img {
    max-width: 100%;
    margin: 0;
  }

  .hero .intro {
    width: 85%;
  }

  .wrapperVideo {
    padding-bottom: 0;
  }

  /* FÓRUM */
  #forum {
    padding: 55px 0 45px;
  }

  #forum>.container {
    display: flex;
  }

  #forum h2 {
    font-size: 1.25em;
    text-align: left;
    padding: 36px 0 5px;
  }

  #forum .texto {
    width: 45.5%;
  }

  #forum .circulos {
    width: 54.5%;
    margin-left: 30px;
  }

  /* HISTÓRIA */
  #historia {
    background-position: center center;
    padding: 40px 0 90px;
  }

  #historia .con #historia h2 {
    font-size: 2.67em;
    text-align: left;
    padding: 0 0 35px;
  }

  #historia .texto p {
    font-size: 1.3em;
  }

  /* DESAFIOS */
  #desafios.section-desafios {
    padding: 64px 0 72px;
  }

  .section-desafios__titulo {
    font-size: 2.25rem;
    padding-bottom: 48px;
  }

  .desafios-matrix {
    --desafios-quadrado: 119px;
    gap: 10px;
  }

  .desafios-matrix__header,
  .desafios-matrix__row {
    gap: 10px;
  }

  .desafios-matrix__header {
    padding: 0 0 12px;
  }

  .desafios-matrix__col-label {
    font-size: 1.35rem;
  }

  .desafios-cell__text {
    font-size: clamp(0.95rem, 0.72rem + 1.05vw, 1.2rem);
    padding: 10% 22% 10% 13%;
    line-height: 1.22;
  }

  #desafios:not(.section-desafios) {
    padding: 70px 0;
  }

  #desafios:not(.section-desafios) p {
    font-size: 1.47em;
    line-height: 1.5em;
    font-weight: bold;
    padding-left: 7rem;
  }

  #desafios:not(.section-desafios) h2 {
    font-size: 2.67em;
    padding-bottom: 40px;
  }

  #desafios:not(.section-desafios) p span {
    display: block;
  }

  .desafios>li {
    display: flex;
    flex-wrap: wrap;
  }

  .desafios ul li+li {
    margin-top: 15px;
  }

  .desafios>li+li {
    margin: 0;
  }

  .desafios h3 {
    width: 100%;
  }

  .desafios h3 span {
    font-size: 0.8em;
  }

  .desafios h4 {
    font-size: 1.2em;
    width: 34.74%;
    text-align: left;
    padding: 20px 7% 0 50px;
  }

  .desafios h4 span {
    font-size: 0.8rem;
    display: block;
    margin: 0;
  }

  .desafios ul {
    width: 65.26%;
    margin: 30px 0 20px;
    padding-right: 10%;
  }

  .desafios2 {
    grid-template-columns: 33% 33% 25%;
    /* grid-template-columns: 23% 23% 17% 29%; */
    grid-row-gap: 50px;
  }

  #desafios .desafios2 h2 {
    font-size: 1.8em;
  }

  .desafios2 li div {
    font-size: 1.5em;
    font-weight: 800;
  }

  /* Coalizão Multissetorial */
  #coalizao-multissetorial {
    padding: 50px 0px;
  }

  #coalizao-multissetorial h2 {
    font-size: 2.67em;
    padding: 0px 0px 50px;
  }

  /* OBJETIVOS / PÚBLICO-ALVO */
  .section-objetivos {
    padding: 60px 0;
  }

  .objetivos-card__inner {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding: 40px 48px;
  }

  .objetivos-card__col--objetivos {
    flex: 2;
    padding-right: 40px;
  }

  .objetivos-card__col--publico {
    flex: 1;
    padding-left: 40px;
  }

  .objetivos-card__col h2 {
    font-size: 1.5rem;
    padding-bottom: 24px;
  }

  .objetivos-card__col--objetivos ul {
    font-size: 1.05rem;
  }

  .objetivos-card__col--objetivos ul li {
    margin-bottom: 20px;
  }

  .objetivos-card__col--publico ul {
    font-size: 1.1rem;
  }

  .objetivos-card__col--publico ul li {
    margin-bottom: 16px;
  }

  .objetivos-card__separator {
    display: block;
    flex: 0 0 1px;
    align-self: center;
    width: 1px;
    height: calc(100% - 48px);
    min-height: 120px;
    background: rgba(1, 86, 184, 0.25);
  }

  /* PATROCINADORES */
  .section-patrocinadores {
    padding: 64px 0 72px;
  }

  .section-patrocinadores__titulo {
    font-size: 2.25rem;
    padding-bottom: 48px;
  }

  .section-patrocinadores__subtitulo {
    font-size: 1rem;
  }

  .patrocinio-master__row {
    gap: 32px 48px;
  }

  .patrocinio-master__item {
    max-width: 300px;
  }

  .patrocinio-master__item img {
    max-height: 170px;
  }

  .patrocinadores-logos--institucional {
    flex-wrap: nowrap;
    gap: 12px 16px;
  }

  .patrocinadores-logos--institucional li {
    flex: 1 1 0;
    max-width: none;
  }

  .patrocinadores-logos--institucional img {
    max-height: 56px;
  }

  .patrocinadores-triplo__titulos {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .patrocinadores-triplo__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }

  .patrocinadores-logos--apoio {
    gap: 16px 20px;
  }

  .patrocinadores-logos--apoio img {
    max-height: 72px;
  }

  .patrocinadores-rodape {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 720px;
    margin: 0 auto;
  }

  /* PROTAGONISTAS */
  #protagonistas,
  #participantes {
    padding: 10px 0px;
    margin-top: 70px;
    background: url(../img/bg-protagonistas.jpg) no-repeat top center;
    background-size: contain;
    background-repeat: repeat-y;
  }

  #protagonistas h2,
  #participantes h2 {
    font-size: 2.67em;
    margin: 0px 0px 60px;
  }

  .protagonistas,
  .participantes {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    margin-bottom: 30px;
  }

  .protagonistas li,
  .participantes li {
    padding: 14px;
  }

  /* AGENDA */
  #agenda {
    padding-top: 60px;
  }

  #agenda p {
    font-size: 0.95em;
  }

  #agenda h2 {
    font-size: 2.67em;
  }

  .agenda h6 {
    font-size: 1.18em;
  }

  .abas {
    flex-wrap: nowrap;
  }

  .abas li {
    margin: 0 10px 0 0;
  }

  .abas a {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .dia,
  .manha,
  .tarde {
    width: 25%;
  }

  .manha,
  .tarde {
    flex: unset;
  }

  .agenda>ul>li {
    display: flex;
    align-items: flex-start;
  }

  .agenda-texto {
    width: 79.86%;
    margin-top: 10px;
  }

  .hora {
    width: 20.14%;
    flex: 1 0 auto;
  }

  .hora div {
    display: flex;
    border-radius: 50%;
    width: 57.34%;
    height: 0;
    padding: 0 0 57.34% 0;
    line-height: 1;
    justify-content: center;
    align-items: center;
  }

  .hora div span {
    margin-top: 100%;
    display: block;
    width: 60%;
    word-break: break-all;
  }

  .agenda .intervalo {
    align-items: center;
  }

  .intervalo span {
    flex: 0 1 auto;
  }

  .intervalo span.hora-icon {
    width: 20.14%;
  }

  .intervalo span+span {
    padding-left: 10px;
  }

  .intervalo.banner img {
    width: 80%;
  }

  /* PATROCÍNIO */
  #patrocinio>section {
    padding: 70px 0px;
  }

  #patrocinio .container {
    padding: 0px;
  }

  #patrocinio h2 {
    margin-bottom: 10px;
  }

  .patrocinio h2 {
    font-size: 1.21em;
  }

  .apoio-especial h2,
  .apoio-institucional h2 {
    font-size: 1.15em;
  }

  .patrocinio ul {
    display: flex;
    flex-wrap: wrap;
  }

  .patrocinio .patr-apoio {
    width: 100%;
  }
  .patrocinio .patr-apoio ul li{
    flex: 1 1 calc(25% - 1rem);
    min-width: 200px;
    max-width: calc(25% - 1rem);
    padding: 0.5rem;
  }

  .patrocinio ul ul {
    /* height: 85px; */
    justify-content: space-evenly;
  }

  .patrocinio ul>li {
    width: 25%;
  }

  .patrocinio .patr {
    width: 75%;
  }

  #patrocinio .patr-apoio h2 {
    padding: 40px 40px 0;
  }

  .patrocinio ul ul li,
  .apoio-especial li {
    width: auto;
  }

  .apoio-especial li {
    width: 33.33%;
  }

  .apoio-especial li img {
    padding: 10px;
  }

  .apoio-institucional li {
    width: 25%;
  }

  .apoio-institucional li:nth-child(-n+5) {
    width: 20%;
  }

  .apoio-institucional li:nth-child(n + 21) {
    width: 30%;
  }

  .apoio-institucional li img {
    padding: 25px;
  }

  /* FOOTER */
  .footer-bar .container {
    gap: 24px;
  }

  .footer-contato {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-bar .footer-redes.redes {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    text-align: right;
  }

  .footer-bar .redes ul {
    justify-content: flex-end;
    gap: 12px;
  }

  .footer,
  .footer h3 {
    text-align: left;
  }

  .footer nav,
  .footer .redes {
    display: block;
  }

  .footer ul.infos {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
  }

  .footer ul.infos li+li {
    padding: 0px;
  }

  .footer h3+a,
  .footer h3+span {
    font-size: 0.81em;
  }

  .footer .redes {
    margin: 0;
    border: none;
  }

  .footer .redes ul {
    justify-content: space-around;
  }

  .footer .redes-icons i {
    font-size: 1.1rem;
  }

  /* DOWNLOADS */
  #downloads {
    height: 235px;
    padding-top: 0;
  }

  .downloads li p {
    font-size: 1.1em;
  }
}

@media screen and (min-width: 1349px) {
  .desafios-matrix__col-label {
    font-size: 1.5rem;
  }

  .desafios-cell__text {
    font-size: clamp(1.05rem, 0.82rem + 0.95vw, 1.38rem);
    padding: 9% 20% 9% 12%;
  }
}