@font-face {
  font-family: "Recoleta-Bold";
  src: local(Recoleta-Bold), url(../fonts/Recoleta-Bold.ttf);
}

@font-face {
  font-family: "Montserrat-Bold";
  src: local(Montserrat-Bold), url(../fonts/Montserrat-Bold.ttf);
}

@font-face {
  font-family: "Montserrat-Regular";
  src: local(Montserrat-Regular), url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
  font-family: "Montserrat-SemiBold";
  src: local(Montserrat-SemiBold), url(../fonts/Montserrat-SemiBold.ttf);
}

@font-face {
  font-family: "Montserrat-Light";
  src: local(Montserrat-Light), url(../fonts/Montserrat-Light.ttf);
}

@font-face {
  font-family: "Montserrat-Medium";
  src: local(Montserrat-Medium), url(../fonts/Montserrat-Medium.ttf);
}

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: white;
}

html {
  --gray: #8c8c8c;
  --orange: #ff9b00;
  --blue: #00006a;
}

body{
  color: #646464;
}

li {
  list-style: none;
}

a{
  text-decoration: none;
}

header {
  display: flex;
  position: fixed;
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  top: 0rem;
  padding: 1rem 0;
  background-color: white;
  width: 100%;
  box-shadow: 0 4px 8px -1px #e6e4e4;

}

header p {
  display: none;
}

header a {
  color: #646464;
  font-family: "Montserrat-Medium";
  font-size: 0.9em;
}

header a:hover {
  color: var(--orange);
}

#menu-mobile {
  display: none;
}

#header-left {
  display: flex;
  margin-left: 10.5rem;
}

.menu-icon {
  display: none;
}

#menu {
  margin-right: 3rem;
}

#menu ul {
  display: flex;
  gap: 2.5rem;
  font-weight: 500;
}

#logo-header {
  
    width: 5rem;
    /* margin-left: 0rem; */
  
}

#top-menu-mobile {
  display: none;
}

.line {
  display: none;
}

.close-menu-btn {
  display: block;
}

.social-menu {
  display: none;
}

.sobre-menu {
  display: none;
}

.btns-duvidas {
  display: none;
}

.baixe-app-menu {
  display: none;
}

@media (max-width: 1199px) {
  h1 {
    font-size: 2.5em;
  }

  #menu {
    margin-right: 0rem;
  }

  #header-left {
    margin-left: 2rem;
  }
}

@media (max-width: 999px) {
  #menu {
    display: none;
  }

  #header-left {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-left: 2rem;
  }

  .menu-icon {
    display: flex;
    margin-right: 1rem;
  }

  .open-menu-btn {
    border: none;
    background-color: transparent;
    cursor: pointer;
  }

  .close-menu-btn {
    display: flex;
    border: none;
    background-color: transparent;
    font-size: 30px;
    font-weight: 300;
    margin-left: 1rem !important;
    color: #8c8c8c;
    cursor: pointer;
  }

  .active-menu {
    width: 100%;
    height: 100%;
    padding-left: 1.6rem;
    display: flex;
    align-items: flex-start;
  }

  .active-menu #header-left {
    display: none;
  }

  .active-menu #menu-mobile {
    display: none;
  }

  .active-menu #top-menu-mobile {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    margin-left: 0;
    width: 100%;
  }

  .active-menu .somos-menu,
  .active-menu .anunciantes-menu,
  .active-menu .somos-menu,
  .active-menu .somos-menu a,
  .active-menu .anunciantes-menu a,
  .active-menu .somos-menu a {
    display: none;
  }

  .active-menu .sobre-menu {
    display: inline;
    margin-top: -3rem;
  }

  .active-menu .baixe-app-menu {
    display: inline;
  }

  .active-menu .menu-icon {
    margin-right: 4rem;
  }

  .active-menu #logo-header {
    width: 12%;
  }

  .active-menu p {
    display: flex;
    color: #8c8c8c;
  }

  .active-menu #menu {
    display: flex;
    width: 100%;
    flex-direction: column;
  }

  .active-menu #menu ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 3rem;
  }

  .active-menu #menu a {
    text-transform: uppercase;
    display: flex;
    width: 100%;
    flex-direction: column;
    text-align: left;
  }

  .line {
    display: flex;
    width: 90vw;
  }

  .active-menu .social-menu {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 12%;
  }

  .active-menu .social-menu img {
    width: 25%;
    /* height: 10%; */
  }
}

@media (max-width: 760px) {
  /*MENU*/
  #header-left {
    margin-left: 2rem;
  }

  .menu-icon {
    display: flex;
    margin-right: 1rem;
  }

  #logo-header {
    width: 5rem;
    margin-left: 0rem;
  }

  .active-menu #logo-header {
    width: 33%;
  }

  .active-menu .social-menu {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 12%;
    gap: 1rem;
    margin-right: 6rem;
  }

  .line {
    display: flex;
    width: 90vw;
    margin-top: 16%;
  }

  .active-menu .social-menu img {
    width: 60%;
  }
}
