/* .banners,
.banners .item {
  height: clamp(400px, 36.45833vw, 700px);
} */

#hero {
  min-height: 758px;
  width: 100%;

  background-repeat: no-repeat;
  background-size: cover;

  background-position: 25% 0%;
}

@media (max-width: 562px) {
  #hero {
    min-height: 250px;
    background-position: 35% 0%;
  }
}

.sec_title {
  color: #101828;
  text-align: center;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 8px;
}

.sec_title b {
  color: #014a22;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

.sec_subtitle {
  color: #4a5565;
  text-align: center;
  font-family: Arial;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;

  width: 432px;
  max-width: 100%;

  margin: 0 auto;
}

.sec_divider {
  margin: 26px 0;
  width: 100%;
  height: 1px;
  background: #cdcdcd;
}

#produtos {
  padding: 100px 0;
}

#produtos .categories .category > * {
  transition: all ease 350ms;
}

#produtos .categories .category .category_head {
  display: flex;
  align-items: center;

  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

#produtos .categories .category .category_head .icon {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 32px;
  height: 32px;
  padding: 8px;

  border-radius: 8px;
  background: #2b7fff;
  box-shadow: 0 5px 7.5px -1.5px rgba(0, 0, 0, 0.1),
    0 2px 3px -2px rgba(0, 0, 0, 0.1);

  margin-right: 10px;
}

#produtos .categories .category .category_head .icon .title {
  color: #101828;
  font-family: Arial;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

#produtos .categories .category.active .category_head {
  background-color: #2b7fff30;
}

#produtos .categories .category.active .category_head .title {
  color: #2b7fff;
}

#produtos .categories .category .category_items {
  padding-left: 35px;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  height: 0px;
  overflow: hidden;
}

#produtos .categories .category.active .category_items {
  padding-bottom: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  height: auto;

  border-bottom: 1px solid #cdcdcd;
}

#produtos .categories .category .category_items .category_item::after {
  content: "";
  position: absolute;
  left: 0;

  width: 8px;
  height: 8px;
  background: #2b7fff;
  border-radius: 50%;
}

#produtos .categories .category .category_items .category_item {
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;

  padding-left: 15px;
}

#produtos .products {
  display: flex;
}

#produtos .products .product {
  margin-right: 10px;

  border-radius: 10px;
  border: 1px solid #dbdbdb;
  background: #fff;
}

#produtos .products .product .product_img {
  width: 100%;
  height: 338px;
  border-radius: 10px;
  overflow: hidden;
}

#produtos .products .product .product_img img {
  width: 80%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

#produtos .products .product .product_desc {
  padding: 36px 24px;
}

#produtos .products .product .product_desc .title {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

#produtos .products .product .product_desc .subtitle {
  color: #4a5565;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* About css */

#sobre {
  background-color: #f0f0f0;
  padding: 100px 0;
}

#sobre img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  border-radius: 20px;
}

#sobre .tag {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 33554400px;
  background: #ceffd5;

  color: #014a22;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;

  width: fit-content;

  margin-bottom: 26px;
}

#sobre .title {
  color: #101828;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;

  margin-bottom: 26px;
}

#sobre .title b {
  color: #014a22;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

#sobre .tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

#sobre .tabs .tab {
  width: calc(100% / 3);
  padding: 15px 20px;

  color: #4a5565;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  cursor: pointer;

  border-bottom: 1px solid #cdcdcd;
}

#sobre .tabs .tab.active {
  background-color: #014a22;
  color: #fff;
  border-bottom-color: #014a22;
}

#sobre .tab-content {
  color: #4a5565;
  font-family: Arial;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.25px;

  border-bottom: 1px solid #cdcdcd;
}

/* End of About css */

/* Certs */
#certs {
  padding-top: 100px;
  padding-bottom: 200px;
  background-size: cover;
  background-position: center;
}

#certs .cert {
  margin-bottom: 18px;

  display: flex;
  padding: 24px 32px;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  flex: 1 0 0;

  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  height: 100%;
}

#certs .cert .cert_icon {
  display: flex;
  width: 64px;
  height: 64px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: #cbfbf1;
}

#certs .cert .cert_title {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

#certs .cert .cert_subtitle {
  color: #fff;
  text-align: center;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.75px; /* 162.5% */
}

#certs a {
  display: flex;
  padding: 15px 20px;
  align-items: flex-end;
  gap: 14px;
  border-radius: 8px;
  background: #0e532d;

  color: #fff;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;

  text-decoration: none;
  margin: 0 auto;
  width: fit-content;

  margin-top: 10px;
}

/* End of Certs */

/* Solucoes */
#solucoes .sec_subtitle {
  width: 554px;
  margin-bottom: 64px;
}

#solucoes .head {
  margin-top: -150px;
  display: flex;
  padding: 48px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 24px;
  background: linear-gradient(90deg, #006928 0%, #00872d 100%);

  margin-bottom: 100px;
}

#solucoes .head .head_title {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}

#solucoes .head .head_subtitle {
  color: #cbfbf1;
  text-align: center;
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  width: 547px;
  max-width: 100%;
}

#solucoes .setor {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  flex: 1 0 0;

  border-radius: 14px;
  border: 1px solid #cdcdcd;
  background: #fff;

  margin-bottom: 32px;
}

#solucoes .setor .setor_icon {
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;

  border-radius: 16px;
  background: #ceffd5;

  margin-bottom: 20px;
}

#solucoes .setor .setor_title {
  color: #101828;
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;

  margin-bottom: 20px;
}

#solucoes .setor .setor_desc {
  color: #4a5565;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

/* End of Solucoes */

/* Qualidade */
#qualidade {
  padding-top: 100px;
}

#qualidade .qualidade_content {
  display: flex;
  padding: 42px;
  flex-direction: column;
  align-items: center;

  border-radius: 24px;
  background: #f0f0f0;
}

@media (max-width: 562px) {
  #qualidade .qualidade_content {
    padding: 12px;
  }
}

#qualidade .qualidade_content .title {
  color: #101828;
  text-align: center;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
}

#qualidade .qualidade_content .subtitle {
  color: #4a5565;
  text-align: center;
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;

  margin-bottom: 50px;
}
#qualidade .qualidade_content .qualidade_item {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;

  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  height: 100%;
}

#qualidade .qualidade_content .qualidade_item .qualidade_icon {
  display: flex;
  width: 64px;
  height: 64px;
  padding: 16px;
  justify-content: center;
  align-items: center;

  border-radius: 16px;
  background: #cbfbf1;
}
#qualidade .qualidade_content .qualidade_item .qualidade_title {
  color: #101828;
  text-align: center;
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
#qualidade .qualidade_content .qualidade_item .qualidade_desc {
  color: #4a5565;
  text-align: center;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
/* End of Qualidade */

/* Suporte */
#suporte {
  padding: 100px 0;
}

#suporte video {
  width: 100%;
  height: 500px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

#suporte .suporte_title {
  color: #101828;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;

  margin-bottom: 17px;
}

#suporte .suporte_title b {
  color: #014a22;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}

#suporte .suporte_desc {
  color: #4a5565;
  font-family: Arial;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.25px;
  width: 512px;
  max-width: 100%;

  margin-bottom: 22px;
}

#suporte .suporte_item {
  position: relative;

  display: flex;
  align-items: center;

  color: #4a5565;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;

  padding-left: 15px;
}

#suporte .suporte_item::after {
  content: "";
  position: absolute;
  left: 0;

  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #014a22;
}

#suporte a {
  margin-top: 22px;
  width: fit-content;
  text-decoration: none;

  display: flex;
  padding: 15px 20px;
  align-items: flex-end;
  gap: 14px;

  border-radius: 8px;
  background: #014a22;

  color: #fff;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

/* End of Suporte */

/* Form */
#contato {
  padding: 60px 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
}
#contato .sec_title {
  width: 350px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
}

#contato .sec_subtitle {
  max-width: 100%;
  margin-bottom: 60px;
  width: 490px;
}

#contato .contacts .title {
  color: #101828;
  font-family: Arial;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;

  margin-bottom: 24px;
}

#contato .contacts .contact_item {
  display: flex;
  margin-bottom: 16px;
}

#contato .contacts .contact_item .contact_icon {
  display: flex;
  width: 48px;
  min-width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;

  border-radius: 14px;
  background: #cbfbf1;
  margin-right: 16px;
}

#contato .contacts .contact_item .contact_title {
  color: #6a7282;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

#contato .contacts .contact_item .contact_desc {
  color: #101828;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

#contato .unidades .title {
  color: #101828;
  font-family: Arial;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;

  margin-top: 34px;
  margin-bottom: 24px;
}

#contato .unidades .unidade {
  margin-bottom: 16px;

  display: flex;
}

#contato .unidades .unidade .unidade_icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-right: 16px;
}

#contato .unidades .unidade .unidade_title {
  color: #101828;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

#contato .unidades .unidade .unidade_desc {
  color: #4a5565;
  font-family: Arial;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

#contato form {
  display: flex;
  flex-direction: column;
  padding: 32px;

  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 562px) {
  #contato form {
    padding: 12px;
  }
}

#contato form .form_title {
  color: #101828;
  font-family: Arial;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 24px;
}

#contato form .form_input {
  width: 100%;
  margin-bottom: 16px;
}

#contato form .form_input .form_input_title {
  color: #364153;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 5px;
}

#contato form .form_input input,
#contato form .form_input select,
#contato form .form_input textarea {
  padding: 16px 12px;

  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: #f3f3f5;

  color: #717182;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  outline: none;
  width: 100%;
}

#contato form .form_input textarea {
  resize: none;
  height: 100px;
  margin-bottom: 16px;
}

#contato form .form_btns {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

#contato form .form_btns input[type="submit"],
#contato form .form_btns button,
#contato form .form_btns a {
  display: flex;
  height: 48px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;

  border-radius: 8px;
  background: #014a22;
  border: 1px solid #014a22;

  color: #fff;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;

  width: 100%;
}

#contato form .form_btns button.secondary,
#contato form .form_btns a.secondary {
  background: transparent;
  color: #014a22;
}

/* End of Form */

/* Footer */
footer {
  background: #014a22;
  padding: 64px 0;
}

footer .footer_desc {
  color: #d1d5dc;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-top: 26px;
  width: 397px;
  max-width: 100%;
}

footer .socials {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
}
footer .socials .social {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;

  border-radius: 10px;
  background: #0e532d;
}

footer h1 {
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 18px;
}

footer .r1 a,
footer .r2 a {
  color: #d1d5dc;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  margin-bottom: 12px;

  display: flex;
  align-items: flex-start;
  gap: 5px;
}

footer .r3,
footer .r2 {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 30px;
  margin-top: 30px;
}

footer .r3 {
  padding-top: 10px;
}

footer .r3 h2 {
  color: #fff;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

footer .r3 div:last-child h2 {
  text-align: end;
}

/* End of Footer */
