	
	/* 
	########################################

	Attention!

	This document is protected by copyright.
	SILV - All rights reserved © 2025.

	########################################
	*/

	:root{
		--sui-box-shadow-editor: rgba(0, 0, 0, 0.10) 0px 2px 12px;
		--sui-box-shadow: rgba(25, 0, 65, 0.08) 0px 0px 0px 1px, rgba(25, 0, 65, 0.32) 0px 4px 4px -4px;
		--sui-box-shadow-hover: rgba(25, 0, 65, 0.16) 0px 0px 0px 1px, rgba(25, 0, 65, 0.32) 0px 4px 4px -4px;
		
		--sui-color-grey: #f2f2f2;
		--sui-color-blue: #3A87FD;
		--sui-color-red: #ff1c0f;

		--sui-button-blue-background: #0163E1;
		--sui-button-grey-background: #f2f2f2;
	}

	/* */

	@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

	body{
		font-family: 'Inter', sans-serif;
		margin: 0;
		background: #FFF; /*F0F0F0*/ /* F6F6F6 */
		color: #010101;
	}

	* {
	    box-sizing: border-box;
	}

	a {
	  text-decoration: none;
	}

	.hide_element{ 
		display: none;
	}

	input{
		-moz-appearance:none;
		-webkit-appearance:none;
		appearance:none;
	}

	/* */

	.header {
	    width: 100%;
	    height: 62px;
	    padding: 16px 24px;
	    background: #FFF;
	    position: relative;
	    left: 0;
	    top: 0;
	    right: 0;
	    z-index: 999999;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    box-shadow: 0 0 4px rgb(0 0 0 / 0.1), 0 1px 2px rgb(0 0 0 / 0.1);
	}

	.logo{
		box-sizing: unset;
		width: 65px;
	}

	/**/

	.carousel-wrapper {
		position: relative;
		overflow: hidden;
		width: 100%;
		background: #fff;
		margin-top: 20px;
		margin-bottom: 60px;
		user-select: none;
		pointer-events: none;
	}

	.carousel-track {
		display: flex;
		gap: 10px;
		position: relative;
		left: 0;
	}

	.carousel-wrapper::before,
	.carousel-wrapper::after {
	  content: "";
	  position: absolute;
	  top: 0;
	  width: 50px; /* Largura do gradiente */
	  height: 100%;
	  pointer-events: none; /* Não interfere no clique */
	  z-index: 1;
	}

	.carousel-wrapper::before {
	  left: 0;
	  background: linear-gradient(to right, white, transparent);
	}

	.carousel-wrapper::after {
	  right: 0;
	  background: linear-gradient(to left, white, transparent);
	}

	.carousel-track img {
		height: 40px;
		width: auto;
		flex-shrink: 0;
		object-fit: contain;
	}

	/**/

	.welcome{
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		min-height: calc(100svh - 52px - 10px);
		flex-wrap: wrap;
		align-content: flex-end;
	}

	.min{
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		min-height: calc(100svh - 52px - 10px - 5px);
		flex-wrap: wrap;
		align-content: space-between;
	}
	.min div{
		width: 100%;
	}

	.welcome p{
		margin: 0;
		margin-bottom: 30px;
		opacity: .6;
		font-size: 15px;
		margin-top: -10px;
		width: 100%;
	}

	form{
		width: 100%;
	}

	.max{
		width: 100%;
		max-width: 700px;
		left: 0; right: 0;
		margin: auto;
		padding: 0 6vw;
	}

	h1{
		font-size: 28px;
		width: 100%;
	}

	h2{
		font-size: 20px;
		margin-top: 40px;
		display: flex;
		align-items: center;
		align-content: center;
		justify-content: flex-start;
	}
	h2 img{
		box-sizing: unset;
		width: 21px;
		padding-right: 10px;
		padding-bottom: 2px;
	}

	.btn{
		border: none;
		outline: none;
		border-radius: 8px;
		padding: 14px;
		width: 100%;
		position: relative;
		display: block;
		text-align: center;
		appearance: none;
		margin: 0;
		cursor: pointer;
		font-size: 15px;
		margin-top: 10px;
		margin-bottom: 30px;
		width: 100%;
	}
	.btn:hover{
		opacity: .9;
		outline: none !important;
	}

	.btn-blue{
		background: var(--sui-button-blue-background);
		color: #FFF;
	}

	.btn-black{
		background: #010101;
		color: #FFF;
	}

	.notallowed{
		pointer-events: none !important;
		opacity: .5;
	}

	/**/

	input, textarea, select{
		width: 100%;
		appearance: none;
		outline: none;
		border: 1px solid #DEDEDE;
		padding: 13px;
		border-radius: 8px;
		font-size: 15px;
		width: 100%;
		background: #FAFAFA;
		resize: none;
		font-family: 'Inter', sans-serif;
	}
	input:hover, textarea:hover, select:hover{
		outline: 1px solid #111;
	}
	input:focus, textarea:focus, select:focus{
		outline: 2px solid #111;
	}

	textarea{
		height: 240px;
	}

	.desc{
		opacity: .7;
		font-size: 14px;
		margin-top: -6px;
	}

	.desc-input{
		margin-top: 18px;
		margin-bottom: 4px;
	}

	.domain{
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
	}
	.domain select{
		width: 80px;
	}

	/**/

	.results{
		user-select: none;
		width: 100%;
		height: auto;
		max-height: 124px;
		display: block;
		position: absolute;
		z-index: 9999;
		background: #FFF;
		box-shadow: rgba(0, 0, 0, 0.12) 0 0 4px;
		border-radius: 8px;
		overflow: auto;
		margin-top: -8px;
	}

	.results .result-item{
		padding: 13px;
		border-block: 1px solid #f2f2f2;
		display: flex;
		align-items: flex-start;
	}
	.results .result-item:hover{
		background: #f2f2f2;
		cursor: pointer;
	}
	.results .result-item textp{
		margin: 0 !important;
		width: 100%;
		position: relative;
		display: block;
	}

	.map-pin{
		box-sizing: unset;
		width: 14px;
		padding-right: 6px;
		padding-top: 2px;
	}

	waitp{
		position: relative;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		padding: 13px;
		font-size: 15px;
	}

	waitp img{
		box-sizing: unset;
		width: 16px;
		padding-right: 6px;
		padding-bottom: 1px;
	}

	.location-title{
		font-size: 16px;
	}
	.location-street{
		opacity: .6;
		font-size: 12px;
		padding-top: 2px;
	}

	/**/

	.icons_flex{
		margin-top: 20px;
		width: 100%;
		display: flex;
		text-align: center;
		justify-content: space-between;
		gap: 30px;
		margin-bottom: 0px;
	}

	.icon_flex{
		display: flex;
		text-align: center;
		justify-content: flex-start;
		flex-wrap: wrap;
		padding: 10px 0;
		width: calc(100% / 3);
	}

	.icon_flex p{
		margin: 10px 0;
		font-size: 13px;
		font-weight: 500;
		width: 100%;
		text-align: left;
	}

	/**/

	#signature-pad {
		touch-action: none;
		user-select: none;
		width: 100%;
		background: #F7F7F7;
		outline: 1px solid #DEDEDE;
		border-radius: 8px;
	}

	.signature-clean{
		margin: 0;
		user-select: none;
		z-index: 99;
		position: absolute;
		right: 0;
		top: 0;
		font-size: 11px;
		opacity: .6;
		padding: 10px;
		cursor: pointer;
	}
	.signature-clean:hover{
		opacity: 1;
	}

	.legal{
		font-size: 11px;
		opacity: .6;
	}

	/**/

	bar{
		width: 0%;
		position: absolute;
		top: 62px;
		z-index: 1;
		user-select: none;
		height: 8px;
		background: #000;
		left: 0; right: 0;
		opacity: .7;
		transition: width 1s ease;
	}

	/**/

	.plan{
		width: 100%;
		height: auto;
		min-height: 240px;
		padding: 24px;
		border-radius: 8px;
		margin-bottom: 20px;
		border: 1px solid #E7E7E7;
	}

	.plan-grey{
		background: #F5F5F5;
		border: none;
	}

	.plan-title{
		font-size: 20px;
		margin-top: 0;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		font-weight: 600;
	}
	ofer{
		padding: 6px 8px;
		border-radius: 6px;
		background: var(--sui-button-blue-background);
		color: #FFF;
		width: max-content;
		font-weight: 400;
		font-size: 11px;
		margin: 0;
		margin-left: 10px;
	}

	price{
		display: flex;
		align-items: center;
		justify-content: flex-start;
		font-size: 32px;
	}
	promo{
		color: #747474;
		text-decoration: line-through;
		padding: 0 6px;
		font-size: 400;
	}

	feature{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		font-size: 16px;
		opacity: .6;
		margin-bottom: 12px;
	}
	feature img{
		box-sizing: unset;
		width: 18px;
		margin-right: 10px;
		padding-bottom: 1px;
	}

	.plan .btn{
		margin: 30px 0;
	}

	/**/

	.thanks{
		width: 100%;
		height: calc(100svh - 62px - 50px);
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		align-content: center;
	}
	.thanks-td{
		height: calc(100svh - 50px);
	}

	.thanks img{
		box-sizing: unset;
		width: 40px;
		margin-bottom: 15px;
	}

	.thanks h1{
		text-align: center;
		width: 100%;
	}
	lower{
		font-size: 18px;
		font-weight: 400;
		opacity: .7;
		width: 100%;
		text-align: center;
	}

	/**/

	.disabled{
		pointer-events: none;
		user-select: none;
		opacity: .3;
		background: #000;
	}

	.mandatory{
		color: red;
	}

	.paymentibantrf{
		width: 100%;
		border: 1px solid #DEDEDE;
		padding: 20px;
		border-radius: 8px;
		margin: 30px 0 10px 0;
		text-align: center;
		color: red;
		font-size: 15px;
	}

	pay-iban{
		width: 100%;
		padding: 20px;
		border-radius: 8px;
		background: #333;
		color: #FFF;
	}
	pay-iban text{
		position: relative;
		display: block;
		width: 100%;
		text-align: left;
		opacity: .7;
		font-size: 13px;
	}

	table{
		padding: 0;
		width: 100%;
		position: relative;
		margin-bottom: 10px;
	}

	td{
		padding: 0;
	}