.video-banner {
	height: 320px;
	cursor: pointer;
	position: relative;
}

	.video-banner img {
		filter: brightness(0.75);
	}

/* BOTÓN PLAY */
.play-btn {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	color: #000;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .25s ease, background .25s ease;
	z-index: 2;
}

	/* HOVER */
	.play-btn:hover {
		transform: scale(1.1);
		background: #fff;
	}

	/* === EFECTO RADAR === */
	.play-btn::before,
	.play-btn::after {
		content: "";
		position: absolute;
		inset: -12px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.45);
		animation: radar 2.6s infinite;
		z-index: -1;
	}

	.play-btn::after {
		animation-delay: 1.3s;
	}

@keyframes radar {
	0% {
		transform: scale(0.6);
		opacity: 0.8;
	}

	100% {
		transform: scale(1.7);
		opacity: 0;
	}
}

/* IFRAME */
.ifr-video {
	width: 100%;
	height: 35vh;
	border: 0;
}

/* Tablets */
@media (max-width: 991px) {
	.video-banner {
		height: 240px;
	}

	.play-btn {
		width: 60px;
		height: 60px;
		font-size: 18px;
	}

		.play-btn::before,
		.play-btn::after {
			inset: -10px;
		}
}

/* Móviles */
@media (max-width: 576px) {
	.video-banner {
		height: 180px;
	}

	.play-btn {
		width: 44px;
		height: 44px;
		font-size: 14px;
	}

		.play-btn::before,
		.play-btn::after {
			inset: -8px;
		}
}
