/* faq_list */
#faqs .faq_list,.cont-faqs .faq_list,.section-fqa-cat .faq_list {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
  align-items: start;
  margin-top: 15px;
}

/* faq_col */
#faqs .faq_col,.cont-faqs .faq_col,.section-fqa-cat .faq_col {
  display: grid;
  gap: 16px;
}

/* faq_item */
#faqs .faq_item,.cont-faqs .faq_item,.section-fqa-cat .faq_item {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(0,25,58,.1);
  border-radius: 16px;
}

/* faq_question */
#faqs .faq_question,.cont-faqs .faq_question,.section-fqa-cat .faq_question {
  width: 100%;
  min-height: 66px;
  padding: 18px 22px;
  border: 0;
  background: 0 0;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* faq_icon */
#faqs .faq_icon,.cont-faqs .faq_icon,.section-fqa-cat .faq_icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* faq_answer */
#faqs .faq_answer,.cont-faqs .faq_answer,.section-fqa-cat .faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

/* faq_answer_inner */
#faqs .faq_answer_inner,.cont-faqs .faq_answer_inner,.section-fqa-cat .faq_answer_inner {
  padding: 0 22px 22px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.75;
}

/* faq_item */
#faqs .faq_item.active .faq_icon,.cont-faqs .faq_item.active .faq_icon,.section-fqa-cat .faq_item.active .faq_icon {
  background: var(--color-primary);
  color: var(--color-white);
}

/* faq_list */
@media (max-width: 768px) {
  #faqs .faq_list,.cont-faqs .faq_list,.section-fqa-cat .faq_list {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════
   Procedente de general.css
   ══════════════════════════════════════════════════════ */

/* faqs-banner */
.faqs-banner {
  height: 60vh;
  position: relative;
}
.faqs-banner .faqs-banner-imgs {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.faqs-banner .faqs-banner-imgs img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.faqs-banner .faqs-banner-overlay {
  z-index: 2;
  background: linear-gradient(0deg, #000000a6 0, #00000059 40%, #0000);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.faqs-banner .faqs-banner-body {
  box-sizing: border-box;
  z-index: 2;
  align-items: end;
  width: 100%;
  height: 60vh;
  display: flex;
  position: relative;
}
.faqs-banner .faqs-banner-container {
  color: #fff;
  width: 90%;
  max-width: 1450px;
  margin: 0 auto;
}

/* cont-faqs */
.cont-faqs {
  margin-top: 3rem !important;
}

/* title-faqs */
.title-faqs {
  color: #fff;
  margin: 0;
  font-size: clamp(28px, 4vw, 45px);
}

/* faqs-banner */
.faqs-banner .gold-line-main-left {
  margin: 0 0 25px;
}

/* title-second-faqs */
.title-second-faqs {
  color: #00224f;
  font-size: clamp(24px, 2.3vw, 40px);
}

/* cont-descrip-faqs */
.cont-descrip-faqs {
  color: #00224f;
  text-align: center;
  width: 75%;
  margin: 0 auto;
}

/* first-title */
.first-title {
  margin: 30px 0;
  font-size: 1.8rem;
}

/* section-reviews */
.section-reviews {
  z-index: 2;
  position: relative;
  top: -20px;
}

/* slider-reviews */
.slider-reviews .avatar img {
  width: 100%;
  height: 100%;
}
