/* Estilo principal da página de Política de Privacidade */

body {
    font-family: 'Georgia', serif;
    background-color: #fdfaf6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Container central da página */
.container {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
    background-color: #fffaf0;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

/* Título principal */
h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #6d4c41;
    border-bottom: 2px solid #e0c097;
    padding-bottom: 10px;
}

/* Títulos de seções */
h2 {
    font-size: 1.6em;
    margin-top: 40px;
    color: #5d4037;
    border-left: 5px solid #e0c097;
    padding-left: 10px;
}

/* Subtítulos menores */
h3 {
    font-size: 1.3em;
    margin-top: 30px;
    color: #7b5e57;
}

/* Parágrafos */
p {
    font-size: 1.05em;
    margin-bottom: 15px;
    text-align: justify;
}

/* Listas */
ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* Links */
a {
    color: #8d6e63;
    text-decoration: underline;
}

a:hover {
    color: #5d4037;
}

/* Rodapé */
footer {
    display: flex; /* Ativa o flexbox */
    flex-direction: column; /* Empilha os elementos verticalmente */
    align-items: center; /* Centraliza horizontalmente */
    justify-content: center; /* Centraliza verticalmente (quando possível) */
    text-align: center; /* Centraliza o texto */
    padding: 20px 10px;
    background-color: #f3e5ab;
    color: #5d4037;
    font-size: 0.95em;
    border-top: 2px solid #e0c097;
}

/* Parágrafos dentro do rodapé */
footer p {
    margin: 5px 0;
}

/* Responsividade */
@media screen and (max-width: 600px) {
    .container {
        padding: 25px 15px;
    }

    h1 {
        font-size: 1.7em;
    }

    h2 {
        font-size: 1.4em;
    }

    h3 {
        font-size: 1.2em;
    }

    p {
        font-size: 1em;
    }

    footer {
        padding: 15px 8px;
    }
}