@charset "utf-8";

.secao-apresentacao {
	background-position: center center;
	background-size: cover;
}
.secao-apresentacao::before {
	position: absolute;
	bottom: 0;
	height: auto;
	background-color: rgba(25,229,140, .5);
}
.projeto-logo {
	max-width: 140px;
}
.secao-apresentacao h2 {
	max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    position: relative;
}
.evento-data {
    color: white;
    position: relative;
}

/*Galeria*/
.secao-fotos {
	background-color: #E5F7EE;
	padding-top: 80px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 50px;
	border-bottom: 2px solid #19778c;
}
.lista-fotos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.foto-container {
	width: 100%;
    display: flex;
    margin-bottom: 12px;;
}
.foto-link {
    background-color: #D4E3DB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 200px;
}
.foto {
	max-width: 100%;
	max-height: 100%;
}

/*Rodapé*/
.cor-tema {
	fill: #19778c;
}
.outros-links-rodape {
	color: #19778c !important;
}

@media(min-width: 300px){
	.foto-container {
		width: 48%;
	}
}
@media(min-width: 400px){
	.foto-container {
		width: 32%;
	}
}
@media(min-width: 800px){
	.foto-container {
		width: 24%;
	}
}
@charset "utf-8";

.cb-vis-fechado {
	display: none;
}
.cb-vis-janela {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(43,130,148, .8);
	z-index: 9999;
}
.cb-vis-area_imagem {
    height: 100%;
    position: absolute;
    top: 0;
    right: 80px;
    bottom: 0;
    left: 0;
}
.cb-vis-imagem {
    display: block;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: auto;
    margin-left: auto;
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.cb-vis-area_bts {
    position: absolute;
    top: -34px;
    right: 0;
    bottom: 0;
    background-color: #19778C;
}
.cb-vis-bt_anterior,
.cb-vis-bt_proximo,
.cb-vis-bt_fechar
{
    display: block;
	font-size: 0;
	background-repeat: no-repeat;
	background-color: #19778C;
    width: 80px;
    height: 80px;
    background-position: center;
    border: none;
    box-shadow: 0px 0px 10px rgba(0,0,0,.8);
    outline: none;
    cursor: pointer;
}
.cb-vis-bt_anterior,
.cb-vis-bt_proximo
{
	background-image: url('/arquivos/imagens/svg/seta-visualizador-ativo.svg');
}
.cb-vis-bt_anterior {
    transform: rotateY(180deg);
    height: 134px;
    background-position: bottom;
    position: relative;
    top: -60px;
    z-index: 3;
}
.cb-vis-bt_proximo {
    height: 138px;
    background-position: bottom;
    position: relative;
    top: -122px;
    z-index: 2;
}
.cb-vis-bt_fechar {
    background-image: url('/arquivos/imagens/svg/xis-visualizador.svg');
    height: 105px;
    background-position: bottom;
    position: relative;
    z-index: 4;
}
.cb-vis-bt:enabled {
    /*background-color: #19778C;*/
}
.cb-vis-bt:disabled {
    background-image: url('/arquivos/imagens/svg/seta-visualizador-inativo.svg');
    cursor: initial;
    background-size: 36%;
    background-position: center 86%;
}
.cb-vis-bt_anterior[disabled] {
	transform: rotateY(0deg);    
}
.cb-vis-bt_proximo[disabled] {
    transform: rotateY(180deg);    
}

/*Ícone de processo*/
.icone-area{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  
  animation: 3s linear 0s infinite girar;
}
.icone-area::before,
.icone-area::after
{
  position: absolute;
  z-index:1;
  left:0;
  right:0;
  margin: auto;
  content:'';
  width: 10px;
  height: 10px;
  background: blue;
  border-radius: 50%;
}
.icone-area::before{ top: 10px; }
.icone-area::after{ bottom: 10px; }
.icone
{
  border: 10px solid transparent;
  border-left-color: blue;
  border-top-color: blue;
  border-right-color: #cccccc;
  border-bottom-color: #cccccc;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: rotate(-45deg);
}
@keyframes girar{
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/****************************************************/

@keyframes rotacionar {
    from {transform: rotateZ(0deg);}
    to {transform: rotateZ(360deg);}
}

@media(max-width: 750px) {
    .cb-vis-bt_anterior,
    .cb-vis-bt_proximo,
    .cb-vis-bt_fechar
    {
        width: 60px;
    }
}
@media (orientation: portrait) {
    .cb-vis-area_imagem {
        height: auto;
        right: 0;
        bottom: 60px;
    }
    .cb-vis-area_bts {
        display: flex;
        justify-content: flex-end;
        position: absolute;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #19778C;
    }
    .cb-vis-bt_anterior,
    .cb-vis-bt_proximo,
    .cb-vis-bt_fechar
    {
        position: relative;
        top: auto;
        width: 118px;
        height: 60px;
        display: inline-block;
        background-position-y: center; 
    }
    .cb-vis-bt_proximo {
        background-position: center; 
    }
    .cb-vis-bt_fechar
    {
        order: 3;
        background-position: center;
    }
    .cb-vis-bt_anterior {
        z-index: 1;
        background-position: center;
    }
}
