/*//////////////////////////*/
/* Navbar                   */
/*//////////////////////////*/
.enlaces-cabezera:hover {
  text-shadow: 0 0 10px rgb(255, 255, 255), 0 0 20px rgb(255, 255, 255), 0 0 30px rgb(255, 255, 255);
}


.row {
	margin-right: 0px !important;
	margin-left: 0px !important;
}

/*////////////////////*/
/* Redes sociales     */
/*////////////////////*/
.socials-container {
	width: fit-content;
	height: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	padding: 20px 40px;
	background-color: #3a3a3a48;
	border-radius: 25px;
}

.social {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgb(194, 194, 194);
}

.twitter:hover {
	background: linear-gradient(45deg, #667f70, #00ee9b, #36ff8a, #edffdb);
}

.facebook:hover {
	background: linear-gradient(45deg, #134ac0, #316ff6, #78a3ff);
}

.google-plus:hover {
	background: linear-gradient(45deg, #871952, #db3961, #61ddff);
}

.instagram:hover {
	background: #f09433;
	background: -moz-linear-gradient(45deg,
			#f09433 0%,
			#e6683c 25%,
			#dc2743 50%,
			#cc2366 75%,
			#bc1888 100%);
	background: -webkit-linear-gradient(45deg,
			#f09433 0%,
			#e6683c 25%,
			#dc2743 50%,
			#cc2366 75%,
			#bc1888 100%);
	background: linear-gradient(45deg,
			#f09433 0%,
			#e6683c 25%,
			#dc2743 50%,
			#cc2366 75%,
			#bc1888 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.social svg {
	fill: white;
	height: 13px;
}


/* Toast Carrito */
.toast-body-carrito {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 400px;
}

.toast-carrito {
	width: 400px;
	max-width: 100%;
	padding: 0.5rem;
	background-color: black;
	border: none;
	box-shadow: none;
}

.input-cantidad-carrito {
	background-color: transparent;
}

.carrito-lateral {
	max-height: 400px;
	overflow-y: auto;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
}

/* Personalización de la barra de scroll */
.carrito-lateral::-webkit-scrollbar {
	width: 6px;
	/* Ancho de la barra de scroll */
}

.carrito-lateral::-webkit-scrollbar-thumb {
	background-color: #888;
	/* Color del scroll */
	border-radius: 10px;
	/* Bordes redondeados */
}

.carrito-lateral::-webkit-scrollbar-thumb:hover {
	background-color: #555;
	/* Color cuando el scroll está activo */
}

.carrito-lateral::-webkit-scrollbar-track {
	background: transparent;
	/* Fondo transparente */
}

.carrito-lateral::-webkit-scrollbar-button {
	display: none;
	/* Oculta las flechas */
}

/* Navegacion lateral */
.nav-lateral {
	color: rgb(224, 224, 224);
	font-size: 1.1rem;
}

.nav-lateral:hover {
	color: rgb(255, 255, 255);
	text-shadow: 2px 2px 5px rgb(224, 224, 224);
}

.nav-lateral.activo {
	color: rgb(255, 255, 255);
	font-size: 1.5rem;
}

hr {
	border: solid rgb(255, 255, 255) !important;
	opacity: 1 !important;
	margin: 0px !important;
	padding: 0px !important;
}

/*//////////////////////////////////////*/
/* NAV BAR MOVIL                        */
/*//////////////////////////////////////*/
/* Suaviza la transición del navbar */
#navbarSupportedContentMovil {
	transition: height 0.0s ease, opacity 0.0s ease;
}

#navbarSupportedContentMovil .collapse:not(.show) {
	height: 0;
	opacity: 0;
	overflow: hidden;
}

#navbarSupportedContentMovil .collapse.show {
	height: auto;
	opacity: 1;
	overflow: hidden;
}

.fondo-navbar-movil {
	background: rgba(0, 0, 0, 0);
}

.fondo-navbar-movil-collapse-open {
	background: rgba(0, 0, 0, 1);
}

.no-scroll {
	overflow: hidden;
}


/*////////////////////////*/
/* Efectos contacto       */
/*////////////////////////*/
.efecto-vidrio-input {
	background: rgba(255, 255, 255, 0.26);
	border-radius: 5px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(8.7px);
	-webkit-backdrop-filter: blur(8.7px);
	border: 1px solid rgba(255, 255, 255, 0.22);
}

.efecto-vidrio-input:focus {
	background: rgba(255, 255, 255, 0.26);
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	outline: none;
}


img {
	filter: saturate(0.6);
}



/* Divisor Informacion*/
.divider-vr {
	width: 1px;
	background-color: none;
	min-height: 100%;
}

.divider-hr {
	height: 1px;
	background-color: none;
	min-width: 100%;
}


/* Contacto boton Whatsapp */
.btn-contacto-wsp {
	background-color: rgb(35, 195, 43);
}

.btn-contacto-wsp:hover {
	background-color: rgb(28, 155, 34);
}