/**
 * Xtellaris Button Widget — xt-button.css
 */

/* ── Wrapper (controla alineación) ───────────────────────── */
.xt-button-wrap {
	display: flex;
	width: 100%;
}

/* ── Grupo de botones ─────────────────────────────────────── */
.xt-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

/* Juntos: sin separación */
.xt-button--joined {
	gap: 0;
}

/* ── Botón principal ──────────────────────────────────────── */
.xt-button__primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 28px;
	border-radius: 100px;
	background-color: #0091ff;
	color: #ffffff;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.01em;
	text-decoration: none;
	white-space: nowrap;
	border: none;
	cursor: pointer;
	line-height: 1;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transition: background-color 0.25s ease, color 0.25s ease,
	            transform 0.25s ease, box-shadow 0.25s ease;
}

.xt-button__primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

/* ── Botón flecha ─────────────────────────────────────────── */
.xt-button__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: #0091ff;
	color: #ffffff;
	text-decoration: none;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transition: background-color 0.25s ease, color 0.25s ease,
	            transform 0.25s ease, box-shadow 0.25s ease;
}

.xt-button__arrow:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.xt-button__arrow svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
	.xt-button__primary {
		height: 48px;
		font-size: 15px;
		padding: 0 22px;
	}

	.xt-button__arrow {
		width: 48px;
		height: 48px;
	}
}
