@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Sriracha&family=TASA+Explorer:wght@400..800&display=swap');

*{
    margin: 0px;
    padding: 0px;

}

body{
    background-color: rgba(136, 228, 136, 0.589);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    
}
a.externo::after {
    content: '\00a0\1F517';
}
header{
    
    background-image: linear-gradient(to bottom, #2fa866, #063d1e);
    /* min-height: 150px; */
    text-align: center;
    padding: 20px 0px; 
    margin-bottom: 0px;

}
header > h1{
    color: white;
    font-size: 3em;
    margin-bottom:50px;
    text-shadow: 2px 0px rgb(0, 0,0 , 0.267);
}
header > p{
    color: white;
    font-size: 1.2em;
    max-width: 500px;
    margin: auto;
    margin-bottom: 0px;
    text-shadow: 2px 0px rgb(0, 0,0 , 0.315)
}

nav{
    background-color: #063d1e;
    padding: 10px;
    box-shadow: 0px 7px 7px rgb(0, 0,0 , 0.192);
    display: flex;
    justify-content: center; /* Altera o alinhamento para o centro */
    /*justify-content: space-around;  Distribui o espaço entre os itens */
    align-items: center; /* Centraliza os itens verticalmente */
    margin-bottom: 0px;
    }
@media (max-width:600px){
    nav > a {
        font-size: 0.9em;
        padding: 8px;
        margin: 0 2px;
    }
}

nav > a {
    color: #83e1ad;
    font-size: 0.9em;
    padding: 10px;
    margin: 0 2px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition-duration: 0.3s;
    /* margin: 0 5px; */
}

nav > a:hover{
    background-color: #2fa866;
    color: #063d1e;
}
main{
    min-width: 300px;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 0px;
    padding: 0px;
    border-bottom-left-radius:10px ;
    border-bottom-right-radius:10px ;
}
main article, main section{
    background-color: white;
    padding: 15px;
    box-shadow: 0px rgb(0, 0,0 , 0.418);
    border-radius: 0px;
    margin-bottom: -30px;
}

main article + main section, main section + main section {
    margin-top: 30px;
    margin-bottom: 0px;
}
main h3,h2{
    font-size: 1.3em;
    font-weight: bold;
    background-color: #1a5c37;
    color: white;
    padding: 8px 12px;
    margin-bottom: 0px;

}
main p{
    margin: 15px 0px;
    text-align: justify;
    text-indent: 30px;
    font-size: 1em;
    line-height: 2em;
    font-family: "Sriracha", cursive;
}

main strong{
    color:#1a5c37;
    font-weight: bolder;
}

main a{
    text-decoration: none;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.767);
    padding: 2px 6px;

}
main article img {
    width: 100%;
    display: block;
    margin: auto;
    border-radius: 8px;
}
 main a:hover{
    text-decoration: underline;
    color: #83e1ad;
}

main ul{
    margin-left: 20px;
    padding-left: 20px;
    font-family: "Sriracha", cursive;
    line-height: 2em;
}
img main{
    margin-top: -50px;
}
#Midia img, #Midia iframe{
    width: 100%;
    display: block;
    margin: 15px auto;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 8px rgb(0, 0,0 , 0.2);
}

footer{
    background-color: #063d1e;
    color: white;
    text-align: center;
    font-size: 0.8em;
    padding: 10px;
    
}

footer a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

footer a:hover{
    text-decoration: underline;
    color: #83e1ad;
}