/* Remove the navbar's default margin-bottom and rounded borders */
html {
    height: 100%;
    margin: 0;
}


body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Garante que o corpo tenha no mínimo a altura da tela */
    margin: 0;
}

.navbar {
    margin-bottom: 0;
    border-radius: 0;
}

/* Set height of the grid so .sidenav can be 100% (adjust as needed) */
.row.content {
    height: 450px
}

/* Set gray background color and 100% height */
.sidenav {
    padding-top: 20px;
    background-color: #f1f1f1;
    height: 100%;
}

/* Set black background color, white text and some padding */
footer {
    background-color: #555;
    color: white;
    padding: 15px;
    min-width: 100%;
}

/* On small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 767px) {
    .sidenav {
        height: auto;
        padding: 15px;
    }

    .row.content {
        height: auto;
    }
}

.container {
    display: flex;
    flex-direction: column;
    /* Empilha os elementos um embaixo do outro */
    align-items: center;
    /* Centraliza todos os itens horizontalmente */
    text-align: center;
    /* Garante que o texto dentro das tags também alinhe */
    justify-content: center;
    /* Se quiser centralizar verticalmente na tela inteira */
    /* min-height: 100vh; */
    flex: 1;
}

.containerimg img {
    width: 100%;
    /* Força a imagem a ocupar toda a largura do card */
    height: 200px;
    /* Altura fixa para manter um padrão */
    object-fit: cover;
    /* Faz a imagem preencher o espaço sem distorcer */
    display: block;
}


.termos-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    flex: 1;
}



/* Estilo dos Botões de Troca */
.lang-switch {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: flex-end;
}

.lang-btn {
    padding: 8px 15px;
    border: 1px solid #333;
    background: white;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.lang-btn:hover {
    background: #545555;
    color: white;
}

/* Lógica de exibição */
.lang-en {
    display: none;
}

/* Esconde o inglês por padrão */
.termos-container h2 {
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.termos-container h3 {
    margin-top: 25px;
    color: #222;
}

.disclaimer-box {
    background-color: #f9f9f9;
    padding: 15px;
    border-left: 5px solid #ddd;
    margin: 20px 0;
}

ul {
    padding-left: 20px;
}