@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Overpass:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
        font-family: 'IDroid';
        src: url('../fonts/idroid.otf') format('opentype');
        font-weight: normal;
}

:root{
    --fonte-padrao: Arial, Verdana, Helvetica, sans-serif;
    --fonte-destaque: "Bebas Neue", sans-serif;
}

*{
    margin: 0px;
    padding: 0px;
}

body{
    height: 100%;
    text-align: justify;
    font-family: var(--fonte-padrao);
    font-size: 22px;
    margin: auto;
    background-color: rgb(132, 225, 173);
}

a{
    text-decoration: none;
    color: rgb(61, 105, 80);
    font-weight: bold;
    background-color: rgb(132, 225, 173);
}

a.externo::after{
    content: '\00A0\1F517';
}

a:hover{
    text-decoration: underline;
}

header{
    display: flex;
    flex-direction: column;
    background: linear-gradient(rgb(114, 211, 156), rgb(29, 53, 39));
    color: white;
    padding-top: 40px;
    height: 200px;
    padding-bottom: 0;
}

header > h1, header > h2{
    text-align: center;
}

header > h1{
    font-family: var(--fonte-destaque);
    font-size: 55px; 
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.507);
    font-weight: normal;
}

header > h2{
    font-size: 24px;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.384);
    font-weight: normal;
}

header > nav {
    width: 100%;
    align-self: flex-start;
    text-align: left;
    justify-content: start;
    margin-bottom: 10px;
}

header > nav > span {
    align-self: flex-start;
    font-weight: bold;
    margin: 0 10px;
}

.home{
    margin-left: 25px;
}

.h1-maior{
    font-size: 40px;
}

main{
    text-indent: 50px;
    background-color: white;
    margin: auto;
    max-width: 70%;
    padding: 30px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.397);
}

main > div > h1, main > div > h2{
    color: rgb(26, 104, 59);
}

main > div > h1{
    font-family: 'IDroid', Times, serif;
    margin: 0px;
    /*font-size: 35px; */
}



.bg-green{
    padding: 0px 10px;
    background: linear-gradient( to right, rgba(132, 225, 173), rgba(132, 225, 172, 0));
}

img{
    display: block;
    margin: 30px auto;
    width: 100%;
    max-width: 1350px;
}

.img-menor{
    max-width: 350px;
    display: block;
    width: 50%;
}

.video{
    background-color: rgb(29, 53, 39);
    padding: 20px;
    padding-bottom: 54.7%;
    position: relative;
    margin: 30px;
}

.video > iframe{
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
}

.quadro{
    background-color: rgb(206, 255, 227);
    border-radius: 20px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.295);
    margin-bottom: 30px;
}

.quadro > h1{
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: 30px;
    border-radius: 20px 20px 0 0;
    height: 100%;
    background-color: rgba(132, 225, 173);
    padding: 15px;
    text-indent: 0px;
}

.quadro-content{
    padding: 15px;
}

.uls{
    margin: auto;
    display: flex;
    text-indent: 0px;
}

ul{ 
    list-style: '\2714\00A0\00A0';
    list-style-position: inside;
    columns: 2;
}

footer{
    color: white;
    margin: auto;
    margin-top: 25px;
    justify-content: center;
    text-align: center;
    background-color: rgb(26, 104, 59);;
    padding: 10px;
}

footer > h6{
    margin: auto;
    justify-content: center;
    margin-bottom: 0px;
}

