@charset "UTF-8";


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

@font-face {
    font-family: "Android";
    src: url('../fontes/idroid.otf') format('opentype');
    font-weight: normal;
}

/*#c5ebd6 BRANCO
#83e1ad VERDE CLARINHO
#3ddc84 VERDE UM POUCO MAIS CLARO
#2fa866 VERDE NEUTRO
#1a5c37 VERDE ESCURO
#003d1e VERDE ESCURÃO
 */


:root {
    --branco: #c5ebd6;
    --verdeclaro2: #83e1ad;
    --verdeclaro1: #3ddc84;
    --verde: #2fa866;
    --verdeescuro2: #1a5c37;
    --verdeescuro1: #003d1e;

    --fonte-padrao: Arial, Helvetica, Sans-Serif;
    --fonte-destaque: 'Bebas Neue', 'wingdings';
    --fonte-android: "Android", wingdings;
}

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


body {
    font-family: var(--fonte-padrao);
    background-color: var(--branco);
}

a.externo::after {
    content: '\00A0\1F517';
}

header {
    text-align: center;
    min-height: 150px;
    background-image: linear-gradient(to bottom, var(--verde), var(--verdeescuro1));
    padding-top: 40px;
}

header>h1 {
    text-align: center;
    color: white;
    font-family: var(--fonte-destaque);
    margin-bottom: 5px;
    font-size: 3em;
    text-shadow: rgba(0, 0, 0, 0.527) 2px 2px 0px;
}

header>p {
    color: white;
    font-family: var(--fonte-padrao);
    font-size: 1.2em;
    max-width: 500px;
    margin: auto;
    padding-right: 10px;
    padding-left: 10px;
    text-shadow: rgba(0, 0, 0, 0.527) 2px 2px 0px;
}

nav {
    background-color: var(--verdeescuro1);
    padding: 10px;
    box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.233);
    text-align: center;
    font-weight: bold;
}

nav>a {
    color: white;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition-duration: 0.2s;
    margin-top: 5px;
}

nav>a:hover {
    color: var(--verdeescuro1);
    background-color: var(--branco);
}

main {
    background-color: white;
    min-width: 300px;
    max-width: 800px;
    margin: auto;
    padding: 0px 20px;
    box-shadow: rgba(0, 0, 0, 0.459) 0px 0px 10px;
    border-radius: 0px 0px 10px 10px;
}

main img {
    width: 100%;
}

main img.imagempq {
    display: block;
    max-width: 350px;
    margin: auto;
}

div.video {
    background-color: var(--verdeescuro1);
    margin: 0px -20px 30px -20px;
    margin: 0px -20px 30px -20px;
    padding: 20px;
    padding-bottom: 50%;
    position: relative;
}


div.video>iframe {
    width: 100%;
}


main h1 {
    color: var(--verdeescuro1);
    font-family: var(--fonte-android);
}

main h2 {
    font-family: var(--fonte-android);
    color: var(--verdeescuro2);
    font-size: 1.3em;
    background-image: linear-gradient(to right, var(--verdeclaro2), transparent);
}

main p {
    margin: 15px 0px;
    text-indent: 20px;
    line-height: 2em;
    font-size: 1em;
    text-align: justify;
}

main strong {
    color: var(--verdeescuro2);
    font-weight: bold;
    padding: 2px 6px;
}

main a {
    background-color: var(--verdeclaro2);
    text-decoration: none;
    font-weight: bold;
    color: var(--verdeescuro1);
    padding: 2px 6px;
}

main a:hover {
    text-decoration: underline;
    color: var(--verde);
}

aside {
    background-color: var(--verdeclaro2);
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.212) 0px 0px 10px;
}

aside>h3 {
    background-color: var(--verdeescuro2);
    color: white;
    padding: 10px;
    margin: -10px -10px 0px -10px;
    border-radius: 10px 10px 0px 0px;
}

aside>ul {
    list-style-position: inside;
    columns: 2;
    list-style-type: '\2714\00A0';
}

footer {
    background-color: var(--verdeescuro1);
    color: white;
    text-align: center;
    font-size: 0.8em;
    padding: 5px;
}

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

footer a:hover {
    text-decoration: underline;
    color: var(--verdeclaro2);
}

/* main {
    background-color: white;
} */

/* header {
    background: linear-gradient(0deg, rgba(26, 92, 56, 1) 50%, rgba(55, 200, 120, 1) 100%);
    margin: -20px -8px 0px -8px;
} */