.te-boton-wrapper {
	display: inline-block;
}

.te-boton-wrapper .te-boton {
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	padding: 12px 24px;
	background-color: #2271b1;
	color: #ffffff;
	border-radius: 4px;
	text-align: center;
}

/* Estado oculto: preparado para el efecto slide-up */
.te-boton-wrapper.te-oculto {
	opacity: 0;
	transform: translateY(30px);
	pointer-events: none;
	transition-property: opacity, transform;
	transition-timing-function: ease-out;
}

.te-boton-wrapper.te-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	transition-property: opacity, transform;
	transition-timing-function: ease-out;
}

/* Modo bloque: pantalla completa */
.te-modo-bloque {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.85);
	z-index: 999999;
}

.te-modo-bloque.te-oculto {
	transform: translateY(100%);
}

.te-modo-bloque .te-boton {
	font-size: 22px;
	padding: 20px 40px;
}

/* Modo sticky arriba */
.te-modo-sticky_top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999998;
	display: flex;
	justify-content: center;
	padding: 12px 0;
	background: rgba(255, 255, 255, 0.95);
}

.te-modo-sticky_top.te-oculto {
	transform: translateY(-100%);
}

/* Modo sticky abajo */
.te-modo-sticky_bottom {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 999998;
	display: flex;
	justify-content: center;
	padding: 12px 0;
	background: rgba(255, 255, 255, 0.95);
}

.te-modo-sticky_bottom.te-oculto {
	transform: translateY(100%);
}
