.rd-faq{
  background:#F9FAFB;
  padding:70px 20px;
  font-family:'Poppins',sans-serif;
}

.rd-faq__inner{
  max-width:900px;
  margin:0 auto;
}

.rd-faq__title{
  font-size:2rem;
  font-weight:600;
  color:#333;
  text-align:center;
  margin-bottom:20px;
}

.rd-faq__intro{
  color:#555;
  font-size:0.98rem;
  max-width:720px;
  margin:0 auto 35px;
  text-align:center;
}

.rd-faq__list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.rd-faq__item{
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.04);
  overflow:hidden;
  border:1px solid #f0f0f0;
}

.rd-faq__question{
  width:100%;
  padding:16px 20px;
  background:transparent;
  border:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  font-size:1rem;
  font-weight:500;
  color:#333;
}

.rd-faq__icon{
  width:24px;
  height:24px;
  border-radius:999px;
  border:1px solid #C6A667;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  color:#C6A667;
  transition:transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.rd-faq__answer{
  max-height:0;
  overflow:hidden;
  padding:0 20px;
  font-size:0.95rem;
  line-height:1.6;
  color:#555;
  transition:max-height 0.3s ease, padding-bottom 0.3s ease;
}

.rd-faq__item--open .rd-faq__answer{
  max-height:320px;
  padding-bottom:16px;
}

.rd-faq__item--open .rd-faq__icon{
  transform:rotate(45deg);
  background:#C6A667;
  color:#111;
}

/* Forzar estilo FAQ sobre Astra */
.rd-faq .rd-faq__item--open .rd-faq__question {
    background:#2B2B2B !important;   /* gris oscuro corporativo */
    color:#ffffff !important;
    border-left:4px solid #E10600;
}

/* Icono activo */
.rd-faq .rd-faq__item--open .rd-faq__icon {
    background:#E10600 !important;
    border-color:#E10600 !important;
    color:#ffffff !important;
}

/* Hover limpio */
.rd-faq .rd-faq__question:hover {
    background:#F3F3F3;
}
