.content-contato{
    padding: 40px 0px;
    width: 100%;
    height: fit-content;
    min-height: 1000px;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.content-contato h1{
    color: #078dd5;
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 20px;
}

.content-contato h1 i{
    margin-right: 4px;
}

.content-contato p{
    color: rgb(124, 124, 124);
}

.content-contato p:nth-child(3){
    margin-bottom: 30px;
}

form{
    display: flex;
    flex-direction: column;
}

form label{
    color: rgb(124, 124, 124);
    margin-bottom: 5px;
    font-size: 15px;
}

form input{
    width: 400px;
    margin-bottom: 10px;
    border: none;
    outline: none;
    background: #fafafa;
    padding: 10px 15px;
    border-radius: 4px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}
form textarea{
    width: 400px;
    height: 300px;
    margin-bottom: 10px;
    border: none;
    outline: none;
    background: #fafafa;
    padding: 10px 15px;
    border-radius: 4px;
    resize: none;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}

form .botaoEnviar{
    width: 100%;
    margin: 20px 0px;
    padding: 5px 20px;
    color: #078dd5;
    border: 1px solid #078dd5;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: none;
    font-size: 16px;
    font-weight: 500;
}

form .botaoTryAgain{
    display: none;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    margin: 20px 0px;
    padding: 5px 20px;
    color: #3c6379;
    border: 1px solid #3c6379;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: none;
    font-size: 16px;
    font-weight: 500;
}

form .botaoTryAgain i{
    margin-right: 4px;
}

form button:hover{
    transform: scale(1.05);
    color: white;
    background: #078dd5;
    cursor: pointer;
}

form .blocked{
    pointer-events: none;
    color: grey;
    background: rgb(235, 235, 235);
    border: 1px solid grey;
}

#errorText {
    color: rgb(184, 28, 28);
    display: none;
    margin-bottom: 10px;
}

@keyframes loading {
    100% {
        transform: rotate(360deg);
    }

}

.load {
    height: 500px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.load i {
    margin-top: 20px;
    animation: loading 2s linear infinite;
    font-size: 50px;
    color: #078dd5;
}

#responseMessage{
    height: 500px;
    display: none;
    align-items: center;
    justify-content: center;
}

#responseMessage .success{
    color: white;
    border: 1px solid rgb(38, 170, 38);
    background: rgb(38, 170, 38);
    padding: 10px 15px;
    border-radius: 10px;
}
#responseMessage .error{
    color: white;
    border: 1px solid rgb(167, 8, 8);
    background: rgb(167, 8, 8);
    padding: 10px 15px;
    border-radius: 10px;
}


@media (max-width: 992px){
    footer ul{
        margin: 0px 20px;
    }
}

@media (max-width: 576px){
    .content-contato{
        padding: 20px 20px;
    }
    form{
        width: 350px;
    align-items: center;
    }
    form label{
        width: 100%;
    }
    form input{
        width: 350px;
    }
    form textarea{
        width: 350px;
    }
    footer{
        height: fit-content;
        display: flex;
        align-items: start;
        flex-direction: column;
        padding: 0px 40px;
    }
    footer img{
        align-self: center;
    }
    footer ul{
        margin: 20px 0px;
    }
}

@media (max-width: 360px){
    form{
        width: 300px;
    align-items: center;
    }
    form label{
        width: 100%;
    }
    form input{
        width: 300px;
    }
    form textarea{
        width: 300px;
    }
    footer{
        height: fit-content;
        display: flex;
        align-items: start;
        flex-direction: column;
        padding: 0px 40px;
    }
    footer img{
        align-self: center;
    }
    footer ul{
        margin: 20px 0px;
    }
}