/barra de Rolagem/
::-webkit-scrollbar-track{background-color: #000;}
::-webkit-scrollbar{width:10px;background-color:#000;}
::-webkit-scrollbar-thumb{background-color:#cda764;}

.titulo-01{color:#cda764; font-size: 60px;}

.frase-01{color:#ffffff;font-size: 40px;line-height: 40px;text-transform:uppercase;letter-spacing: 2px;padding-bottom: 30px;}
.frase-01 strong{color:#cda764;}

.frase-02{color:#ffffff; font-size: 60px; text-transform:uppercase; letter-spacing: 2px;}

.frase-03{color:#000;font-size: 50px; text-transform:uppercase; letter-spacing: -2px; font-weight:bold;}


.bg-gradient-home{background: #E2C379;
background: -webkit-linear-gradient(179deg, rgba(226, 195, 121, 1) 0%, rgba(148, 108, 57, 1) 100%);
background: -moz-linear-gradient(179deg, rgba(226, 195, 121, 1) 0%, rgba(148, 108, 57, 1) 100%);
background: linear-gradient(179deg, rgba(226, 195, 121, 1) 0%, rgba(148, 108, 57, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E2C379", endColorstr="#946C39", GradientType=0); color:#000 !important;}



.porquedede-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: auto;
}

.porquedede-box {
  border: 0.5px solid;
  border-image: linear-gradient(to right, #c89b3c, #f2e3a7) 1;
  padding: 2rem;
  border-radius: 80px;
  position: relative;
  overflow: hidden;
}

.porquedede-icon {
  color: #c89b3c;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.porquedede-title {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
}

.porquedede-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

@media (min-width: 768px) {
  .porquedede-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .porquedede-box {
    flex: 1 1 calc(48% - 1rem);
  }
}


.atendimento-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 20px;
  padding: 1.5rem 2rem;
  border: 0.1px solid;
  border-image: linear-gradient(to right, #c89b3c, #f2e3a7) 1;
  border-radius: 12px;
  /* background-color: #111; */
  max-width: 800px;
}

.atendimento-icon i {
  color: #c89b3c;
  font-size: 2.2rem;
}

.atendimento-content {
  flex: 1;
}

.atendimento-title {
  margin: 0;
  font-size: 1.4rem;
  color: #fff;
}

.atendimento-text {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .atendimento-box {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .atendimento-icon i {
    font-size: 2rem;
  }
}



    .linha-tempo-container {
      display: flex;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
    }

    .linha-tempo-etapa {
      flex: 1 1 250px;
      text-align: center;
      opacity: 0;
      animation: fadeIn 1s ease forwards;
    }

    .linha-tempo-etapa:nth-child(1) {
      animation-delay: 0.3s;
    }
    .linha-tempo-etapa:nth-child(2) {
      animation-delay: 0.6s;
    }
    .linha-tempo-etapa:nth-child(3) {
      animation-delay: 0.9s;
    }
    .linha-tempo-etapa:nth-child(4) {
      animation-delay: 1.2s;
    }

    .linha-tempo-icone {
      background: radial-gradient(circle at center, #1a1a1a, #000);
      border-radius: 50%;
      width: 64px;
      height: 64px;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #333;
    }

    .linha-tempo-icone i {
      color: #d2aa6d;
      font-size: 1.5rem;
    }

    .linha-tempo-titulo {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .linha-tempo-texto {
      font-size: 0.95rem;
      color: #ccc;
      line-height: 1.5;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
      from {
        opacity: 0;
        transform: translateY(20px);
      }
    }

    @media (max-width: 768px) {
      .linha-tempo-container {
        flex-direction: column;
        align-items: center;
      }

      .linha-tempo-etapa {
        max-width: 400px;
      }
    }



    .faq-wrapper {
      max-width: 800px;
      margin: auto;
      padding: 4rem 1rem;
    }

    .faq-title {
      text-align: center;
      font-size: 90px;
      font-weight: bold;
      color: #d2aa6e00;
      background: linear-gradient(to bottom, #d2aa6e99, #34240d3d);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .faq-subtitle {
      text-align: center;
      font-size: 22px;
      letter-spacing: 0.2em;
      color: #ccc;
      margin-top: -42px;
    }

    .faq-item {
      border-bottom: 1px solid #333;
      padding: 1rem 0;
      cursor: pointer;
      position: relative;
    }

    .faq-question {
      font-size: 26px;
      color: #ffffff;
      font-weight: 400;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .faq-item:hover .faq-question {
      color: #d2aa6d;
    }

    .faq-icon {
      transition: transform 0.3s ease;
      color: #d2aa6d;
      font-size: 0.8rem;
    }

    .faq-answer {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transform: translateY(-10px);
      transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
      font-size: 18px;
      color: #ffffff;
      margin-left: 15px;
      line-height: 1.5;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      opacity: 1;
      transform: translateY(0);
      margin-top: 0.8rem;
    }

    .faq-item.active .faq-icon {
      transform: rotate(90deg);
    }

    @media (max-width: 600px) {
      .faq-title {
        font-size: 2.5rem;
      }
    }



  /* Container do botão */
    .whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      z-index: 9999;
      animation: pulse 2s infinite;
    }

    /* Ícone dentro do botão */
    .whatsapp-button img {
      width: 30px;
      height: 30px;
    }

    /* Animação de pulsar */
    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    /* Responsividade */
    @media (max-width: 600px) {
      .whatsapp-button {
        width: 50px;
        height: 50px;
      }
      .whatsapp-button img {
        width: 25px;
        height: 25px;
      }
    }
