/* As hex codes */

.color-primary-0 { color: #2E4372 }	/* Main Primary color */
.color-primary-1 { color: #7788AA }
.color-primary-2 { color: #4E638E }
.color-primary-3 { color: #152A55 }
.color-primary-4 { color: #061639 }

* {
	box-sizing: border-box;
}



.json {
	background-color: lightgrey;
	font-family: monospace;
	font-size: 12px;
	white-space: pre-wrap;
	text-indent: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 70%;
  	height: 250px;
  	overflow: scroll;
}

.a {
	text-decoration: none;
	color: black;
}
.a:hover {
	text-decoration: none;
	color: white;
}

.header {
	background: linear-gradient(to right, #7788AA, #4E638E);
	color: white;
	padding: 10px;
	height: 300px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.footer {
	background: linear-gradient(to right, #7788AA, #4E638E);
	color: white;
	padding: 10px;
  	margin-top: 20px;
  	margin-bottom: 10px;  	
}
.footer p, i{
	text-align: center;
	font-size: 20px;	
}

.icon-data {
	width: 25px !important;
	height: 25px !important;
	text-align: center !important;
	margin: 0 !important;
	padding: 0 !important;
}
.icon-footer {
	color: #7788AA;
	font-size: 25px;
	background-color: white;
	padding: 10px;
	border-radius: 10px;
}
.icon-footer:hover {
	color: #4E638E;
	font-size: 25px;
	background-color: white;
	padding: 10px;
	border-radius: 10px;
}
/*=============================================
PANTALLAS HORIZONTAL (XL revisamos en 1200px)
=============================================*/
@media (min-width: 1200px) { 
	
}
/*=============================================
TABLET HORIZONTAL (LG revisamos en 1024px)
=============================================*/

@media (max-width:1199px) and (min-width:992px) {

}
/*=============================================
TABLET VERTICAL (MD revisamos en 768px)
=============================================*/

@media (max-width:991px) and (min-width:768px) {

}
/*=============================================
MÓVIL HORIZONTAL (SM revisamos en 576px)
=============================================*/

@media (max-width:767px) and (min-width:576px) {

.json {
	width: 90%;
}

}
/*=============================================
MOVIL VERTICAL (revisamos en 320px)
=============================================*/

@media (max-width:575px) {

.json {
	width: 100%;
}

}

/* --- Estilos agregados desde home.php --- */
.header-bg {
	background: linear-gradient(90deg, #e3f2fd 0%, #bbdefb 100%);
	padding: 2rem 0 1rem 0;
	margin-bottom: 2rem;
}
.logo-ar {
	height: 48px;
	margin-right: 12px;
	vertical-align: middle;
}
.card {
	margin-bottom: 2rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
pre.code-block {
	background: #f8f9fa;
	padding: 1rem;
	border-radius: 6px;
	font-size: 0.95em;
	overflow-x: auto;
}
.img-example {
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	margin-bottom: 1rem;
}
.footer {
	background: #212529;
	color: #fff;
}
.icon-footer {
	font-size: 1.5rem;
	transition: color 0.2s;
}
.icon-footer:hover {
	color: #64b5f6;
}
.go-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
	background: #1976d2;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	font-size: 1.5rem;
	display: none;
	align-items: center;
	justify-content: center;
}
.go-top.show { display: flex; }
