@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&family=Roboto+Condensed&display=swap');

* {
    margin: 0;
    padding: 0;
    background-color: black;
    list-style: none;
    text-decoration: none;
}

header {
    height: 90px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav {
    width: 60%;
}

ul {
    width: 98%;
    display: flex;
    justify-content: space-between;
}

li {
    list-style: none;
    color: aliceblue;
    font-size: 19px;
    cursor: pointer;
    transition: .5s;
    font-family: 'Kdam Thmor Pro', sans-serif;
}

li:hover {
    color: #D21617;
}

#logo {
    width: 180px;
    height: auto;
}

#banner-contato {
    background-image: url('./Banner_Batman_2022.jpg');
    background-position: 50% 50%;
    background-size: cover;
    width: 100%;
    height: 600px;
    position: relative;
}

.title {
    color: #fff;
    font-size: 25px;
    font-family: 'Kdam Thmor Pro', sans-serif;
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0);
    padding-top: 25px;
    font-weight: bold;
}

#form-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.form {
    width: 30%;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    position: absolute;
    top: 90px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 400px;
    width: 280px;
    background-color: transparent;
}

.input::placeholder {
    color: #404040;
    text-align: left;
    padding: 3% 3%;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
}

.name {
    color: #fff;
    font-size: 18px;
    background-color: transparent;
    margin-left: 5px;
    font-family: 'Roboto Condensed', sans-serif;
}

#name {
    background-color: rgba(255, 255, 255, 0.5);
    width: 270px;
    height: 35px;
    border-radius: 10px;
    border: none;
    margin-left: 5px;
}

.last-name {
    color: #fff;
    font-size: 18px;
    background-color: transparent;
    margin-left: 5px;
    font-family: 'Roboto Condensed', sans-serif;
}

#last-name {
    background-color: rgba(255, 255, 255, 0.5);
    width: 270px;
    height: 35px;
    border-radius: 10px;
    border: none;
    margin-left: 5px;
}

.email {
    color: #fff;
    font-size: 18px;
    background-color: transparent;
    margin-left: 5px;
    font-family: 'Roboto Condensed', sans-serif;
}

#email {
    background-color: rgba(255, 255, 255, 0.5);
    width: 270px;
    height: 35px;
    border-radius: 10px;
    border: none;
    margin-left: 5px;
}

.tel {
    color: #fff;
    font-size: 18px;
    background-color: transparent;
    margin-left: 5px;
    font-family: 'Roboto Condensed', sans-serif;
}

#tel {
    background-color: rgba(255, 255, 255, 0.5);
    width: 270px;
    height: 35px;
    border-radius: 10px;
    border: none;
    margin-left: 5px;
}

.message {
    color: #fff;
    font-size: 18px;
    background-color: transparent;
    margin: 5px;
    font-family: 'Roboto Condensed', sans-serif;
}

#message {
    background-color: rgba(255, 255, 255, 0.5);
    width: 270px;
    height: 35px;
    border-radius: 10px;
    border: none;
    margin-left: 5px;
}

.button-content {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    background-color: transparent;
}

.form-button {
    width: 150px;
    height: 35px;
    background-color: #D21617;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    transition: .8s;
    font-size: 18px;
    font-weight: bold;
    border: none;
    outline: none;
}

.form-button:hover {
    background-color: #fff;
    color: #000;
}

footer {
    height: 300px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

span {
    color: #fff;
    font-family: 'Kdam Thmor Pro', sans-serif;
}

.footer-navigation {
    display: none;
}

.footer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(max-width: 768px){
    .footer-navigation {
        display: block;
        margin-top: 25px;
    }

    nav {
        display: none;
    }

    #banner-contato {
        background-image: url('./Banner_Batman_contato_menor.jpg');
        background-position: 40%;
    }

    .form {
        width: 80%;
    }
}