@charset "UTF-8";
/*Google font*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  /* Variaveis globais: trocando essas cores e medidas voce reaproveita o template em outro cliente. */
  --bg: #000000;
  --btn: #198754;
}
* {
  margin: 0;
  padding: 0;
  outline: none;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
a {
  text-decoration: none !important;
}
.btn-success {
  border-radius: 50px;
  font-weight: 600;
  padding: 15px 36px;
  box-shadow: 0 14px 24px rgba(1, 65, 9, 0.22);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.btn-success:hover {
  transform: translateY(-2px);
}
.btn-light {
  color: var(--btn);
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 36px;
  cursor: pointer;
}
.btn-light:hover {
  color: var(--btn);
}
/*Título e Subtítulo*/
.section-title {
  margin-bottom: 60px;
  text-align: center;
}
.section-title .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: inline-block;
  text-transform: uppercase;
  margin: 0 0 15px;
  position: relative;
  padding: 5px 10px;
  z-index: 1;
}
.section-title .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--btn);
  z-index: -1;
  border-radius: 5px;
  opacity: 0.1;
}
.section-title .subtitle {
  font-size: 30px;
  line-height: 38px;
  color: #222222;
  font-weight: 700;
  margin: 0;
}
/*Header*/
.header {
  background: rgba(30, 29, 28, 0.7);
  backdrop-filter: blur(14px);
}
.header .navbar {
  padding: 0;
}
.header .navbar.navbar-light .navbar-brand img {
  height: 42px;
  width: auto;
}
.header .navbar #collapsibleNavbar .nav-item .nav-link {
  color: #ffffff;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  font-weight: 600;
  padding: 20px 15px 20px;
  line-height: 26px;
  opacity: 0.6;
}
.header .navbar #collapsibleNavbar .nav-item .nav-link.active {
  opacity: 1;
  color: #aaff00;
}
.header .navbar-toggler {
  border: none;
  box-shadow: none !important;
}
/*Início*/
.inicio {
  background-image: url(../assets/img/bg-01.png);
  padding: 250px 0 200px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inicio::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 112px;
  background-image: url(../assets/img/shape-bg.png);
  background-size: 100% 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: -1;
}
.inicio .hero-content {
  display: grid;
}
.inicio .hero-content h1 {
  font-size: 50px;
  color: #ffffff;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
  margin-top: -50px;
}
.inicio .hero-content p {
  color: #ffffff;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 40px;
  line-height: 28px;
  font-weight: 400;
}
.inicio .hero-produto img {
  max-width: 400px;
  width: 100%;
  position: relative;
  left: 150px;
  top: -50px;
  animation: productani01 5s linear infinite;
}
@keyframes productani01 {
  0%,
  100% {
    transform: translateY(15px);
  }
  50% {
    transform: translateY(-15px);
  }
}
.inicio .bg-shapes div {
  position: absolute;
  opacity: 0.08;
}
.inicio .bg-shapes div:nth-child(1) {
  height: 100px;
  width: 100px;
  top: 11%;
  left: 20%;
  background-color: #ffffff;
  border-radius: 50%;
  animation: shapeani01 5s linear infinite;
}
.inicio .bg-shapes div:nth-child(2) {
  height: 80px;
  width: 80px;
  top: 60%;
  left: 60%;
  background-color: transparent;
  border-radius: 50%;
  border: 5px solid #ffffff;
  border-bottom: 5px solid transparent;
  animation: shapeani02 7s linear infinite;
}
.inicio .bg-shapes div:nth-child(3) {
  height: 60px;
  width: 60px;
  top: 10%;
  left: 90%;
  background-color: transparent;
  border-radius: 50%;
  border: 5px solid #ffffff;
  border-left: 5px solid transparent;
  border-bottom: 5px solid transparent;
  animation: shapeani02 7s linear infinite;
}
.inicio .bg-shapes div:nth-child(4) {
  height: 200px;
  width: 200px;
  top: 40%;
  left: calc(100% - 100px);
  background-color: #ffffff;
  border-radius: 50%;
  animation: shapeani03 10s linear infinite;
}
.inicio .bg-shapes div:nth-child(5) {
  height: 100px;
  width: 100px;
  top: 40%;
  left: calc(0% - 50px);
  background-color: transparent;
  border: 5px solid #ffffff;
  animation: shapeani02 8s linear infinite;
}
@keyframes shapeani01 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(50px);
  }
}
@keyframes shapeani02 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shapeani03 {
  0%,
  100% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
}
/*Benefícios*/
.beneficio {
  background-color: #ffffff;
  padding: 80px 0 80px;
}
.beneficio .beneficio-img {
  margin: auto;
}
.beneficio .beneficio-img img {
  max-width: 350px;
  width: 100%;
}
.beneficio .btn-success {
  justify-self: start;
}
.beneficio .section-title {
  text-align: left;
  margin-bottom: 30px;
}
.beneficio .beneficio-content {
  display: grid;
}
.beneficio .beneficio-content p {
  font-size: 16px;
  line-height: 26px;
  color: #555;
  margin: 0;
  font-weight: 400;
}
.beneficio .beneficio-content ul {
  display: block;
  margin: 30px 0 0;
}
.beneficio .beneficio-content ul li {
  font-size: 16px;
  line-height: 26px;
  color: #555;
  margin-bottom: 15px;
  margin-bottom: 15px;
  font-weight: 400;
  position: relative;
  padding-left: 32px;
}
.beneficio .beneficio-content ul li i {
  color: var(--btn);
  height: 25px;
  width: 25px;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  line-height: 25px;
  position: absolute;
  left: 0;
  top: 0;
}
/*Utilização*/
.ultilizacao {
  padding: 80px 0 80px;
}
.ultilizacao .features-item {
  box-shadow: 0 0 10px #dddde3;
  padding: 40px 30px;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 5px;
  text-align: center;
  transition: all 0.5s ease;
  width: 100%;
}
.ultilizacao .features-item:hover {
  background-color: #555;
  transform: translateY(-10px);
}
.ultilizacao .features-item .icon {
  margin-bottom: 25px;
}
.ultilizacao .features-item .icon i {
  color: var(--btn);
  font-size: 40px;
  display: inline-block;
  transition: all 0.5s ease;
}
.ultilizacao .features-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #222222;
  margin: 0 0 15px;
  line-height: 30px;
  transition: all 0.5s ease;
}
.ultilizacao .features-item p {
  font-size: 16px;
  line-height: 26px;
  color: #555;
  margin: 0;
  transition: all 0.5s ease;
  font-weight: 400;
}
.ultilizacao .features-item:hover .icon i,
.ultilizacao .features-item:hover h3,
.ultilizacao .features-item:hover p {
  color: #ffffff;
}
/*Produtos*/
.produto {
  padding: 80px 0 80px;
  background-color: #ffffff;
}
.produto .produto-item {
  box-shadow: 0 0 10px #dddde3;
  margin: 15px 0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
}
.produto .produto-img {
  border-bottom: 1px solid #eee;
  position: relative;
}
.produto .produto-img .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 1;
}
.produto .produto-item:hover .produto-img .overlay {
  opacity: 1;
}
.produto .produto-img .overlay .btn {
  margin: auto;
  transform: translateY(100px);
  transition: all 0.5s ease;
}
.produto .produto-item:hover .produto-img .overlay .btn {
  transform: translateY(0px);
}
.produto .produto-img .overlay a {
  margin: auto;
}
.produto .produto-img img {
  width: 100%;
  display: block;
}
.produto .produto-content {
  padding: 0 30px;
  text-align: center;
}
.produto .produto-content .preco-produto {
  margin: 15px 0 5px;
}
.produto .produto-content .preco-produto .preco {
  color: var(--btn);
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  margin: 0 5px;
}
.produto .produto-content .nome-produto {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  line-height: 26px;
  margin: 0;
  padding-bottom: 20px;
}
.carousel-track {
  --items: 1;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 6px 10px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-slide {
  flex: 0 0 calc((100% - (24px * (var(--items) - 1))) / var(--items));
  min-width: 0;
  scroll-snap-align: start;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.carousel-nav {
  background-color: var(--btn);
  height: 44px;
  width: 44px;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease;
}
.carousel-nav span {
  font-size: 30px;
  line-height: 1;
}
.carousel-nav:hover:not(:disabled) {
  background-color: #13653f;
  transform: translateY(-2px);
}
.carousel-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
/* Depoimentos*/
.depoimentos {
  padding: 80px 0 80px;
  background-image: url("../assets/img/bg-02.png");
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}
.depoimentos::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #222222;
  z-index: 0;
  opacity: 0.6;
}
.depoimentos .container {
  position: relative;
  z-index: 1;
}
.depoimentos .section-title .subtitle,
.depoimentos .section-title .title {
  color: #ffffff;
}
.depoimentos .section-title .title::before {
  background-color: #ffffff;
}
.depoimentos .testi-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 5px;
  height: 100%;
}
.depoimentos .testi-comment p {
  font-size: 16px;
  line-height: 26px;
  color: #555;
  font-weight: 400;
  margin: 0 0 10px;
  font-style: italic;
}
.depoimentos .testi-comment p .fa-quote-left {
  margin-right: 5px;
}
.depoimentos .testi-comment p .fa-quote-right {
  margin-left: 5px;
}
.depoimentos .testi-comment .stars {
  margin: 0 0 20px;
}
.depoimentos .testi-comment .stars li {
  display: inline-block;
  margin: 0 1px;
}
.depoimentos .testi-comment .stars li i {
  font-size: 13px;
  color: #ff9800;
}
.depoimentos .client-info {
  position: relative;
  padding-left: 80px;
  padding-top: 5px;
  min-height: 60px;
}
.depoimentos .client-info img {
  height: 60px;
  width: 60px;
  border: 2px solid transparent;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  border-color: var(--btn);
}
.depoimentos .client-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 26px;
  margin: 0 0 2px;
  color: var(--btn);
}
.depoimentos .client-info p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #555;
}

/*Dúvidas*/
.duvidas {
  padding: 80px 0 80px;
  background-color: #d9f4a4;
}
.duvidas .faq-item {
  margin-bottom: 40px;
  height: 90%;
  padding: 28px 24px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.5);
}
.duvidas .faq-item h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #222222;
  margin: 0 0 10px;
}
.duvidas .faq-item p {
  font-size: 16px;
  line-height: 26px;
  color: #555;
  font-weight: 400;
  margin: 0;
}
.duvidas .support-text {
  margin: 15px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  line-height: 26px;
}
/*Contato*/
.contato {
  background-color: #ffffff;
  padding: 80px 0 80px;
}
.contato .contact-form .form-group {
  margin-bottom: 20px;
  color: #13653f;
}
.contato .alert-feedback {
  border: none;
  border-radius: 18px;
  padding: 18px 22px;
  margin-bottom: 24px;
  box-shadow: 0 18px 40px rgba(25, 135, 84, 0.14);
  animation:
    alertPulseIn 0.55s ease,
    alertGlowFade 2.8s ease 0.55s 1;
}
.contato .alert-feedback.alert-danger {
  box-shadow: 0 18px 40px rgba(220, 53, 69, 0.14);
}
.contato .alert-feedback strong {
  display: block;
}
.contato .contact-form .form-control {
  height: 50px;
  color: #555;
  border: none;
  border-bottom: 2px solid #d9d9d9;
  border-radius: 0px;
  transition: all 0.5s ease;
}
.contato .contact-form .form-control::placeholder {
  color: #b7b7b7;
  opacity: 1;
}
.contato .contact-form .form-control:focus::placeholder {
  color: #ffffff;
}
.contato .contact-form textarea.form-control {
  height: 120px;
}
.contato .contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--btn);
}
.contato .contact-item {
  position: relative;
  padding-left: 65px;
  margin-bottom: 35px;
}
.contato .contact-form {
  padding-right: 14px;
}
.contato .contact-item:last-child {
  margin-bottom: 0;
}
.contato .contact-item .icon {
  height: 50px;
  width: 50px;
  background-color: #f5f5ff;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}
.contato .contact-item .icon i {
  color: var(--btn);
  line-height: 50px;
  font-size: 20px;
}
.contato .contact-item h5 {
  color: var(--btn);
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin: 0 0 2px;
}
.contato .contact-item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #555;
  margin: 0;
}
@keyframes alertPulseIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes alertGlowFade {
  0% {
    box-shadow:
      0 0 0 0 rgba(25, 135, 84, 0.28),
      0 18px 40px rgba(25, 135, 84, 0.16);
  }
  100% {
    box-shadow: 0 18px 40px rgba(25, 135, 84, 0.14);
  }
}
.contato .alert-feedback.alert-danger {
  animation:
    alertPulseIn 0.55s ease,
    alertGlowFadeError 2.8s ease 0.55s 1;
}
@keyframes alertGlowFadeError {
  0% {
    box-shadow:
      0 0 0 0 rgba(220, 53, 69, 0.22),
      0 18px 40px rgba(220, 53, 69, 0.16);
  }
  100% {
    box-shadow: 0 18px 40px rgba(220, 53, 69, 0.14);
  }
}
/* footer Section */
.footer {
  background-color: #393939;
  padding-top: 80px;
  text-align: center;
}
.footer .footer-logo a {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  display: block;
  margin: 0 0 15px;
}
.footer .footer-logo img {
  height: 42px;
  width: auto;
}
.footer .footer-text p {
  font-size: 16px;
  line-height: 26px;
  color: #eee;
  font-weight: 400;
  margin: 0 0 25px;
}
.footer .footer-social-links {
  margin-bottom: 80px;
}
.footer .footer-social-links a {
  display: inline-block;
  text-align: center;
  margin: 0 4px;
}
.footer .footer-social-links a i {
  height: 40px;
  width: 40px;
  border: 1px solid #ffffff;
  display: block;
  color: #ffffff;
  line-height: 38px;
  border-radius: 50%;
  transition: all 0.5s ease;
}
.footer .footer-social-links a:hover i {
  background-color: #ffffff;
  color: #393939;
}
.footer .footer-social-links a:focus-visible i,
.carousel-nav:focus-visible,
.btn-success:focus-visible {
  outline: 3px solid rgba(170, 255, 0, 0.35);
  outline-offset: 3px;
}
.footer .copyright {
  background-color: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 15px;
}
.footer .copyright p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: #eee;
  font-weight: 400;
}
