@import url('https://fonts.googleapis.com/css2?family=Bungee+Shade&family=Glory:wght@500;600&display=swap');

*{
    margin: 0;
    border: 0;
}

body{
    font-family: 'Glory', sans-serif;
    background: linear-gradient(180deg, rgba(11,11,56,1) 0%, rgba(17,17,53,1) 13%, rgba(34,34,107,1) 32%, rgba(50,50,166,1) 50%, rgba(34,34,107,1) 69%, rgba(17,17,53,1) 84%, rgba(11,11,56,1) 100%);
    font-size: 18px;
}

header{
    padding: 20px 30px;
    height: 180px;
    width: calc(100% - 60px);
    background-image: url('https://cdnb.artstation.com/p/assets/images/images/006/535/665/large/jordan-kamberski-output.jpg?1499339519');
    background-repeat: no-repeat;
    background-size:cover;
    margin-bottom: 40px; 
}

.top-header{
    color: #ffcb5c;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-shadow: 3px 3px 6px #1b1481;
}

.top-header p{
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}

@media (max-width:768px){
    header{
        margin-bottom: 20px;
        height: 200px;
        max-width: 100%;
        display: flex;
        align-items: center;
    }

    .top-header{
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        padding: 20px;
    }

    .top-header p{
        font-size: 20px;
        margin-top: 5px;
        text-align: center;
    }
 
}

h1{
    font-family: 'Bungee Shade', cursive;;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
    font-size: 52px ;
}

@media (max-width:768px){
    h1{
        font-size: 32px;
    }
} 

section{
    max-width: 1024px;
    margin: 0 auto;
    display: block;
    width: 100%;
}

.card{
    display: inline-block;
    max-height: 100%;
    margin: 10px;
    border: 2px solid #ffcb5c;
    border-radius: 3px;
    vertical-align:top;
    background-color: #d12d2d;
}

@media (max-width:768px){
    .card{
        height: 80%;
        width: 80%;
        display: block;
        margin: 20px 0 20px 11%;
        justify-content: space-around;
    }
}

.card img{
    display: block;
    width: 300px;
    height: 300px;
}

@media (max-width:768px){
    .card img{
        width: 100%;
        height: 100%;
    }
}

.card details{
    display: inline-block;    
    width: 300px;
    height: auto;
    background-color: #f5daa1;
    cursor: pointer;
}

@media (max-width:768px){
    .card details {
        width: 100%;
    }
}

.card details summary{
    font-size: 20px;
    padding: 10px;
}

@media (max-width:768px){
    .card details summary{
        font-size: 22px;
    }
}

.card details p {
    margin: 10px 10px;
    font-weight: bold;
}

.card details li {
    margin: 10px 10px;
}

#formulario{
    background: #122769;
    margin-top: 30px;
    color:#ffcb5c;
    width: 600px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 7px 7px #090b30;
}

@media (max-width: 700px){
    #formulario{
        max-width: 300px;
        flex-direction: column;
    }
}

h2{
    font-size: 2rem;
    margin: 2rem 0;
    text-align: center;
}

@media (max-width: 768px){
    h2{
        font-size: 1.5rem;
        margin: 2rem 1rem;
    }
}

form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

form label, 
form input,
form textarea {    
    width: 90%;
}

form input, 
form textarea {
    margin-bottom: 10px;
    background-color: #f5daa1;
    border-radius: 5px;
}

form button{
    width: 50%;
    height: 2rem;
    margin-bottom: 5px;
    border-radius: 10px;
    color: #f5daa1;
    font-weight: bold;
    font-size: 14px;
    text-shadow: 2px 2px #9e1515;
    background-color: #d12d2d;
    box-shadow: 3px 3px #9e1515;
    text-transform: uppercase;
    cursor: pointer;
}

@media (max-width: 768px){
    form button{
        margin-bottom: 10px;
    }
}

form button:hover{
    background-color: #b61c1c;
}

footer {
    max-width: 100%;
    height: 290px;
    margin: 0 auto;
    color: whitesmoke;
    margin-top: 50px;
    background: #080918;
}

@media (max-width:768px){
    footer {
        margin: none;        
    }
}

.footer_cc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 40px);
    padding: 20px;
    margin-top: 60px;
}

.redes-sociais{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
    margin-top:20px;
    font-size: 1.4rem;
    width: calc(100% - 20px);
    padding: 10px;
}

.voltar{
    margin: 30px 0px 10px 0px;
}

.voltar img {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.voltar a {
    color:#ffcb5c;
    text-align: center;
    text-decoration: none;
}

.navegacao__icon {
    margin-top: 15px;
    width: 30px ;
    height: 30px;
}