@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body {
    background-color: #f2e0c9;
    color: #0d0d0d;
    font-family: "Cabin", sans-serif;
    font-weight: 400;
}

header {
    background: linear-gradient(to right, #92c44b, #dc6794);
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header img {
    width: 150px;
    height: auto;
    margin-bottom: 5px;
}

nav a {
    color: #f2e0c9;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 12px;
    margin: 0px 20px;
}

nav a:hover {
    color: #0d0d0d;
    background-color: #f1d326;
    border-radius: 15px;
}

main {
    text-align: center;
    margin: 20px;
}

#frase-de-efeito {
    letter-spacing: 1px;
    color: #b93e6a;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0px 0px 8px #b93e9066;
}

h1 {
    color: #43861f;
    font-size: 2rem;
    margin: 20px;
}

.listagem-conteudo {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
}

.listagem-conteudo a {
    text-align: center;
    text-decoration: none;
    color: #f2e0c9;
    background-color: #b93e6a;
    padding: 5px 12px;
    border-radius: 15px;
}

.listagem-conteudo a:hover {
    color: #0d0d0d;
    background-color: #f1d326;
}

h2 {
    color: #43861f;
}

.topicos {
    text-align: justify;
}

figure {
    margin: 15px 0px;
    text-align: center;
}

figure img {
    width: 550px;
    height: auto;
    border-radius: 5px;
}

figcaption {
    font-size: 0.9rem;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

table {
    border-collapse: collapse;
    text-align: center;
}

th {
    background-color: #b93e6a;
    color: #F2E0C9;
    padding: 10px;
}

td {
    background-color: #ebd2aa;
    padding: 10px;
}

td a {
    text-decoration: none;
    color: #43861f;
    font-weight: 700;
}

td a:hover {
    color: #b93e6a;
}

h3 {
    color: #b93e6a;
}

ul, ol {
    list-style-position: inside
}

li {
    margin: 8px 0px;
}

#topo {
    margin-top: 20px;
}

#topo a {
    text-decoration: none;
    color: #0d0d0d;
}

#topo a:hover {
    color: #43861f;
}

footer {
    background-color: #43861f;
    color: #f2e0c9;
    text-align: center;
    padding: 20px 0px;
}

.redes-sociais {
    margin-top: 10px;
}

footer img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
    margin: 0px 6px;
}

footer img:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    figure img {
        width: 100%;
    }
}