@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
}

:root {
  --white: #FFF;
  --white2: #F9F9F9;
  --white3: #E7E7E3;
  --off-white: #EFEFEB;
  --black: #000;
  --gray: #535353;
  --gray2: #A6A6A6;
  --blue-dark: #222A42;
  --pantone: #012E3F;
  --beige: #9F907D;
  --header-gradient: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 88.46%);
  --header-gradient2: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%,rgba(0, 0, 0, 0) 90.0%);
  --radius: 0.9375rem;
  --radius-big: 2.4375rem;
  --sidepad-big: 8.44rem;
  --sidepad: 7.5rem;
  --sidepad-small: 6rem;
  --border: 1px solid var(--beige);
}
@media (orientation: portrait) {
  :root {
    --sidepad-small: 1.5rem;
    --sidepad: 1.5rem;
    --sidepad-big: 6.75rem;
  }
}

html {
  font-size: 1.11vw;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
}
@media (orientation: portrait) {
  html {
    font-size: 4.7vw;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background: var(--white);
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

h1, h2 {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

h1 {
  color: var(--blue-dark);
  text-align: center;
  font-size: 2rem;
  line-height: 100%;
  font-weight: 400;
}
@media (orientation: portrait) {
  h1 {
    font-size: 1.125rem;
    line-height: 120%;
  }
}

h2 {
  color: var(--blue-dark);
  font-size: 2.25rem;
  line-height: 110%;
}
@media (orientation: portrait) {
  h2 {
    font-size: 1.85rem;
  }
}

h3 {
  color: var(--blue-dark);
  font-size: 1.2rem;
  line-height: 140%;
  font-weight: 400;
}

p {
  color: var(--blue-dark);
  font-size: 0.75rem;
  line-height: 1.375rem;
  font-weight: 400;
}
@media (orientation: portrait) {
  p {
    font-size: 0.6rem;
    line-height: 1.0625rem;
  }
}

span {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.5rem;
}

a {
  color: var(--white);
  font-size: 0.7rem;
  line-height: 1.1875rem;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  text-decoration: none;
}

label {
  color: var(--pantone);
  font-size: 0.9375rem;
  line-height: 1.375rem;
  font-weight: 400;
}
@media (orientation: portrait) {
  label {
    font-size: 0.75rem;
    line-height: 1.0625rem;
  }
}

input {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  line-height: 1.375rem;
  font-weight: 400;
  background: transparent;
  border: none;
  border-bottom: var(--border);
  color: var(--blue-dark);
  padding: 0.88rem 0 0.88rem 0.88rem;
  height: 3.125rem;
}
input:focus {
  outline: none;
}
input::placeholder {
  font-family: "Montserrat", sans-serif;
  color: var(--blue-dark);
  font-size: 0.875rem;
  line-height: 1.375rem;
}
@media (orientation: portrait) {
  input {
    font-size: 0.6rem;
    line-height: 1.0625rem;
  }
}

button {
  font-family: "Montserrat", sans-serif;
}

main, section, header, footer, nav, div, form {
  display: flex;
}

section, footer {
  width: 100%;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11rem;
  padding: 1rem 1rem;
  background: var(--blue-dark);
  border-radius: var(--radius-big);
  border: none;
  gap: 0.5rem;
  cursor: pointer;
  white-space: nowrap;
  color: var(--white);
  line-height: 110%;
  font-size: 0.8rem;
  font-weight: 600;
}
.btn img {
  width: 1.5rem;
  height: 1.5rem;
  transition: 0.5s ease-in-out;
}
.btn:hover img {
  transform: translateX(40%);
}
@media (orientation: portrait) {
  .btn {
    width: 100%;
  }
}

@media (orientation: portrait) {
  .disable-on-mobile {
    display: none;
  }
}

@media (orientation: landscape) {
  .disable-on-desktop {
    display: none;
  }
}

header {
  position: fixed;
  top: 0;
  z-index: 666;
  justify-content: space-between;
  align-items: center;
  background: var(--header-gradient);
  height: 8.125rem;
  width: 100%;
  padding: 1rem var(--sidepad-small);
}
header.darker {
  background: var(--header-gradient2);
  backdrop-filter: blur(1px);
}
header img {
  width: 3rem;
  height: 1.7rem;
}
@media (orientation: portrait) {
  header {
    height: 4.625rem;
  }
  header > a {
    font-size: 0.5rem;
  }
}

footer {
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 3.75rem var(--sidepad);
  background-image: url("./assets/images/contact-background.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
footer > h1 {
  font-weight: 300;
  line-height: 110%;
}
footer > div:first-of-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11.75rem;
  width: 100%;
}
footer > div:first-of-type > form {
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
footer > div:first-of-type > form div {
  flex-direction: column;
  width: 100%;
}
footer > div:first-of-type > form div:not(.form-row) {
  gap: 0.3rem;
}
footer > div:first-of-type > form .form-row {
  flex-direction: row;
  gap: 1.25rem;
}
footer > div:first-of-type > form .form-row > div:last-of-type {
  width: 35%;
}
footer > div:first-of-type > div {
  flex-direction: column;
  gap: 1.69rem;
  width: 100%;
}
footer > div:first-of-type > div > a {
  display: flex;
  gap: 1.38rem;
  align-items: center;
}
footer > div:first-of-type > div > a img {
  width: 1.5rem;
  height: 1.5rem;
}
footer > div:first-of-type > div > a p {
  max-width: 15.125rem;
  font-size: 0.9rem;
  line-height: 1.5rem;
}
footer > div:first-of-type > div > a p.underline {
  text-decoration: underline;
}
footer > div:last-of-type {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  width: 100%;
  padding: 0rem var(--sidepad-small);
  justify-content: center;
}
footer > div:last-of-type span {
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135.938%;
  color: var(--beige);
}
footer > div:last-of-type span b {
  font-weight: 600;
}
@media (orientation: portrait) {
  footer {
    height: auto;
  }
  footer > h1 {
    font-size: 1.2rem;
  }
  footer > div:first-of-type {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.25rem;
  }
  footer > div:first-of-type > div a p {
    max-width: 100%;
  }
  footer > div:first-of-type > form {
    gap: 0.62rem;
  }
  footer > div:first-of-type > form input {
    width: 100%;
  }
  footer > div:first-of-type > form > div:last-of-type {
    margin-bottom: 0.88rem;
  }
  footer > div:first-of-type > form .form-row {
    flex-direction: column;
    gap: 0.62rem;
  }
  footer > div:first-of-type > form .form-row > div:last-of-type {
    width: 100%;
  }
  footer > div:first-of-type > div > a p {
    font-size: 0.64rem;
  }
  footer > div:last-of-type {
    position: relative;
    bottom: 0;
    padding: 0;
    margin-bottom: 3.13rem;
    text-align: center;
  }
}

section#initial-section {
  flex-direction: column;
  height: 100vh;
}
section#initial-section > img {
  width: 100%;
  height: 55%;
  object-fit: cover;
}
section#initial-section > a div {
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  padding: 5rem var(--sidepad) 0;
  cursor: pointer;
}
section#initial-section > a div h1 {
  max-width: 45.125rem;
  color: var(--blue-dark);
  font-size: 3.2rem;
}
section#initial-section > a div > img {
  width: 1.47865rem;
  height: 1.5rem;
  transition: transform 0.7s ease-in-out;
}
@media (orientation: landscape) {
  section#initial-section > a div:hover > img {
    transform: translateY(80%);
  }
}
@media (orientation: portrait) {
  section#initial-section {
    justify-content: flex-end;
    align-items: center;
    height: auto;
  }
  section#initial-section > img {
    height: 18.75rem;
    object-fit: cover;
    object-position: 0% center;
  }
  section#initial-section > a > div {
    padding: 3.13rem 0 0;
    height: auto;
    gap: 1rem;
  }
  section#initial-section > a > div > h1 {
    max-width: 16rem;
    font-size: 1.6rem;
  }
  section#initial-section > a > div > img {
    width: 0.95rem;
    height: 0.95rem;
  }
}

section#text-section {
  flex-direction: column;
  gap: 5rem;
  padding: 6.25rem var(--sidepad);
}
section#text-section > div:first-of-type {
  justify-content: space-between;
  width: 100%;
}
section#text-section > div:first-of-type > p {
  font-size: 0.9rem;
  line-height: 140%;
}
section#text-section > div:first-of-type > p:first-of-type {
  max-width: 20.9375rem;
}
section#text-section > div:first-of-type > p:last-of-type {
  max-width: 23.3rem;
}
section#text-section > div:first-of-type > div {
  flex-direction: column;
  justify-content: flex-end;
}
section#text-section > div:first-of-type > div p {
  color: var(--black);
  line-height: 1.375rem;
}
section#text-section > div:first-of-type > div > img, section#text-section > div:first-of-type > div svg {
  width: 8.45rem;
}
section#text-section > div:last-of-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 34.375rem;
  gap: 1.25rem;
}
section#text-section > div:last-of-type > div {
  width: 100%;
  height: 100%;
}
section#text-section > div:last-of-type > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (orientation: portrait) {
  section#text-section {
    padding: 0;
    padding-bottom: 2.31rem;
    gap: 0;
  }
  section#text-section > div:first-of-type {
    flex-direction: column;
    padding: 3.13rem var(--sidepad) 2.5rem var(--sidepad);
    gap: 1.87rem;
  }
  section#text-section > div:first-of-type > p {
    font-size: 0.8rem;
  }
  section#text-section > div:first-of-type > p:first-of-type, section#text-section > div:first-of-type > p:last-of-type {
    max-width: 100%;
  }
  section#text-section > div:last-of-type {
    grid-template-columns: 1fr;
    padding: 0 var(--sidepad-small) 0 var(--sidepad-small);
    height: auto;
  }
}

section#tradicao-know-how {
  flex-direction: column;
  align-items: center;
  padding: 6.25rem var(--sidepad);
  gap: 2.5rem;
  background: var(--off-white);
  text-align: center;
}
section#tradicao-know-how > p {
  font-size: 0.9rem;
  line-height: 140%;
  max-width: 49.625rem;
}
section#tradicao-know-how > div {
  align-items: center;
  gap: 12.5rem;
}
section#tradicao-know-how > div > div {
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
section#tradicao-know-how > div > div > img {
  width: auto;
  height: 3rem;
}
section#tradicao-know-how > div > div > a {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--beige);
  line-height: 1.375rem;
}
section#tradicao-know-how > div > div > a > img {
  width: 0.4rem;
  height: 0.4rem;
  flex-shrink: 0;
}
@media (orientation: portrait) {
  section#tradicao-know-how {
    padding: 3.12rem var(--sidepad);
    gap: 1.87rem;
  }
  section#tradicao-know-how > h1 {
    font-size: 1.2rem;
    line-height: 100%;
    max-width: 11.25rem;
  }
  section#tradicao-know-how > p {
    font-size: 0.8rem;
    line-height: 1.375rem;
    max-width: 100%;
  }
  section#tradicao-know-how > div {
    flex-direction: column;
    gap: 3.13rem;
  }
  section#tradicao-know-how > div > div {
    gap: 1.88rem;
  }
  section#tradicao-know-how > div > div img {
    height: 3.3rem;
  }
}

section#estatisticas {
  justify-content: space-between;
  align-items: center;
  padding: 8.12rem var(--sidepad);
  background: var(--blue-dark);
}
section#estatisticas > div {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
section#estatisticas > div > p {
  color: var(--white3);
  font-size: 1rem;
  line-height: 1.375rem;
}
section#estatisticas > div > span {
  color: var(--beige);
  font-size: 3.7rem;
  line-height: 100%;
}
section#estatisticas .splide {
  width: 100%;
  height: 100%;
}
section#estatisticas .splide .splide__track {
  width: 100%;
  height: 100%;
}
section#estatisticas .splide .splide__track .splide__list {
  width: 100%;
  height: 100%;
}
section#estatisticas .splide .splide__track .splide__list .splide__slide {
  width: 100%;
  height: 100%;
  padding: 3.12rem 0.5rem 4.44rem 3.69rem;
  display: flex;
  align-items: center;
}
section#estatisticas .splide .splide__track .splide__list .splide__slide > div {
  flex-direction: column;
  gap: 1rem;
}
section#estatisticas .splide .splide__track .splide__list .splide__slide > div > p {
  font-size: 1rem;
  color: var(--white3);
}
section#estatisticas .splide .splide__track .splide__list .splide__slide > div > span {
  font-size: 3.2rem;
  color: var(--beige);
  line-height: 100%;
}
section#estatisticas .splide .splide__pagination {
  bottom: 2.56rem;
}
section#estatisticas .splide .splide__pagination > li button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 1px solid var(--beige);
  background: transparent;
  opacity: 1;
}
section#estatisticas .splide .splide__pagination > li button.is-active {
  background: var(--beige);
  transform: scale(1);
}
@media (orientation: portrait) {
  section#estatisticas {
    justify-content: center;
    padding: 0;
    height: 15.625rem;
  }
}

section#certificacoes {
  flex-direction: column;
  align-items: center;
  padding: 5.06rem var(--sidepad);
  gap: 5.5rem;
  background: var(--off-white);
}
section#certificacoes > div {
  flex-direction: column;
  width: 61.625rem;
}
section#certificacoes > div > div {
  align-items: center;
  padding: 1.44rem 0;
  gap: 2.44rem;
}
section#certificacoes > div > div + div {
  border-top: 1px solid var(--beige);
}
section#certificacoes > div > div > span {
  width: 12.75rem;
  height: 9.3125rem;
  flex-shrink: 0;
}
section#certificacoes > div > div > span > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section#certificacoes > div > div > p {
  font-size: 0.9rem;
  line-height: 140%;
}
@media (orientation: portrait) {
  section#certificacoes {
    gap: 1.25rem;
  }
  section#certificacoes > h1 {
    font-size: 0.8rem;
    line-height: 100%;
  }
  section#certificacoes > div {
    width: 100%;
  }
  section#certificacoes > div > div {
    flex-direction: column;
    gap: 1.44rem;
    text-align: center;
  }
  section#certificacoes > div > div > p {
    font-size: 0.7rem;
  }
}

section#map {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--off-white);
  height: 42.875rem;
}
section#map > div {
  width: 100%;
}
section#map > div:first-of-type > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#map > div:last-of-type {
  padding: 0 var(--sidepad) 5.38rem 0;
  align-items: flex-end;
  text-align: right;
}
@media (orientation: portrait) {
  section#map {
    grid-template-columns: 1fr;
    height: auto;
  }
  section#map > div:first-of-type > img {
    height: auto;
  }
  section#map > div:last-of-type {
    padding: 1.91rem 2.75rem 2.5rem;
    align-items: center;
    text-align: center;
  }
  section#map > div:last-of-type > h3 {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=styles.css.map */