
html, body{
    height: 100%;
    margin: 0;
    padding: 0;
}

body{
    display: flex;
    flex-direction: column;
}

main{
    flex: 1;
}


.termos-container{
    max-width: 650px;
    margin: 80px auto;
    padding: 60px 40px;
    border: 1px solid #e5e5e5;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-radius: 20px;
    overflow: hidden;
}


.termos-container h1{
    text-align: center;
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    position: relative;
}

.termos-container h1::after {
    content: "";
    width: 90px;
    height: 3px;
    background: #000;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.termos-container p{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 16px;
    text-align: center;
}
