/* ------------------------------------------------------------------
Project: Semantic
Place here your custom CSS styles
------------------------------------------------------------------ */

.filter > li a {
	text-transform: uppercase;
	font-size: 14px;
	color:#093;
}

.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
	animation: pulse 2s infinite;
	text-decoration: none;
}

.whatsapp-float:hover {
	background-color: #128C7E;
	transform: scale(1.1);
	text-decoration: none;
	color: #FFF;
}

/* Efecto de pulso */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

/* Para móviles */
@media (max-width: 768px) {
	.whatsapp-float {
		width: 50px;
		height: 50px;
		bottom: 20px;
		right: 20px;
		font-size: 25px;
	}
}


/* Esto oculta completamente los controles */
.hero-video::-webkit-media-controls {
	display: none !important;
}
.hero-video::-webkit-media-controls-enclosure {
	display: none !important;
}
.hero-video::-webkit-media-controls-panel {
	display: none !important;
}
.hero-video::-webkit-media-controls-play-button {
	display: none !important;
}
.hero-video::-webkit-media-controls-start-playback-button {
	display: none !important;
}

.hero {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	color: white;
	padding: 0 20px;
	max-width: 1200px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.hero-button {
	display: inline-block;
	padding: 12px 30px;
	background-color: #ff5722;
	color: white;
	text-decoration: none;
	border-radius: 30px;
	font-weight: bold;
	transition: all 0.3s ease;
	border: 2px solid #ff5722;
}

.hero-button:hover {
	background-color: transparent;
	color: #ff5722;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.2rem;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
	}
}