/* NUEVAS CLASES PARA BLOQUES DE OCUPACIÓN */
.titulo-ocupacion {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--azul);
  font-size: 1.6rem;
}

.fila-hoteles {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.bloque-hotel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nombre-hotel {
  color: white;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.bloque-ocupacion {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Tarjeta bloque general */
.bloque-tarjetas {
  background: var(--gris-bloque);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  min-width: 240px;
  box-shadow: 0 0 10px rgba(0, 194, 255, 0.15);
  border: 1px solid var(--borde);
}

/* Título de cada bloque */
.bloque-tarjetas h3 {
  font-size: 1rem;
  color: white;
  margin-bottom: 0.8rem;
}

/* Subtítulo tipo "viernes y sábado" */
.subtitulo-bloque {
  font-size: 0.75rem;
  color: #ccc;
  margin-bottom: 0.8rem;
}

/* Contenedor de tarjetas de días */
.tarjetas-flex {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

/* Tarjeta individual */
.tarjeta {
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  min-width: 68px;
}

/* Fecha pequeña dentro de cada tarjeta */
.tarjeta span {
  font-size: 0.75rem;
  display: block;
  color: #ccc;
  margin-top: 4px;
}

/* Ocupación actual */
.tarjeta.actual {
  background: #1f2937;
  color: var(--rosa);
}

/* Tarjeta especial (puedes usar si quisieras distinguirlo visualmente) */
.tarjeta.especial {
  background: #ff5a7d;
  color: white;
}

.tarjeta.promedio {
  background: transparent;
  color: var(--azul);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 194, 255, 0.15);
  width: 100%;
}

:root {
	--rosa: #ff5a7d;
	--azul: #00c2ff;
	--primario: #0a0f1e;
	--gris-bloque: #121827;
	--texto: #eaeaea;
	--borde: #1f2937;
}
html, body {
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', sans-serif;
	background: linear-gradient(160deg, #0a0f1e, #1c2333);
	color: var(--texto);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	box-sizing: border-box;
}
header {
	text-align: center;
	padding: 2rem 1rem 1rem;
}
header h1 {
	margin: 0;
	font-size: 2.3rem;
	font-weight: 700;
	color: var(--azul);
	text-shadow: 0 0 12px rgba(0, 194, 255, 0.3);
}
#lastUpdated {
	text-align: center;
	font-size: 1rem;
	margin: 0.5rem 0 1.5rem;
	color: #ccc;
}
.totales {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 2rem;
}
.total-box {
	background: var(--gris-bloque);
	border-radius: 16px;
	padding: 1rem 1rem;
	min-width: 260px;
	text-align: center;
	box-shadow: 0 0 20px rgba(0,194,255,0.1);
	border: 1px solid var(--borde);
}
.total-box p {
	font-size: 3rem;
	font-weight: bold;
	color: var(--azul);
	margin: 0;
}
.total-box h2 {
	font-size: 1rem;
	color: #ccc;
	text-transform: uppercase;
	margin-bottom: 0.8rem;
	font-weight: 500;
}
.ejecutivas-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	padding: 0 1.5rem 2rem;
	position: relative;
	z-index: 1;
}
.ejecutiva-box {
	background: var(--gris-bloque);
	border-radius: 12px;
	width: 150px;
	height: 60px;
	padding: 0.6rem 0.8rem;
	box-shadow: none;
	border: 1px solid var(--borde);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
	overflow: visible;
}
.ejecutiva-box h3 {
	font-size: 0.85rem;
	text-transform: uppercase;
	color: var(--texto);
	margin: 0 0 0.2rem;
}
.ejecutiva-box .ventas {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--rosa);
	line-height: 1.2;
}
.ejecutiva-box .reservas {
	font-size: 0.75rem;
	color: #aaa;
	margin-top: 0.2rem;
	align-self: flex-end;
}
.ribbon {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 28px;
	height: 28px;
	background: var(--azul);
	color: #fff;
	border-radius: 50%;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	box-shadow: 0 0 12px rgba(0, 194, 255, 0.6);
	z-index: 1000;
}
.ejecutiva-nueva {
	animation: parpadeoBorde 1.5s infinite alternate;
	border: 2px solid var(--azul) !important;
}
@keyframes parpadeoBorde {
	from { box-shadow: 0 0 12px 4px var(--azul); }
	to   { box-shadow: 0 0 25px 8px var(--azul); }
}
/* BLOQUE OCUPACIÓN */
#bloqueOcupacion {
	padding: 1rem 2rem 2rem;
	text-align: center;
}
.bloque-ocupacion {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}
.bloque-tarjetas {
	background: #121827;
	padding: 1rem 1.2rem;
	border-radius: 16px;
	box-shadow: 0 0 10px rgba(0, 194, 255, 0.15);
	min-width: 220px;
}
.bloque-tarjetas h3 {
	margin: 0 0 1rem;
	font-size: 1rem;
	color: white;
}
.tarjetas-flex {
	display: flex;
	justify-content: center;
	gap: 0.6rem;
}
.tarjeta {
	padding: 0.6rem 0.8rem;
	border-radius: 8px;
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
	width: 70px;
}
.tarjeta span {
	font-size: 0.75rem;
	display: block;
	color: #ccc;
	margin-top: 4px;
}
.actual { background: #1f2937; color: #ff5a7d; }
.especial { background: #ff5a7d; color: white; }
.promedio { background: var(--azul); color: white; margin-top: 0.6rem; }
.banda-inferior {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #0f172a;
	color: #e0f2ff;
	font-size: 2.2rem;
	padding: 1.6rem 0;
	font-weight: 600;
	letter-spacing: 0.6px;
	white-space: nowrap;
	overflow: hidden;
	z-index: 999;
}
.banda-inferior span {
	display: inline-block;
	animation: scrollText 60s linear infinite;
	padding-left: 100%;
	white-space: nowrap;
}
@keyframes scrollText {
	0% { transform: translateX(0); }
	100% { transform: translateX(-100%); }
}
@media (max-width: 768px) {
	header h1 { font-size: 2rem; }
	.total-box p { font-size: 2rem; }
	.banda-inferior { font-size: 1.4rem; padding: 1.2rem; }
}
.confetti-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
	z-index: 9999;
}
/* --- animar re-orden --- */
.ejecutiva-box{               /* el recuadro individual            */
  transition: transform .35s ease;
  will-change: transform;
}
.confetti-piece {
	position: absolute;
	width: 10px;
	height: 10px;
	background-color: #ff5a7d;
	opacity: 0.7;
	animation: confetti-fall 3s linear forwards;
}
@keyframes confetti-fall {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translateY(100vh) rotate(720deg);
		opacity: 0;
	}
}

.contador-actualizacion {
  position: fixed;
  top: 10px;
  right: 20px;
  font-size: 1.1rem;
  background: #121827;
  color: #00c2ff;
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,194,255,0.3);
  z-index: 9999;
}

/* === Animación de entrada suave tipo trading room === */
@keyframes fadeInUp {
  0% {
	opacity: 0;
	transform: translateY(15px);
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}
.ejecutiva-box,
.bloque-tarjetas {
  animation: fadeInUp 0.6s ease both;
}

/* === Pulso brillante tipo LED para .ejecutiva-nueva === */
.ejecutiva-nueva {
  box-shadow: 0 0 16px 4px var(--azul);
  animation: pulsoLED 1.5s infinite alternate;
}
@keyframes pulsoLED {
  from { box-shadow: 0 0 12px 2px var(--azul); }
  to   { box-shadow: 0 0 25px 6px var(--azul); }
}

/* === Fondo con textura digital animada (opcional) === */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#00c2ff11 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
  animation: scrollGrid 60s linear infinite;
  pointer-events: none;
}
@keyframes scrollGrid {
  from { background-position: 0 0; }
  to   { background-position: 100% 100%; }
}

/* === Reloj digital fijo superior izquierdo === */
.reloj-digital {
  position: fixed;
  top: 10px;
  left: 20px;
  font-family: monospace;
  font-size: 1.3rem;
  color: #00f6ff;
  background: #121827;
  padding: 5px 12px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,194,255,0.3);
  z-index: 9999;
}

/* === Indicadores tipo bolsa para variación (sube/baja) === */
.indicador {
  font-size: 0.9rem;
  font-weight: bold;
  display: inline-block;
  margin-left: 0.5rem;
}
.sube {
  color: #00ff88;
}
.baja {
  color: #ff5a7d;
}
