* {
    margin:0;
    padding:0;
	border: 0;
	outline: 0;
}
	
*, *:before, *:after {
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
}

/* HACK BOOTSTRAP */
.container {
	padding-bottom: 70px!important; 
}
.navbar-brand {
	font-family: 'Mitr', sans-serif;
	font-size: 1.8rem;
}
.btn {
	min-width: 150px!important;
}
.card-header {
	padding: 10px!important;	
}
.card-title {
	margin-bottom:0!important;
}
.card-body, .card-footer {
	padding: 10px!important;
}
/* HACK BOOTSTRAP */

/* HACK prism */
:not(pre) > code[class*="language-"], pre[class*="language-"] {
	border: 2px dashed #fcbf1e;
}
pre[class*="language-"] {
	padding: 0 10px 10px 10px;
}
/* HACK prism */

#page-container {
  position: relative;
  min-height: 100vh;
}
footer {
	text-align: center;
	margin-top: 50px;
	background-color: #576075;
	color: white;
	padding: 15px;
	font-size: 0.9rem;	
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 70px;
	overflow-x: hidden;
}
footer a:hover {
	color: #576075;
}

h3 { /* simulando a classe 'mb-4' do bootstrap, para nao ficar fixo no codigo e podermos alterar se preciso */
	margin-bottom: 1.5rem!important;
}

.my-navbar-color {
	background-color: #353b48!important;
}
.my-navbar-title-color {
	color: #277da5!important;
}
.my-active {
	color: #fff!important;
	background-color: #277da5!important;
}
.my-navbar-divider {
	border-bottom: 1px solid rgba(255,255,255,.5);
    margin: 10px 0 5px 0;
}

.links_uteis, .util_list, .dicas_list {
	display: grid;
	text-align: left;
}
.links_uteis a, .util_list a, .dicas_list a {
	background-color: #eaf5fa;
	margin: 0px;
	padding: 5px 0px 5px 5px;
	text-decoration: none;
	color: #1aa3ff;
}
.links_uteis a:hover, .util_list a:hover, .dicas_list a:hover {
	text-decoration: underline;
}

#img_dicas img {
	margin: 5px;
	width: 100px;
}

#button_to_top {
    position: fixed;
    bottom: 80px;
	right: 20px;
    z-index: 100;
    cursor: pointer;
    display: none;
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	background-color: #277da5; /* Set a background color */
	color: white; /* Text color */
	padding: 0 10px 5px 10px; /* Some padding */
	border-radius: 5px; /* Rounded corners */
	font-size: 30px; /* Increase font size */
}

/* BLOCOS DE CODIGO */
pre {
	border: 1px solid;
	padding: 5px;
	background-color: #fff3cd;
    border-color: #ffeeba;
	border-radius: 5px;
}
/* BLOCOS DE CODIGO */

/* BREAKPOINTS - VIEWPORT */
@media (max-width: 575px) {	 /* mobile */
	
	/* HACK BOOTSTRAP */
	.h3, h3 {
		font-size: 1.35rem!important;
	}
	.card-body .row {
		width: 100%!important;
	}
	.col-7 {
		padding-right: 0!important;
	}
	/* HACK BOOTSTRAP */
	
	.links_uteis {
		font-size: 0.9rem;
	}
	
	#btn-contato, #btn-util {
		width: 100%!important;
		display: block!important;
	}
	
	.img_portfolio {
		max-width: 120px!important;
	}
		
}