@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

body {
    font-family: "Righteous", sans-serif;
    margin: 0;
    box-sizing: border-box;
    background-color: #ffffff; /* Fundo preto */
    color: #000000; /* Cor do texto em um tom claro */
}



header {
    background-color: #1c1c1c; /* Tom escuro para o cabeçalho */
    color: #ffffff; /* Texto branco no cabeçalho */
    padding: 8px 0;
}


main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    font-size: 20px;
    color: #000000; /* Mantém o texto legível em fundo escuro */
}

section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

section img {
    width: 300px;
    height: 300px;
    object-fit: cover;
}

section .content {
    flex: 1;
    margin-right: 20px;
}

section.parte2 .content {
    order: 2; /* Coloca o texto à direita */
    margin-right: 0;
    margin-left: 20px;
}

section.parte2 .image {
    order: 1; /* Coloca a imagem à esquerda */
}

section.parte2 .image img {
    width: 350px; /* Tamanho específico para a imagem da parte2 */
    height: auto; 
}

footer {
    background-color: #1c1c1c; /* Tom escuro para o cabeçalho */
    color: #ffffff; /* Texto branco no rodapé */
    text-align: center;
    padding: 4px;
   position: relative;
    width: 99.6%;
    bottom: 2;
}

