* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', 'Arial';
}
html, body{
    height: 100%;
    color: #333;
}

/* Variáveis de Cores */
:root {
    --cor-principal: #200953;
    --cor-destaque: #040131;
    --cor-1: #040131;
    --cor-2: #200953;
    --cor-3: #541793;
    --cor-4: #a92cd0;
    --cor-5: #c8bd;
    --cor-6: #c8bdf0;
    --cor-7: #a92cd0;
}
h2.titulo{
    color: white;
    text-transform: uppercase;
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Cor dos links */
a {
    color: var(--cor-principal);
    transition: color 0.3s;
    text-decoration: none;
}

a:hover {
    color: var(--cor-destaque);
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(60px + 3vh) 0;
    position: relative;
    z-index: 5;
}

/* TAMANHOS */
.h-full{
    min-height: 100vh;
}


/* Background .bg */
.bg{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}



/* Scrollbar */
::-webkit-scrollbar-track {
    background-color: #061e4e;
}

::-webkit-scrollbar {
    background-color: #061e4e;
    width: 10px;	

}

::-webkit-scrollbar-thumb {
    background-color: #fff;
}

::-webkit-scrollbar-track-piece {
    background-color: #061e4e;
}


/* Gráfico de rosca */
.grafico-rosca{
    height: 180px;
    width: 180px;
    max-width: 25vw;
    max-height: 25vw;
}