
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);
  text-transform: uppercase;
  color: var(--cor-principal);
}

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

/* navbar */

.navbar .container-fluid {
  display: flex;
  align-items: center;
  gap: 30px; 
}

@media (max-width: 991px) {

  .navbar .container-fluid {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

}

.container-mapalocal {
  width: 90%;
  margin: 0 auto;
}

.navbar-collapse {
  flex-grow: 1;
}

.navbar {
  background: var(--navbar-background) !important;
  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;
  font-weight: var(--nav-font-weight);
  padding: 0 8px;
  white-space: nowrap;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-brand img {
  display: block;
  max-height: 120px; 
  width: auto;
  object-fit: contain;
}

.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-collapse {
    width: 100%;
    margin-top: 10px;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #fff;
  padding: 0 8px;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 40px;
  text-transform: uppercase;
  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 {
  margin: 0;
  padding: 0;
  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 {
  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 (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

.dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  padding: 12px 20px;
  background-color: var(--nav-font-color-hover) !important;
  color: white !important;
  font-family: var(--nav-font-family) !important;
  font-size: var(--nav-font-size) !important;
  font-weight: var(--nav-font-weight);
  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;
}

.slicknav_btn {
  border-color: var(--cor-principal);
}

.slicknav_menu .slicknav_icon-bar {
  background: var(--cor-principal);
}

/* only small tablets */
@media (min-width: 768px) and (max-width: 991px) {
  #nav-main li a.nav-link {
    padding-top: 18px;
  }
}

.navbar-toggler {
  display: none;
}

@media (max-width: 991px) {
  .navbar-toggler {
    display: block;
  }
}

.mobile-menu {
  display: none;
}

.slicknav_menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .navbar-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navbar-brand {
    padding: 15px 15px;
    top: 0;
  }
  .navbar-brand img {
    width: 75%;
  }
  #mobile-menu {
    display: none;
  }
  .slicknav_menu {
    display: block;
  }
  .slicknav_nav .active a {
    background: var(--cor-principal);
    color: #fff;
  }
  .slicknav_nav a:hover, .slicknav_nav .active {
    color: var(--cor-principal);
    background: #f5f5f5;
  }
  .slicknav_nav .dropdown li a.active {
    background: #f5f5f5;
    color: var(--cor-principal);
  }
}

.navbar-top-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px; 
  padding-top: 20px;
  padding-bottom: 25px;
}

.navbar-top-link a {
  font-size: 12px;
  color: var(--texto-p-color);
  text-transform: none;
}

.navbar-top-link a:hover {
  color: var(--cor-principal);
  font-weight: bold;
}

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

/* carousel */

#main-slide .carousel-control {
  display: none;
  transition: all 0.3s ease-in-out;
}

#main-slide .carousel-indicators {
  cursor: pointer;
  bottom: 90px;
}

#main-slide:hover .carousel-control {
  display: block;
  transition: all 0.3s ease-in-out;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

#main-slide .carousel-item img {
  position: relative;
  width: 100%;
}

#main-slide .carousel-inner .carousel-item::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none; 
}

#main-slide .carousel-item .carousel-caption {
  opacity: 0;
  transition: opacity 100ms ease 0s;
  z-index: 0;
}

#main-slide .carousel-item .carousel-caption .heading {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-top: 30px;
}

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

#main-slide .carousel-item.active .carousel-caption {
  opacity: 1;
  transition: opacity 100ms ease 0s;
  z-index: 1;
}

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

#main-slide .carousel-caption .btn {
  margin: 25px 25px 0px 0px;
}

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

#main-slide .carousel-control-prev span {
  padding: 15px;
}

#main-slide .carousel-control-next span {
  padding: 15px;
}

#main-slide .carousel-control {
  top: 45%;
}

#main-slide .carousel-control .lni-chevron-left,
#main-slide .carousel-control .lni-chevron-right {
  position: absolute;
  z-index: 5;
}

#main-slide .carousel-control .lni-chevron-left {
  left: 15px;
}

#main-slide .carousel-control .lni-chevron-right {
  right: 15px;
}

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

#main-slide .carousel-control i {
  line-height: 40px;
  font-size: 18px;
  width: 45px;
  border: 2px solid #fff;
  height: 45px;
  display: block;
  border-radius: 2px;
  background: transparent;
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}

#main-slide .carousel-control i:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: #fff;
}



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

.imagem-home img {
  width: 100%;
  margin:3px;
}

.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-img {
  width: 200px;
  height: 150px;
  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: 150px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.data-noticia {
  border: 1px solid black; 
  padding: 30px; 
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .data-noticia {
    padding: 20px;
  }
}

.data-noticia p {
  margin: 0;
  line-height: 1;
}

.data-noticia h4 {
  margin: 0;
  line-height: 1;
}


.data-noticia-home p  {
  margin: 0;
}

.data-noticia-home h4 {
  margin-right: 6px;
}

@media (max-width: 768px) {

  .img-bannerconteudo {
    max-width: 300px;
    height: auto;
  }

}

.noticia-texto {
  max-width: 60%;
  text-align: justify;
}

@media (max-width: 768px) {

  .noticia-texto{
    max-width: 95%;
  }

}


/* 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 .footer-social {
  display: grid;
  grid-template-columns: repeat(3, 45px);
  padding: 0;
  margin: 0;
}

.footer-area .footer-social li {
  display: inline-block;
}

.footer-area .footer-social li a {
  color: #000;
  background: #fff;
  width: 45px;
  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: #4f4f4f;
  border: 1px solid white;
}

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

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25%;
  padding-bottom: 2%;
}

.footer-logo {
  max-width: 200px;
  height: auto;
}

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

@media (max-width: 768px) {

  .footer-logos {
    gap: 10%;
  }

  .footer-logo {
    width: 120px;
  }

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

}

.contato-lista li {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.contato-lista li i {
  font-size: 18px;
  color: var(--texto-p-color); 
  min-width: 20px;
  padding: 10px;
}

.contato-lista li a {
  text-decoration: none;
  text-transform: none;
  color: var(--texto-p-color);
  transition: 0.3s;
  font-size: var(--texto-p-size);
}

.contato-lista li a:hover {
  opacity: 0.8;
}

.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: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.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);
}

/* Agenda */

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

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

#agenda .item .tag-coffee_break {
	position: absolute;
	bottom: -80px;
	display: block;
	width: 226px;
	height: 72px;
	background: url(../images/icons/coffee-break.png);
}

#agenda .item .data {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 36px;
	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: 28px;
}

#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: 0;
}

#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: '';
	display: block;
	position: absolute;
	top: 50%;
	right:-10px;
	background: url('../assets/icons/marca-agenda.svg') #fff;
	transform: translateY(-50%)rotate(180deg);
	height: 20px;
	width: 24px;
	opacity: 0;
}

#agenda .item-esq .item {
  padding-left: 80px;
  margin: 15px 0 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: '';
	display: block;
	position: absolute;
	top: 50%;
	left: -10px;
	background: url('../assets/icons/marca-agenda.svg') #fff;
	transform: translateY(-50%);
	height: 20px;
	width: 24px;
	opacity: 0;
}

#agenda .item-dir .item {
  padding-right: 80px;
  margin: 15px auto 15px 45px;
}

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

#agenda #btn-agenda {
	background: #1c4fb8;
  border: none;
  padding: 8px;
  width: 250px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  border-radius: 60px;
  z-index: 3;
}

.conteudo-box {
  max-width: 80%;
  text-align: justify;
}

@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 h6 {
  color: var(--cor-principal);
  font-weight: bold;
}

.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 {
  width: 200px;
  height: auto;
}

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

.conteudo-box-embreve h1 {
  font-size: 30px;
}

@media (max-width: 768px) {
  .conteudo-box-embreve h1 {
    font-size: 20px;
  }
}

.conteudo-box-contato h6 {
  color: var(--cor-principal);
  font-weight: 700;
  font-size: 22px;
  font-family: var(--texto-p-font);
  padding-top: 12px;
}

#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;
}

/* banners */
.container-banner-blur {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.3);
}

.container-banner {
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translateY(-50%);
  color: white;
  text-align: left;
}

.container-banner h3 {
  font-size: 40px;
  font-family: var(--texto-titulo-font);
  margin: 0;
  padding-left: 20px;
  border-left: 5px solid var(--texto-titulo-border);
}

.bannerconteudo-texto p {
  color: var(--home-bannerconteudo-texto-cor);
  text-align: justify;
}

.introducao-texto p {
  text-align: justify;
}

/* vídeo */

.video-include {
  width: 100%;
  max-width: 750px; 
  margin: 0 auto;
}

.video-include iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 10px;
  display: block;
}

.divisor-horizontal {
  height: 2px;
  /* background-color: var(--cor-principal); */
  align-self: stretch;
}

/* botão */

.btn-common {
  background: var(--cor-principal) ;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
}

.btn-common:hover {
  color: #fff;
  background: var(--cor-secundaria) ;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
}

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


/* rodapé */

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

.footer-area h2 {
  color: var(--rodape-titulo-color);
}

.footer-area p {
  color: var(--rodape-texto-color);
}

.footer-area .footer-social li {
  display: inline-block;
}

.footer-area .footer-social li a {
  color: #000;
  background: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  text-align: center;
  border-radius: 4px;
  font-size: 15px;
  margin-right: 5px;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

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

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


.list-specification {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-specification li {
  margin-bottom: 2px;
}

.list-specification a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--rodape-texto-color);
  transition: all 0.3s ease;
  text-transform: none;
}

.list-specification > a > i {
  font-size: 14px;
  transition: all 0.3s ease;
}

.list-specification a:hover {
  color: var(--cor-secundaria);
  padding-left: 5px;
}

.list-specification a:hover i {
  transform: scale(1.2);
}


.newsletter-input-wrapper {
  width: 85%;
  display: flex;
  align-items: center;
}

.newsletter-input-wrapper i {
  position: absolute;
  left: 15px;
  color: #888;
  font-size: 18px;
}

.newsletter-text {
  width: 100%;
  height: 55px;
  padding: 0 20px 0 45px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.newsletter-area .col-md-3,
.newsletter-area .col-md-6{
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {

    .newsletter-area .col-md-5,
    .newsletter-area .col-md-4,
    .newsletter-area .col-md-3 {
        text-align: center;
    }

    .newsletter-area .d-flex {
        justify-content: center !important;
    }

    .newsletter-text {
        margin: 0 auto;
    }
}

.card-noticia-home {
  width: 380px; 
  border-right: 2px solid whitesmoke;
}

.card-noticia-home:hover {
  background: whitesmoke;
}

@media (max-width: 767px) { 
  .card-noticia-home {
    border-bottom: 2px solid whitesmoke;
  }
}

.agenda-img {
  overflow: hidden;
  margin: 0 auto;
}

.agenda-img img {
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 5px;
}

.agenda-img img:hover {
  transform: scale(1.1);
}

.pagina-noticia-img {
  overflow: hidden;
  margin: 0 auto;
}

.pagina-noticia-img img {
  max-width: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 5px;
}

.pagina-noticia-img img:hover {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .pagina-noticia-img img {
    max-height: 120px;
  }
}

/* animação carregamento */

.loader {
  position: fixed;
  inset: 0;
  background: var(--cor-tela-carregamento);
  z-index: 99999;

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

.sk-circle {
  width: 60px;
  height: 60px;
  position: relative;
}

.sk-circle .sk-child {
    width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: whitesmoke;
  border-radius: 100%;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle1 { transform: rotate(30deg); }
.sk-circle2 { transform: rotate(60deg); }
.sk-circle3 { transform: rotate(90deg); }
.sk-circle4 { transform: rotate(120deg); }
.sk-circle5 { transform: rotate(150deg); }
.sk-circle6 { transform: rotate(180deg); }
.sk-circle7 { transform: rotate(210deg); }
.sk-circle8 { transform: rotate(240deg); }
.sk-circle9 { transform: rotate(270deg); }
.sk-circle10 { transform: rotate(300deg); }
.sk-circle11 { transform: rotate(330deg); }
.sk-circle12 { transform: rotate(360deg); }

.sk-circle2:before  { animation-delay: -1.1s; }
.sk-circle3:before  { animation-delay: -1.0s; }
.sk-circle4:before  { animation-delay: -0.9s; }
.sk-circle5:before  { animation-delay: -0.8s; }
.sk-circle6:before  { animation-delay: -0.7s; }
.sk-circle7:before  { animation-delay: -0.6s; }
.sk-circle8:before  { animation-delay: -0.5s; }
.sk-circle9:before  { animation-delay: -0.4s; }
.sk-circle10:before { animation-delay: -0.3s; }
.sk-circle11:before { animation-delay: -0.2s; }
.sk-circle12:before { animation-delay: -0.1s; }

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
      transform: scale(0);
  }
  40% {
      transform: scale(1);
  }
}

/* FOTOS */

.album-grid {
  width: 80%;
  margin: 0 auto;
}

.gallery-box:hover img {
  transform: scale(1.03);
}

.img-thumb-include {
  width: 100%;
}

.img-thumb-include img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.album-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
}

/* modal galeria */

.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn .3s ease;
}

.image-modal img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  animation: zoomIn .3s ease;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.album-img {
  cursor: pointer;
  transition: .3s;
}

.album-img:hover {
  transform: scale(1.03);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes zoomIn {
  from {
      opacity: 0;
      transform: scale(.8);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

.agenda-pagina img {
  height: auto;
  max-width: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 5px;
}

.agenda-pagina h1 {
  font-size: 25px;
}

.agenda-pagina h3 {
  font-size: 22px;
  text-align: center;
}

.agenda-pagina .btn {
  font-size: 12px;
  padding: 8px 12px;
}

@media (max-width: 768px) {
  .agenda-pagina img {
    max-width: 145px;
  }

  .agenda-pagina h1 {
    font-size: 16px;
  }

  .agenda-pagina h3 {
    font-size: 15px;
    text-align: right;
  }
}

/* notícia index */

.noticiasSwiper {
  width: 100%;
  height: max-content !important; 
}

.noticiasSwiper .swiper-wrapper {
  align-items: flex-start; 
}

.noticiasSwiper .swiper-slide {
  display: flex;
  height: auto; 
}

.card-noticia-home {
  width: 100%;
  display: flex;
  margin-bottom: 0; 
}

.card-glass {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.card-glass img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

.card-glass p {
  flex-grow: 1;
}

.noticias-prev,
.noticias-next {
  min-width: 45px;
  min-height: 45px;
}


.bannerconteudo2-background-img img {
  max-height: 550px;
}

.bannerconteudo2-img img {
  max-width: 320px;
}

.bannerconteudo2-img p {
  padding-right: 15%;
  text-align: justify;
}

@media (max-width: 768px) {
  .bannerconteudo2-background-img img {
    max-width: 100%;
    padding-bottom: 15px;
  }

  .bannerconteudo2-img {
    align-items: center;
    padding: 0px 30px;
  }

  .bannerconteudo2-img p {
    padding-right: 0%;
  }
}

.patrocinio-img {
  display: flex;
  justify-content: center;
}

.patrocinio-img img {
  max-width: 550px;
}

.rodape-banner {
  height: 400px;
  overflow: hidden;
}

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

/* whatsapp  button */

.whatsapp-float{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  transition: .3s;
}

.whatsapp-float:hover{
  transform: scale(1.1);
  color: #fff;
}