/* ======= RESET ======= */

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

*,
*:after,
*:before {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body{
	height: 100%;
}

body {
	background: #000;
	color: #fff;
	font-family: 'GlobotipoTexto-Regular';
	overflow-x: hidden;
}

a { text-decoration: none; }

figure, picture{
	display: block;
	margin: 0;
}

li { list-style-type: none; }

p { padding: 0 }

img {
	border: 0;
	max-width: 100%;
}

/* corrige o bug do float */
.cf:before,
.cf:after { content: " "; display: table;  }
.cf:after { clear: both;  }

strong { font-family: 'GlobotipoTexto-Bold'; }

/* =================== ESTRUTURA PARA O FOOTER FIXO ================= */

.wrapper {
    position: relative;
    min-height: 100%;
}

.main{
	padding: 0 0 45px;
}

@media(max-width: 705px){
	.main{
		padding: 0 0 90px;
	}
}

/* =================== FOOTER/COPYRIGHT =================== */

.footer {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #151515;
}

.copyright {
	max-width: 1180px;
	margin:  0 auto;
	padding: 15px 19px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 10px;
    text-align: center;
    color: #B7B7B7;
    background-color: #151515;
}

.copyright p {
	width: 100%;
}

@media ( min-width: 756px ) {
	.copyright {
		text-align: unset;
		padding: 15px 50px;
	}

	.copyright p {
	 width: auto;
	}
}

.copyright .links a {
	display: inline-block;
	color: #B7B7B7;
	padding: 0 10px;
}

.copyright__txt{
	margin-bottom: 15px;
}

@media(min-width: 640px){
	.copyright__txt{
		margin: 0;
	}
}
