/**
 * @copyright Galerias Boulevard PLD
 * @author Nucliux Solutions (edoardo@nucliux.mx)
 * @version 1.0.0d (Agosto 2026)
 */

@import "variables.css";
@import "reset.css";
@import "login.css?v=1.0.0d";
@import "menu.css";
@import "admin.css?v=1.0.0d";
@import "modal.css";
@import "estados.css";
@import "componentes/documentos.css?v=1.0.0d";
@import "componentes/pagina.css?v=1.0.0d";
@import "tema.css?v=1.0.0d";
@import "fontawesome/css/all.min.css";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

html, body {
	background-color: var(--gb-page-bg);
	width: 100%;
	min-height: 100%;
	color: var(--gb-text);
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 1.2vw;
}

h1 {
	color: var(--gb-green);
	font-weight: 700;
	font-size: 1.8vw;
}

h2 {
	font-weight: 700;
	font-size: 1.5vw;
}

h3 {
	font-weight: 600;
}

.alerta {
	margin-bottom: 1.5vh;
	color: var(--gb-green);
	font-weight: 700;
	text-align: center;
}

.alerta-error {
	color: var(--gb-alert);
}

.oculto {
	display: none;
}

.entrada {
	box-sizing: border-box;
	margin-bottom: 1.5vh;
	padding: 1.2vh 3%;
	width: 100%;
	max-width: 100%;
	min-height: 44px;
	border: 0.3vh solid var(--gb-blue);
	border-radius: var(--radius-control);
	color: var(--gb-blue);
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 1.3vw;
	text-align: center;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.entrada:focus {
	outline: none;
	border-color: var(--gb-green);
	box-shadow: 0 0 0 0.3vh var(--gb-focus);
}

.formulario__grupo {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 2vh;
}

.formulario__grupo label {
	margin-bottom: 0.4vh;
	color: var(--gb-blue);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.35;
}

.formulario__ayuda {
	margin-top: 0.25vh;
	margin-bottom: 1vh;
	font-size: 0.9375rem;
	color: var(--gb-text);
	opacity: 0.85;
	text-align: left;
	line-height: 1.45;
}

.entrada-grande {
	height: 15vh;
	resize: none;
}

select.entrada {
	display: block;
	width: 100%;
	max-width: 100%;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}

/* Von Restorff: .boton = acción principal; .boton-alt = secundaria */
.boton {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--gb-blue);
	margin-bottom: 1.5vh;
	padding: 1.2vh 0;
	min-height: 44px;
	width: 100%;
	border: none;
	border-radius: var(--radius-control);
	color: var(--gb-white);
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 1.3vw;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.boton:hover {
	background-color: var(--gb-blue-dark);
	transform: translateY(-1px);
}

.boton:focus {
	outline: none;
	box-shadow: 0 0 0 0.3vh var(--gb-focus);
}

.boton:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.boton-especial {
	margin-top: 1.5vh;
}

.boton-alt {
	background-color: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5vh;
	margin-right: 2vw;
	padding: 0.65rem 1.25rem;
	min-height: 44px;
	width: auto;
	min-width: 8rem;
	border: 1px solid var(--gb-border-subtle);
	border-radius: var(--radius-control);
	color: var(--gb-text);
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.35;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.boton-alt:hover {
	background-color: rgba(6, 71, 187, 0.04);
	border-color: var(--gb-blue);
	color: var(--gb-blue);
}

.boton-peligro {
	background-color: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5vh;
	padding: 0.65rem 1.25rem;
	min-height: 44px;
	border: 1px solid var(--gb-alert);
	border-radius: var(--radius-control);
	color: var(--gb-alert);
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.35;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.boton-peligro:hover {
	background-color: rgba(207, 0, 37, 0.06);
}

.enlace {
	color: var(--gb-green);
	font-weight: 600;
	text-decoration: none;
}

.enlace:hover {
	text-decoration: underline;
}

@media only screen and (max-width: 1024px) {
	html, body { font-size: 16px; }
	h1 { font-size: 1.5rem; }
	h2 { font-size: 1.35rem; }
	.entrada { border-radius: 0.5rem; font-size: 1rem; }
	.boton { border-radius: 0.5rem; font-size: 1rem; }
	.boton-alt { width: auto; min-width: 8rem; padding-left: 1.25rem; padding-right: 1.25rem; border-radius: 0.5rem; font-size: 1rem; }
	.formulario__grupo label,
	.formulario label,
	.seccion__filtros label,
	.dashboard-filtros label {
		font-size: 1rem;
	}
	.formulario-seccion__titulo {
		font-size: 1.2rem;
	}
}

@media only screen and (max-device-width: 465px) and (max-aspect-ratio: 13/9) {
	html, body { font-size: 16px; }
	h1 { font-size: 1.4rem; }
	h2 { font-size: 1.25rem; }
	.entrada { font-size: 1rem; }
	.boton { font-size: 1rem; }
	.boton-alt { font-size: 1rem; }
}
