/* Estilizações Gerais */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.clear {
	clear: both;
}

.left {
	float: left;
}

.right {
	float: right;
}

.w100 {
	width: 100%;
}

.w50 {
	width: 50%;
}

.w33 {
	width: 33%;
}

.btn {
	background-color: #44b2bd;
	border-color: #44b2bd;
}

/* Estilização - TOPO DO SITE */
.topo {
	background-color: #FFF;
	opacity: .8;
}

/* Estilização - CONTEÚDO DO SITE */
.fundo {
	background-image: url('../img/fundo.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.area-logo img {
	transform: translate(-45%, 70%);
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.area-lateral {
	width: 30vw;
	height: 100vh;
	background-image: url('../img/img_lateral.png');
	background-size: cover;
	background-repeat: no-repeat;
	position: fixed; /* Alterado para fixed para garantir visibilidade */
	top: 0;
	right: 0;
	z-index: 1; /* Adicionado para garantir que fique acima de outros elementos */
}

.form-cadastro {
	background-color: #FFF;
	border-radius: 20px;
	width: 400px;
	height: 230px;
	border: solid 2px #070459;
}

.thumb-link {
	background-color: #44b2bd;
	min-height: 40px;
	padding: 10px;
	margin: 20px 15px 5px 15px;
	border-radius: 5px;
	color: #FFF;
}

.thumb-link a {
	color: #FFF;
	text-decoration: none;
}

.thumb-link .thumb {
	margin-top: 10px;
	border: solid 1px #fff;
	width: 100%;
	height: 120px;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.thumb-link .thumb img {
	width: 100%;
	height: auto;
}

.thumb-me {
	background-color: #44b2bd;
	min-height: 100px;
	padding: 10px;
	margin: 20px 15px 5px 15px;
	border-radius: 5px;
	color: #FFF;
}

.thumb-me a {
	color: #FFF;
	text-decoration: none;
	font-size: 25px;
	font-weight: bold;
	position: relative;
	top: 25px;
}

.thumb-me .thumb {
	margin-top: 10px;
	border: solid 1px #fff;
	width: 100%;
	height: 120px;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.thumb-me .thumb img {
	width: 100%;
	height: auto;
}

#controles input[type=text] {
	border: none;
	color: #050178;
	font-weight: bold;
	width: 20px;
}

.inscricao {
	margin: 10px;
}

.titulo {
	padding-right: 150px;
	color: #356aa1;
}

.titulo p {
	font-size: 25px;
	font-weight: bold;
}

.titulo-ponto {
	color: #356aa1;
	font-size: 25px;
	font-weight: bold;
}

.realizacao {
	margin-top: 50px;
	padding-left: 50px;
}

.realizacao-inicio {
	margin-top: 50px;
}

/* Botões Responsivos */
.botoes {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	position: relative;
	top: 200px; /* Ajusta a posição dos botões */
	right: 250px; /* Move os botões para a esquerda */
}

.botoes .p-2 {
	flex: 1;
	display: flex;
	justify-content: center;
}

.botoes button {
	width: 100%;
	max-width: 150px;
}

/* Estilização para o modalImagem */
.modal-dialog {
    margin: 30px auto; /* Centraliza o modal verticalmente */
}

.modal-content {
    width: 100%; /* Faz o conteúdo do modal ocupar 100% da largura do modal */
}

/* Media Queries */
@media (max-width: 1045px) {
	.area-lateral {
	  display: none;
	}

	.botoes {
	  justify-content: flex-start;
	  top: 0; /* Remove o deslocamento vertical em telas pequenas */
	  left: 0; /* Remove o deslocamento horizontal em telas pequenas */
	}

	.inscricao {
	  position: static;
	  margin: 5px 0;
	}

	.area-logo img {
	  transform: none;
	  max-width: 80%;
	  margin: 20px auto;
	}

	.titulo, .area-conteudo, .text-card, .realizacao-inicio {
		text-align: center; /* Centraliza o texto */
		margin: 0 auto; /* Centraliza os elementos */
	  }
	
	  .titulo {
		padding-right: 0; /* Remove o padding que desloca o texto */
	  }
	
	  .area-thumbs {
		justify-content: center; /* Centraliza as thumbs */
	  }
}

@media (min-width: 850px) {
    .modal-dialog {
        max-width: 800px; /* Define a largura máxima do modal em telas maiores que 850px */
        margin: 30px auto; /* Centraliza o modal verticalmente em telas maiores */
    }
}
