/* Navbar base */
.navbar-custom {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Logo */
.navbar-brand {
	font-size: 1.4rem;
	color: #0d6efd;
}

.navbar-brand:hover {
	color: #084298;
}

/* Links */
.nav-link {
	font-weight: 500;
	color: #333;
	position: relative;
	transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: #0d6efd;
}

/* Línea animada */
.nav-link::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0%;
	height: 2px;
	background-color: #0d6efd;
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

/* Botón CTA */
.btn-cta {
	padding: 0.55rem 1.3rem;
	border-radius: 30px;
	font-weight: 600;
	box-shadow: 0 6px 18px rgba(13, 110, 253, 0.35);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(13, 110, 253, 0.45);
}

/**************************************
 ** - 02 - Preloader Area CSS
 **************************************/
.preloader {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: fixed;
	z-index: 999999;
	height: 100%;
	width: 100%;
	background-color: #fff;
}

.spinner {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	font-size: 10px;
	text-indent: -12345px;
	z-index: 10000;
}

.double-bounce1,
.double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #fbc31b;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: sk-bounce 2s infinite ease-in-out;
	animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {

	0%,
	100% {
		-webkit-transform: scale(0.0)
	}

	50% {
		-webkit-transform: scale(1.0)
	}
}

@keyframes sk-bounce {

	0%,
	100% {
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	}

	50% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
}