* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background: white;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #DF6283;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.menu .titulo {
    color: white;
    align-items: center;
}

.menu .navegacao ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    list-style: none;
    color: white;

}

.menu .navegacao ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
}

.menu .navegacao ul li a:hover {
    background: #4ED7FF;
    color: black;
    border-radius: 5px;
    transition: 0.3s;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    margin: auto;
}

.dropdown:hover .dropdown-content {
    display: block;
    background: #d194a5;
    border-radius: 5px;
    transition: 0.3s;
}

main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.conteudo_main {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    color: #df003b;
}

.apresentacao {
    padding: 20px;
    text-align: center;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 30px;
}

.imagem_inicio {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    gap: 20px;
    flex-wrap: wrap;
}

.imagem_inicio img {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin-bottom: 20px;
    transition: 0.3s;
}

.imagem_inicio img:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.imagem_inicio p {
    text-align: center;
    font-size: 16px;
    color: #df003b;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.imagens_colorir {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}

.imagens_colorir p {
    margin-bottom: 20px;
    padding: 20px;
    font-size: 18px;
    background: white;
    color: #df003b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.imagens_colorir iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    cursor: pointer;
    margin-bottom: 20px;
    width: 100%;
    height: 800px;
}

.jogos_educativos {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}

.jogos_educativos p {
    margin-bottom: 20px;
    padding: 20px;
    font-size: 18px;
    background: white;
    color: #df003b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.conteudo_videos {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}

.conteudo_videos p {
    margin-bottom: 20px;
    padding: 20px;
    font-size: 18px;
    background: white;
    color: #df003b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.conteudo_videos .videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.conteudo_videos .videos iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    cursor: pointer;
    width: 300px;
    height: 200px;
}

.conteudo_videos .videos iframe:hover {
    transform: scale(1.05);
    transition: 0.3s;
}


.conteudo_contato {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}

.conteudo_contato p {
    margin-bottom: 20px;
    padding: 20px;
    font-size: 18px;
    background: white;
    color: #df003b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.conteudo_contato .input {
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    max-width: 600px;
}

.botao {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #4ED7FF;
    color: white;
    cursor: pointer;
}

.botao:hover {
    background: #0CE84D;
    color: white;
    transition: 0.3s;
}

.rodape {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: #DF6283;
    padding: 20px;
    color: white;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    gap: 20px;
    
}

.inscricao {
    text-align: center;
}

.inscricao input[type="email"] {
    padding: 10px;
    width: 300px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

.inscricao button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #4ED7FF;
    color: white;
    cursor: pointer;
}

.inscricao button:hover {
    background: goldenrod;
    color: white;
    transition: 0.3s;
}

.contato {
    text-align: center;
    font-size: 10px;
}