* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*-----CONFIGURAÇÕES MAIN------*/

#iniciosite {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), 
              url("img/fundo\ site.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

#iniciosite #foto{
    width: 50%;
    margin: auto;
}
#iniciosite #video {
    width: 50%;
    margin: auto;
}

#iniciosite img {
    height: 90px;
    display: block;
    margin: auto;
    filter: drop-shadow(0 0 10px rgba(4, 4, 4, 10))
}

#iniciosite iframe {
    width: 90%;
    height: 400px;
    margin: auto;
    display: block;
    border-left: 3px solid rgb(72, 255, 0);
    border-right: 3px solid rgb(72, 255, 0);
    border-radius: 10px;
}

/*-----CONFIGURAÇÕES SECTION SOBRE------*/
.sobre{
    padding: 150px 0;
}

.sobre h1{
    width: 80%;
    margin: 50px auto 20px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 33px;
}

.sobre p{
    width: 90%;
    margin: 20px auto;
    text-align: justify;
    padding-left: 7px;
    font: normal 15pt arial;
}

.sobre p span{
    font-weight: 600;
}

#mapa{
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    border: none;
    margin: auto;
    display: block;
}


#contexto-ambiental-historico{
    margin: 100px 0 100px;
}

#contexto-ambiental-historico h1{
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 34px;
}

#contexto-ambiental-historico p{
    width: 90%;
    text-align: justify;
    margin: 30px auto;
    padding-left: 5px;
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

#relatos-comunidade{
    margin: 100px 0 100px;

}

#relatos-comunidade h1{
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 34px;
}

#relatos-comunidade p{
    width: 90%;
    text-align: justify;
    margin: 30px auto;
    padding-left: 5px;
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}



#resultado-mapeamento{
    min-height: 100vh;
    background: linear-gradient(rgba(1, 17, 198, 0), rgba(1, 253, 68, 0)), url("img/represa.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: grid;
    place-content: center;
}

#resultado-mapeamento h1{
   text-align: center;
   padding: 50px 0 10px;
   color: rgb(255, 255, 255);
   font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    text-shadow: 3px 4px 8px rgb(0, 0, 0);
}

#resultado-mapeamento #texto-resultado{
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 21px;
    margin-bottom: 80px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-shadow: 3px 4px 8px rgb(0, 0, 0);

}

#resultado-mapeamento #card{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

#resultado-mapeamento #card #interno-card{
   box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.352);
   width: 370px;
   background-color: #ffffffda;
   border-radius: 10px;
   margin-bottom: 30px;
}

#resultado-mapeamento #card #interno-card img{
   height: 70px;
   display: block;
   margin: -40px auto 0;
   filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.5));
}

#resultado-mapeamento #card #interno-card h4{
    font: normal 18pt arial;
    text-align: center;
    margin-top: 10px;
}


#resultado-mapeamento #card #interno-card p{
    margin: 30px 20px;
    text-align: justify;
    font-family: "Varela Round", sans-serif;
    font-weight: 500;
    font-style: normal;
}


/*-----CONFIGURAÇÕES RESPONSIVIDADE------*/

@media (max-width: 900px) {

    /*-----RESPONSIVIDADE DO MAIN------*/

    #iniciosite {
        flex-direction: column;
    }

    #iniciosite #foto,
    #iniciosite #video {
        width: 100%;
    }

    #iniciosite #foto {
        margin-bottom: 40px;
    }

    #iniciosite img {
        height: 70px;
    }

    #iniciosite iframe {
        width: 95%;
        height: 300px;
    }
}
