@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



* { /* RESETAR AS POSICOES DOS ELEMENTOS */
    margin: 0;
    padding: 0;
}


body {
    height: 100vh;  /* fazer com que ocupe a tela inteira do navegador */
    background-color: oklch(0.11 0.005 280)
}

/* MAIN */

.main{
    padding-bottom: 5%;
}

.main__terms{
    display: block;
    background-color: white;
    border-radius: 30px;
}

.terms__container{
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
    font-family: 'Inter', sans-serif;
    color: black;
    line-height: 1.7;
}

.terms__title{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.terms__date{
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2rem;
}

.terms__section{
    margin-bottom: 2rem;
}

.terms__section h2{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
    color: #111;
}

.terms__section p{
    margin-bottom: 0.9rem;
    font-size: 0.98rem;
}