
a {
	color: var(--cor-principal);
  text-decoration: none;
  font-family: var(--texto-a-font);
  text-transform: uppercase;
}

a:hover {
  color: var(--cor-secundaria);
  text-decoration: none;
}

h1, h2 {
  font-family: var(--texto-titulo-font);
  font-size: var(--texto-titulo-size);
}

p {
  color: var(--texto-p-color);
  padding: 3px;
  font-family: var(--texto-p-font);
  font-size: var(--texto-p-size);
}

section {
  padding-top: 3%;
  padding-bottom: 8%;
}

@media (max-width: 768px) {
  section {
    padding-top: 10%;
    padding-bottom: 15%;
  }
}

/* Header */

.text-muted {
  padding-inline: 10px;
}

.navbar .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {

  .navbar .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

}

.navbar {
  box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
}

.navbar .navbar-nav .nav-link {
  color: var(--nav-font-color) !important;
  font-family: var(--nav-font-family) !important;
  font-size: var(--nav-font-size) !important;
  text-transform: none;
  padding: 0 8px;
  white-space: nowrap;
}

.navbar .navbar-nav .nav-link:hover {
  color: var(--nav-font-color-hover) !important;
}

.navbar-brand {
  position: relative;
  padding: 10px;
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: 100%;
  background: transparent !important;
  max-height: 90%;
  width: auto;
  margin:3px;
  padding-bottom: 5px;
}

.top-nav-collapse {
  z-index: 999999;
  top: 0px !important;
  min-height: 58px;
  box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  background: var(--navbar-background) !important;
}

.top-nav-collapse .navbar-brand {
  top: 0px;
}

.top-nav-collapse .navbar-nav .nav-link:hover {
  color: var(--nav-font-color-hover) !important;
}

.top-nav-collapse .navbar-nav li.active a.nav-link {
  color: var(--cor-secundaria) !important;
}

.indigo {
  background: transparent;
}

@media (max-width: 991px) {

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #fff;
  padding: 0 25px;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 40px;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;

}

.navbar-expand-lg .navbar-nav li > a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -10px;
  width: 15px;
  height: 2px;
  background: var(--cor-principal);
  -webkit-transform: scale3d(0, 1, 1);
  -moz-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.1s;
  -moz-transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
}

.navbar-expand-lg .navbar-nav .active a:before {
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.navbar-expand-lg .navbar-nav li a:hover,
.navbar-expand-lg .navbar-nav li .active > a,
.navbar-expand-lg .navbar-nav li a:focus {
  color: var(--nav-font-color-hover);
  outline: none;
}

.navbar-expand-lg .navbar-nav .nav-link:focus,
.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: var(--nav-font-color-hover) !important;
}

.navbar {
  padding: 0;
  font-size: var(--nav-font-size) !important;
}

.navbar li.active a.nav-link {
  color: var(--cor-secundaria) !important;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu .dropdown-item {
  text-transform: none !important;
}

.dropdown-menu {
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99;
  min-width: 210px;
  background-color: #fff;
  white-space: nowrap;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  animation: fadeIn 0.4s;
  -webkit-animation: fadeIn 0.4s;
  -moz-animation: fadeIn 0.4s;
  -o-animation: fadeIn 0.4s;
  -ms-animation: fadeIn 0.4s;
}

.dropdown-menu:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 100%;
  left: 20%;
  margin-left: -5px;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #f5f5f5;
}

.dropdown:hover .dropdown-menu {
  display: block;
  position: absolute;
  text-align: left;
  top: 100%;
  border: none;
  animation: fadeIn 0.4s;
  -webkit-animation: fadeIn 0.4s;
  -moz-animation: fadeIn 0.4s;
  -o-animation: fadeIn 0.4s;
  -ms-animation: fadeIn 0.4s;
  background: #f5f5f5;
}

@media (max-width: 991px) {

  .dropdown-menu {
    position: static;
    box-shadow: none;
    width: 100%;
  }

}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Desktop */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .navbar-toggler {
        display: block !important;
    }
}

.dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  color: #212121;
  border-bottom: 1px solid #f1f1f1;
  text-decoration: none;
  display: inline-block;
  float: left;
  clear: both;
  position: relative;
  outline: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.dropdown .dropdown-menu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.dropdown .dropdown-item:focus,
.dropdown .dropdown-item:hover,
.dropdown .dropdown-item.active {
  color: var(--cor-principal);
}

.dropdown-item.active, .dropdown-item:active {
  background: transparent;
}

.fadeInUpMenu {
  -webkit-animation-name: fadeInUpMenu;
  animation-name: fadeInUpMenu;
}

.navbar-nav {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

.navbar .navbar-nav .nav-link {
  display: inline-block;
}

.navbar .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}

.navbar-top-link {
  display: flex; 
  justify-content: flex-end; 
  align-items: center; 
  padding-right: 40px;
  text-align: right; 
}

.navbar-top-link a {
	font-size: 15px;
	text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 991px) {

  .menu-centralizado {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .navbar-collapse {
    background: var(--navbar-background);
    padding: 15px;
  }

}

.divisor-vertical {
  width: 2px;
  background-color: var(--cor-principal);
  align-self: stretch;
}


/* Carousel */

#main-slide .carousel-item img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

/* Overlay opcional */

#main-slide .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
}

/* Legendas */

#main-slide .carousel-caption {
    top: 35%;
    color: #fff;
}

#main-slide .carousel-caption .heading {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

#main-slide .carousel-caption p {
    font-size: 20px;
}

#main-slide .carousel-item img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

/* Controles */

#main-slide .carousel-control-prev,
#main-slide .carousel-control-next {
    opacity: 0;
    transition: .3s;
}

#main-slide:hover .carousel-control-prev,
#main-slide:hover .carousel-control-next {
    opacity: 1;
}

/* Indicadores */

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
}

/* Mobile */

@media (max-width: 768px) {

    #main-slide .carousel-item img {
        height: 250px;
    }

    #main-slide .carousel-caption {
        top: 20%;
    }

    #main-slide .carousel-caption .heading {
        font-size: 24px;
    }

    #main-slide .carousel-caption p {
        font-size: 14px;
    }

}


.imagem-noticia,
.imagem-home {
  position: relative;
  padding: 0px;
}

.imagem-home img {
  width: 100%;
  padding: 10px;
}

.imagem-noticia img {
  width: 70%;
  margin:3px;
}

.noticia-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-top: 1px dashed silver;
}

.noticia-thumb {
  flex-shrink: 0;
}

.noticia-img-home {
  width: 140px;
  height: 90px;
  object-fit: cover;
  display: block;
}


.noticia-conteudo {
  flex: 1;
}

.noticia-titulo {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

.noticia-conteudo a {
  text-decoration: none;
}

.noticia-img {
  max-width: 180px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.btn-common {
  background: var(--cor-principal);
  position: relative;
  border-color: white;
}

.btn {
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
}

.btn-common:hover {
  background: var(--cor-secundaria) ;
  color: white ;
  border-color: white;
}

/* FOOTER */
.footer-area h1,
.footer-area h2,
.footer-area h4 {
  font-size: 20px;
  color: var(--rodape-texto-color);
  font-family: var(--texto-titulo-font);
  font-weight: 700;
  padding-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-area h3 {
  color: var(--rodape-titulo-color);
  font-family: var(--texto-titulo-font);
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-area p {
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  margin: 0;
  padding-bottom: 5px;
  padding-top: 5px;
}

.footer-area a {
  font-family: var(--texto-p-font)
}

.footer-area i{
  color: white;
  font-size: 25px;
  margin-top: 3px;
}

.footer-area {
  position: relative;
  background: var(--rodape-background-color);
  padding: 30px;
}

.footer-area::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--rodape-background-color);
  transform: skewY(-2deg);
  z-index: -1;
}

.footer-area .footer-social li {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-right: 20px;
  vertical-align: top;
  margin-bottom: 8px;
}

.footer-area .footer-social li span {
  color: #fff;
  font-size: 12px;
  margin-top: 5px;
  margin-right: 0;
}

.footer-area .footer-social li a {
  color: #000;
  background: #fff;
  width: 65px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 20px;
  
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.footer-area .footer-social li a:hover {
  color: #fff;
}

.footer-area .footer-social li .icons {
  background: var(--cor-secundaria);
  border: 1px solid white;
}

.footer-area .footer-social li .icons:hover {
  background: var(--cor-principal);
}

.footer-conference {
  width: 10%; 
  height: auto;
}

@media (max-width: 768px) {
  .footer-conference {
    width: 25%; 
    height: auto;
  }
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.menu-block {
  flex: 1 1 250px;
  padding: 20px;
}

.menu-block a {
  color: white;
}

.menu-block a:hover {
  color: var(--cor-secundaria);
}

.menu-title {
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.menu-links a {
  font-size: 12px;
  color: whitesmoke;
}

.menu-link {
  text-decoration: none;
  font-size: 14px;
}

.titulo-eventos {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; 
}

.titulo-eventos h2 {
  margin: 0; 
  line-height: 1.1; 
  font-size: 40px;
  color: var(--cor-principal);
  font-family: var(--texto-titulo-font);
  font-weight: 700;
}


/* Agenda */

.home-agenda-data h2 {
  font-family: var(--texto-titulo-font);
  font-size: 40px;
  font-weight: 600;
}

.home-agenda-data h1 {
  font-family: var(--texto-titulo-font);
  font-size: 75px;;
  font-weight: 600;
}

#agenda {
	padding: 80px 0 120px;
	position: relative;
}

#agenda .item {
  position: relative;
  max-width: 500px;
}

#agenda .item .data {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 50px;
	color: #adb0bf;
	font-weight: 800;
}

#agenda .item .data .mes {
	border-top: solid 3px;
}

#agenda .item .data .mes2, #agenda .item .data .ano2 {
	border-top: solid 2px;
}

#agenda .item .data .mes2, #agenda .item .data .dia2 {
	font-size: 35px;
}

#agenda .item .data .ano2 {
	font-size: 20px;
}

#agenda .item .info h3 {
	margin: 0;
	color: #1c4fb8;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 22px;
}

#agenda .item .info p {
	color: #727596;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  margin: 8px 0 0;
  line-height: 19px;
}

#agenda .agenda-list.ver-todos {
	display: none;
}


#agenda .agenda-list .clearfix .item {
	opacity: 1;
}

/*
#agenda .agenda-list.active .clearfix .item {
	animation: fadeInFx .6s .3s ease forwards; 
}
*/

#agenda .agenda-list.active .clearfix:nth-child(1) .item {	animation: slideLeftFx .6s .2s ease forwards; }
#agenda .agenda-list.active .clearfix:nth-child(2) .item {	animation: slideRightFx .6s .3s ease forwards; }
#agenda .agenda-list.active .clearfix:nth-child(3) .item {	animation: slideLeftFx .6s .4s ease forwards; }
#agenda .agenda-list.active .clearfix:nth-child(4) .item {	animation: slideRightFx .6s .5s ease forwards; }
#agenda .agenda-list.active .clearfix:nth-child(5) .item {	animation: slideLeftFx .6s .6s ease forwards; }
#agenda .agenda-list.active .clearfix:nth-child(6) .item {	animation: slideRightFx .6s .7s ease forwards; }
#agenda .agenda-list.active .clearfix:nth-child(7) .item {	animation: slideLeftFx .6s .8s ease forwards; }
#agenda .agenda-list.active .clearfix:nth-child(8) .item {	animation: slideRightFx .6s .9s ease forwards; }
#agenda .agenda-list.active .clearfix:nth-child(9) .item {	animation: slideLeftFx .6s 1s ease forwards; }

#agenda .agenda-list.active .item-esq:after, #agenda .agenda-list.active .item-dir:after {
	animation: fadeInFx .6s .3s ease forwards; 
}

/* Esquerda */

#agenda .item-esq {
	position: relative;
}

#agenda .item-esq:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	background: #eee;
	height: 100%;
	width: 1px;
}

#agenda .item-esq:after {
  content: "\f284";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  background: #fff;
  color: #1c4fb8;
  font-size: 24px;
  z-index: 10;
}

#agenda .item-esq .item {
  padding-left: 60px;
  margin: 15px 40px 15px auto;
}

#agenda .item-esq .item .data {
	left: 0;
}

/* Direita */

#agenda .item-dir {
	position: relative; 
}

#agenda .item-dir:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: -1px;
	background: #eee;
	height: 100%;
	width: 1px;
}

#agenda .item-dir:after {
  content: "\f285";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  background: #fff;
  color: #1c4fb8;
  font-size: 24px;
  z-index: 10;
}

#agenda .item-dir .item {
  padding-right: 90px;
  padding-left: 0;
  margin: 15px auto 15px 40px;
}

#agenda .item-dir .item .data {
	right: 0;
}

@media (max-width: 992px) {
  .home-agenda-data h2 {
    font-size: 25px;
  }

  .home-agenda-data h1 {
    font-size: 50px;
  }
}

@media (max-width: 768px) {

  /* Todos os eventos ficam do mesmo lado */
  #agenda .item-esq,
  #agenda .item-dir {
    width: 100%;
    margin-left: 0 !important;
  }

  #agenda .item-esq:before,
  #agenda .item-dir:before {
    left: 0;
    right: auto;
  }

  #agenda .item-esq:after,
  #agenda .item-dir:after {
    left: -12px;
    right: auto;
  }

  #agenda .item-esq .item,
  #agenda .item-dir .item {
    padding-left: 60px;
    padding-right: 0;
    margin: 35px 0; 
    max-width: 100%;
  }

  #agenda .item-esq .item .data,
  #agenda .item-dir .item .data {
    left: 0;
    right: auto;
  }

  #agenda .item.d-flex {
    justify-content: flex-start !important;
  }

  /* Data menor */
  #agenda .item .data .dia2,
  #agenda .item .data .mes2 {
    font-size: 24px;
  }

  /* Título menor */
  #agenda .item .info h3 {
    font-size: 18px !important;
    line-height: 1.3;
    padding: 6px;
  }

  /* Local menor */
  #agenda .item .info p {
    font-size: 13px !important;
  }

}



.conteudo-box {
  width: 65%;
  max-width: 900px;
  text-align: justify;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .conteudo-box {
    width: 95%;
  }
}

.conteudo-box h1 {
  color: var(--cor-principal);
  font-family: var(--texto-titulo-font);
  font-size: var(--texto-titulo-size);
  text-transform: uppercase;
  padding-bottom: 20px;
  font-weight: var(--texto-titulo-weight);
}

.conteudo-box p,
.conteudo-box div {
  color: var(--texto-p-color);
  font-family: var(--texto-p-font);
  font-size: var(--texto-p-size);
}

.conteudo-box img {
  max-width: 500px;
  height: auto;
}

@media (max-width: 768px){
  .conteudo-box img {
    max-width: 300px;
  }
}

.conteudo-box i,
.conteudo-box span {
  color: var(--texto-p-color);
  font-size: 12px;
}

.conteudo-box .desc {
  padding-top: 30px;
}

.conteudo-box-embreve {
  text-align: center;
  padding: 100px;
}

#share {
  color: #787878;
}

/* GALERIA */

#galeria {
  width: 100%;
}

#galeria .owl-item {
  height: 400px; 
}

#galeria .item,
#galeria .item-wrap,
#galeria figure {
  height: 100%;
  margin: 0;
}

#galeria figure {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* controla a imagem real */
#galeria figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.conteudo-box figure {
  margin: 20px 0;
  padding: 0;
  width: 100%;
  text-align: center;
  overflow: hidden;
  background-image: none !important;
  background-size: cover;
  background-position: center;
}

.conteudo-box img {
  display: block;
  width: 500px;
  height: auto;
  margin: 0 auto;
}


#galeria .item {
  padding: 10px;
  display: flex;
  justify-content: center;
}

#galeria figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

#galeria .item-wrap {
  aspect-ratio: 4 / 2;
  overflow: hidden;
}

#galeria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}
