*{
    margin:0;
    padding:0;
    border:0;
    text-decoration: none;
    font: inherit;
    outline:0;
   /* vertical-align:baseline;*/
   /*display:flex;*/
   font-family: 'Montserrat', sans-serif;
   
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root{
    --black30:rgb(30,30,30);
    --black3040:rgb(30,30,30,0.4);
    --white: rgb(255, 255, 255);

}
/*Geral------------*/


body{
    width: 100%;
    min-height: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    background-color: var(--black30);
    
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /*Remover realce azul em smartphones*/
 
    user-select: none;
    
}
.politica_privacidade{
    color: rgb(40, 40, 40);
    margin: 0 5%;
    background-color: white;
    margin-top: 80px;
    margin-bottom: 50px;
    max-width: 600px;
    padding: 40px 5% 80px 5%;
    border-radius: 20px;
}

.politica_privacidade h1{
    color: white;
    background-color:rgb(40, 40, 40);
    width: 100%;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    
    font-weight: bold;
}

.politica_privacidade h2{
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 20px;
}

.politica_privacidade b{
    font-weight: bold;
}

.voltar{
    width: 150px;
    height: 40px;
    background-color: white;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    text-decoration: none;color: var(--black30);
    font-weight: bold;
    transition: 0.5s;
}

.voltar:hover{
    background-color: rgba(255, 255, 255, 0.4);
    text-decoration: none;color: var(--black30);
    transition: 0.5s;
}