@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  list-style: none;
}
body {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

body.loaded {
  opacity: 1;
}

.container-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 15px;
}
.container-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 15px;
}

.container-banner {
  width: 100%;
  min-height: 440px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -10;
  top: 0;
  left: 0;
}
.bg-footer {
  width: 100%;
  min-height: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.bg-footer > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -10;
  top: 0;
  left: 0;
}
.bg-contato {
  width: 100%;
  min-height: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bg-contato > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  opacity: 0.05;
}
p {
  margin-bottom: 1rem;
  font-size: 16px;
}
.m-title {
  margin-bottom: 1.5rem;
}
.p-section {
  padding: 50px 0 60px 0;
}
.title-first {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.title-second {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.articles p {
  font-weight: 500;
  font-size: 0.9rem;
}

.container-copy {
  width: 100%;
  background: #668e7f;
}
.copy {
  text-align: center;
  padding: 24px;
  color: white;
  font-size: 14px;
}
/* Animação menu mobile */
#mobileMenu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
}

#mobileMenu.open {
  max-height: 400px;
  opacity: 1;
}

/* Animação do menu */
.menu-link {
  position: relative;
  display: inline-block;
}

.menu-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #668e7f;
  transition: width 0.3s ease;
}

.menu-link:hover::after {
  width: 100%;
}
/* Separador contato */
.separator {
  width: 2px;
  height: 30px;
  background: #668e7f;
}
@media (max-width: 1100px) {
  .separator {
    width: 40px;
    height: 2px;
    margin: 0 auto;
  }
  .title-first {
    font-size: 1.4rem;
  }
  .title-second {
    font-size: 1.2rem;
  }
}
