/* =========================================================
   FAQ PONCE PARK
========================================================= */

.ponce-faq {
  width: 100%;
  background: #0c1b31;

  padding: 45px 20px 70px;

  box-sizing: border-box;
}

.ponce-faq-container {
  width: 100%;
  max-width: 900px;

  margin: 0 auto;
}


/* =========================================================
   TOPO
========================================================= */

.ponce-faq-top {
  text-align: center;

  color: #ffffff;
}

.ponce-faq-top h2 {
  margin: 0 0 14px;

  font-size: 29px;
  line-height: 1.1;

  font-weight: 400;

  color: #ffffff;
}

.ponce-faq-top p {
  max-width: 880px;

  margin: 0 auto 20px;

  font-size: 20px;
  line-height: 1.25;

  font-weight: 400;

  color: #ffffff;
}


/* =========================================================
   BOTÃO
========================================================= */

.ponce-faq-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 270px;
  min-height: 42px;

  padding: 6px 30px;

  background: #000000;

  color: #ffffff;

  border-radius: 999px;

  font-size: 16px;
  line-height: 1;

  text-decoration: none;
}

.ponce-faq-btn:hover,
.ponce-faq-btn:focus {
  color: #ffffff;

  text-decoration: none;
}


/* =========================================================
   LISTA FAQ
========================================================= */

.ponce-faq-lista {
  margin-top: 85px;
}

.ponce-faq-lista h3 {
  margin: 0 0 26px;

  color: #ffffff;

  font-size: 16px;
  line-height: 1;

  font-weight: 400;
}


/* =========================================================
   ITEM
========================================================= */

.ponce-faq-item {
  width: 100%;

  margin-bottom: 12px;

  border: 1px solid rgba(255, 255, 255, 0.95);

  background: transparent;
}


/* =========================================================
   PERGUNTA
========================================================= */

.ponce-faq-pergunta {
  width: 100%;

  min-height: 74px;

  padding: 0 25px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border: 0;

  background: transparent;

  color: #ffffff;

  text-align: left;

  font-family: inherit;

  font-size: 15px;
  line-height: 1.3;

  font-weight: 400;

  cursor: pointer;
}


/* =========================================================
   SETA
========================================================= */

.ponce-faq-seta {
  position: relative;

  width: 11px;
  height: 11px;

  flex: 0 0 11px;

  border-right: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;

  transform: rotate(45deg);

  transition: transform 0.3s ease;
}

.ponce-faq-item.active .ponce-faq-seta {
  transform: rotate(225deg);
}


/* =========================================================
   RESPOSTA
========================================================= */

.ponce-faq-resposta {
  display: grid;

  grid-template-rows: 0fr;

  transition: grid-template-rows 0.35s ease;
}

.ponce-faq-item.active .ponce-faq-resposta {
  grid-template-rows: 1fr;
}

.ponce-faq-resposta-interna {
  overflow: hidden;
}

.ponce-faq-resposta-interna p {
  margin: 0;

  padding: 0 25px 22px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 14px;
  line-height: 1.45;

  font-weight: 300;
}

.ponce-faq-resposta-interna p + p {
  padding-top: 5px;
}

strong {
	font-weight: 900;
}

/* =========================================================
   LISTA DENTRO DAS RESPOSTAS FAQ
========================================================= */

.ponce-faq-resposta-interna ul {
  margin: -10px 0 22px 25px;
  padding-left: 20px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 14px;
  line-height: 1.55;

  font-weight: 300;

  list-style-type: disc;
}

.ponce-faq-resposta-interna li {
  margin: 0 0 3px;
  padding: 0;

  color: rgba(255, 255, 255, 0.88);
}

.ponce-faq-resposta-interna li::marker {
  color: #ffffff;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .ponce-faq {
    padding: 40px 18px 55px;
  }

  .ponce-faq-top h2 {
    font-size: 25px;
  }

  .ponce-faq-top p {
    font-size: 16px;
    line-height: 1.35;
  }

  .ponce-faq-btn {
    min-width: 235px;
  }

  .ponce-faq-lista {
    margin-top: 60px;
  }

  .ponce-faq-pergunta {
    min-height: 68px;

    padding: 0 18px;

    font-size: 14px;
  }

  .ponce-faq-resposta-interna p {
    padding:
      0
      18px
      20px;

    font-size: 13px;
  }
	
  .ponce-faq-resposta-interna ul {
    margin:
      -8px
      0
      20px
      18px;

    padding-left: 18px;

    font-size: 13px;
    line-height: 1.5;
  }	
}