* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
html, body {
      height: 100%;
      margin: 0; /* Remove margens padrão */
}

.visibility {
    width: 100%;
    height: 75%;
    margin: auto;
    padding: .5rem;
}
/* Header */
.header {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    align-items: center;
}
.header a {
    margin-right: 20px;
    text-decoration: inherit;
    color: rgba(0, 0, 0, 0.87);
    font-size: 15px;
}
.header a:hover {
    text-decoration: underline;
}
.header__right {
    display: flex;
    align-items: center;
    min-width: 13vw;
    justify-content: space-between;
}
.header__right .header__apps {
    margin-right: 10px;
}
/* Main Body */
.mainBody {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 500px;
}
.mainBody img {
    width: 100%;
    max-width: 400px;
    margin: 1rem auto;
}
.results .main-body {
    display: flex;
    margin: 0 auto;
    background-color: #DCDCDC;
    align-items: center ;
    justify-content: space-between;
}
.results .result {
    max-width: 1200px;
    margin: 0 auto;
}
.results .main-Body img {
    width: 200px;
}
.main-body-result{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    padding: 1rem;
}
.logo-h1{
    font-size: 5rem;
    text-align: center;
    color: #333333;
    font-style: serif;
}
.main-body-result .search,
.main-body-result .logo-result{
    width: 100%;
    max-width: 400px;
}
.main-body-result .logo-result h1{
    font-size: 2.5rem;
    text-align: right;
    color: #333333;
    font-style: serif;
}
.main-body-result .logo-result{
    display: flex;
    justify-content: end;
}
/* search */
.search__input {
    display: flex;
    align-items: center;
    border: 1px solid #DCDCDC;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
}
form {
    width: 100%;
    display: flex;
    align-items: center;
}
.search__input input {
    border: none;
    width: 100%;
    padding: 15px;
    outline-color: #004FAC;
}
.search__input .material-icons {
    color: #FFF;
    background-color:#004FAC;
    padding: 14.5px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
.search__buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.search__buttons button{
    margin: 5px;
    padding: 10px 15px;
    cursor: pointer;
    color: #36A656;
    background-color: transparent;
    border: none;
    text-decoration: underline;
    font-size: 22px;
}
.header-alt {
    border-bottom: 1px solid #DCDCDC;
    padding: 1rem;
}
.header-alt img {
    width: 300px;
}
.container {
    max-width: 1100px;
    margin:50px auto 0;
    background: #FFFFFF;
}
.container h1 {
    text-align: center;
    background-color: #DDDDDD;
    color: #004FAC;
    padding: 30px 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2rem;
}
.container h2{
    padding: 0 50px;
}
.text {
    padding: 20px 50px;
    line-height: 1.8;
    font-size: 20px;
}
.list-text {
    list-style: none;
}
.list-text li {
    font-size: 20px;
}
.rodape {
    text-align: center;
    background-color: #EEEEEE;
    padding: 20px 0;
    color: #6F7693;
    align-items: center;
    font-size: 13px;
	margin-top: 100px;
}
.links {
    padding-bottom: 15px;
}
.list-link {
    list-style: none;
}
.link-item {
    display: inline-block;
}
.link-item a {
    text-decoration: none;
    color: #6F7693;
}
.links {
    padding-bottom: 15px;
}
.gcsc-branding img {
    max-width: 150px;
}
@media only screen and (max-width: 831px) {
    .logo-result{
        justify-content: center !important;
        margin: 1rem auto 0 auto;
    }
    .main-body-result .search{
        margin: auto;
    }
}