.grupo-whatsapp{
	display: inline-block;
	width:120px;
	height:30px;
	background-color:#25d366;
	color:#FFF;
	border-radius:20px;
	text-align:center;
	font-size:20px;
	box-shadow: 2px 2px 3px #999;
	z-index:100;
	text-decoration: none;
}
.grupo-whatsapp:hover{
	color: #FFF;
	background-color:#15b356;
}

.grupo-canal-flutuante{
	/* display: none; */
	position:fixed;
	bottom:70%;
	right:20px;
 	z-index:100;
}

.whatsapp-flutuante{
/*
 	position:fixed;
	bottom:50%;
	right:20px;
*/
  	display: block;
	width:100px;
	height:30px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	font-size:20px;
	box-shadow: 2px 2px 3px #999;
	text-decoration: none;
}
.whatsapp-flutuante:hover{
	color: #FFF;
	background-color:#15b356;
}


/* (A) FULL PAGE OVERLAY */
#owrap {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background: rgba(0, 0, 0, 0.95); /* Updated opacity to 0.9 */
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.2s;
	visibility: hidden;
	opacity: 0;
	overflow: hidden; /* Prevent scrolling */
}

/* (A4) SHOW */
#owrap.show {
	visibility: visible;
	opacity: 1;
}

/* Ensure the video covers the entire modal */
#myVideo {
	width: 100%;
	height: 100%;
	opacity: 0; /* Start with video hidden */
	/*transition: opacity 4s;*/ /* 4-second fade-in transition */
}

/* Close button style */
#closeButton {
	position: absolute;
	top: 30px; /* Adjusted top position to 30px */
	right: 30px; /* Added right position to 30px */
	font-size: 24px;
	cursor: pointer;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 5px 10px;
	border-radius: 50%;
}

/* Close button hover effect */
#closeButton:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

/* Text style for "Parabéns" */
#parabensText {
	font-size: 36px;
	color: #fff;
	display: none; /* Start with "Parabéns" hidden */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}