#after_layer_slider_1 {
	z-index: 30;
}

.capa-flotante {
    width: 100%;
    background-color: #bf0011;
    color: white;
    padding: 15px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    z-index: 9999;
}

.capa-flotante.sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    animation: deslizar-abajo 0.4s ease forwards;
}

@keyframes deslizar-abajo {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0%);
    }
}


.boton-colabora {
	display: inline-block;
	background-color: #bf0011;
	color: #fff !important;
	font-size: 1.2em;
	font-weight: bold;
	padding: 14px 28px;
	border: 2px solid white;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	position: relative;
}

.boton-colabora:hover {
	background-color: #28a745; /* Verde estilo Bootstrap */
	border-color: #28a745;
	color: #fff !important;
	box-shadow: 0 12px 25px rgba(40, 167, 69, 0.4);
	transform: translateY(-2px);
}

.boton-colabora::after {
	/*content: "🤝";*/
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.2em;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.boton-colabora:hover::after {
	opacity: 1;
}