@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
  color: #1d2925;
}

body {
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  margin: auto;
  max-width: 1300px;
  padding: 0 20px;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #005649;
}
a:hover {
  color: #df8550;
}

.button-green {
  background-color: #005649;
  color: #f8f0e5;
  font-size: 1.2rem;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: 0.2s linear;
  display: inline-block;
  cursor: pointer;
}
.button-green:hover {
  background-color: #6e442b;
  color: #f8f0e5;
}

.button-orange {
  background-color: #df8550;
  color: #f8f0e5;
  font-size: 1.2rem;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: 0.2s linear;
  display: inline-block;
  cursor: pointer;
}
.button-orange:hover {
  background-color: #6e442b;
  color: #f8f0e5;
}

.button-green-light {
  background-color: #97e2c1;
  color: #1d2925;
  font-size: 1.2rem;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: 0.2s linear;
  display: inline-block;
  cursor: pointer;
}
.button-green-light:hover {
  background-color: #005649;
  color: #f8f0e5;
}

.button-brown {
  background-color: #6e442b;
  color: #f8f0e5;
  font-size: 1.2rem;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: 0.2s linear;
  display: inline-block;
  cursor: pointer;
}
.button-brown:hover {
  background-color: #df8550;
  color: #f8f0e5;
}

button {
  transition: 0.2s linear;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #f8f0e5;
}

::-webkit-scrollbar-thumb {
  background-color: #023f37;
}

input, textarea {
  padding: 10px 18px;
  border-radius: 8px;
  color: #1d2925;
  font-size: 1.2rem;
  outline: none;
  border: 1px solid #1d2925;
}

select {
  padding: 10px 18px;
  border-radius: 8px;
  color: #1d2925;
  font-size: 1.2rem;
  outline: none;
  border: 1px solid #1d2925;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 4em;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.6rem;
}

p {
  color: #1d2925;
  font-size: 1.1rem;
}

#hero {
  height: 400px;
  background: url("/src/bg_hero.webp") bottom center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
#hero .overlay {
  background: linear-gradient(rgba(2, 63, 55, 0.75), rgba(0, 86, 73, 0.75));
  min-height: 400px;
}
#hero .container {
  min-height: 400px;
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: inherit;
  gap: 0;
}
@media (max-width: 450px) {
  #hero .container {
    padding-top: 120px;
  }
  #hero .container h1 {
    text-align: center;
    font-size: 3rem !important;
  }
}
#hero .container h1 {
  color: #f8f0e5;
  font-size: 4.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

#contato .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
@media (max-width: 450px) {
  #contato .container {
    flex-direction: column !important;
  }
  #contato .container .infos, #contato .container .form {
    width: 100%;
    align-items: center;
  }
  #contato .container .infos p, #contato .container .form p {
    text-align: center;
  }
  #contato .container .infos .contact-box a, #contato .container .form .contact-box a {
    align-items: center;
  }
}
#contato .infos {
  width: calc(50% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 30px;
}
#contato .infos p {
  max-width: 500px;
}
#contato .infos .contact-box a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: inherit;
  gap: 10px;
  color: #1d2925;
  max-width: 350px;
  font-size: 1.4rem;
}
#contato .infos .contact-box a:hover {
  color: #df8550;
}
#contato .infos .contact-box a:hover p {
  color: #df8550;
}
#contato .infos .contact-box a:hover .icon-box {
  background-color: #df8550;
}
#contato .infos .contact-box a .icon-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #005649;
  width: 60px;
  height: 60px;
  border-radius: 8px;
}
#contato .infos .contact-box a i {
  font-size: 30px;
  color: #f8f0e5;
}
#contato .form {
  width: calc(50% - 30px);
}
#contato .form form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
}
#contato .form .field {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: inherit;
  gap: 10px;
}
#contato .form .field label {
  font-size: 1.2rem;
}/*# sourceMappingURL=contato.css.map */