.bg-termos,
body {
    background: linear-gradient(45deg, #00a9ad, #005ca9) !important;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    height: 100vh !important;
    overflow: hidden !important;
}

.container-principal {
    height: 100vh;
}

.container-principal img {
    width: 100px;
}

.container-principal h1 {
    color: white;
    font-size: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.botoes {
    margin-top: .5rem;
}

.botoes a {
    width: 8rem;
    margin: 0rem .7rem;
    text-decoration: none;
}

.botoes button {
    background-color: #f39200;
    color: white;
    font-weight: 500;
    width: 100%;
    border: none;
    padding: .5rem .5rem .2rem .5rem;
    font-size: 1.2rem;
    border-radius: .4rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.botoes button:hover {
    background-color: #173e68;
    color: white;
}

button.btn-nao {
    background-color: white;
    color: #173e68;
}

button.btn-nao:hover {
    background-color: #e0e0e0;
}

@media (max-width: 576px) {
    .container-principal h1 {
        font-size: 1.3rem;
        padding: 0 1rem;
    }

    .botoes a {
        width: 7rem;
        margin: 0rem .5rem;
    }

    .botoes button {
        font-size: 1rem;
    }
}