:root {
    --blue: rgb(26, 119, 226);
}

footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--blue);
    color: white;
    padding: 10px 250px;
    font-size: 17px;
}

footer div:nth-child(1) p {
    margin-bottom: 15px;
}

.rodape {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 3px solid rgba(0,0,0,0.1);
}

.containerContato {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 200px 0px 200px;
}

.contato {
    padding: 20px 0px 30px 0px;
    background-image: url(/assets/imgs/backgroundTexture2.webp);
    text-align: center;
}

.contato h3 {
    padding-bottom: 40px;
    font-size: 40px;
    color: var(--blue);
}

.contato2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: top;
}

.containerOndeAtendemos {
    text-align: left;
    margin-left: -100px;
}

.containerOndeAtendemos h4{
    font-size: 24px;
    color: var(--blue);
    padding-bottom: 20px;
}

.contato2 div {
    text-align: center;
    font-size: 20px;
}

.contato span {
    padding-top: 10px;
    padding-bottom: 15px;
    color: var(--blue);
}

.contato p {
    padding-bottom: 15px;
}

.contatoItem {
    margin-bottom: 30px;
}

.contatoItem:hover {
    border-radius: 25px;
    background-color: rgba(0,0,0,0.1);
}


/* FORM DO CONTATO */
/* FORM DO CONTATO */
/* FORM DO CONTATO */
/* FORM DO CONTATO */
/* FORM DO CONTATO */

input[type='text'] {
    background-color: rgba(200,200,200,0.1);
    border: 2px solid rgba(0,0,0,0.5);
    border-radius: 6px;
    width: 65%;
    padding: 15px;
    margin-bottom: 10px;
}

textarea {
    padding: 15px;
    background-color: rgba(200,200,200,0.1);
    border: 2px solid rgba(0,0,0,0.5);
    border-radius: 6px;
    width: 65%;
}

input:focus ~ span,
textarea:focus ~ span {
    width: 100%;
    -webkit-transition: all 0.075s ease;
    transition: all 0.075s ease;
}

textarea:focus, input:focus{
    outline: none;
}

input[type='submit'] {
    position: relative;
    color: white;
    border: none;
    outline: none;
    background-color: var(--blue);
    font-weight: 400;
    padding: 8px 15px;
    border-radius: 15px;
    margin-top: 5px;
    left: 178px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

input[type='submit']:hover {
    background-color:rgb(13, 89, 175);
}