*{
    margin: 0;
}

body, html{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #dad5f5;
    height: 100%;
    font-size: 16px;
}

::-webkit-scrollbar{
    width: 0;
}

input{
    color: #00000093;
    text-align: center;
    transition: border-color 0.5s, box-shadow 0.5s;
    background-color: #dad5d5;
    border: 1px solid #000000;
    font-size: 12pt;
}
input::placeholder {
    color: #00000093;
    text-align: center;
    font-size: medium;
}

input:focus {
    border-color: #ff0000;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

footer{
    display: flex;
    color: #000000;
    align-items: center;
    justify-content: center;
    background-color: #c7c7c7;
}

a:link, a:visited{
    color: #00000093;
    text-decoration: none;
}

.cabecalho_home{
    display: flex;
    position: fixed;
    background-color: #d4d4d4;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 10%;
}

.link{
    width: 100%;
    height: 100%;
    margin-left: 1%;
}

.link img{
    margin-left: 3%;
    width: 30%;
    height: 100%;
    opacity: 85%;  
}

.link img:hover{
    opacity: 100%;
    transition: 0.7s;
}

.opcoes_cabecalho{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-right: 4rem;
}

.opcoes_cabecalho a{
    margin: 0.5%;
    font-weight: bold;
    transition: 0.5s;
}

.opcoes_cabecalho a:hover{
    color: #000000;
    font-size: x-large;
}

.main_body{
    display: flex;
    width: 100%;
    height: 100%;
}

.main_body_top_cntt{
    width: 100%;
    height: 52%;
}

.main_body_top_cntt img{
    width: 100%;
    height: 100%;
}

.main_body_left{
    flex:1;
    color: #00000093;
    width: 100%;
    height: 100%;
    /* border: 2px solid rgb(0, 255, 0); */
}

.maps_main_cntt_body_left{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.maps_main_cntt_body_left iframe{
    border: 1px solid #00000093;
}

.main_body_right{
    width: 100%;
    height: 100%;
    flex:1;
    /* border: 2px solid rgb(122, 0, 122); */
}

.inp_top{
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 45%;
    /* border: 2px solid gold; */
}

.inp_top input{
    width: 40%;
    height: 25%;
    border-radius: 15px;
    margin: 1%;
  
}

.inp_down{
    color: #00000093;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    /* border: 1px solid magenta; */
}

.inp_down input{
    width: 83%;
    height: 10%;
    border-radius: 15px;
    margin: 1%;
}

.inp_down button{
    color: #dad5f5;
    background-color: #b40808;
    border: 1px solid #00000093;
    font-weight: 800;
    width: 83%;
    height: 10%;
    border-radius: 15px;
    margin: 1%;
}

.main_footer{
    width: 100%;
    height: 13%;
}

