body {
	font-family: 'Inter', sans-serif;
	background-color: #0F0F0F;
	color: #E5E5E5;
}

.hero-gradient {
	background: radial-gradient(circle at top, rgba(255, 145, 0, 0.65) 0%, rgba(15, 15, 15, 0.94) 45%),
		url('../assets/estudio-banner.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.card-glow:hover {
	box-shadow: 0 10px 30px -10px rgba(255, 145, 0, 0.3);
	border-color: rgba(255, 145, 0, 0.4);
	transform: translateY(-4px);
}

/* Custom Audio Track Styling */
input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	height: 12px;
	width: 12px;
	border-radius: 50%;
	background: #FF9100;
	cursor: pointer;
}

/* mobile */
@media (max-width: 768px) {
	.hero-gradient {
		background: radial-gradient(circle at top, rgba(255, 145, 0, 0.20) 0%, rgba(15, 15, 15, 0.94) 45%),
			url('../assets/estudio-banner.webp');
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
}

/* Subtle pulse effect for WhatsApp floating button */
@keyframes whatsappPulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.12);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 10px 24px -10px rgba(37, 211, 102, 0.22);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.12);
	}
}

.whatsapp-pulse {
	animation: whatsappPulse 2.6s ease-in-out infinite;
}
