@import url('https://fonts.googleapis.com/css?family=Raleway|Roboto+Condensed');

#acor {
	background-color: #3b4791;
}
/* Estilos generales para el contenedor */
.contenedor-acordeon {
  max-width: 850px;
  margin: 0rem auto;
  /* font-family: Arial, sans-serif; */
  /* font-family: "LINE Seed JP", sans-serif; */
  font-family: 'Raleway', sans-serif;
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  border: 1px solid #ffffff;
}

/* Estilos de cada elemento acordeón */
details {
  background-color: #3b4791;
  border-bottom: 1px solid #e0e0e0;
}

details:last-child {
  border-bottom: none;
}

/* El título del acordeón */
summary {
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  list-style: none; /* Elimina la flecha predeterminada del navegador */
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Agregamos un indicador visual (signo más/menos) */
summary::after {
  content: '+';
  font-size: 1.8rem;
  color: #ffffff;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(45deg); /* Gira el símbolo más cuando está abierto */
}

summary:hover {
  background: linear-gradient(0deg,rgba(59, 71, 145, 1) 0%, rgba(90, 102, 191, 1) 100%);
}

/* El contenido desplegable */
.contenido {
  padding: 1.2rem;
  background-color: #3b4791;
  color: #b0cefe;
  line-height: 1.6;
  /* border-top: 1px solid #e0e0e0; */
}