body {
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}

.hero-gradient {
	background: linear-gradient(to bottom, rgba(10, 17, 40, 0.95), rgba(3, 64, 120, 0.95)), url('https://cdn.pixabay.com/photo/2020/01/26/21/57/computer-4796017_1280.jpg');
	background-size: cover;
	background-position: center;
}

.card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.benefit-item {
	transition: transform 0.2s ease;
}

.benefit-item:hover {
	transform: translateY(-3px);
}

.whatsapp-btn {
	animation: pulse 2s infinite;
}

@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);
	}
}

.ribbon {
	position: absolute;
	top: 0;
	right: 1.5rem;
	transform: translateY(-50%);
	background-color: #FF6B6B;
	color: white;
	padding: 0.25rem 1rem;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 0.875rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu {
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform: translateY(-100%);
	opacity: 0;
}

.mobile-menu.open {
	transform: translateY(0);
	opacity: 1;
}

.menu-icon span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: white;
	margin: 5px 0;
	transition: all 0.3s ease;
}

.menu-open .menu-icon span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-icon span:nth-child(2) {
	opacity: 0;
}

.menu-open .menu-icon span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.whatsapp-btn {
	width: 68px;
	height: 68px;
	padding: 0.75rem;
	border-radius: 9999px;
	display: block;
}
.whatsapp-btn i {
	font-size: 1.6rem;
}

.chat-bubble {
	background: white;
	color: #25d366;
	padding: 0.25rem 0.5rem;
	border-radius: 1rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%) translateX(-10px) scale(0.8);
	white-space: nowrap;
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 61;
}

.chat-bubble::before {
	content: '';
	position: absolute;
	left: -8px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 8px solid white;
}

.group:hover .chat-bubble {
	opacity: 1;
	transform: translateY(-50%) translateX(0) scale(1);
}

/* Easter egg dog image */
.easter-dog {
	cursor: pointer;
	transition: transform 0.2s ease;
}
.easter-dog:active,
.easter-dog:hover {
	transform: scale(1.05);
}

