@charset "utf-8";
/* CSS Document */

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

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;

	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;

	/* Support for IE. */
	font-feature-settings: 'liga';
	-webkit-text-size-adjust: 100%;
	
	margin: 0 auto;
	
	overflow-x: hidden; /* oculta a barra de rolagem horizontal */
	
	height: 100vh;
	background-color: white;
}
/* IMPORTANTE: Tira os estilos padrões dos links */
body a {
	text-decoration: none !important;
	color: initial; 
}

/* Barra de rolagem personalizada */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
body::-webkit-scrollbar-thumb {
  background-color: #FF0004;
  border-radius: 5px;
  height: 20px;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #005FD0;
}
@media only screen and (max-width: 768px){
	body::-webkit-scrollbar {
	  display: none;
	}
}

/* GENERAL */
.logo{
	max-width: 300px;
}
@media only screen and (max-width: 1128px){
	.logo{
		width: 30vw;
	}
}
@media only screen and (max-width: 800px){
	.logo{
		width: 90%;
		max-width: 220px;
		margin: 3em 0;
	}
}
.logo-2{
	max-width: 200px;
}
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: none;
    width: 60px;
    height: 60px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
	background: transparent;
}
#whatsapp-button img {
    width: 35px;
    height: 35px;
}
.img-responsive{
  max-width: 100%;
}
.button-default {
  max-width: 550px;
  padding: 15px;
  border: none;
  text-decoration: none;
  cursor:pointer;
  font-size: 18px;
}
.text-center{
  text-align: center;
}


/* FONTS */
@font-face{
    font-family: 'gotham';
    src: url('"../fonts/GOTHAMBOOK.TTF"') format('truetype');
}
.gotham{
    font-family: 'gotham', sans-serif;
	font-optical-sizing: auto;
    font-style: normal;
}
.paragraph{
	font-size: 16px;
	line-height: 130%;
}
.microtxt{
	font-size: 12px;
	line-height: 160%;
}
.underline{
	text-decoration: underline;
}

/* COLORS */ 
.bg-black{background-color: black;}
.bg-white{background-color: white;}
.bg-dark-gray{background-color:#333}
.bg-light-gray{background-color: #dadada;}
.bg-main{background-color: #FF0004;} 
.bg-second{background-color: yellow;} 
.bg-third{background-color: #005FD0;} 

.pix-black{color:black;}
.pix-white{color:white;}
.pix-gray{color:#555;}
.pix-light-gray{color:#dadada;}
.pix-main{color:#FF0004;}
.pix-second{color:yellow;}
.pix-third{color:#005FD0;}

.frame-main{
	border: solid;
	border-color: #4e7cff;
}

@media only screen and (max-width: 600px){
	.button-default {
	  width: 100%;
	  font-size: 15px;
	}
}

