/* =========================================================
   Indicador animado de scroll (chevron) del Fullpage Scroll.
   Se activa con el switcher "Scroll Hint Indicator" del widget.
   El color lo controla el panel (selector .oddino-vscroll-hint > color).
   ========================================================= */
.oddino-vscroll-hint {
	position: fixed;
	left: 50%;
	bottom: 28px;
	transform: translateX(-50%);
	width: 44px;
	height: 24px;
	padding: 0;
	color: #ffffff;
	opacity: 0.4;
	cursor: pointer;
	z-index: 9999;
	transition: opacity 0.4s ease;
	animation: oddino-vscroll-hint-bounce 1.6s ease-in-out infinite;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance: none;
	        appearance: none;
}

/* Anula fondo/borde/outline en TODOS los estados (incluye el rosa default del browser). */
.oddino-vscroll-hint,
.oddino-vscroll-hint:hover,
.oddino-vscroll-hint:focus,
.oddino-vscroll-hint:focus-visible,
.oddino-vscroll-hint:active {
	background: transparent !important;
	background-color: transparent !important;
	border: 0 !important;
	outline: none !important;
	box-shadow: none !important;
}

.oddino-vscroll-hint svg {
	display: block;
	width: 100%;
	height: 100%;
	transition: transform 0.3s ease;
	transform-origin: center center;
}

/* Rollover: solo agranda la flecha (sin tocar el transform del boton que hace el bounce). */
.oddino-vscroll-hint:hover,
.oddino-vscroll-hint:focus-visible {
	opacity: 0.85;
}

.oddino-vscroll-hint:hover svg,
.oddino-vscroll-hint:focus-visible svg {
	transform: scale(1.3);
}

.oddino-vscroll-hint.is-hidden {
	opacity: 0;
	pointer-events: none;
}

@keyframes oddino-vscroll-hint-bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── Ultima seccion: la flecha apunta ARRIBA (y el click lleva al inicio) ──
   La rotacion va en el BOTON (via keyframes), no en el SVG: asi no pelea con
   el control "Scroll Hint Hover Size" del panel, que aplica scale() al svg.
   Ambos transforms conviven (uno en el boton, otro en el svg). */
.oddino-vscroll-hint.is-up {
	animation-name: oddino-vscroll-hint-bounce-up;
}

@keyframes oddino-vscroll-hint-bounce-up {
	0%, 100% { transform: translateX(-50%) translateY(0) rotate(180deg); }
	50%      { transform: translateX(-50%) translateY(-8px) rotate(180deg); }
}

@media (prefers-reduced-motion: reduce) {
	.oddino-vscroll-hint { animation: none; }
	/* Sin animacion, la rotacion se aplica directo al boton. */
	.oddino-vscroll-hint.is-up { transform: translateX(-50%) rotate(180deg); }
}

/* Mobile: subir un poco para no chocar con el boton flotante de WhatsApp. */
@media (max-width: 767px) {
	.oddino-vscroll-hint {
		bottom: 20px;
		width: 38px;
		height: 20px;
	}
}
