body {
	background-color: #001317;
	font-family: 'Inter', Arial;
	font-weight: 300;
	color: white;
}

h1, h2, h3, h4 {
	font-family: 'Inter', Arial;
}

p {
	font-weight: 300;
}

.wrap-onboard {
	max-width: 90%;
	margin: 20px auto 50px;
}
.sections h3 {
	color: white;
	line-height: 33px;
	font-size: 28px;
	margin-bottom: 35px;
}

button {
	outline: none;
}

.button {
	margin-bottom: 0;
	font-family: 'Barlow Condensed', Arial;
	font-size: 18px;
	background-color: #2EFF00;
	color: black;
	text-transform: uppercase;
	width: 100%;
	display: block;
	border-radius: 200px;
	padding: 23px;
	cursor: pointer;
}

.button:hover,
.button[disabled],
.button[disabled]:hover,
.button:focus,
.button:active {
	background-color: #2EFF00;
	color: black;
}
.button.back[disabled] {
	display: none !important;
}

.options {
	display: flex;
	flex-direction: column;
	grid-gap: 10px;
}
.options .option-button label {
	width: 100%;
	display: block;
	position: relative;
	text-align: left;
	background-color: #0D1F23;
	color: white;
	padding: 25px;
	padding-right: 22px;
	cursor: pointer;
	gap: 20px;
	border-radius: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	border: 2px solid transparent;
	overflow: hidden;
}
.options .option-button label input {
	position: absolute;
	left: -999px;
}
.options .option-button label.active {
	border-color: #2EFF00;
}
.options .option-button label small {
    color: white;
    opacity: 0.48;
    display: block;
    margin-top: 3px;
    line-height: 17px;
}

.options .option-button label svg {
	width: 19px;
    height: auto;
}

.options-body label {
	height: 100px;
}
.options-body label img {
    position: absolute;
    right: 10px;
    top: 0;
    object-fit: contain;
    height: 100%;
    width: 100px;
}

.option-cta {
	margin-top: 40px;
	display: flex;
	gap: 15px;
}
.option-cta .button {
	background-color: #2EFF00;
	color: black;
	flex: 1;
	text-transform: uppercase;
	width: 100%;
	display: block;
	border-radius: 200px;
	padding: 23px;
	cursor: pointer;
}
.option-cta .button:focus,
.option-cta .button:hover {
	background-color: #2EFF00;
	color: black;
}
.option-cta .button.back {
	background-color: #0D1F23;
	color: white;
}


.fields .field {
	background-color: #0D1F23;
	box-shadow: none;
	border: none;
	color: white;
	height: auto;
	padding: 10px 30px;
	margin-bottom: 0;
	flex: 1;
	height: 80px;
	font-size: 16px;
}
.fields .field:focus {
	background-color: #0D1F23;
	box-shadow: none;
	border: none;
}
.field-group {
	display: flex;
	align-items: center;
	overflow: hidden;
	border-radius: 20px;
}
.field-group span {
    background-color: #0D1F23;
    color: white;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.field-group.gap {
	gap: 5px;
}
input::placeholder { /* Standard syntax */
  color:white;
  opacity: 0.2;
}

input::-webkit-input-placeholder { /* Chrome, Safari */
  color:white;
  opacity: 0.2;
}

input:-moz-placeholder { /* Firefox 4-18 */
  color:white;
  opacity: 0.2;
}

input::-moz-placeholder { /* Firefox 19+ */
  color:white;
  opacity: 0.2;
}

input:-ms-input-placeholder { /* Internet Explorer 10+ */
  color:white;
  opacity: 0.2;
}

select {
  -webkit-appearance: none; /* For Chrome, Safari, and Opera */
  -moz-appearance: none;    /* For Firefox */
  appearance: none;         /* Standard property */
}

select::-ms-expand {
  display: none;
}







    /* Barra de progresso */
    .progressbar {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0 0 50px 0;
      counter-reset: step;
	  gap: 6px;
    }

    .progressbar li {
      flex: 1;
      text-align: center;
      position: relative;
      font-size: 14px;
      color: #00252E;
    }

    .progressbar li::before {
      content: counter(step);
      counter-increment: step;
      width: 30px;
      height: 30px;
      line-height: 30px;
      border: 2px solid #00252E;
      display: inline-block;
	  display: none;
      border-radius: 50%;
      background: white;
      margin-bottom: 10px;
    }

    .progressbar li::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background: #00252E;
      top: 15px;
      left: -50%;
      z-index: -1;
    }

    .progressbar li:first-child::after {
      content: none;
    }

    .progressbar li.active {
      color: #2EFF00;
    }

    .progressbar li.active::before {
      border-color: #2EFF00;
    }

    .progressbar li.active + li::after {
      background: #2EFF00;
    }

    /* Steps */
    .step {
      display: none;
    }

    .step.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    input {
      display: block;
      margin: 10px 0;
      padding: 8px;
      width: 250px;
    }

    .buttons {
      margin-top: 20px;
    }

    button {
      padding: 10px 20px;
      margin: 5px;
      border: none;
      border-radius: 5px;
      background: #007BFF;
      color: white;
      cursor: pointer;
    }

    button[disabled] {
      background: #ccc;
      cursor: not-allowed;
    }

    .error {
      color: red;
      font-size: 13px;
    }



	.sections-headline h3 {
		margin-bottom: 15px !important;
	}
	.sections-headline p {
		margin-bottom: 35px;
		opacity: 0.48;
		line-height: 23px;
	}


	.options-days .options {
		grid-template-columns: 1fr 1fr;
		display: grid;
	}
	.options-days small {
		display: block;
		margin-top: 25px;
		opacity: 0.48;
	}


	.form-policy {
		text-align: center;
		margin-top: 30px;
		font-size: 11px;
	}
	.form-policy span {
		opacity: 0.48;
		color: white;
	}
	.form-policy a {
		text-decoration: underline;
		color: white;
	}

	#s13 img {
		display: table;
		margin: 0 auto;
		max-width: 75%;
	}

	#success {
		display: none;
		max-width: 100%;
		margin: 0;
	}

	.success-progress {
		display: flex;
		flex-direction: column;
		grid-gap: 30px;
		padding: 0 20px;
		margin-top: 40px;
	}
	.success-progress h3 {
		color: white;
		line-height: 33px;
		font-size: 28px;
		margin-bottom: 0;
	}
	.success-info {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.success-wrap {
		display: flex;
		align-items: center;
		height: 100vh;
	}
	.success-info span:nth-child(2) {
		font-size: 13px;
		opacity: 0.48;
	}
	.success-info span:nth-child(1) {
		font-size: 33px;
		line-height: 40px;
		font-weight: bold;
	}


.bar-container {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 5px;
    background: #00252E;
    width: 100%;
    overflow: hidden;
}
.bar {
  float: left;
    background: #2EFF00;
    height: 100%;
    -webkit-border-radius: 10px 0px 0px 10px;
    -moz-border-radius: 10px 0px 0px 10px;
    border-radius: 10px 0px 0px 10px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.success-wrap > div {
	margin: 0 auto;
}

#finaly2,
#finaly3 {
	display: none;
}
#finaly2 .success-progress,
#finaly3 .success-progress {
	margin-top: 0;
}

#finaly3 .success-progress {
	grid-gap: 10px;
}
#finaly3 .button:focus,
#finaly3 .button:active,
#finaly3 .button,
#finaly3 .button:hover {
	background-color: white;
	color: black !important;
}
#finaly3 .button.icon {
	display: flex;
	justify-content: center;
	grid-gap: 5px;
	align-items: center;
}
#finaly3 .button.icon svg {
	width: 22px;
	height: auto;
	margin-top: -5px;
}


#finaly3 .button.hollow:focus,
#finaly3 .button.hollow:active,
#finaly3 .button.hollow {
	border: none;
	color: white !important;
	background-color: transparent;
}

.plans {
	display: flex;
	align-items: center;
	grid-gap: 5px;
	flex-direction: row;
	margin-bottom: 35px;
	margin-top: 36px !important;
}

.plan {
	border: 2px solid transparent;
	border-radius: 10px;
	padding: 20px 15px;
	text-align: center;
	background-color: #00252E;
	flex: 1;
	position: relative;
}
.plan.feat {
    border-color: #2EFF00;
}
.plan.feat small {
	color: #2EFF00;
	opacity: 10;
}

.plan b {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 0px;
}

.plan span {
    margin-bottom: 10px;
}

.plan p {
    margin-bottom: 10px;
    font-size: 13px;
}

.plan small {
    line-height: 14px;
    opacity: 0.48;
}


.plan b,
.plan span,
.plan p,
.plan small {
	display: block;
}


.plan.feat .best {
	border-radius: 200px;
	padding: 2px;
	text-transform: uppercase;
	color: #001317;
	background-color: #2EFF00;
	position: absolute;
	top: -15px;
	left: 50%;
	width: 90px;
	margin-left: -45px;
	font-size: 14px;
	font-family: 'Barlow Condensed', Arial;
}




.picker-container{width:100%; max-width:500px; text-align:center;}
.picker-title{margin-bottom:10px; font-size:18px; font-weight:bold;}
.selected-value{margin-bottom:20px;font-size: 70px;font-weight:bold;color: #fff;text-align: center;line-height: 70px;}
.selected-value small {font-size: 26px;}
.picker-group{display:flex; justify-content:space-between; gap:10px; position:relative;}

.picker-group:before {
	content: '';
	background: #001317;
	background: linear-gradient(180deg,rgba(0, 19, 23, 1) 0%, rgba(0, 19, 23, 0) 100%);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 50px;
	z-index: 1;
}
.picker-group:after {
	content: '';
	background: #001317;
	background: linear-gradient(0deg,rgba(0, 19, 23, 1) 0%, rgba(0, 19, 23, 0) 100%);
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50px;
	z-index: 1;
}

.picker{
  flex:1;
  height:300px; /* altura aumentada */
  overflow-y:scroll;
  scroll-snap-type:y mandatory;
  scrollbar-width:none;
  -ms-overflow-style:none;
  /* background:#0c141a; */
  border-radius:10px;
  scroll-behavior:smooth;
}
.picker::-webkit-scrollbar{display:none;}
.picker-option{
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
  scroll-snap-align:center;
  opacity: 0.25;
  transition:all 0.2s;
}
.picker-option.active{
  font-size: 22px;
  font-weight:bold;
  opacity:1;
  color:#fff;
}
.highlight{
  position:absolute;
  top:50%;
  left:0;
  right:0;
  height:50px;
  margin-top:-25px;
  border-radius:25px;
  background:rgba(255,255,255,0.05);
  pointer-events:none;
  z-index:1;
}
.btn-next{
  margin-top:20px;
  padding:15px;
  width:100%;
  background:#0f0;
  border:none;
  border-radius:30px;
  font-size:18px;
  font-weight:bold;
  color:#000;
  cursor:pointer;
}
.spacer{height:125px;} /* metade da altura do picker menos metade do item */