:root {
  -green: #146135;
  -text: #1f2937;
  -muted: #4b5563;
  -white: #ffffff;
  -border: #d9e7de;
}

/* ANCLA PARA EL MENÚ */

.faq-ancla {
  height: 80px;
  margin-top: -80px;
  background: transparent;
  pointer-events: none;
}

/* SECCIÓN */

.faq-section {
  padding: 64px 0;
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

.faq-section,
.faq-section * {
  box-sizing: border-box;
}

/* CONTENEDOR */

.faq-section .container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ENCABEZADO */

.faq-section .section-header {
  margin-bottom: 40px;
}

.faq-section .section-eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.faq-section .section-title {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 2rem;
  line-height: 1.2;
}

.faq-section .section-sub {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* ACORDEÓN A TODO EL ANCHO DEL CONTENEDOR */

.faq-list {
  width: 100%;
  max-width: none;
  border-top: 1px solid var(--border);
}

.faq-item {
  width: 100%;
  border-bottom: 1px solid var(--border);
}

/* PREGUNTA */

.faq-question {
  appearance: none;
  -webkit-appearance: none;

  width: 100%;
  min-height: auto;
  margin: 0;
  padding: 20px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  color: var(--text) !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;

  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none;

  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  text-transform: none;

  cursor: pointer;
}

.faq-question:hover,
.faq-question:focus,
.faq-question:active {
  color: var(--green) !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none;
}

/* ÍCONO */

.faq-icon {
  width: 20px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  color: var(--green);
  background: transparent;

  border: 1.5px solid var(--green);
  border-radius: 50%;

  font-size: 1rem;
  line-height: 1;

  transition: transform 0.25s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* RESPUESTA A TODO EL ANCHO */

.faq-answer {
  display: none;

  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 20px;

  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}