/* PADRÕES */
html {
  margin: 0 auto;
  scroll-behavior: smooth;
  width: 100%;
  
  @media only screen and (min-width: 600px) {
    max-width: 1300px;
  }
}
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%;
}

.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;
  }
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

h2 {
  color: #3A3A3A;
  text-align: center;
  font-size: 40px;
  font-weight: 300;
  line-height: 57px; /* 142.5% */
  letter-spacing: -0.8px;
}

.slick-clientes .slick-track,
.slick-premios .slick-track {
  display: flex;
}

.slick-clientes .slick-track .slick-slide,
.slick-premios .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}
.slick-dots li:not(.slick-active) {
  width: 50px;
}

.slick-dots li button {
  width: 50px;
  height: 13px;
  border: 1px solid #167D1F;
  border-radius: 10px;
}

.slick-dots li.slick-active button {
  width: 25px;
  height: 13px;
  background: #167D1F;
  border-radius: 10px;
}

.premios-items {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.subtitle {
  color: #696D6B;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 27px; /* 192.857% */
}
/* FIM PADRÕES */

/* KRONOS */
html { overflow-x: hidden; }

body {
  background: #FFF;
  font-family: "Roboto", sans-serif, system-ui;
  padding-top: 93px;
}

section:not(#banner):not(#top-cliente):not(#autonomia) {
  margin-top: 100px;
  
  /* @media only screen and (min-width: 600px) {
  max-width: 1280px;
  margin: 90px 24px 0 24px;
  } */
}

& .badge {
  padding: 2px 32px;
  width: fit-content;
  height: fit-content;
  color: #696D6B;
  background: #F6F5F6;
  text-align: center;
  -webkit-text-stroke-width: 0.4px;
  -webkit-text-stroke-color: #696D6B;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.26px;
  border-radius: 5px;
  border: 1px solid #EDEDED;
  box-shadow: 20px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

.btn-padrao {
    white-space: nowrap;
    padding: 12px 30px;
    background-image: linear-gradient(#167D1F, #007038, #006633);
    color: #FFF;
    text-align: center;
    border-radius: 7px;
  
    &:hover {
        background: #003D1F;
        color: #FFF;
    }
  
    &:active {
        background-image: linear-gradient(#115C17, #00592D, #004F28);
        color: #c0bfbc;
    }
}

.btn-outline {
    white-space: nowrap;
  padding: 12px 30px;
  max-width: fit-content;
  background: rgba(255, 255, 255, 0.10);
  color: #063;
  border-radius: 7px;
  border: 1px solid #063;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  
  &:hover {
    background: #003D1F;
    color: #FFF;
    border-radius: 5px;
    font-weight: 500;
  }
  
  &:active {
    background: #0D4228;
    color: #c0bfbc;
  }
}

.btn-outline-white {
    white-space: nowrap;
  padding: 12px 30px;
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.3px;
  border-radius: 7px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(2px);
  
  &:hover {
    border-radius: 5px;
    background: linear-gradient(318deg, #063 -4.91%, #167D1F 90.14%);
    border-radius: 5px;
    border: 1px solid transparent;
    font-weight: 500;
    border-radius: 7px;
  }
  
  &:active {
    background: ;
    color: #c0bfbc;
  }
}

.btn-no-outline {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  color: #3A3A3A;
  font-family: "Roboto", sans-serif;
  
  &:hover {
    color: #063;
  }
}


header.main-header {
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
  background: #FFF;
  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-between;
    margin: 0 auto;
    padding: 0 64px;
    
    @media only screen and (min-width: 600px) {
      max-width: 100%;
      box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.20);
    }
    
    & .logo {
      width: fit-content;
    }
    
    & ul {
      width: 900px;
      display: flex;
      justify-content: end;
      gap: 48px;
      
      @media only screen and (max-width: 800px) {
        justify-content: space-evenly;
        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;
        
        & .redes-sociais {
          justify-content: space-evenly;
        }
        
        &.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;
        font-size: 15px;
        text-transform: uppercase;
        font-weight: 400;
        color: #3A3A3A;
        
        &:hover {
        color: #063;
        }
        } */
        
        & .login-btn {
          color: white;
        }
      }
    }
  }
}



.redes-sociais {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  
  & a svg {
    max-width: 20px;
  }
  
  & a:first-child {
    padding-top: 2px;
  }
}

footer.main-footer {
  color: white;
  width: 100%;
  background-color: #3A3A3A;
  position: absolute;
  left: 0;
  text-transform: capitalize;
  margin-top: 190px;
  border-radius: 30px 30px 0 0;
  
  @media only screen and (max-width: 600px) {
    margin-top: 50px;
    padding: 0 10px;
  }
  
  & .content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 0 auto;
    padding: 92px 24px 100px 24px;
    max-width: 1260px;
    
    @media only screen and (max-width: 600px) {
      flex-direction: column;
    }
    
    & .title {
      font-size: 24px;
      margin-bottom: 36px;
      line-height: 40px;
      letter-spacing: -0.48px;
      font-weight: 300;
    } 
    
    & 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;
      min-width: 132px;
      
      @media only screen and (min-width: 600px) {
        height: 160px;
        margin-bottom: 30px;
      }
      
      & li {
        list-style: none;
        
        & a {
          font-family: "Roboto", sans-serif;
          font-size: 16px;
          font-style: normal;
          font-weight: 600;
          line-height: 40px; 
        }
      }
    }
    
    & .contato {
      min-width: 200px;
    }
    
    & .endereco-contato {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      
      font-size: 14px;
      font-weight: 300;
      line-height: 23px;
      
      & .contato-item p:first-child,
      .tel-email p:nth-child(-n+2) {
        font-weight: 600;
      }
      
      .tel-email {
        font-size: 16px;
        
        p:last-child {
          margin-top: 16px;
        }
      }
    }
    
    & .call-to-action-footer p {
      min-width: 196px;
      font-size: 19px;
      font-weight: 300;
      line-height: 28px;
    }
    
    * .kronoos-btn {
      font-weight: 400;
    }
  }
  
  .contato-item {
    margin-bottom: 14px;
  }
  
  
  .especialidades {
    margin-bottom: 46px;
  }
  
  .solicite-btn {
    padding: 12px 30px;
    color: white;
    width: 200px;
    height: 42px;
    background-image: linear-gradient(#167D1F, #007038, #006633);
    border-radius: 7px;
  }
  
  .cnpj-redes {
    border-top: 1px solid #FFFFFF1A;
    
    & > div:first-child {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
      margin: auto;
      padding: 44px 24px 65px 24px;
      max-width: 1280px;  
    }
    
  }
  
  .cnpj {
    min-width: 224px;
    font-size: 11px;
    font-weight: 300;
    opacity: 0.5;
  }
  
  .redes-container {
    display: flex;
    gap: 16px;
  }
  
  .rede-social,
  .rede-social a,
  .rede-social a svg {
    width: 22px;
    height: 22px;
  }
  
  .whatsapp {
    font-weight: bold;
    letter-spacing: -0.34px;
    font-size: 23px;
    position: fixed;
    bottom: 12%;
    right: 2%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007038;
    border-radius: 100%;
    
    & a {
      height: 25px;
    }
    
    & svg {
      width: 25px;
      height: 25px;
      color: white;
    }
  }
  
  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;
  }
}


section#depoimentos {
  .track-item {
    margin: 0 14px;
    padding: 32px 30px;
    /* max-width: 375px;
    max-height: 277px; */
    
    border-radius: 5px;
    border: 1px solid #F0F0F0;
    box-shadow: 20px 10px 20px 0px rgba(0, 0, 0, 0.05);
    background-color: white;
    
    & .avaliacao {
      height: 24px;
    }
    
    & p {
      margin: 16px 0;
      color: #3A3A3A;
      font-size: 13px;
      font-weight: 300;
      line-height: 22px;
      letter-spacing: -0.26px;
    }
    
    & .pessoa-container {
      display: flex;
      gap: 12px;
      padding: 12px 0;
      
      border-top: 1px solid #96969680;
      
      & img {
        width: 35px;
        height: 35px;
        border-radius: 100%;
        border: 2px solid white;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
      }
      
      & .pessoa-info {
        
        & p {
          margin: 0;
        }
        
        & :first-child {
          font-size: 17px;
          font-weight: 600;
          color: #3A3A3A;
        }
        
        & :last-child {
          font-size: 10px;
          font-weight: 300;
          color: #3A3A3A;
        }
      }
    }
  }
}

/* FIM KRONOS */