/* Sticky Header */
.custom-sticky-header {
	position: sticky !important;
	top: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Animated Underline Menu Hover */
.custom-animated-menu ul li a {
	position: relative;
	transition: color 0.3s ease;
}

.custom-animated-menu ul li a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: #4DB8D8; /* Turquesa */
	transition: width 0.3s ease;
}

.custom-animated-menu ul li a:hover {
	color: #4DB8D8 !important;
}

.custom-animated-menu ul li a:hover::after {
	width: 100%;
}
