
/*------------------------------ Header ------------------------------*/
ul {
  margin: 0px;
  padding: 0px;
}
a {
  color: #57636e;
  text-decoration: none;
  font: bold 0.85rem "Inter", sans-serif;
}
a:hover {
  color: #c73741;
  transition: 0.4s;
}

#header {
  box-sizing: border-box;
  height: 4.37em;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
}
#menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}
#menu a {
  display: block;
  padding: 0.5rem;
}
#btn-mobile {
  display: none;
}

/*----------------------- Footer ------------------------*/
footer {
  width: 100%;
  margin-top: 14%;
  background: white;
  text-decoration: none;
}
#footer_content {
  /* Todo o conteúdo do footer */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 3rem 3.5rem;
  font: normal 0.85rem "Inter", sans-serif;
  color: #555;
}
.footer_list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}
.footer_list .footer_link {
  transition: all 0.4s;
}
.footer_list .footer_link:hover {
  color: #c73741;
}
#btn_assinar {
  /* Botão de assinar*/
  margin: auto;
  width: 200px;
  height: 33px;
  background: #daa520;
  color: white;
  border-radius: 10px;
  font: bold 0.85rem "Inter", sans-serif;
  border-style: none;
  cursor: pointer;
  text-align: center;
}
#btn_assinar:hover {
  opacity: 0.8;
  transition: all 0.4s;
}
#footer_contacts h1 {
  margin-bottom: 0.75rem;
}
#footer_social_media {
  display: flex;
  gap: 2px;
  margin-top: 1.5rem;
}
#footer_social_media .footer_link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  transition: all 0.4s;
}
#footer_social_media .footer_link i {
  font-size: 1.25rem;
}
#footer_social_media .footer_link:hover {
  opacity: 0.8;
}
#instagram {
  color: black;
}
#facebook {
  color: black;
}
#whatsapp {
  color: black;
}
#direito_ltda {
  font: normal 0.75rem "Inter", sans-serif;
  color: #555;
}
#direito_ltda p {
  text-align: center;
}
/*----------------------- Media Header e Main ------------------------*/
@media (max-width: 1000px) {
	
  #menu {
    display: block;
    position: absolute;
    width: 100%;
    top: 70px;
    right: 0px;
    background: #e7e7e7;
    transition: 0.6s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
    text-align: center;
  }
  #nav.active #menu {
    height: calc(53vh - 70px);
    visibility: visible;
    overflow-y: auto;
  }
  #menu a {
    padding: 1rem 0;
    margin: 0 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  }
  #btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
  }
  #btn-mobile:hover {
    color: #c73741;
    transition: 0.3s;
  }
  #hamburger {
    border-top: 2px solid;
    width: 20px;
  }
  #hamburger::after,
  #hamburger::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }
  #nav.active #hamburger {
    border-top-color: transparent;
  }
  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }
  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
}

/*----------------------- Media Footer ------------------------*/
@media screen and (max-width: 768px) {
  #footer_content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 426px) {
  #footer_content {
    grid-template-columns: repeat(1, 1fr);
    padding: 3rem 2rem;
  }
}
