html {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  padding-top: 90px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
}

.content {
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 0 20px;
}
  
header {
  display: flex;
  position: fixed;
  width: calc(100% - 20px);
  height: 70px;
  left: 0;
  top: 0;
  background-color: #222;
  padding: 15px 10px;
  z-index: 30;
  -webkit-box-shadow: 0px 10px 14px -5px rgba(0, 0, 0, 0.9);
  -moz-box-shadow: 0px 10px 14px -5px rgba(0, 0, 0, 0.9);
  box-shadow: 0px 10px 14px -5px rgba(0, 0, 0, 0.9);
}
  header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;    
    flex-wrap: nowrap;
  }
    header .container .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 250px;
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 22px;
      color: #FFF;
    }
    header .container .logo:hover {
      text-decoration: none;
    }
      header .container .logo small {
        display: block;
        font-size: 1rem;
        font-weight: 300;
      }
    header .container .menu {
      display: flex;
      align-items: center;
      gap: 24px;
      max-width: 536px;
    }
      header .container .menu button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        font-family: Montserrat, sans-serif;
        font-size: .9rem;
        font-weight: 600;
        border: 0;
        background-color: transparent;
        color: #FFF;
        cursor: pointer;
      }
        header .container .menu button:hover,
        header .container .menu button.active {
          text-decoration: none;
          color: #E09F3B;
        }

        header .container .menu button span {
          display: block;
          width: 30px;
          height: 4px;
          border-radius: 4px;
          background-color: #E09F3B;
          opacity: 0;
        }

        header .container .menu button:hover span,
        header .container .menu button.active span {
          display: block;
          width: 30px;
          height: 4px;
          border-radius: 4px;
          background-color: #E09F3B;
          opacity: 1;
        }
    header .container .social {
      display: flex;
      justify-content: flex-end;
      gap: 20px;
      width: 100%;
      max-width: 250px;
    }
      header .container .social a {
        font-size: 1.4rem;
        font-weight: 600;
        color: #FFF;
      }
    header .container .menu-btn {
      display: none;
      background-color: transparent;
      border: 0;
      font-size: 2rem;
      font-weight: 600;
      color: #FFF;
      cursor: pointer;
    }

.intro {
  display: block;
  min-height: 100dvh;
  position: relative;
  background: url(../img/justica.jpg) no-repeat center top fixed;
  background-size: cover;
  /* background: rgb(48,49,53);
  background: radial-gradient(circle, rgba(48,49,53,1) 5%, rgba(0,0,0,1) 100%); */
}

.intro .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: rgb(48,49,53);
  background: radial-gradient(circle, rgba(48,49,53,1) 5%, rgba(0,0,0,1) 100%);
}

.intro .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  min-height: 100dvh;
  padding: 0 20px;
}

.intro .container .intro-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
}
.intro .container .intro-content h1 {
  font-family: Montserrat, sans-serif;
  font-size: 2.8rem;
  line-height: 46px;
  font-weight: 700;
  color: #ffca28;
  margin-bottom: 0;

  @media screen and (max-width: 768px) {
    font-size: 1.7rem;
    line-height: 36px;
    margin-top: 0;
  }
}

.intro .container .intro-content p {
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 26px;
  font-weight: 400;
  color: #FFF;
  margin-bottom: 0;
}

.intro .container .intro-content a {
  border-color: #ffca28;
  background-color: #ffca28;
  color: #000;
  min-width: 240px;
  width: 240px;
  height: 50px;
  line-height: 50px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0px 4px 6px -2px rgba(255, 255, 255, 0.03), 0px 12px 16px -4px rgba(255, 255, 255, 0.08);
  margin-top: 30px;
}

.capa{
  display: flex;
  align-items: center;
  position: relative;
  min-height: 100vh;
  background: rgb(48,49,53);
  background: radial-gradient(circle, rgba(48,49,53,1) 5%, rgba(0,0,0,1) 100%);    
}
  .capa .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
    .capa .container div {
      width: calc(50% - 50px);
      min-width: 320px;
      padding: 0 30px;
    }

      .capa .container div h2 {
        color: #E09F3B;
        font-family: Montserrat, sans-serif;
        font-size: 2rem;
        font-weight: 700;
      }

      .capa .container div p {
        color: #FFF;
        font-family: Montserrat, sans-serif;
        font-size: 1rem;
        font-weight: 400;
        line-height: 24px;
        margin-bottom: 40px;
      }

      .capa .container div h3 {
        display: block;
        width: 100%;
        color: #FFF;
        font-family: 'Alex Brush', cursive;
        font-size: 2rem;
        font-weight: 300;
        line-height: 24px;
        text-align: center;
        margin: 0;
      }

      .capa .container div span {
        display: block;
        width: 100%;
        color: #FFF;
        font-family: Montserrat, sans-serif;
        font-size: 1rem;
        font-weight: 600;
        line-height: 24px;
        text-align: center;
      }
      
      .capa .container div a {
        border-color: #ffca28;
        background-color: #ffca28;
        color: #000;
        min-width: 250px;
        height: 50px;
        line-height: 50px;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 600;
        box-shadow: 0px 4px 6px -2px rgba(255, 255, 255, 0.03), 0px 12px 16px -4px rgba(255, 255, 255, 0.08);
      }
      .capa .container div picture {
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .capa .container div img {
        width: 100%;
        max-width: 400px;
        height: auto;
      }

.services-section {
  padding: 4rem 0;
  min-height: 100vh;
  background: rgb(48,49,53);
  background: radial-gradient(circle, rgba(48,49,53,1) 5%, rgba(0,0,0,1) 100%);    
}
.services-section .container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.services-section .container .section-title {
  text-align: center;
  color: #E09F3B;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.services-section .container .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.services-section .container .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #333;
  border: solid 1px #E09F3B;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.services-section .container .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.services-section .container .service-title {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: .5rem 0;
}

.services-section .container .saiba-mais-btn {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #E09F3B;
  color: #E09F3B;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services-section .container .saiba-mais-btn:hover {
  background-color: #E09F3B;
  color: #fff;
}

.faq{
  display: flex;
  align-items: center;
  position: relative;
  min-height: 100vh;
  padding: 60px 0;
  background: rgb(48,49,53);
  background: radial-gradient(circle, rgba(48,49,53,1) 5%, rgba(0,0,0,1) 100%);   
}
  .faq .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
    .faq .container > div {
      padding: 0 40px;
    }
      .faq .container .info {
        width: 40%;
        min-width: 320px;
      }
      .faq .container .questions {
        width: calc(100% - 40% - 240px);
        min-width: 320px;
      }

      .faq .container div h2 {
        color: #E09F3B;
        font-family: Montserrat, sans-serif;
        font-size: 2rem;
        font-weight: 700;
      }

      .faq .container div p {
        color: #FFF;
        font-family: Montserrat, sans-serif;
        font-size: 1rem;
        font-weight: 300;
        line-height: 24px;
      }

      .faq .container div picture {
        display: flex;
        margin: 20px 0;
        background: rgb(244,232,137);
        background: linear-gradient(45deg, rgba(244,232,137,1) 5%, rgba(153,119,66,1) 100%);
        padding: 15px;
        border-radius: 8px;

      }
        .faq .container div picture img {
          
        }

      .faq .container div a {
        border-color: #ffca28;
        background-color: #ffca28;
        color: #000;
        min-width: 280px;
        height: 50px;
        line-height: 50px;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 600;
        box-shadow: 0px 4px 6px -2px rgba(255, 255, 255, 0.03), 0px 12px 16px -4px rgba(255, 255, 255, 0.08);

      }

      details {
        position: relative;
        width: 100%;
        margin: 0 auto 10px;
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 4px;
      }
      details .summary-title {
        user-select: none;
        font-size: 1rem;
        font-weight: 600;
        line-height: normal;
        color: #E09F3B;
      }
      details:hover {
        cursor: pointer;
      }
      details .summary-content {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        cursor: default;
        padding: 0 20px 20px;
        font-weight: 300;
        line-height: 1.5;
      }
      details .summary-content p {
        font-size: 1rem;
        font-weight: 400;
        line-height: 135%;
        text-align: left;
        color: #575757;
        line-height: normal;
        margin-top: 10px;
      }
      details .summary-content p a {
        font-size: 1rem;
        font-weight: 400;
        text-decoration: underline;
        color: #000;
      }
      details .summary-content p strong {
        font-size: 1rem;
        font-weight: 600;
      }
      details .summary-content .myBusiness {
        border-color: #ffca28;
        background-color: #ffca28;
        color: #000;
        min-width: 270px;
        height: 40px;
        line-height: 40px;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 600;
        justify-content: center;
        margin-top: 20px;
      }
      details summary {
        list-style: none;
        padding: 20px 40px 20px 20px;
      }
      details summary:focus {
        outline: none;
      }
      details summary:hover .summary-chevron-up svg {
        opacity: 1;
      }
      details .summary-chevron-up svg {
        opacity: 0.5;
      }
      details .summary-chevron-up, details .summary-chevron-down {
        pointer-events: none;
        position: absolute;
        top: 22px;
        right: 10px;
        background: #111113;
        border-radius: 50%;
      }
      details .summary-chevron-up svg, details .summary-chevron-down svg {
        display: block;
        color: #fff;
      }
      details summary::-webkit-details-marker {
        display: none;
      }

    .faq .container div picture {
      
    }
      .faq .container div picture img {
        width: 100%;
        height: auto;
      }

.consumidor{
  display: flex;
  align-items: center;
  position: relative;
  background: #000;
  padding: 60px 0;
}
  .consumidor .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
    .consumidor .container div {
      width: calc(50% - 200px);
      min-width: 320px;
      padding: 0 80px;
    }
      .consumidor .container div h2 {
        color: #E09F3B;
        font-family: Montserrat, sans-serif;
        font-size: 2rem;
        font-weight: 700;
      }
      .consumidor .container div p {
        color: #FFF;
        font-family: Montserrat, sans-serif;
        font-size: 1rem;
        font-weight: 300;
        line-height: 24px;
      }
        .consumidor .container div p strong {
          font-weight: 400;
        }
      .consumidor .container div ul {
        list-style: none;
        margin: 0;
        padding: 0;
      }
        .consumidor .container div ul li {
          display: flex;
          align-items: center;
          gap: 10px;
          color: #FFF;
          font-family: Montserrat, sans-serif;
          font-size: 1.2rem;
          font-weight: 600;
          line-height: 24px;
          margin: 10px 0;
        }
          .consumidor .container div ul li::before {
            content: "";
            display: block;
            width: 15px;
            height: 15px;
            background-color: #E09F3B;
            border-radius: 50%;
            text-align: center;
            color: #000;
            font-weight: 600;
          }

      .consumidor .container div a {
        border-color: #ffca28;
        background-color: #ffca28;
        color: #000;
        min-width: 280px;
        height: 50px;
        line-height: 50px;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 600;
        box-shadow: 0px 4px 6px -2px rgba(255, 255, 255, 0.03), 0px 12px 16px -4px rgba(255, 255, 255, 0.08);
        margin-top: 20px;

      }

.etapas{
  display: flex;
  position: relative;
  min-height: 100vh;
  padding: 60px 0;
  background: rgb(48,49,53);
  background: radial-gradient(circle, rgba(48,49,53,1) 5%, rgba(0,0,0,1) 100%);   
}
  .etapas .container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
  }
    .etapas .container .info {
      display: block;
      position: relative;
      max-width: 500px;
      width: 100%;
      margin: 0 auto;
    }
      .etapas .container .info h2 {
          color: #E09F3B;
          font-family: Montserrat, sans-serif;
          font-size: 2rem;
          font-weight: 700;
          text-align: center;
          margin-bottom: 10px;
        }

        .etapas .container .info p {
          color: #FFF;
          font-family: Montserrat, sans-serif;
          font-size: 1rem;
          font-weight: 300;
          line-height: 24px;
          text-align: center;
        }

        .etapas .container .info a {
          display: block;
          position: relative;
          border-color: #ffca28;
          background-color: #ffca28;
          color: #000;
          max-width: 280px;
          height: 50px;
          margin: 10px auto;
          line-height: 50px;
          border-radius: 30px;
          font-size: 1rem;
          font-weight: 600;
          box-shadow: 0px 4px 6px -2px rgba(255, 255, 255, 0.03), 0px 12px 16px -4px rgba(255, 255, 255, 0.08);

        }

    .etapas .container .boxEtapa {
      list-style: none;
      padding: 0;
      display: block;
      position: relative;
      max-width: 700px;
      width: 100%;
      margin: 0 auto;
    }
      .etapas .container .boxEtapa li {
        display: flex;
        justify-content: baseline;
        gap: 20px;
        width: 100%;
        margin-bottom: 20px;
      }
        .etapas .container .boxEtapa li .infoEtapa {
          padding: 10px;
          background-color: rgba(0, 0, 0, 0.1);
        }
          .etapas .container .boxEtapa li .infoEtapa h3 {
            margin: 0 0 10px;
            color: #E09F3B;
          }
          .etapas .container .boxEtapa li .infoEtapa p {
            color: #FFF;
            font-family: Montserrat, sans-serif;
            font-size: 1rem;
            font-weight: 300;
            line-height: 24px;
          }
      .etapas .container .boxEtapa .number {
        display: flex;
        flex-direction: column;
        gap: 5px;
      }
        .etapas .container .boxEtapa .number span {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 50px;
          height: 50px;
          background-color: #E09F3B;
          border-radius: 50%;
          font-size: 1.2rem;
          font-weight: 600;
        }
        .etapas .container .boxEtapa .number small {
          font-size: 0.875rem;
          font-weight: 600;
          color: #FFF;
        }

footer {
  display: flex;
  flex-direction: column;
  background-color: #E09F3B;
  color: #000;
  padding: 10px 0 0;
}

  footer .container {
    display: flex;
    flex-direction: row;
  }

    footer .container .descriptionUser {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 30%;
      border-right: solid 2px #222;
    }
      footer .container .descriptionUser h2 {
        margin: 0;
      }

    footer .container .boxContact {
      display: flex;
      width: 70%;
    }
      footer .container .boxContact h2 {
        font-size: 1rem;
      }
      footer .container .boxContact .contactUs,
      footer .container .boxContact .location,
      footer .container .boxContact .social {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
      }
      footer .container .boxContact .contactUs {
        width: 40%;
      }
      footer .container .boxContact .location {
        width: 40%;
      }
      footer .container .boxContact .social {
        width: 20%;
      }
        footer .container .boxContact .contactUs a,
        footer .container .boxContact .location a {
          font-size: 0.875rem;
        }

        footer .container .boxContact .social nav {
          display: flex;
          justify-content: space-between;
        }
        footer .container .boxContact .social a {
          font-size: 1.3rem;
          width: 50%;
        }

    .copyright {
      background-color: #222222;
      padding: 10px;
      margin-top: 10px;
      
    }
      .copyright p {
        font-size: 11px;
        text-align: center;
        color: #FFF;
        margin: 2px 0;
      }
        .copyright p a {
          font-size: 12px;
          color: #E09F3B;
        }



/************************ BOTÃO WHATSAPP *************************/
.whatsapp_consultant {
  position: fixed;
  display: block;
  text-align: center;
  width: 70px;
  height: 70px;
  bottom: 100px;
  right: 15px;
  border-radius: 50%;
  background-color: #00c853;
  z-index: 3;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.6, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.6, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.6, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.6, 0, 0, 1);
}
.whatsapp_consultant:hover {
  text-decoration: none;
}
.whatsapp_consultant:hover span {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  right: 80px;
  transition: all 0.5s ease;
  margin-top: -40px;
  border-radius: 4px;
  line-height: 15px;
  padding: 5px;
  opacity: 1;
}
.whatsapp_consultant svg {
  width: 40px;
  margin-top: 12px;
}
.whatsapp_consultant span {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  right: 80px;
  transition: all 0.5s ease;
  margin-top: -40px;
  border-radius: 4px;
  line-height: 15px;
  padding: 5px;
  opacity: 0;
}
.scroll-top {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 40px;
  right: 30px;
  background-color: #FFCA28;
  border-radius: 50%;
  z-index: 10;
  text-decoration: none !important;
  box-shadow: 0 1px 2px rgba(0,0,0,.16);
}
.scroll-top svg {
  width: 12px;
  height: 12px;
}
/**************************** BOTÃO COM EFEITO *****************************/
.effect {
  text-align: center;
  display: inline-block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}
.effect:hover {
  text-decoration: none;  
}
.effect.effect-1 {
  transition: all 0.2s linear 0s;
}
.effect.effect-1:before {
  content: "\f232";
  font-family: "Font Awesome 6 Brands";
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: -40px;
  width: 40px;
  height: 100%;
  transition: all 0.3s linear 0s;
  text-align: center;
}
.effect.effect-1:hover {
  text-indent: -30px;
  transition: all 0.2s linear 0s;
}
.effect.effect-1:hover:before {
  right: 0;
  text-indent: 0px;
}





.video .video-cover {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  background: url(../img/bg-video.webp) no-repeat center center;
  background-size: cover;
  width: 80%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
}


.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #FFCA28;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #FFCA28;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: darken(#FFCA28, 10%);
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #000;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
  }
  100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
  }
}



.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0, .9);
  opacity: 0;
  transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  transition: all 200ms;
}

.video-overlay-close:hover {
  color: #FFCA28;
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* width: 90%; */
  /* height: auto; */
}