section#main-body {
  background-color: #fff;
}

.contenedor {
  max-width: 960px;
  margin: 0 auto;
}

.titulo-seccion {
  background-color: #eee;
  text-transform: uppercase;
  font-family: sans-serif;
  font-style: italic;
  text-align: center;
  padding: 1rem 0;
  margin: 2.5rem 0;
  font-size: 2rem;
}

.acordeon {
  background-color: white;
  overflow: hidden;
}

.acordeon-item {
  border: none;
  border-bottom: 1px solid #e0e0e0;
}

.acordeon-item:last-child {
  border-bottom: none;
}

.acordeon-cabecera {
  background-color: #ffffff;
  color: #333;
  cursor: pointer;
  padding: 15px 20px;
  position: relative;
  font-weight: bold;
  transition: background-color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.acordeon-cabecera:hover {
  background-color: #f9f9f9;
}

.acordeon-cabecera::after {
  content: "+";
  font-size: 22px;
  color: #fff;
  font-family: sans-serif;
  font-weight: 900;
  background-color: #000;
  border-radius: 50%;
  width: 2rem;
  text-align: center;
  flex: none;
}

.acordeon-contenido {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  /* transition: max-height 0.3s ease; */
}
.acordeon-contenido li a {
  text-decoration: none;
  color: blue;
}
.acordeon-contenido p {
  margin: 1rem 0;
  font-family: sans-serif;
  font-weight: normal;
}

.acordeon-cuerpo {
  /* padding: 0 1.3rem; */
  line-height: 1.5;
}

/* Estilo para el acordeón abierto */
.acordeon-item.activo .acordeon-cabecera {
  background-color: #f0f0f0;
}

.acordeon-item.activo .acordeon-cabecera::after {
  content: "-";
  background-color: #fff;
  color: #000;
}

.acordeon-item.activo .acordeon-contenido {
  max-height: 100%;
  padding: 2rem 1.3rem;
  text-align: justify;
  font-family: sans-serif;
  font-weight: normal;
}

/* Guias de usuario */
.guias {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0rem 1rem;
}
@media (min-width: 992px) {
  .guias {
    grid-template-columns: repeat(3, 1fr);
    padding: 0rem;
  }
}
.guia {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #333;
}
.guia:hover {
  text-decoration: none;
  cursor: pointer;
}
.guia img {
  width: 5rem;
}
.guia h3 {
  text-transform: uppercase;
  font-family: sans-serif;
  font-weight: normal;
  text-align: center;
  font-size: 1.25rem;
}
.lista-numerada li {
  list-style: decimal;
}
.lista-no-numerada {
  padding-left: 2rem;
}
.lista-no-numerada li {
  list-style: initial;
}

/* Reporte de abuso */
.reporte-abuso-detalles {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.reporte-abuso-detalles h4 {
  font-family: sans-serif;
  font-style: italic;
}
.margen-abajo {
  margin-bottom: 2.5rem;
}
.especiales h3 {
  font-family: sans-serif;
  font-style: italic;
}
