@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;700&display=swap');

:root{
	font-family: 'Open Sans', sans-serif;
}
*{
	font-family: 'aeonik_problack';
}
#aplicacion{
	/* position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0; */
	width: 100%;
	height: 100vh;
	height: 100dvh; /* Altura dinámica del viewport en móviles */

	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	grid-template-areas: "area"
}

/* Fallback para navegadores que no soportan dvh */
@supports not (height: 100dvh) {
	#aplicacion {
		height: 100vh;
		/* Ajuste manual para compensar header/footer móvil */
		min-height: -webkit-fill-available;
	}
}

/* Específico para móviles - evitar scroll innecesario */
@media (max-width: 768px) and (orientation: portrait) {
	#aplicacion {
		height: 100dvh;
		min-height: 100dvh;
	}

	/* Para iOS Safari específicamente */
	@supports (-webkit-touch-callout: none) {
		#aplicacion {
			height: -webkit-fill-available;
			min-height: -webkit-fill-available;
		}
	}
}

#aplicacion *{
	/* background-color: rgba(0, 0, 0, 0.2); */
}

#aplicacion .encabezado{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	padding: 0.5rem 1rem;
	z-index: 2;

}

#aplicacion .logo{
}


#aplicacion .mensaje{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 1.5rem;
	color: white;
	padding: 1rem;
	background-color: #00000066;
	z-index: 10;
}


#aplicacion .pagina{
	grid-area: area;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 5;
	box-sizing: border-box;
}

#aplicacion .fondo{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;

	z-index: -1;
}


#aplicacion .marca{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 150px;
}

.podio{
	object-fit: contain;
}