/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
input,
button {
  font-family: Arial, sans-serif;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background: Black;
}

/* Header */

.menu {
  height: 48px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.menu {
  height: 48px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.menu__section {
  display: flex;
  align-items: center;
}

.menu__section.left .menu__icon {
  padding: 12px 16px;
}

.menu__link {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #757575;
  padding: 12px 8px;
}

.menu__link.active {
  color: #4285f4;
  border-bottom: 2px solid #4285f4;
}

.menu__link:not(.active) {
  margin-bottom: 2px;
}

.menu__section.right {
  margin-right: 4px;
}

.menu__section.right .menu__icon {
  padding: 12px;
}

.menu__profile {
  padding: 4px;
  width: 40px;
  height: 40px;
  position: relative;
}

.menu__avatar--frame {
  position: absolute;
  top: 0;
  left: 0;
}

.menu__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/* Main */

.content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 56px 8px 0;
  align-items: center;
}

.content__logo {
  height: 56px;
}

.content__search {
  margin-top: 1px;
  width: 100%;
  max-width: 600px;
  padding: 7px 10px 6px 20px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.87);
  background: white;
  border-radius: 25px;
  border: 3px solid #dadce0;
  outline: 0;
}

.content__offer {
  margin-top: 24px;
  font-size: 26px;
  color: Gray;
  padding: 6px 12px;
}

.content__offer_2 {
  margin-top: 1px;
  font-size: 20px;
  font-color: black;
  padding: 6px 12px;
}


.content__offer a {
  text-decoration: none;
  color: black;
}

/* Footer */

.footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  background: Gray;
}

.footer__section:not(:first-child) {
  border-top: 1px solid #e4e4e4;
}

.footer__location {
  font-size: 16px;
  color: black;
  padding: 10px 12px;
}

.footer__links {
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 13px;
  color: White;
  padding: 10px;
}

.footer__links a:not(:first-child) {
  margin-left: 27px;
}

/* Media Query */

@media (min-width: 763px) {
  .content {
    padding-top: 120px;
  }
  .content__logo {
    height: 150px;
  }

/* Tipos de Botões */

.buttonType {
  background-color: white;
  border: 1px solid;
  border-radius: 12px;
  border-color: gray;
  color:gray;
  padding: 8px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 4px 2px;
  cursor: pointer;
}

.buttonType2 {
  background-color: white;
  border: 1px solid;
  border-radius: 12px;
  border-color: gray;
  color: gray;
  padding: 8px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 4px 2px;
  cursor: pointer;
}

