@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400;600;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

*{
  scroll-behavior: smooth;
  cursor: default;
  margin: 0;
	padding: 0;
	box-sizing: border-box;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

a{
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.header-logo{
  width: auto;
  height: 25px;
  padding-left: 10px;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.menu-button{
  width: 40px;
  height: 40px;
  background-color: transparent;
  background-image: url(images/menu.svg);
  background-size: cover;
  border: none;
  cursor: pointer;
}

.contact-button{
  width: 100px;
  height: 40px;
  background-color: #151515;
  border: none;
  color: #fff;
  font-family: 'Quicksand';
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  transition: 200ms ease-in-out;
}

#location{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 70px;
}

header{
  background-color: #fff;
  box-shadow: 0px 9px 5px 0px rgba(0,0,0,0.05);
  -webkit-box-shadow: 0px 9px 5px 0px rgba(0,0,0,0.05);
  -moz-box-shadow: 0px 9px 5px 0px rgba(0,0,0,0.05);
  z-index: 1000;
  position: sticky;
  top: 0;
  transition: 200ms ease-in-out;
}

header > div{
  display: flex;
  gap: 10px;
  justify-content: start;
  align-items: center;
}

header > ul{
  list-style: none;
  display: flex;
  gap: 10px;
  font-family: 'Gabarito';
  background-color: #fff;
  color: #151515;
}

header > ul > li{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-bottom: #e7e7e7 solid 2px;
  transition: 100ms ease-in-out;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

header > ul > li:hover{
  background-color: #e7e7e7;
  border-bottom: #151515 solid 2px;
}

header > ul > li:active{
  background-color: #dadada;
  border-bottom: #151515 solid 2px;
}

.logo{
  max-width: 20rem;
}

iframe{
  max-width: 100%;
}

.location-container{
  padding-top: 80px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.location-container > div{
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 5px;
  flex-direction: column;
}

.brands-section{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #F3F1D1 #DFE9EB;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #0d0d0d;
}

*::-webkit-scrollbar-track:hover {
  background-color: #141414;
}

*::-webkit-scrollbar-track:active {
  background-color: #272727;
}

*::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #ffffff;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255);
}

*::-webkit-scrollbar-thumb:active {
  background-color: #ffcc00;
}

.brand-logo-container:hover , .brand-logo-container > img:hover{
  filter: grayscale(0);
}

label{
  gap: 5px;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  min-width: 100%;
}

.available-form{
  color: #fff;
  font-family: "Gabarito", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  max-width: 350px;
}

.available-form > form{
  display: flex;
  gap: 10px;
  flex-direction: column;
  min-width: 100%;
}

.available-form > form > label > input{
  min-width: 100%;
  border-bottom: 3px solid #fff;
  background-color: transparent;
  padding: 5px;
  color: #fff;
  font-family: "Gabarito", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.available-form > form > label > input[type=button]{
  align-self: flex-start;
  width: 30px;
}

.red-text{
  color: red;
}

.green-text{
  color: greenyellow;
}

.wpp-button{
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  animation: fade-in 500ms ease-in;
  opacity: 1;
}

@keyframes fade-in {
  0%{
    opacity: 0;
    transform: translateX(2em);
  }
  100%{
    opacity: 1;
  }
}

.wpp-button > a{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #33d951;
  border: none;
  border-radius: 50%;
  overflow: hidden;
}

.wpp-button > a > img{
  width: 100%;
}

@media (max-width: 900px) {
  header > ul{
    display: none;
  }
}
  