@import url("https://use.typekit.net/ion4gul.css");
@import url("../fonts/Arboria-Black.ttf");
@font-face {
  font-family:"Arboria-Black";
  src:url("../fonts/Arboria-Black.ttf") format("woff2");
  font-display:auto;
  font-style:normal;
  font-weight:900;
  font-stretch:normal;
}

/* PADRÕES */
html {
  margin: 0 auto;
  scroll-behavior: smooth;
  width: 100%;
  /* overflow-x: hidden; */
  
  @media only screen and (min-width: 600px) {
    max-width: 1260px;
  }
}
html *:not(svg) {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html body {
  margin: 0;
}
html h1,
html h2,
html h3,
html h4,
html h5,
html h6 {
  margin: 0;
}
html button {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
html ul {
  margin: 0;
}
html blockquote {
  padding: 0;
  margin: 0;
}
html input,
html button,
html select,
html textarea {
  border-radius: 0;
}
html input:-internal-autofill-selected {
  background-color: transparent !important;
}
html textarea {
  resize: vertical;
}
html label {
  margin-bottom: 0;
}
html p {
  margin: 0;
}
html dl {
  margin: 0;
}
html dt,
html dd {
  line-height: inherit;
}
html dt {
  font-weight: inherit;
}
html dd {
  margin-bottom: 0;
}
html cite {
  font-style: normal;
}
html form {
  margin-bottom: 0;
}
html blockquote {
  padding-left: 0;
  border-left: 0;
}
html address {
  margin-top: 0;
  margin-bottom: 0;
}
html figure {
  margin-bottom: 0;
}
html a,
html p a {
  text-decoration: none;
}
html a:hover,
html p a:hover {
  text-decoration: none;
}

.grecaptcha-badge {
  display: none !important;
}

.w-full {
  width: 100%;
}
/* FIM PADRÕES */

/* SUCURIU */
body {
  background: #FFF;
  background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(234, 179, 123, 0.2) 50%, rgba(255, 255, 255, 1) 100%);
  font-family: "aaux-next", sans-serif;
  padding-top: 93px;
}

section:not(#banner) {
  margin: 0 auto;
  margin-top: 30px;
  
  @media only screen and (min-width: 600px) {
    width: 1260px;
    margin-top: 90px;
  }
}

section {  
  & .subtitle {
    color: #EA7600;
    font-size: 15px;
    line-height: 23px;
    text-align: center;
    font-weight: 600;
  }
  
  & .title {
    font-family: "Arboria-Black", sans-serif;
    color: #728046;
    font-size: 55px;
    font-weight: 900;
    line-height: 56px;
    text-align: center;
    margin-bottom: 25px;
    
    @media only screen and (max-width: 600px) {
      margin-bottom: 50px;
    }
  }
}

.btn-padrao {
  background-color: #BFB800;
  font-family: "Arboria-Black", sans-serif;
  color: #FFF;
  padding: 20px 40px;
  font-size: 17px;
  text-transform: uppercase;
  text-align: center;
}

.btn-padrao-laranja {
  padding: 20px 40px;
  font-family: "Arboria-Black", sans-serif;
  background: #EA7600;
  color: #FFF;
  font-size: 17px;
  width: fit-content;
  text-transform: uppercase;
  line-height: 1;
  
  &.disabled {
    opacity: 0.5;
    background-color: #525252 !important;
  }
  
  @media only screen and (max-width: 600px) {
    margin: 0 auto;
  }
}

.btn-padrao-verde {
  padding: 20px 40px;
  font-family: "Arboria-Black", sans-serif;
  background: #728046;
  color: #FFF;
  font-size: 17px;
  width: fit-content;
  text-transform: uppercase;
  line-height: 1;
  
  @media only screen and (max-width: 600px) {
    margin: 0 auto;
  }
}

header.main-header {
  width: 100vw;
  border-top: 3px solid #BFB800;
  position: fixed;
  left: 0;
  top: 0;
  background: #FFF;
  box-shadow: 0px 10px 20px #0000001C;
  z-index: 3;
  
  & .menu-mobile {
    float: right;
    display: block;
    margin-top: 15px;
    
    @media only screen and (min-width: 600px) {
      display: none;
    }
    
    & svg {
      width: 50px;
      height: 50px;
    }
  }
  
  & .smoke {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 4;
    background-color: #000;
    opacity: 0.5;
    right: 0;
    transition: right 0.5s ease-in-out;
    
    &.closed {
      right: 1000px;
      transition: right 0.5s ease-in-out;
    }
    
    @media only screen and (min-width: 600px) {
      display: none;
    }
  }
  
  & nav.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0 auto;
    
    @media only screen and (min-width: 600px) {
      width: 1260px;
    }
    
    & .logo {
      width: 300px;
    }
    
    & ul {
      width: 850px;
      display: flex;
      justify-content: space-evenly;
      
      @media only screen and (max-width: 600px) {
        flex-direction: column;
        background: #FFF;
        position: absolute;
        gap: 20px;
        padding: 20px;
        right: 0;
        top: 0;
        width: 70vw;
        height: 100vh;
        z-index: 5;
        transition:all 0.5s ease-in-out;
        
        &.closed {
          right: -1000px;
          transition:all 0.5s ease-in-out;
        }
      }
      
      & .close-menu {
        
        & svg {
          width: 30px;
          height: 30px;
        }
        
        @media only screen and (min-width: 600px) {
          display: none;
        }
      }
      
      & li.item {
        list-style: none;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        
        & a {
          text-decoration: none;
          color: #7D6E63;
          font-size: 16px;
          text-transform: uppercase;
          font-weight: 700;
          
          &:hover {
            color: #728046;
            font-weight: 900;
          }
        }
      }
    }
  }
}

footer.main-footer {
  width: 100%;
  background-color: #696158;
  position: absolute;
  left: 0;
  text-transform: uppercase;
  margin-top: 190px;
  
  @media only screen and (max-width: 600px) {
    margin-top: 50px;
    padding: 0 10px;
  }
  
  & .content {
    padding: 85px 0 135px 0;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    
    @media only screen and (min-width: 600px) {
      width: 1260px;
    }
    
    @media only screen and (max-width: 600px) {
      flex-direction: column;
    }
    
    & .title {
      color: #BFB800;
      font-size: 18px;
      margin-bottom: 50px;
    }
    
    & a, label {
      text-decoration: none;
      font-size: 14px;
      color: #FFFFFF;
      letter-spacing: -0.21px;
      line-height: 40px;
    }
    
    & .menu-footer ul {
      display: flex;
      flex-direction: column;
      padding: 0;
      flex-wrap: wrap;
      column-gap: 150px;
      
      @media only screen and (min-width: 600px) {
        height: 160px;
        margin-bottom: 30px;
      }
      
      & li {
        list-style: none;
      }
    }
    
    & .contato {
      display: flex;
      flex-direction: column;
      
      & .whatsapp {
        font-weight: bold;
        letter-spacing: -0.34px;
        font-size: 23px;
      }
    }
  }
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

form input,
form select,
.custom-file {
  border: 1px solid #C4BCB8;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  font-size: 17px;
  color: #696158;
  background: none;
  height: 63px;
}

form input[type="radio"] {
  width: 15px;
  height: 15px;
  /* hiding browser el */
  appearance: none;
  /* Safari support */
  -webkit-appearance: none;
  border: 0.2rem solid #fff;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C4BCB8;
  padding: 4px;
  margin-bottom: 0;
  
  &:checked {
    box-shadow: 0 0 0 1px #EF7906;
    background-color: #EF7906;
    border-width: 0.2rem;
  }
}

input[type="file"] {
  display: none;
  
  &::after {
    content: url('../svg/baixar.svg');
  }
}

.custom-file::after {
  content: url('../svg/baixar.svg');
  filter: brightness(0) invert(0.7);
  float: right;
}

.col-2 * {
  display: block;
  width: 100%;
  
  @media only screen and (min-width: 600px) {
    display: inline-block;
    width: 49.6%;
  }
}

.col-3 * {
  display: block;
  width: 100%;
  
  @media only screen and (min-width: 600px) {
    display: inline-block;
    width: 33%;
  }
}

.content * {
  z-index: 2;
}

.hide {
  display: none;
  opacity: 0;
  transition: opacity .3s ease, display .3s ease allow-discrete; 
}

.show {
  opacity: 1;
  display: block;
  transition: opacity .3s ease, display .3s ease allow-discrete; 
}

@starting-style {
  *.show {
    opacity: 0;
  }
}

/* FIM SUCURIU */

/* ARAUCO */
.select2-container--default {
  width: 100% !important;
  max-width: 100% !important;
}
.select2-container--default .select2-results > .select2-results__options .select2-results__option {
  padding: 12px 20px;
}
.select2-container--default .select2-results > .select2-results__options .select2-results__option.select2-results__option--highlighted[aria-selected] {
  background-color: #EF7906 !important;
  color: #fff !important;
}
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border: 1px solid #C4BCB8 !important;
  border-radius: 6px !important;
  background-color: transparent !important;
  padding: 27px 24px 22px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  font-size: 14px;
  font-size: 0.875rem;
  color: #7D6E63;
  font-weight: 500;
  line-height: 1.2 !important;
  font-weight: light !important;
  padding-left: 0;
}
.select2-container--default .select2-selection--single .select2-selection__rendered .select2-selection__placeholder,
.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__placeholder {
  font-size: 14px;
  font-size: 0.875rem;
  color: #7D6E63;
  font-weight: 400;
  font-weight: light !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--multiple .select2-selection__arrow {
  height: 100% !important;
  background-image: url("../svg/chevron.svg");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 9px;
  margin-right: 30px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b,
.select2-container--default .select2-selection--multiple .select2-selection__arrow b {
  display: none !important;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.select2-container--default.select2-container--open .select2-selection__arrow {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}
.select2-container--default.select2-container--open .select2-dropdown--above {
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
}
.select2-container--default.select2-container--open .select2-dropdown--below {
  border-bottom-left-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}
.select2-container--default.select2-container--disabled {
  opacity: 0.5;
}
.select2-container--default .select2-dropdown {
  border: 1px solid #C4BCB8 !important;
  border-radius: 0 !important;;
  font-size: 14px;
  font-size: 0.875rem;
  color: #7D6E63;
  font-weight: 400;
  overflow: hidden;
}
.select2-container--default .select2-dropdown ::-webkit-scrollbar {
  width: 8px;
}
.select2-container--default .select2-dropdown ::-webkit-scrollbar-track {
  background: #fff;
}
.select2-container--default .select2-dropdown ::-webkit-scrollbar-thumb {
  background: #7D6E63;
}
.select2-container--default .select2-dropdown ::-moz-selection {
  background: #7D6E63;
  color: #fff;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  padding: 5px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;;
  font-size: 14px;
  font-size: 0.875rem;
  color: #000;
  font-weight: 400;
  width: calc(100% - 20px);
  margin: 0 auto 10px;
  display: block;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus-within {
  border-color: #7D6E63;
}

.custom-select--lg + .select2-container--default .select2-selection--single,
.custom-select--lg + .select2-container--default .select2-selection--multiple {
  padding: 30px 24px !important;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  padding-left: 0;
}
.slick-dots li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.slick-dots li:only-child {
  display: none;
}
.slick-dots li button {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  border-radius: 50%;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 0;
}
.slick-dots li.slick-active button {
  border-color: #7D6E63;
  background-color: #7D6E63;
}

.swal2-title {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #7D6E63 !important;
}

#swal2-content {
  font-size: 12px !important;
  color: #7D6E63 !important;
}

.swal2-confirm.swal2-styled {
  background-color: #7D6E63 !important;
  border-radius: 5px;
  border: 1px solid #7D6E63 !important;;
  font-size: 14px;
  font-size: 0.875rem;
  color: #EF7906;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 11px 25px 7px;
  -webkit-box-shadow: 0px 3px 6px rgba(125, 110, 99, 0.16) !important;
  box-shadow: 0px 3px 6px rgba(125, 110, 99, 0.16) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.swal2-confirm.swal2-styled:hover {
  background-color: transparent !important;
  background-image: none !important;
  color: #7D6E63;
}

.swal2-cancel.swal2-styled {
  margin-top: 10px;
  background-color: transparent !important;
  border-radius: 5px;
  border: 1px solid #7D6E63 !important;
  line-height: 1.2;
  color: #363636 !important;
  font-size: 1rem !important;
  text-transform: uppercase;
  padding: 8px 25px 5px;
  -webkit-box-shadow: 0px 3px 6px rgba(125, 110, 99, 0.08) !important;
  box-shadow: 0px 3px 6px rgba(125, 110, 99, 0.08) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.swal2-cancel.swal2-styled:hover {
  background-color: transparent !important;
  background-image: none !important;
  color: #7D6E63;
}