
.container-imagens {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 64px;
    justify-content: center;
}

.container-imagens img {
    width: 33.3%;
    opacity: 0.5;
}

.container-contato {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: black;
    box-shadow: rgba(198, 41, 41, 0.512) 0px 30px 60px -12px inset, rgba(195, 41, 41, 0.461) 0px 18px 36px -18px inset;
    font-family: 'Oswald', sans-serif;
    padding-top: 50px;
}

.text-forms {
    font-size: 1rem;
    margin: 10px;
    margin-top: 5px;

}

.container-input {
    padding: 20px 25px;
    border-radius: 20px;
    width: 50%;
    margin: 100px auto;
    background-color: rgb(0, 0, 0);
    font-family: 'Oswald', sans-serif;
    display: flex;
    flex-direction: column;
    border: 1px solid white;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 54px 55px, rgba(255, 255, 255, 0.12) 0px -12px 30px, rgba(255, 255, 255, 0.12) 0px 4px 6px, rgba(255, 255, 255, 0.17) 0px 12px 13px, rgba(255, 255, 255, 0.09) 0px -3px 5px;
}

.container-input .title-forms {
    font-size: 2rem;
    font-style: italic;
    background-color: transparent;
    color: white;
    margin-top: 20px;
}

label {
    font-size: 1.5rem;
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: white;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid red;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}

input[type="checkbox"]{
    width: auto;
    margin-right: 6px;
    padding: 10px;
}

button {
    color: white;
    background: linear-gradient(180deg,#000000, #7d0c23);
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background(0.3s);
    margin-top: 15px;
    
}

button:hover {
        background: linear-gradient(180deg,#7d0c23,#000000);
        transition: background(1s);

}

.maps {
    width: 100%;
    height: 300px;
    overflow: hidden;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.maps, p {
    color: white;
    text-transform: capitalize;
    font-family: sans-serif;
    font-size: 20px;
    margin-top: 0;
}