/*-----Global-----*/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}
html {
    font-family: Arial, Helvetica, sans-serif;
}
body {
    width: 100%;
    background-image: url(img/fundo.jpg);
    background-position: top center;
    background-repeat: repeat;
    background-size: cover;
}
.wrapper {
    width: 90%;
    margin: 0 auto; 
}
h1 {
    color: white;
    font-size: 48px;
}
p {
    color: white;
    font-size: 16px;
}
ul {
    list-style: none;
    margin-top: 30px;
}
li {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}
/*-----nav-----*/
nav {
    height: 100px;
    line-height: 100px;
}
nav a {
    color: white;
    text-decoration: none;
}
nav a img {
    vertical-align: middle;
}
nav a:nth-child(2) {
    float: right;
}
/*-----header-----*/
header p {
    width: 45%;
    margin: 30px auto 0 auto;
}
header a {
    color: aquamarine;
    text-decoration: none;
}
/*-----imagens-----*/
.imagens {
    text-align: center;
    width: 100%;
}
.imagens a img {
    margin: 1%;
    width: 45%;
}
/*-----adjetivos-----*/
.adjetivos{
    text-align: center;
    margin: 100px 0 200px 0;
    position: relative;
}
.adjetivos h1 {
    color: #13a3fd;
}
.adjetivos {
    color: #25272C;
    font-size: 100px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translateX(-50%);
    top: -20px;
    z-index: -1;
}
/*-----imagens2-----*/
.imagens2 {
    width: 100%;
    text-align: center;
}
.imagens2 a img {
    margin: 1%;
    width: 92%;
}
/*-----footer-----*/
footer {
    text-align: center;
    margin: 60px 0;
}
footer p {
    color: #404348;
}
/*-----Responsive-----*/

@media only screen and (max-widht: 991px) {
    header p {
        width: 100%;
    }
    .imagens a img {
        margin: 2%;
        width: 96%;
    }
    .imagens2 a img {
        margin: 2%;
        width: 96%;
    }
}
@media only screen and (max-widht:768px) {
    header {
        width: 96%;
        margin: 30pc auto 100px auto;
        text-align: left;
    }
    .adjetivos {
        text-align: left;
        width: 96%;
        margin: 70px auto 100px auto;
    }
    .qualificativos {
        visibility: hidden;
    }
    footer {
        text-align: left;
        width: 90%;
        margin: 60px auto;
    }
}
