﻿.splash-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.splash-card {
	background: #ffffff;
	width: 90%;
	max-width: 520px;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	animation: slideFadeIn 0.6s ease;
}

@keyframes slideFadeIn {
	from {
		opacity: 0;
		transform: translateY(25px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Ícono animado */
.splash-icon {
	font-size: 34px;
    color:darkblue;
}

.pulse {
	animation: pulse 1.8s infinite;
}

@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.1); }
	100% { transform: scale(1); }
}

/* Resto visual */
.splash-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
}

.splash-title {
	font-size: 22px;
	font-weight: 600;
	color: #1f3c88;
}

.splash-subtitle {
	color: #555;
	margin-bottom: 20px;
}

.splash-list {
	list-style: none;
	padding: 0;
	margin-bottom: 25px;
}

.splash-list li {
	padding: 10px 0;
	display: flex;
	gap: 10px;
}

.splash-list li i {
	color: #2ecc71;
	font-weight: bolder;
}

.btn-splash-primary {
	background: #1f7ae0;
	color: #fff;
	border: none;
	padding: 10px 18px;
	border-radius: 8px;
	cursor: pointer;
}

.btn-splash-primary:hover {
	background: #155fc0;
}