.elementor-158 .elementor-element.elementor-element-240847c{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-f14d7ca *//* ============================================
   Agendy.ai - FAQ Page Styles (VERSÃO BLINDADA)
   ============================================ */

/* Reset básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.content-container {
  max-width: 48rem;
  margin: 0 auto;
}

/* ============================================
   Hero Section
   ============================================ */
.faq-hero {
  background: linear-gradient(to bottom, #1f2937, #111827);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.faq-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.faq-hero p {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto;
}

/* ============================================
   Search Section
   ============================================ */
.faq-search-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.search-wrapper {
  position: relative;
  margin-bottom: 2.5rem;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  pointer-events: none;
  z-index: 10;
}

.search-input {
  width: 100%;
  /* Padding extra na esquerda para o texto não ficar em cima da lupa */
  padding: 0.75rem 1rem 0.75rem 3rem !important; 
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: #0095DA;
  box-shadow: 0 0 0 3px rgba(0, 149, 218, 0.1);
}

.search-input::placeholder {
  color: #9ca3af;
}

/* ============================================
   FAQ Accordion - A ÁREA CRÍTICA
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Estilo base da pergunta */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: #f9fafb;
}

/* SUPER BLOCK ANTI-ROSA 
   Aqui eu aumento a "especificidade" do CSS para ganhar de qualquer tema externo.
   Também removo imagens de fundo (caso o rosa seja um gradiente).
*/

/* Mira no item quando está com a classe .open E qualquer estado do botão */
.faq-list .faq-item.open .faq-question,
.faq-list .faq-item.open .faq-question:hover,
.faq-list .faq-item.open .faq-question:focus,
.faq-list .faq-item.open .faq-question:active,
.faq-list .faq-item.open .faq-question:visited {
  background-color: #ffffff !important;   /* Força Branco */
  background-image: none !important;      /* Remove gradientes rosa */
  background: #ffffff !important;         /* Redundância para garantir */
  color: #1f2937 !important;              /* Texto Escuro */
  border-bottom: 1px solid #e5e7eb !important; /* Borda divisória */
  box-shadow: none !important;            /* Remove brilhos/sombras estranhas */
}

/* Garante que o ícone fique azul e não rosa/branco */
.faq-list .faq-item.open .faq-icon,
.faq-list .faq-item.open .faq-question .faq-icon {
  color: #0095DA !important;
  fill: #0095DA !important; /* Caso seja um SVG preenchido */
}

/* ------------------------------------------- */

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #0095DA;
  flex-shrink: 0;
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 1.25rem;
  color: #4b5563;
  line-height: 1.7;
  background-color: #ffffff; /* Garante fundo branco */
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}

.faq-answer ul li {
  margin-bottom: 0.5rem;
}

.faq-answer a {
  color: #0095DA;
  text-decoration: none;
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* ============================================
   Contact Section
   ============================================ */
.faq-contact {
  padding: 4rem 0;
  background-color: #f9fafb;
  text-align: center;
}

.faq-contact h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.faq-contact p {
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background-color: #0095DA;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #0080c0;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #0095DA;
  color: #0095DA;
}

.btn-outline:hover {
  background-color: rgba(0, 149, 218, 0.1);
}

.btn svg {
  width: 1rem;
  height: 1rem;
}

/* ============================================
   No Results
   ============================================ */
.no-results {
  text-align: center;
  padding: 2rem;
  color: #6b7280;
}

/* ============================================
   Responsive
   ============================================ */
@media (min-width: 640px) {
  .faq-hero h1 {
    font-size: 3rem;
  }
  
  .contact-buttons {
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .faq-hero {
    padding: 3rem 0;
  }
  
  .faq-hero h1 {
    font-size: 1.875rem;
  }
  
  .faq-hero p {
    font-size: 1rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-contact h2 {
    font-size: 1.5rem;
  }
}/* End custom CSS */