html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Roboto', sans-serif;
	background-image: url('../img/garenia-logo.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

h1, h2, h3 {
	font-family: 'Playfair Display', serif;
}

.fade-in {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeIn 1s ease-out forwards;
}

.fade-in.delay-1 {
	animation-delay: 0.3s;
}

.fade-in.delay-2 {
	animation-delay: 0.6s;
}

.fade-in.delay-3 {
	animation-delay: 0.9s;
}

@keyframes fadeIn {to { opacity:1;
	transform: translateY(0);
}

}
a:hover {
	transform: translateY(-2px);
	transition: all 0.3s ease-in-out;
}


/* Scrollbar elegante */
.scrollbar-thin {
  scrollbar-width: thin;
}

.scrollbar-thumb-blue-500::-webkit-scrollbar {
  width: 6px;
}

.scrollbar-thumb-blue-500::-webkit-scrollbar-thumb {
  background-color: #3b82f6; /* Tailwind blue-500 */
  border-radius: 8px;
}

.scrollbar-track-gray-800::-webkit-scrollbar-track {
  background-color: #1f2937; /* Tailwind gray-800 */
}
