.section-93 {
  background-color: var(--fondo);
  padding: 60px 20px;
  font-family: var(--fuente-general);
}

.faq-answer-p a {
  color: var(--medium-aquamarine);
  text-align: left;
  margin-left: 0;
}

.section-93 .custom-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.faq-kit-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.45fr;
  gap: 70px;
  align-items: flex-start;
}

.faq-kit-left {
  padding-top: 10px;
}

.faq-kit-subtitle h1,
.faq-kit-subtitle h2,
.faq-kit-subtitle h3,
.faq-kit-subtitle h4 {
  color: var(--texto);
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.05;
  font-weight: 800;
}
.faq-kit-subtitle {
  color: var(--subtítulos);
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.faq-kit-button {
  color: var(--white);
  background-color: var(--medium-aquamarine);
  border-radius: var(--radio-bordeado);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
  margin-left: 0;
}

.faq-kit-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.faq-kit-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-kit-item {
  background-color: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
}

.faq-kit-item[open] {
  border-color: var(--medium-aquamarine);
}

.faq-kit-summary {
  color: var(--texto);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
}

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

.faq-question-label {
  color: var(--texto);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: justify;
}

.faq-kit-arrow {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.faq-kit-item[open] .faq-kit-arrow {
  transform: rotate(-90deg);
}

.faq-kit-answer {
  padding: 0 24px 22px;
}

.faq-answer-p {
  color: var(--subtítulos);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
}

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

  .faq-kit-left {
    padding-top: 0;
  }
}

@media screen and (max-width: 479px) {
  .section-93 {
    padding: 40px 16px;
  }

  .faq-kit-subtitle h1,
  .faq-kit-subtitle h2,
  .faq-kit-subtitle h3,
  .faq-kit-subtitle h4 {
    font-size: 32px;
  }

  .faq-kit-summary {
    padding: 18px 18px;
  }

  .faq-kit-answer {
    padding: 0 18px 18px;
  }

  .faq-question-label {
    font-size: 14px;
  }

  .faq-answer-p {
    font-size: 13px;
  }
}

