body {
	background-color: white;
}

* {
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

.efecto-colors {
	background: linear-gradient(to right, #FF6B6B, #4ECDC4, #A78BFA, #FDBA74, #FB7185, #7DD3FC);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	display: inline-block;
	font-weight: bold;
	background-size: 200% 100%;
	animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

.hero-bg {
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/imagenHero.jpeg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.dark .hero-bg {
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/imagenHero.jpeg');
}

.theme-btn {
	background-color: rgba(255, 255, 255, 0.3);
	color: #1f2937;
	transition: all 0.3s ease;
}

#mainNav:not(.scrolled) .theme-btn {
	background-color: rgba(255, 255, 255, 0.2);
	color: white;
}

.dark #mainNav.scrolled .theme-btn {
	background-color: rgba(31, 41, 55, 0.6);
	color: #f3f4f6;
}

.theme-btn:hover {
	transform: scale(1.1);
}

.fade-in {
	animation: fadeIn 0.8s ease-out;
}

.hero-content {
	animation: fadeIn 2.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.nav-link {
	position: relative;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #A78BFA);
	transition: width 0.3s ease;
}

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

.nav-text {
	color: white;
	transition: color 0.3s ease;
}

#mainNav.scrolled .nav-text {
	color: #1f2937;
}

.dark #mainNav.scrolled .nav-text {
	color: #f3f4f6;
}

.thumbnail {
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	width: 50px;
	height: 50px;
	object-fit: contain;
	border-radius: 8px;
	background-color: white;
	padding: 2px;
	flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
	border: 2px solid #4ECDC4;
	transform: scale(1.15);
}

.main-image {
	cursor: pointer;
	max-width: 100%;
	max-height: 220px;
	width: auto;
	height: auto;
	display: block;
	margin: 0 auto;
	transition: transform 0.3s ease;
}

.main-image:hover {
	transform: scale(1.05);
}

.btn-comprar {
	background: linear-gradient(135deg, #FF6B6B 0%, #A78BFA 100%);
	transition: all 0.3s ease;
}

.btn-comprar:hover {
	background: linear-gradient(135deg, #FB7185 0%, #8B5CF6 100%);
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(167, 139, 250, 0.4);
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: linear-gradient(180deg, #FF6B6B, #4ECDC4, #A78BFA, #FDBA74);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #FF6B6B, #4ECDC4, #A78BFA, #FDBA74);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #FB7185, #7DD3FC, #8B5CF6, #FDBA74);
}

* {
	scrollbar-width: thin;
	scrollbar-color: #FF6B6B #f1f1f1;
}

@media (max-width: 768px) {
	.hero-bg {
		background-attachment: scroll;
	}
}

@media (max-width: 280px) {
	.hero-content h1 {
		font-size: 1.5rem !important;
	}

	.hero-content p {
		font-size: 0.9rem !important;
	}

	.hero-content {
		padding: 1rem !important;
	}
}