@charset "UTF-8";
/* --- Layout General --- */
.ps-faq-section {
  margin-bottom: 100px;
}
.ps-faq-section .contenedor {
  width: 998px;
}

/* --- Categorías (Botones Superiores) --- */
.ps-faq-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.ps-cat-btn {
  display: flex;
  width: 217px;
  height: 86px;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid rgba(86, 92, 108, 0.2);
  background: rgba(86, 92, 108, 0.1);
  color: var(--Temp, #565C6C);
  text-align: center;
  /* Titulo 18 Bold */
  font-family: "Polly Rounded";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
  letter-spacing: -0.9px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ps-cat-btn.active {
  background: linear-gradient(180deg, #DA3D58 0%, #D20024 100%);
  color: var(--8, #FFF);
}

/* --- Acordeón de Preguntas --- */
.ps-faq-group {
  display: none;
}

.ps-faq-group.active {
  display: block;
  animation: psFadeIn 0.5s ease forwards;
}

.ps-faq-item {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 20px;
  background: #FFF;
  /* Sombra base 2 */
  box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.1);
  transition: border 0.3s ease;
}

.ps-faq-item.open .ps-faq-trigger span {
  color: var(--2, #83C5CD);
  /* Titulo 18 Bold */
  font-family: "Polly Rounded";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 127.778% */
  letter-spacing: -0.9px;
}

.ps-faq-trigger {
  width: 100%;
  padding: 25px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2b7a8b; /* Azul de las preguntas */
  gap: 20px;
}
.ps-faq-trigger span {
  color: var(--Temp, #565C6C);
  /* Titulo 18 Regular */
  font-family: "Polly Rounded";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
  letter-spacing: -0.9px;
  transition: all 0.3s ease;
}

/* --- LA MAGIA DE LA TRANSICIÓN --- */
.ps-faq-collapse {
  display: grid;
  grid-template-rows: 0fr; /* Altura 0 */
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ps-faq-item.open .ps-faq-collapse {
  grid-template-rows: 1fr; /* Altura automática fluida */
}

.ps-faq-inner {
  overflow: hidden;
}

.ps-answer-text {
  padding: 0 35px 30px;
  color: var(--Temp, #565C6C);
  /* Texto 14 Regular */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
}

/* --- Flecha Animada --- */
.ps-arrow-wrapper {
  transition: transform 0.4s ease;
}

.ps-faq-item.open .ps-arrow-wrapper {
  transform: rotate(180deg);
}

.ps-arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #d64756;
  border-bottom: 2px solid #d64756;
  transform: rotate(45deg);
}

@keyframes psFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1000px) {
  .ps-cat-btn {
    min-width: 217px;
  }
  .ps-faq-categories {
    width: 100%;
    overflow: auto;
    justify-content: flex-start;
    padding-bottom: 20px;
  }
  .ps-answer-text {
    font-size: 14px;
  }
}/*# sourceMappingURL=index.css.map */