/*Fontes Personalizadas*/
@font-face {
	font-family: "Flexo";
	src: url('../font/Flexo-Black.woff');
}
@font-face {
	font-family: "Flexo";
	src: url('../font/Flexo-Regular.woff');
}
/*---------------------------*/

/*Body*/
body {
	margin: 0;
  	padding-top: 0;
  	position: relative;
  	min-height: 100vh; 
  	overflow-x: hidden;
}

/*Background*/
.background {
	margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/bg/bg2.svg');
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.4; 
    z-index: -1;
}
/*---------------------------*/

.conteiner {
    width: 60%;
}

.conteudo {
    width: 100%;
    margin: 50px auto; 
    position: relative;
    z-index: 1;
}

h1 {
    font-family: "Flexo";
    font-weight: 900;
    color: red;
    font-size: 1.5vw;
    line-height: 3;
}

p, li {
    font-family: "Flexo";
    font-weight: 900;
    color: rgb(119, 119, 119);
    font-size: 0.9vw;
    line-height: 1.8;
}