html {
	scroll-behavior: smooth;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #1e7046; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #174931; }


.hero-gradient {
	background: linear-gradient(to bottom, rgba(11, 40, 27, 0.4), rgba(11, 40, 27, 0.7));
}

.sticky-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	transition: all 0.3s ease;
	background-color: white;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transform: translateY(-100%);
}

.sticky-nav.visible {
	transform: translateY(0);
}     


 /* torneos */

.step-content { transition: opacity 0.3s ease-in-out; }
.hidden-step { display: none; opacity: 0; }
.active-step { display: block; opacity: 1; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }