/* CSS geral do hotspot */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body, html {
	width: 100%;
	height: 100%;
	overflow: auto;
	font-family: 'Open Sans';
}

.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-image 1s ease-in-out;
	z-index: -1;
}

.black{
background-color: rgba(0, 0, 0, 0.3);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.overlay {
	position: relative;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	gap: 30px;
	z-index: 1;
}

.logo {
	max-width: 35%;
	height: auto;
	margin: 75px 0 75px 0;
	filter: drop-shadow(0 0 0.05rem rgb(255, 255, 255));
}
.overlay-content {
	width: 100vw;
	background-color: rgba(255, 255, 255, 0.7); /* 50% transparent white */
	padding: 30px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.text-wrap {
	text-wrap: balance;
	/* hyphens: auto; */
}

.btnprosseguir {
	padding: 15px 30px;
	font-size: 18px;
	background-color: rgba(46, 204, 64, 0.8);
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.btnprosseguir:hover {
	background-color: rgba(46, 204, 64, 1);
}

.powered {
	display: flex;
	align-items:center;
}

.logoazwifi {
	width: 100px;
	margin-top: 5px;
}

@media (max-width: 768px) {
	.logo {
		max-width: 100%;
	}
}