/*
	Best Candy — Próximamente
	@version 0.1.1 (Agosto 2026)
*/

*,
*::before,
*::after{
	box-sizing: border-box;
}

html,
body{
	background-color: #001428;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	color: #FFD200;
	font-family: 'Fredoka', sans-serif;
	font-weight: 500;
	font-size: 1.5vw;
}

.proximamente{
	width: 100%;
	height: 100%;
}

.proximamente__contenedor{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 5vh 5vw;
	text-align: center;
}

.proximamente__logo{
	margin-bottom: 5vh;
	width: 45%;
	height: auto;
	object-fit: contain;
}

.proximamente__titulo{
	margin: 0;
	font-size: 3vw;
	font-weight: 500;
}

.proximamente__telefono{
	margin-top: 2vh;
	color: #FFD200;
	font-size: 2vw;
	text-decoration: none;
}

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

/*Estilo para media pantalla
______________________________*/
@media only screen and (max-width: 1024px){
	html,
	body{
		font-size: 2.5vw;
	}

	.proximamente__titulo{
		font-size: 4vw;
	}

	.proximamente__telefono{
		font-size: 3vw;
	}

	.proximamente__logo{
		width: 65%;
	}
}

/*Estilo para móviles
______________________________*/
@media only screen and (max-device-width: 465px) and (max-aspect-ratio: 13/9){
	html,
	body{
		font-size: 4vw;
	}

	.proximamente__titulo{
		font-size: 5.5vw;
	}

	.proximamente__telefono{
		font-size: 4.5vw;
	}

	.proximamente__logo{
		width: 85%;
	}
}
