* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: linear-gradient(135deg, #f7edf2, #ffffff);
	color: #2b2b2b;
}

.page {
	width: 100%;
	padding: 20px;
	min-height: auto !important;
}

.hero {
	background: linear-gradient(135deg, #111111, #6b3f52);
	color: #ffffff;
	border-radius: 28px;
	padding: 28px 24px;
	text-align: center;
	box-shadow: 0 20px 50px rgba(0,0,0,0.18);
	margin-bottom: 16px;
	display: block;
	height: auto !important;
	min-height: 0 !important;
}

.brand {
	letter-spacing: 4px;
	font-size: 13px;
	font-weight: bold;
	color: #f3c7d8;
	margin-bottom: 10px;
}

.hero h1 {
	margin: 0;
	font-size: 34px;
	font-weight: 800;
}

.subtitle {
	font-size: 16px;
	margin: 8px 0 0 0;
	color: #f8e9ef;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	width: 100%;
	max-width: 1150px;
	margin: 18px auto 0;
	align-items: stretch;
}

.info-card {
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 16px;
	padding: 14px 12px;
	backdrop-filter: blur(4px);
	min-height: 72px;
}

.info-card span {
	display: block;
	font-size: 11px;
	color: #f3c7d8;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.info-card strong {
	font-size: 15px;
	line-height: 1.3;
}

.details {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin: 0 0 16px 0;
}

.detail-box {
	background: #ffffff;
	border-radius: 22px;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	border: 1px solid #f1d7e2;
}

.detail-box h2 {
	margin: 0 0 12px 0;
	color: #6b3f52;
}

.detail-box p {
	line-height: 1.6;
	margin: 0;
}

.table-section {
	background: #ffffff;
	border-radius: 24px;
	padding: 20px;
	box-shadow: 0 14px 40px rgba(0,0,0,0.10);
	border: 1px solid #f1d7e2;
}

.table-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.table-title h2 {
	margin: 0;
	color: #6b3f52;
}

#contador {
	background: #6b3f52;
	color: #ffffff;
	padding: 7px 13px;
	border-radius: 999px;
	font-size: 13px;
}

.table-wrap {
	overflow-x: auto;
}

table {
	width: 100%;
	border-collapse: collapse;
	min-width: 720px;
}

thead {
	background: #6b3f52;
	color: #ffffff;
}

th,
td {
	padding: 12px 14px;
	text-align: left;
	border-bottom: 1px solid #f0dfe6;
}

tbody tr:hover {
	background: #fff5f9;
}

.numero {
	font-weight: bold;
	color: #6b3f52;
	font-size: 16px;
}

@media (max-width: 1100px) {
	.info-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.page {
		padding: 14px;
	}

	.hero {
		padding: 24px 16px;
		border-radius: 22px;
	}

	.hero h1 {
		font-size: 26px;
	}

	.info-grid,
	.details {
		grid-template-columns: 1fr;
	}

	.table-title {
		flex-direction: column;
		align-items: flex-start;
	}
	
	/* FORZAR ELIMINACIÓN DE ESPACIO EN BLANCO */
.page {
	padding: 20px !important;
	min-height: 0 !important;
}

.hero {
	margin-bottom: 14px !important;
	padding-bottom: 24px !important;
	height: auto !important;
	min-height: 0 !important;
}

.details {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.hero + .details {
	margin-top: 0 !important;
}

.info-grid {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}
}