/* Agregado 28-04-2026 */
/* Estilos para el modal de Cookies de plantilla.php */

#cc-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1rem;
	z-index: 9999;
	display: flex;
	justify-content: center;
	pointer-events: none;
}

#cc-banner,
#cc-confirm {
	pointer-events: all;
	width: 100%;
	max-width: 620px;
	background: #ffffff;
	border: 1px solid #e0ddd5;
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 13px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
	animation: ccSlideUp .3s ease;
}

#cc-banner {
	display: none;
}

#cc-confirm {
	display: none;
	text-align: center;
	color: #666;
}

@keyframes ccSlideUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Fila superior */
.cc-header {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.cc-icon {
	font-size: 20px;
	line-height: 1;
	margin-top: 2px;
}

.cc-title {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
}

.cc-text {
	margin: 0;
	line-height: 1.5;
	color: #555;
}

.cc-text a {
	color: #1a6ef5;
	text-decoration: none;
}

.cc-text a:hover {
	text-decoration: underline;
}

/* Botones */
.cc-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
	border-top: 1px solid #f0ede6;
	margin-top: 1rem;
	padding-top: 1rem;
}

.cc-spacer {
	flex: 1;
}

.cc-btn {
	font-size: 13px;
	padding: 6px 14px;
	border-radius: 8px;
	border: 1px solid #d8d5ce;
	background: transparent;
	color: #333;
	cursor: pointer;
	transition: background .15s;
}

.cc-btn:hover {
	background: #f5f3ef;
}

.cc-btn-primary {
	background: #1a1a1a;
	color: #fff;
	border-color: #1a1a1a;
	font-weight: 500;
}

.cc-btn-primary:hover {
	background: #333;
}

/* Panel configuración */
#cc-config-panel {
	display: none;
	border-top: 1px solid #f0ede6;
	margin-top: 1rem;
	padding-top: 1rem;
}

.cc-config-label {
	font-size: 11px;
	font-weight: 600;
	color: #999;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin: 0 0 10px;
}

.cc-pref-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	color: #333;
	padding: 4px 0;
}

.cc-pref-row span {
	color: #999;
	font-size: 11px;
}

.cc-pref-row input[type="checkbox"] {
	width: 15px;
	height: 15px;
	cursor: pointer;
	accent-color: #1a1a1a;
}

.cc-btn-save {
	margin-top: 12px;
	width: 100%;
	padding: 7px;
	font-size: 13px;
	border-radius: 8px;
	border: 1px solid #d8d5ce;
	background: transparent;
	color: #333;
	cursor: pointer;
	transition: background .15s;
}

.cc-btn-save:hover {
	background: #f5f3ef;
}

/* Responsive móvil */
@media (max-width: 480px) {
	#cc-wrapper {
		padding: .75rem;
	}

	#cc-banner,
	#cc-confirm {
		padding: 1rem;
	}

	.cc-actions {
		flex-direction: column;
	}

	.cc-spacer {
		display: none;
	}

	.cc-btn,
	.cc-btn-primary {
		width: 100%;
		text-align: center;
	}
}










/* Agregado 22/04/2026 */
/* Declaramos la fuente localmente */
@font-face {
	font-family: 'Montserrat';
	src: url('../assets/fonts/montserrat-v31-latin-regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../assets/fonts/montserrat-v31-latin-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../assets/fonts/montserrat-v31-latin-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* Aplicación global a esta vista */
.full-box.page-header {
	font-family: 'Montserrat', sans-serif !important;
}


/* Agregado para el SLIDE 20210815 : Inicio */
/* .container-slider {
		width: 90%;
		max-width: 900px;
		margin: auto;
		overflow: hidden;
		box-shadow: 0 0 0 10px #fff,
					0 15px 50px;
		position: relative;
	}
	.slider {
		display: flex;
		width: 400%;
		height: 400px;
		margin-left: -100%;
	}
	.slider__section {
		width: 100%;
	}
	.slider__img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.slider__btn {
		position: absolute;
		width: 40px;
		height: 40px;
		background: rgba(255, 255, 255, 0.7);
		top: 50%;
		transform: translateY(-50%);
		font-size: 30px;
		font-weight: bold;
		font-family: monospace;
		text-align: center;
		border-radius: 50%;
		cursor: pointer;
	}
	.slider__btn:hover {
		background: #fff;
	}
	.slider__btn--left {
		left: 10px;
	}
	.slider__btn--right {
		right: 10px;
	} */
/* Agregado para el SLIDE 20210815 : Fin */

/* __________________________________________________________________________________________ */

/* Agregado: 26-06-2025 */
.noticia-ancho-fijo {
	/* 1. Ancho Fijo en Píxeles (px) */
	/* Este ancho se eligió para que dos tarjetas + espaciado quepan en un móvil típico (~360px) */
	width: 230px;

	/* 2. Reglas Flexbox para Anular el Comportamiento Fluido de Bootstrap */
	flex-grow: 0;
	/* No permitir que crezca */
	flex-shrink: 0;
	/* No permitir que se encoja */
	flex-basis: 230px;
	/* Tamaño base fijo */

	/* 3. Ajuste para el Gutter (espaciado del 'g-4') */
	/* Bootstrap g-4 aplica padding, necesitas compensarlo */
	padding-left: 0.75rem !important;
	padding-right: 0.75rem !important;
	margin-bottom: 1.5rem;
	/* Espaciado entre filas */
}

/* Opcional: Centrar las filas si quedan tarjetas impares */
.row.d-flex.flex-wrap {
	justify-content: center !important;
	/* Centra las tarjetas cuando no llenan una fila completa */
}

/* Ajuste específico de la tarjeta (si es necesario) */
.noticia-ancho-fijo .card {
	width: 100%;
	/* Asegura que la tarjeta use todo el ancho de la columna */
}


.modal-90vh {
	max-width: 90%;
	height: 90vh;
	margin: 5vh auto;
}

.modal-90vh .modal-content {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.modal-90vh .modal-body {
	overflow-y: auto;
	flex: 1 1 auto;
}


/* ------------------------------------------- */
/* REGLAS PARA MÓVILES (WIDTH < 768px) */
/* La clase .img-fluid ya asegura max-width: 100% y altura automática. */
.modal-noticia-img {
	/* No aplicamos ninguna restricción de altura en móvil */
	max-height: none;
}

/* ------------------------------------------- */
/* REGLAS PARA TABLET Y ESCRITORIO (WIDTH >= 768px) */
@media (min-width: 768px) {

	.modal-noticia-img {
		/*Altura Máxima
        * Usamos 45vh (45% del Viewport Height) porque el modal en sí 
        * tiene un máximo de 90vh (50% de 90vh = 45vh).
        */
		max-height: 45vh;
		/* Aseguramos que el ancho se ajuste proporcionalmente a la altura */
		width: auto !important;
		/* Opcional: Para evitar que la imagen sea desproporcionadamente ancha */
		/* max-width: 100%; */
	}
}

/* 2025-12-03 */
/* 1. Manejar el ancho y alto de cada tarjeta:
   El ancho se maneja con las clases de columna de Bootstrap (col-6, col-md-4, etc.)
   El alto se maneja con la clase Bootstrap 'h-100' aplicada al div.card, asegurando que todas las tarjetas 
   tengan el mismo alto dentro de una fila.
*/

/* (Opcional) Define un ancho máximo para la card si quieres que sea más pequeña que el contenedor de columna */
.card-noticia {
	max-width: 300px;
	/* Define el ancho máximo deseado para la tarjeta */
	margin-left: auto;
	/* Centra la card dentro de la columna de Bootstrap */
	margin-right: auto;
	/* Para el alto se usa h-100 en el HTML */
}


/* 3. y 4. Manejar el alto de la imagen y la forma en que se muestra */
.card-img-fijo {
	/* Define el alto de la imagen de la tarjeta */
	height: 180px;
	/* <-- Define aquí el alto que deseas para la imagen (Ej: 180px) */
	width: 100%;
	/* Asegura que la imagen ocupe todo el ancho de la card */

	/* 4. Manejar la forma en que se muestra la imagen (cortar, expandir, zoom) */
	/* **object-fit: cover;** (Recomendado) La imagen se recorta para cubrir completamente el alto y ancho definido, sin distorsión. */
	object-fit: cover;

	/* Alternativas para object-fit:
    object-fit: contain;  // La imagen se muestra completa (expandir), dejando espacio vacío si es necesario.
    object-fit: fill;     // La imagen se estira/comprime para llenar completamente, puede distorsionarse.
    object-fit: scale-down; // Elige entre 'none' y 'contain', el que resulte en un tamaño de objeto más pequeño.
    */
}



/* __________________________________________________________________________________________ */





@media (min-width: 992px) {
	.alto-100 {
		height: 100vh;
	}
}

.fondo-card {
	background-image: url('../assets/img/home/6.jpg');
	background-repeat: no-repeat;
}

/* Agregado para las fuentes e iconos 20210819 : Inicio */
.box {
	text-align: center;
}

.icon {
	color: #36CBD4;
	margin-top: 30px;
	margin-bottom: 30px;
}

.ficon {
	margin-top: 30px;
	margin-bottom: 30px;
}

/* .ficon i {
	color:#36CBD4;	
}
.ficon a {
	color:#333;
} */
/* .ficon a:hover {
	color:#eee;
} */
/* Agregado para las fuentes e iconos 20210819: Fin */


@font-face {
	font-family: 'roboto_medium_regular';
	src: url('../webfonts/roboto-medium-webfont.woff2') format('woff2'),
		url('../webfonts/roboto-medium-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

@font-face {
	font-family: 'roboto_condensed_light';
	src: url('../webfonts/robotocondensed-light-webfont.woff2') format('woff2'),
		url('../webfonts/robotocondensed-light-webfont.woff') format('woff'),
		url('../webfonts/robotocondensed-light-webfont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'roboto_condensed_regular';
	src: url('../webfonts/robotocondensed-regular-webfont.woff2') format('woff2'),
		url('../webfonts/robotocondensed-regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

:root {
	--color-one: #F5F5F5;
	--color-two: #24292E;
	--color-three: #EC5252;
	/*--color-three: #0366D6;*/

	--form-color: #14111A;

	--accent-color: #253556;
	/*--accent-color: #455A64;*/
	--border-color: #D8D8D8;
}

body,
html {
	font-family: 'roboto_condensed_light';
	width: 100vw;
	height: 100vh;
	background-color: var(--color-one);
	color: #333;
	font-size: 16px;
}

.full-box {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	width: 100%;
}

.form-neon {
	border: 1px solid var(--border-color);
	background-color: #FFF;
	padding: 15px;
	border-radius: 3px;
}

/*----------  Page headers styles  ----------*/
.page-header {
	padding: 30px 20px 60px 20px;
}

.page-header> :nth-child(1) {
	padding-bottom: 7px;
}

.page-header> :nth-child(2) {
	font-size: 18px;
}

/*----------  Page nav tabs  ----------*/
.page-nav-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.page-nav-tabs li,
.page-nav-tabs li a {
	height: 40px;
	line-height: 40px;
}

.page-nav-tabs li {
	margin: 5px 20px;
}

.page-nav-tabs li a {
	color: var(--accent-color);
	font-size: 17px;
	min-width: 200px;
	width: auto;
	display: block;
	text-align: center;
	user-select: none;
	transition: all .2s ease-in-out;
	border-bottom: 2px solid transparent;
}

.page-nav-tabs li a.active {
	color: var(--color-three);
	cursor: none;
	pointer-events: none;
}

.page-nav-tabs li a:hover {
	text-decoration: none;
	color: #333;
	border-bottom: 2px solid #333;
}

/*----------  Edit bootstrap styles  ----------*/
.form-control[readonly] {
	background-color: transparent;
}

.form-control:focus,
.form-control:active {
	outline: none;
	box-shadow: none;
	border: none;
}

.form-control-file:active,
.form-control-file:focus {
	outline: none;
}

.table .btn {
	margin-bottom: 0;
}

.table thead th {
	color: #FFF;
}

.table tbody tr {
	color: #333;
	transition: all .2s ease-in-out;
}

.table-dark,
.table {
	background-color: #fff;
}

.table-dark {
	border: 1px solid var(--accent-color);
}

.table-dark thead tr {
	background-color: var(--accent-color);
}

.table-dark td,
.table-dark thead th,
.table-dark th {
	border: none;
}

.table-dark tr:hover {
	color: var(--color-three);
	background-image: linear-gradient(to right, transparent, rgba(124, 100, 112, .2) 85%, transparent);
}

.page-link {
	transition: all .2s ease-in-out;
}

.page-link:hover,
.page-link.active {
	background-color: var(--color-three);
	color: #FFF;
}

table form {
	margin-bottom: 0;
}

/*----------  Text Styles  ----------*/
.roboto-medium {
	font-family: 'roboto_medium_regular';
}

.roboto-condensed-light {
	font-family: 'roboto_condensed_light';
}

.roboto-condensed-regular {
	font-family: 'roboto_condensed_regular';
}

/*----------  Page 404 styles  ----------*/
.container-404 {
	background: #000428;
	background: linear-gradient(to right, #004e92, #000428);
	color: #fff;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}


/*----------  login Styles  ----------*/
.login-container {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 50px;
	/* background-image: url('../assets/icons/loginfondo.jpg'); */
	/* CAMBIOS CLAVE PARA CUBRIR TODA LA PANTALLA */
	background-repeat: no-repeat;
	/* 2. Evita la repetición */
	background-size: cover;
	/* 3. ESCALA la imagen para que cubra todo el contenedor */
	background-attachment: fixed;
	/* 4. (Opcional) Fija la imagen si el contenido hace scroll */
}


.login-content {
	width: 95%;
	max-width: 320px;
	height: auto;
	border: 1px solid var(--border-color);
	background-color: #FFF;
	border-radius: 4px;
	padding: 15px;
	color: var(--accent-color);
}

/* Estilo para el tamaño de la nueva imagen (simulando un fa-2x) */
.logo-login {
	height: 36px;
	/* Altura de la imagen */
	width: 36px;
	/* Ancho de la imagen (mantener aspect ratio si no se define) */
	object-fit: contain;
	/* Asegura que la imagen se vea bien dentro del tamaño */
}

/* El estilo .main-title-login de la respuesta anterior ya se encarga de centrar la imagen y el texto */
.main-title-login {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--color-three, #021B79);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-login {
	width: 90%;
	padding: 10px 0;
	display: block;
	margin: 0 auto;
	border-radius: 3px;
	margin-top: 30px;
	background-color: transparent;
	color: var(--accent-color);
	border: 1px solid var(--accent-color);
	transition: all .2s ease-out;
}

.btn-login:hover {
	/* background-color: var(--color-three); */
	background-color: #e3b448;
	;
	border: 1px solid var(--color-three);
	text-decoration: none;
	color: #fff;
}

.btn-login:active,
.btn-login:focus {
	outline: none;
}

.banner-superior {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	/* Ajusta la altura a tu gusto */
	/* background-color: #ffffff; */
	background-color: #e3b448;
	/* Color de fondo */
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	/* Asegura que esté por encima de todo */
}


/*----------  Page layout Styles  ----------*/
.main-container {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}







.page-content,
.nav-lateral {
	height: 100%;
	overflow: hidden;
}

.page-content {
	position: relative;
	padding-left: 300px;
	transition: all .2s ease-in-out;
	padding-bottom: 50px;
}








/*  Nav Lateral */
.nav-lateral {
	width: 300px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: all .2s ease-in-out;
	background-image: url('../assets/img/nav-font.png');
	background-position: center center;
	background-size: cover;
}

.nav-lateral-bg {
	display: none;
}

.nav-lateral-content {
	max-width: 300px;
	height: 100%;
	background-color: rgba(36, 41, 46, .8);
}

.nav-lateral-bar {
	height: 3px;
	background-color: var(--color-three);
}

/* Celulares (menor a 768px) */
.nav-lateral-avatar {
    padding-top: 15px;
    padding-bottom: 5px;
}
/* No celulares (768px en adelante) */
@media (min-width: 768px) {
    .nav-lateral-avatar {
        padding-top: 40px;
        padding-bottom: 5px;
    }
}

.nav-lateral-avatar i {
	display: none;
}

.nav-lateral-avatar img {
	width: 50%;
	margin: 0 auto;
	display: block;
	border: 4px solid #FFF;
	border-radius: 100%;
}

.nav-lateral-avatar figcaption {
	margin-top: 20px;
	color: #FFF;
}

.nav-lateral-menu {
	height: auto;
}

.nav-lateral-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-lateral-menu ul li {
	width: 100%;
	height: auto;
}

.nav-lateral-menu ul li a {
	display: block;
	width: 100%;
	height: 45px;
	line-height: 45px;
	text-decoration: none;
	color: #FFF;
	font-size: 17px;
	box-sizing: border-box;
	padding-left: 20px;
	transition: all .2s ease-in-out;
}

.nav-lateral-menu ul li a.active {
	color: #FFF;
	background-color: var(--color-three);
}

.nav-lateral-menu ul li a:hover {
	color: #fff;
	background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, .1) 50%, transparent);
}

.nav-lateral-menu ul li ul {
	display: none;
	border: 1px solid var(--color-three);
	background: rgba(20, 30, 48, .5);
}

.nav-lateral-menu ul li ul a {
	padding-left: 45px;
}

.show-nav-lateral-submenu {
	display: block !important;
}

.nav-lateral-menu .fa-chevron-down,
.nav-lateral-menu .fa-chevron-up {
	float: right;
	height: 45px;
	line-height: 45px;
	margin-right: 7px;
	transition: all .2s ease-in-out;
}

/*  Page content */
.navbar-info {
	height: 50px;
	border-bottom: 1px solid var(--border-color);
	text-align: right;
	padding-right: 10px;
}

.navbar-info a {
	color: var(--accent-color);
	height: 50px;
	min-width: 40px;
	text-align: center;
	line-height: 50px;
	display: inline-block;
	transition: all .2s ease-out;
	user-select: none;
}

.navbar-info a:hover {
	color: var(--color-three);
	background-image: radial-gradient(circle, rgba(250, 30, 78, .1), transparent 80%);
}

.navbar-info a:active,
.navbar-info a:focus {
	outline: none;
}

/*----------  Home Styles  ----------*/
.tile-container {
	text-align: center;
	padding: 20px 25px;
}

.tile {
	height: 200px;
	width: 200px;
	margin: 10px;
	display: inline-block;
	text-decoration: none;
	color: var(--accent-color);
	border: 1px solid var(--border-color);
	border-radius: 3px;
	user-select: none;
	transition: all .2s ease-in-out;
	background-color: #FFF;
}

.tile:hover {
	text-decoration: none;
	border-color: var(--color-three);
}

.tile:focus,
.tile:active {
	outline: none;
}

.tile-tittle {
	margin: 0;
	width: 100%;
	padding: 0;
	height: 40px;
	line-height: 40px;
	box-sizing: border-box;
	text-transform: uppercase;
	border-bottom: 1px solid var(--border-color);
	transition: all .2s ease-in-out;
	font-family: 'roboto_medium_regular';
}

.tile:hover .tile-tittle {
	color: #FFF;
	border-color: var(--color-three);
	background-color: var(--color-three);
}

.tile-icon {
	width: 100%;
	height: 160px;
	box-sizing: border-box;
	padding-top: 22px;
}

.tile-icon>i {
	font-size: 80px;
}

.tile-icon>p {
	font-family: 'roboto_medium_regular';
	height: 35px;
	line-height: 35px;
}

.tile:hover .tile-icon>i,
.tile:hover .tile-icon>p {
	color: var(--color-three);
}


/* MENU LATERAL - Muestra u Oculta de acuerdo al ancho seleccionado */
/* Trabaja tambien con el BOTON del NAVBAR  */
/* ANTES — oculta el menú en pantallas menores a 768px */
/* @media (max-width: 767px) { */
/* DESPUÉS — por ejemplo ocultar en menores a 992px */
/* Ojo: tambien hay que cambiar la linea 844 */
/*----------  Breakpoints  ----------*/
@media (max-width: 991px) {
	.nav-lateral {
		width: 100%;
		overflow: hidden;
		display: none;
		background-image: none;
	}

	.nav-lateral.active {
		display: block;
		z-index: 9999;
	}

	.nav-lateral-bg {
		width: 100%;
		height: 100%;
		background-color: rgba(3, 3, 3, .4);
		position: relative;
		display: block;
		z-index: 2;
	}

	.nav-lateral-content {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 3;
		transform: translateX(-400px);
		transition: all .3s ease-in-out;
		background-color: var(--color-two);
	}

	.nav-lateral.active .nav-lateral-content {
		transform: translateX(0);
	}

	.nav-lateral-avatar i {
		height: 50px;
		width: 50px;
		line-height: 50px;
		color: #FFF;
		cursor: pointer;
		font-size: 25px;
		position: absolute;
		top: 5px;
		right: 0;
		text-align: center;
		display: block;
		transition: all .2s ease-out;
	}

	.nav-lateral-avatar i:hover {
		color: var(--color-three);
	}

	.page-content {
		padding-left: 0;
	}
}




/*  Bootstrap breakpoints */
@media (min-width: 576px) {}

/* ANTES */
/* @media (min-width: 768px) { */
/* DESPUÉS — debe coincidir con el valor del PASO 1 + 1px */
/* @media (min-width: 992px) { */
/* Importante: los dos valores deben ser consecutivos.  */
/* Si en el PASO 1 (linea 773) pusiste max-width: 991px, en el PASO 2 tenés que poner min-width: 992px.  */
/* Si no coinciden, el menú puede quedar roto en el ancho del medio. */
@media (min-width: 992px) {
	.nav-lateral.active {
		transform: translateX(-400px);
	}

	.page-content.active {
		padding-left: 0;
	}
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

/*----------  Keyframes  ----------*/



/* 20260121 */
/* Forzar el scroll nativo en el contenedor principal */
.page-content {
	overflow-y: auto !important;
	/* Permite el scroll vertical */
	overflow-x: hidden;
	/* Evita scroll horizontal innecesario */
	height: 100vh;
	/* Que ocupe todo el alto de pantalla */
	scroll-behavior: smooth;
	/* Para que el scroll sea fluido */
}

/* OPCIONAL: Personalizar el scroll nativo para que combine con tus botones dorados (#d69825) */
.page-content::-webkit-scrollbar {
	width: 10px;
}

.page-content::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.page-content::-webkit-scrollbar-thumb {
	background: #d69825;
	border-radius: 5px;
}

.page-content::-webkit-scrollbar-thumb:hover {
	background: #b57d1d;
}