/* CTA BUTTON */


.cta-button {
	position: relative;
	display: flex;
	align-items:stretch;
	color: var(--color-bg-light-sand);
	font-size: 13px;
	font-weight: 400;
	line-height: 13px;
	border-radius: 50px;
	margin-right:0;
}

.cta-button-patch {
	display: flex;
	height:100%;
}

.cta-button-patch svg {
	height: 100%; /* Faz o SVG preencher a altura do seu pai (.cta-button-patch) */
	width: auto;
}


.cta-button-text {
	padding: 6px 0 6px 22px;
	background-color: var(--color-bg-core-green);
	border-radius: 50px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	text-transform: uppercase;
	z-index: 1;
	display:flex;
	align-items:center;
	white-space: nowrap;
}

.cta-button-arrow {
	position:absolute;
	height:100%;
	width:auto;
	right:0;
	aspect-ratio: 1/1;
	padding: 6px 13px;
	z-index: 1;
	display:flex;
	align-items:center;
	justify-content:center;
}

.cta-button-arrow svg {
	width: 100%;
	height:auto;
}

.cta-button:hover .cta-button-text {
	background-color: var(--color-dark-sand);
}

.cta-button:hover .cta-button-patch svg path { fill: var(--color-dark-sand); }

@media (max-width: 1500px) {
	.cta-button-text { padding: 0 3px 0 18px; }
	.cta-button-patch svg { height:33px; }
	.cta-button-arrow { padding: 10px; }
}

