.elementor-3956 .elementor-element.elementor-element-67175d8{--display:flex;}.elementor-3956 .elementor-element.elementor-element-af257f6{--spacer-size:50px;}.elementor-3956 .elementor-element.elementor-element-4d2c1c9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3956 .elementor-element.elementor-element-dad9e52{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-dad9e52 *//* Layout Base */
.prisma-faq-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #fcfcfc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  box-sizing: border-box;
}

.prisma-faq-section *, 
.prisma-faq-section *:before, 
.prisma-faq-section *:after {
  box-sizing: inherit;
}

.faq-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
}

/* Sidebar */
.faq-main-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 24px 0;
  line-height: 1.15;
  color: #0f0f0f;
}

/* Menu de Navegação */
.faq-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.faq-nav li {
  margin-bottom: 4px;
}

.faq-nav a {
  display: block;
  padding: 10px 14px;
  color: #666666;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.faq-nav li.active a,
.faq-nav a:hover {
  color: #937A41;
  background-color: #f0f0f0;
}

.faq-nav li.active a {
  font-weight: 600;
  box-shadow: inset 3px 0 0 #000000;
}

/* Card Suporte */
.faq-support-card {
  background-color: #f0f0f0;
  padding: 24px;
  border-radius: 12px;
}

.faq-support-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.faq-support-card p {
  font-size: 0.88rem;
  color: #666666;
  line-height: 1.45;
  margin: 0 0 20px 0;
}

.btn-support {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-support:hover {
  background-color: #937a41;
  color: #ffffff;
  border-color: #937a41;
}

/* Conteúdo FAQ */
.faq-group {
  margin-bottom: 36px;
}

.faq-badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: #eaeaea;
  color: #444444;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: #cccccc;
}

.faq-question {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question .icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: #1a1a1a;
  transition: transform 0.3s ease;
  margin-left: 16px;
  flex-shrink: 0;
}

.faq-item[open] .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

.faq-no-results {
  padding: 40px;
  text-align: center;
  color: #777;
  font-size: 1rem;
  background-color: #fff;
  border-radius: 12px;
  border: 1px dashed #ddd;
}

/* ===================================================
   RESPONSIVIDADE (Tablets e Dispositivos Móveis)
   =================================================== */

@media (max-width: 991px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .prisma-faq-section {
    padding: 40px 16px;
  }

  /* Transforma a lista de tópicos num carrossel horizontal de pílulas */
  .faq-nav {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }

  .faq-nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .faq-nav ul {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
  }

  .faq-nav li {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .faq-nav a {
    background-color: #ffffff;
    border: 1px solid #e2e2e2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
  }

  .faq-nav li.active a {
    box-shadow: none;
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
  }

  .faq-support-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .faq-support-card p {
    margin-bottom: 0;
  }

  .btn-support {
    width: auto;
    padding: 10px 20px;
    white-space: nowrap;
  }
}

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

  .faq-question {
    padding: 16px 18px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 18px 16px 18px;
    font-size: 0.9rem;
  }

  .faq-support-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-support {
    width: 100%;
  }
}

/* Correção da Barra de Pesquisa */
.prisma-faq-section .faq-search-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.prisma-faq-section .faq-search-wrapper .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #8c8c8c;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prisma-faq-section .faq-search-input {
  width: 100% !important;
  height: 48px !important;
  padding-left: 48px !important; /* Garante que o texto não atropele o ícone */
  padding-right: 16px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: 1px solid #e2e2e2 !important;
  border-radius: 8px !important;
  background-color: #f7f7f7 !important; /* Cor de fundo suave conforme a imagem */
  font-size: 0.95rem !important;
  color: #1a1a1a !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease !important;
}

.prisma-faq-section .faq-search-input::placeholder {
  color: #8c8c8c !important;
  opacity: 1 !important;
}

.prisma-faq-section .faq-search-input:focus {
  border-color: #000000 !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
}/* End custom CSS */