/**
 * Button Block - Chevron Right Style
 *
 * Creates a minimal button style with label and animated chevron icon.
 * The chevron moves slightly to the right on hover for a smooth interaction.
 */
.wp-block-button.is-style-chevron-right .wp-block-button__link,
.wp-block-button.is-style-chevron-right > a {
	display: inline-flex !important;
	align-items: center !important;
	gap: 0.5rem !important;
	padding: 0.5rem 0 !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	font-weight: 600 !important;
	transition: all 0.3s ease !important;
	text-decoration: none !important;
}

.wp-block-button.is-style-chevron-right .wp-block-button__link:hover,
.wp-block-button.is-style-chevron-right > a:hover {
	background: transparent !important;
	border: none !important;
	transform: none !important;
}

.wp-block-button.is-style-chevron-right .wp-block-button__link::after,
.wp-block-button.is-style-chevron-right > a::after {
	content: "" !important;
	display: inline-block !important;
	width: 24px !important;
	height: 24px !important;
	background-color: currentColor !important;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") !important;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") !important;
	-webkit-mask-repeat: no-repeat !important;
	mask-repeat: no-repeat !important;
	-webkit-mask-position: center !important;
	mask-position: center !important;
	-webkit-mask-size: contain !important;
	mask-size: contain !important;
	transition: transform 0.3s ease !important;
	flex-shrink: 0 !important;
	margin-left: 0.25rem !important;
}

.wp-block-button.is-style-chevron-right .wp-block-button__link:hover::after,
.wp-block-button.is-style-chevron-right > a:hover::after {
	transform: translateX(4px) !important;
}

/**
 * Button Block - Glassmorphism Style
 *
 * Modern glassmorphism effect with semi-transparent background,
 * backdrop blur, subtle border, and smooth interactions.
 *
 * Customizable via editor:
 * - padding (spacing)
 * - border-radius (border settings)
 * - font-weight, font-size (typography)
 * - colors (text & background)
 */
.wp-block-button.is-style-glassmorphism {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
}
.wp-block-button.is-style-glassmorphism .wp-block-button__link,
.wp-block-button.is-style-glassmorphism > a {
	position: relative !important;
	/* Efeito glassmorphism - não customizável */
	backdrop-filter: blur(10px) saturate(180%) !important;
	-webkit-backdrop-filter: blur(10px) saturate(180%) !important;
	overflow: hidden !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;

	/* Valores padrão - customizáveis pelo editor */
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
	border-radius: 12px;
	padding: 0.875rem 1.75rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
}

.wp-block-button.is-style-glassmorphism .wp-block-button__link::before,
.wp-block-button.is-style-glassmorphism > a::before {
	content: "" !important;
	position: absolute !important;
	top: 0 !important;
	left: -100% !important;
	width: 100% !important;
	height: 100% !important;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	) !important;
	transition: left 0.5s ease !important;
}

.wp-block-button.is-style-glassmorphism .wp-block-button__link:hover,
.wp-block-button.is-style-glassmorphism > a:hover {
	background: rgba(255, 255, 255, 0.2) !important;
	border-color: rgba(255, 255, 255, 0.3) !important;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25) !important;
}

.wp-block-button.is-style-glassmorphism .wp-block-button__link:hover::before,
.wp-block-button.is-style-glassmorphism > a:hover::before {
	left: 100% !important;
}

.wp-block-button.is-style-glassmorphism .wp-block-button__link:active,
.wp-block-button.is-style-glassmorphism > a:active {
	box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.2) !important;
}

.wp-block-button.is-style-glassmorphism .wp-block-button__link:focus-visible,
.wp-block-button.is-style-glassmorphism > a:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.5) !important;
	outline-offset: 2px !important;
}

/* Dark background variant */
.wp-block-button.is-style-glassmorphism.has-dark-background
	.wp-block-button__link,
.wp-block-button.is-style-glassmorphism.has-dark-background > a {
	background: rgba(0, 0, 0, 0.2) !important;
	border-color: rgba(255, 255, 255, 0.1) !important;
	color: rgba(255, 255, 255, 0.95) !important;
}

.wp-block-button.is-style-glassmorphism.has-dark-background
	.wp-block-button__link:hover,
.wp-block-button.is-style-glassmorphism.has-dark-background > a:hover {
	background: rgba(0, 0, 0, 0.3) !important;
	border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Light background variant */
.wp-block-button.is-style-glassmorphism.has-light-background
	.wp-block-button__link,
.wp-block-button.is-style-glassmorphism.has-light-background > a {
	background: rgba(255, 255, 255, 0.7) !important;
	border-color: rgba(0, 0, 0, 0.1) !important;
	color: rgba(0, 0, 0, 0.9) !important;
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1) !important;
}

.wp-block-button.is-style-glassmorphism.has-light-background
	.wp-block-button__link:hover,
.wp-block-button.is-style-glassmorphism.has-light-background > a:hover {
	background: rgba(255, 255, 255, 0.85) !important;
	border-color: rgba(0, 0, 0, 0.15) !important;
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15) !important;
}

/**
 * Button Block - Hover Lift Style
 *
 * Modern, subtle hover effect that works with any background color.
 * Features smooth elevation with shadow and slight scale.
 * Perfect for clean, professional interfaces.
 */
.wp-block-button.is-style-hover-lift .wp-block-button__link,
.wp-block-button.is-style-hover-lift > a {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
	position: relative !important;
	will-change: transform !important;
}

.wp-block-button.is-style-hover-lift .wp-block-button__link:hover,
.wp-block-button.is-style-hover-lift > a:hover {
	transform: translateY(-6px) scale(1.05) !important;
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2),
		0 10px 20px -8px rgba(0, 0, 0, 0.15) !important;
	filter: brightness(1.1) !important;
}

.wp-block-button.is-style-hover-lift .wp-block-button__link:active,
.wp-block-button.is-style-hover-lift > a:active {
	transform: translateY(0) scale(0.98) !important;
	transition: all 0.1s ease !important;
}

.wp-block-button.is-style-hover-lift .wp-block-button__link:focus-visible,
.wp-block-button.is-style-hover-lift > a:focus-visible {
	outline: 2px solid currentColor !important;
	outline-offset: 4px !important;
}

/* Subtle shine effect on hover */
.wp-block-button.is-style-hover-lift .wp-block-button__link::before,
.wp-block-button.is-style-hover-lift > a::before {
	content: "" !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	background: linear-gradient(
		135deg,
		transparent 0%,
		rgba(255, 255, 255, 0.2) 50%,
		transparent 100%
	) !important;
	opacity: 0 !important;
	transition: opacity 0.3s ease !important;
	border-radius: inherit !important;
	pointer-events: none !important;
}

.wp-block-button.is-style-hover-lift .wp-block-button__link:hover::before,
.wp-block-button.is-style-hover-lift > a:hover::before {
	opacity: 1 !important;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
	.wp-block-button.is-style-hover-lift .wp-block-button__link,
	.wp-block-button.is-style-hover-lift > a {
		transition: none !important;
	}

	.wp-block-button.is-style-hover-lift .wp-block-button__link:hover,
	.wp-block-button.is-style-hover-lift > a:hover {
		transform: none !important;
		filter: brightness(1.05) !important;
	}
}
