#btnGoTop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99;
	border: none;
	outline: none;
	background-color: #0d6efd;
	color: white;
	cursor: pointer;
	padding: 12px 16px;
	border-radius: 50%;
	font-size: 18px;
	display: none;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s;
}

#btnGoTop:hover {
	background-color: #084298;
}
button s {
	color: #6c757d;
	font-size: 0.9rem;
	margin-right: 8px;
}

button strong {
	font-size: 1.2rem;
	color: #000;
}

.c-white {
	color: white;
}

.hero {
	background-color: #212529;
	padding: 100px 0;
}

.compra-fija {
	position: fixed;
	top: 60px;
	right: 80px;
	z-index: 1050;
}

@media (max-width: 991.98px) {
	.compra-fija {
		display: none;
	}
}

.sticky-compra {
	position: sticky;
	top: 40px;
	z-index: 1000;
}

@media (max-width: 991.98px) {
	.sticky-compra {
		position: static;
	}
}

.timer-offer {
	font-size: 1.2rem;
	font-weight: bold;
	color: #dc3545;
}

.hero-top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
}

/*	-------------------------------------------	*\ 
/*	CARD 
/*	-------------------------------------------	*/
.card.ebook img {
	padding: 30px;
}




/*	-------------------------------------------	*\ 
/*	LOADER 
/*	-------------------------------------------	*/

/* Loader cubriendo toda la pantalla */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* Cambia el color de fondo si quieres */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner animado */
.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #f3f3f3; /* Gris claro */
  border-top: 6px solid #3498db; /* Azul */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animación de giro */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}