/* Estilos específicos de la página FAQs */

:root {
  --brand:      #5366ad;
  --brand-dark: #3d4f96;
  --dark-bg:    #1a1a2e;
  --footer-bg:  #111122;
  --text-light: #e8e8e8;
  --accent:     #c8002c;
  --white:      #ffffff;
  --font-head:  'Exo', sans-serif;
  --font-body:  'Playfair Display', serif;
  --font-roboto: "Roboto", sans-serif;
  --max-w:      1200px;
  --header-h:   80px;
}

.faq-block {
  max-width: var(--max-w, 860px);
  margin: 0 auto 50px;
}
.faq-block h2 {
  font-family: var(--font-roboto);
  font-size: 26px;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c9a24b;
}
.faq-item {
  border-bottom: 1px solid #e3e3e3;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 28px 16px 0;
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: 16px;
  position: relative;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.faq-item summary:hover {
  color: #c9a24b;
  padding-left: 8px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 20px;
  font-weight: 400;
  color: #c9a24b;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  content: "+";
  transform: rotate(135deg);
}
.faq-item p.faq-answer {
  margin: 0;
  padding-right: 28px;
  padding-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding-bottom 0.4s ease;
}
.faq-item[open] p.faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 18px;
}
.faq-seo-list {
  margin: 0;
  padding-left: 20px;
}
.faq-seo-list li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}