/* CSS Document */
body {
	background-color:#171313;
	color: white;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

hr {
	margin: 20px 8% 10px 8%;
	font-weight: bold;
}

.showThis {
	display: block;
}

.hideThis {
	display: none;
}


/* Top bar menu */
.top_menu {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 1.5em;
	line-height: 100%;
}

.mainTM {
	margin-left: 20px;
}

.mainTM a {
	color: white;
	font-weight: bold;
	text-decoration: none;
}

.mainTM a:hover {
	color: #BFBFBF;
}

.aboutTM {
	margin-right: 20px;
}

.aboutTM a {
	color: white;
	font-weight: bold;
	text-decoration: none;
}

.aboutTM a:hover {
	color: #BFBFBF;
}

.changeLang {
	font-size: 0.8em;
	padding-right: 10px;
}

/* Top Image/Title */
.pageTop {
	width: 100%;
	height: 250px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.overlayTop {
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	background-color: rgba(255, 255, 255, 0.5); 
}

.textTop {
	position: absolute;
	top: 50%;
	left: 50%; 
	transform: translate(-50%, -50%); 
	font-size: 2em; 
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: bold;
	color: black; 
	text-align: center; 
	background-color: transparent; 
}

/* Page content */
#PT_page h1, #EN_page h1 {
	padding: 20px 8% 0 8%;
	font-size: 1.4em;
	font-weight: bold;
}

#PT_page h2, #EN_page h2 {
	padding: 20px 8% 0 8%;
	font-size: 1.2em;
	font-weight: bold;
}

#PT_page p, #EN_page p {
	padding: 0 8% 0 8%;
	font-size: 1em;
	font-weight: 400;
}

#PT_page ul, #EN_page ul, #PT_page ol, #EN_page ol {
	padding: 0 8% 0 12%;
	font-size: 1em;
	font-weight: 400;
}

#PT_page img, #EN_page img {
	width: 60%;
	max-width: 600px;
	height: auto;
	padding: 0 8% 0 8%;
}

ol li ul, ul li ul, ul li ul li ul, ul li ol {
	padding: 10px 0 10px 30px !important;
}

footer {
	background-color: #D1D1D1;
	color: black;
    box-shadow: inset 0 5px 5px rgba(255, 255, 255, 0.7);
}

footer div {
	padding: 0 20px 0 20px;
	font-weight: bold;
	font-size: 0.8em;
}

footer hr {
	margin: 10px 20px 10px 20px;
	font-weight: bold;
}

#btnTopo {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-size: 20px;
	cursor: pointer;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	transition: opacity 0.3s, visibility 0.3s;
}

#btnTopo:hover {
	background-color: #0056b3;
}