/* ===== NOSOTROS & NUESTRAS POLÍTICAS ===== */

.np-intro {
  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

.np-section {
  background-color: #ffffff;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

/* Grupo de acordeones */
.np-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Cada item del acordeón */
.np-accordion-item {
  border-radius: 12px;
  border: 1px solid rgba(11, 98, 172, 0.18); /* azul CIAME suave */
  background-color: #f9fbfe;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Cabecera del acordeón (botón) */
.np-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  background: transparent;
  border: 1px solid #0B62AC;
  color: #0B62AC;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.np-accordion-header:hover {
  box-shadow: 0 4px 12px rgba(11, 98, 172, 0.35);
}

/* Título del acordeón */
.np-accordion-title {
  flex: 1;
  padding-right: 0.5rem;
}

/* Icono + / - */
.np-accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  /*border: 1px solid #ffffff;*/
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

/* Contenido */
.np-accordion-content {
  padding: 1rem 1.2rem 1.2rem;
  font-size: 0.95rem;
  color: #333333;
  background-color: #ffffff;
  border-top: 1px solid rgba(11, 98, 172, 0.1);

  /* animación tipo "acordeón" */
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

/* Cuando está abierto */
.np-accordion-item.is-open .np-accordion-content {
  max-height: 1500px; /* valor amplio para permitir texto largo */
  opacity: 1;
  transform: translateY(0);
}

/* Textos internos */
.np-accordion-content p {
  margin-bottom: 0.6rem;
}

.np-accordion-content ul,
.np-accordion-content ol {
  margin-left: 1.2rem;
  margin-bottom: 0.6rem;
}

.np-accordion-content li {
  margin-bottom: 0.35rem;
}

/* Disclaimer */
.np-disclaimer {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: #666666;
}

/* Ajustes responsivos simples */
@media (min-width: 768px) {
  .np-accordion-content {
    font-size: 0.96rem;
  }
}
