body, html{
    height: 100vh;
    width: 100vw;
    min-width: 590px;
    font-family: sans-serif;
    background: #ccc;
    margin: 0;
}

.hero{   
    background-image: url(../imagens/bg-3.jpg);
    height: 580px;
    width: 100vw;
    min-width: 590px;
    background-position: right center;
    background-size: cover;
    border-top: 1px solid transparent;
}

.hero nav ul{
    text-align: right;
    margin: 18px 30px 0 0;
}


.hero nav li{
    display: inline-block;
    list-style: none;
    border: 1px solid white;
    margin-left: 10px;

}

.hero nav a{
    background: rgba(0, 0, 0, 0.1);
    display: block;
    padding: 15px 18px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
}

.hero nav a:hover {
    background: rgba(0, 0, 0, 0.3)
}

.hero-content{
    text-align: center;
    color: white;
    margin-top: 160px;

}

.hero-content h1 {
    text-transform: uppercase;
    font-size: 46px;
    text-shadow: 3px 3px 2px#333;
}

.hero-content p{
    display: inline-block;
    border-bottom: 2px solid white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 12px;
    margin-top: 20px;

}

main{
    width: 80%;
    margin: auto;
}

.content-section{
    background-color: white;
    padding: 10px;
    margin-top: 15px;
    overflow: auto;
}

.card{
    width: 32%;
    float:left;
    border: 2px solid black;
    box-sizing: border-box;
    overflow: hidden;
}

.card-1, .card-2{
    margin-right: 2%;
}

.card img{
    width: 100%;
    display: block;
}

.card p{
    text-align: center;
    background-color: rgba(59, 53, 53, 0.897);
    margin: 0;
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    
}

.card p a{
    color: white;
    text-decoration: none;
    text-shadow: 1px 1px 1px rgba(196, 195, 190, 0.63);
}

.card p a:hover{
    color: rgba(210, 255, 8, 0.801);
}

.content-section h2{
    background-color: #eeeeee;
    padding: 10px;
    margin-top: -8px;
    margin-left: -8px;
    margin-right: -8px;
    border-bottom: 2px solid #cccccc
}

footer{
    background-color: #6b6c68;
    padding: 2px;
    margin-top: 15px;
    text-align: center;
    color: white;
    text-shadow: 3px 3px 2px #333331;
}