* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
	background: #DCE3E6;
}
body {
	margin: 3%;
	background: #fff;
	box-shadow: 0px 10px 30px gray;
	width: auto;
	max-width: 100%;
	
	
	color: dimgray;
	font-size: 1.2rem;
	
 }
.cabecera {
	display: flex;
	padding: 0 50px;
	justify-content: space-between;
	border-bottom: 5px solid #f19800;
}
.articulo-datos {	
	padding: 50px;
	display: flex;
    flex-direction: column;
    align-items: end;
}
.articulo-meta {	
	margin: 50px;
	padding: 20px 0px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-top: 1px solid gray;
	border-bottom: 1px solid gray;
}

.meta-datos {
	margin-top: 50px;
}
.articulo-completo {	
	padding: 0px 50px;
	display: flex;
	flex-direction: column;
}
.articulo-completo p {
	text-align: justify;
	margin-bottom: 20px;
}
.referencias-bibliograficas {	
	margin: 50px;
	padding: 20px 0px;
	display: flex;
	flex-direction: column;
	border-top: 1px solid gray;
}
.notas-autor {	
	margin: 50px;
	padding: 20px 0px;
	display: flex;
	flex-direction: column;
	border-top: 1px solid gray;
}
.creditos {	
	padding: 0px 50px;
	display: flex;
	flex-direction: column;
	background: #f19800;
	align-items: center;
	justify-content: center;
}
.creditos h3 {
    color: #fff;
    text-align: center;
    padding: 20px;
}

.titulo {	
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
}

h1, h2, h3, h5, h6 {
	margin-bottom: 10px;
}
h3 {
	color:	#f19800;
}
h1, h2 {
	color: dimgray;
}

a {
	text-decoration: none;
    color: #f19800;
    font-weight: bold;
    padding: 5px;
}
.titulo-traducido {
	font-style: italic;
}

.lista {	
    list-style-type: none; /* Oculta el marcador predeterminado */
    margin-bottom: 20px;
}
.lista li::before {	
	content: ""; /* Elimina el contenido generado por defecto */
  display: inline-block;
  width: 12px; /* Ancho de la imagen del bullet */
  height: 12px; /* Altura de la imagen del bullet */
  background-image: url('dot.png'); /* Ruta de tu imagen */
  background-size: cover; /* Ajusta el tamaÃ±o de la imagen para cubrir todo el espacio */
  margin-right: 0.5em; /* Ajusta el espaciado entre la imagen y el texto */
  
}

.listaNumerada {
	list-style-type: none;
  counter-reset: list-counter;
  margin: 30px 0px;
}


.listaNumerada li {
	counter-increment: list-counter; 
	margin-bottom: 5px;
}

.listaNumerada li::before {	
	content: counter(list-counter) ".";
  color: #f19800; 
  margin-right: 0.5em;
	font-size: 1.2rem;
	font-weight: bold;
}

img {
    max-width:700px;
    width: auto;
    margin: auto;
    padding:20px 0px;
}

sup {
    	text-decoration: none;
    color: #f19800;
    font-weight: bold;
    padding: 5px;
    
}
