/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Poppins:wght@300;400;600;700&display=swap");

*,
:before,
:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 62.5%;
  --font-primary: "Poppins", sans-serif;
  --font-secundary: "Montserrat", sans-serif;
  --color-primary: rgb(24, 53, 31);
  --color-secondary: rgb(165, 155, 102);
  --color-gray: #f3f5f9;
  --color-white: #ffffff;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
  width: 100vw;
  max-width: 100%;
}

html,
body {
  max-width: 100%;
  position: relative;
  overflow-x: hidden;
  font-family: var(--font-primary);
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  font-family: var(--font-primary);
}

/* Header */
/* Header top menu */
header {
  width: 100%;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1rem;
}

.header__top img {
  height: 8rem;
}

.btn-menu-dropdown {
  display: none;
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__menu a {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 2.5rem;
  text-decoration: none;
}

.header__menu a:hover {
  color: var(--color-primary);
  opacity: 0.8;
}

.header__menu i {
  font-size: 3rem;
  color: var(--color-primary);
}

.header__menu span {
  margin-right: 4rem;
  cursor: pointer;
}

/*********** Menu DropDown ***********/
.menu-dropdown {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  width: 75%;
  height: 100vh;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);

  transform: translateX(100%);
  transition: transform 0.3s;
}

.menu-dropdown.active {
  transform: translateX(0);
}

.menu-dropdown__close {
  display: flex;
  justify-content: end;
  padding: 10px;
  color: var(--color-primary);
}

.menu-dropdown__close span {
  cursor: pointer;
}

.menu-dropdown__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.menu-dropdown__content a {
  width: 100%;
  padding: 15px;
  padding-left: 30px;
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: bold;
  margin-right: 3rem;
  text-decoration: none;
  transition: 0.3s;
}

.menu-dropdown__content a:hover {
  opacity: 0.7;
}

/* Header top Hero */
/* .header__hero {
  width: 100%;
  height: 40rem;
  overflow: hidden;
}

.header__hero img {
  width: 100%;
} */

/* FOOTER */
footer {
  width: 100%;
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.footer__content {
  width: 70%;
  margin: 0 auto;
  padding: 5rem 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__content img {
  height: 15rem;
}

.footer__description h3 {
  font-size: 2.3rem;
  font-weight: bold;
}

.footer__contato-endereco {
  font-size: 1.4rem;
}
.footer__contato-telefone {
  font-size: 1.9rem;
  font-weight: bold;
  margin-top: 2rem;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social i {
  font-size: 4.6rem;
  color: var(--color-white);
  margin-right: 2rem;
}

.footer__social i:hover {
  opacity: 0.8;
}

.footer__social span {
  font-size: 2rem;
}
