* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

html,
body {
    height: 100%;
    background-color: #A66226;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

.conteudo {
    flex: 1;
    /* Faz o conteúdo crescer para empurrar o footer */
}


a {
    text-decoration: none;
    color: white;
}

a:hover {
    text-decoration: line;
}

img {
    max-width: 100%;
}

.header,
.navbar {
    display: flex;
    flex-direction: row;
    gap: 70%;
    margin-top: 2%;
    text-decoration: none;
    font-size: 20px;
}

.nav:hover {
    text-decoration: underline;
}

.logo {
    color: rgb(244, 232, 201);
    margin-left: 10%;
    margin-right: 10%;
    white-space: nowrap;
}

p,
ul,
ol,
li,
.imgs,
.links-conteudo,
.subtitle {
    font-size: 20px;
    margin-left: 10%;
    margin-right: 10%;
}

.title1 {
    font-size: 100px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    font-family: 'Times New Roman', Times, serif;
}

.title {
    text-align: center;
    font-size: 80px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 3%;
    margin-top: 3%;
}

.subtitle {
    font-size: 40px;
    font-weight: bold;
    color: rgb(244, 232, 201);
    text-transform: uppercase;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 5%;
    margin-bottom: 5%;
}

.conteudo-caixa {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 20px;
    margin-left: 10%;
    margin-right: 10%;
    justify-content: center;
}

.links-conteudo:hover {
    text-decoration: underline;
}

.footer {
    background-color: #1a1a1a;
    color: #f1f1f1;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    margin-top: 60px;
}

.footer-container {
    justify-content: end;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}