﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.alpinestars-landing {
	font-family: 'Roboto', sans-serif;
	background-color: #1a1a1a;
	color: #fff;
	overflow-x: hidden;
}

.hero-section {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

.hero-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
	max-width: 1200px;
	width: 100%;
}

.hero-text {
	flex: 1;
	max-width: 1000px;
}

.hero-text img {
	width: 100%;
}

.hero-text .logo {
	max-width: 350px;
	height: auto;
	margin-bottom: 20px;
}

.hero-text h2 {
	font-size: 40px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	margin-top: 20px;
	line-height: 56px;
}

.form-wrapper {
	flex: 1;
	max-width: 480px;
	background-color: #b9b7b5;
	padding: 40px;
	border-radius: 12px;
}


.formIntegration2 {
	width: 100%;
}

.formIntegration2 .block {
	margin-bottom: 22px;
}

.formIntegration2 label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.9rem;
	color: black;
	font-weight: 400;
}

.formIntegration2 .label-subtitle {
	font-size: 0.8rem;
	color: #aaa;
}

.formIntegration2 input[type="text"] {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid transparent;
	border-radius: 8px;
	background-color: #e9e9e9;
	font-size: 1rem;
	color: black;
}

.formIntegration2 input[type="text"]::placeholder {
	color: black;
}

.formIntegration2 .containerMultiple {
	display: flex;
	flex-wrap: wrap;
	row-gap: 12px;
	column-gap: 20px;
}

.formIntegration2 .containerMultiple>div {
	display: inline-block;
}

.formIntegration2 .containerMultiple label {
	display: flex;
	align-items: center;
	cursor: pointer;
	color: black;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
}

.formIntegration2 .containerMultiple input[type="checkbox"] {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}

.formIntegration2 .containerMultiple label::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-right: 8px;
	background: white;
	border: 2px solid #fff;
	border-radius: 50%;
	transition: all 0.2s ease;
}

.formIntegration2 .containerMultiple input[type="checkbox"]:checked+label::before {
	background-color: black;
	border-color: #fff;
}

.formIntegration2 .dinSubmit {
	width: 100%;
	padding: 15px;
	margin-top: 10px;
	background-color: #000;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.formIntegration2 .dinSubmit:hover {
	background-color: #333;
}

.gallery-section {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	width: 100%;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.alpinestars-landing form.formIntegration2 .containerMultiple div label {
	list-style: none;
}

.alpinestars-landing form.formIntegration2 .containerMultiple {
	display: flex !important;
	flex-wrap: wrap !important;
	row-gap: 12px;
	column-gap: 20px;
}

.alpinestars-landing form.formIntegration2 .containerMultiple label {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	color: #000;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
}

.alpinestars-landing form.formIntegration2 .containerMultiple input[type="checkbox"] {
	position: absolute !important;
	opacity: 0 !important;
	width: 0 !important;
	height: 0 !important;
	pointer-events: none;
}

.alpinestars-landing form.formIntegration2 .containerMultiple label::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 2px solid #000;
	background: #fff;
	border-radius: 50%;
	transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}

.alpinestars-landing form.formIntegration2 .containerMultiple label:has(input[type="checkbox"]:checked)::before {
	background-color: #000;
	border-color: #000;
}

.alpinestars-landing form.formIntegration2 .containerMultiple label:has(input[type="checkbox"]:focus-visible)::before {
	outline: 2px solid #000;
	outline-offset: 2px;
}

.alpinestars-landing form.formIntegration2 input[type="checkbox"],
.alpinestars-landing form.formIntegration2 input[type="radio"] {
	appearance: auto !important;
	-webkit-appearance: auto !important;
	-moz-appearance: auto !important;
}

header.hero-section {
	position: relative;
	background: url(/Custom/Content/themes/Alpinestars/Imagens/black-friday/bg-black-friday.png) center / cover no-repeat;
	isolation: isolate;
	background-position: unset;
	background-position: top;
}

header.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgb(0 0 0 / 81%);
	z-index: -1;
}

header.hero-section .hero-content {
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 992px) {

    .alpinestars-landing form.formIntegration2 .containerMultiple div label {
        min-width: 100px;
    }

    .hero-text h2 {
        font-size: 20px;
        line-height: 20px;
    }

    header.hero-section {
         background: url(/Custom/Content/themes/Alpinestars/Images/BackgroundMobile.png);
        isolation: unset;
    }
	.hero-content {
		flex-direction: column;
		text-align: center;
	}

	.hero-text {
		margin-bottom: 40px;
	}

	.gallery-section {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

form.formIntegration2 *,
form.formIntegration2 *::before,
form.formIntegration2 *::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

form.formIntegration2 {
	width: 100%;
	margin: 0 auto;
}

form.formIntegration2 input[type="text"] {
	outline: none;
	width: 100%;
}

form.formIntegration2 select {
	width: 100%;
	overflow: auto;
}

form.formIntegration2 select.invi-select {
	display: none;
	width: 0px;
	height: 0px;
	border: none;
}

form.formIntegration2 textarea {
	width: 100%;
	height: 80px;
	overflow: auto;
	resize: vertical;
}

form.formIntegration2 div.containerMultiple {
	width: 100%;
	overflow: auto;
	padding: 2px;
	position: relative;
}

form.formIntegration2 div.containerMultiple div {
	min-height: 20px;
}

form.formIntegration2 div.containerMultiple div label {
	white-space: nowrap;
	display: inline-block;
	position: relative;
}

form.formIntegration2 input.type_PHN_DDI {
	text-align: center;
}

form.formIntegration2 div.div_PHN_DDI {
	width: 28%;
	margin-right: 2%;
	text-align: center;
	display: inline-block;
}

form.formIntegration2 div.div_PHN_NUM {
	width: 70%;
	display: inline-block;
}

form.formIntegration2 .div_PHN.hidden_DDI div.div_PHN_DDI {
	width: 0;
	display: none;
}

form.formIntegration2 .div_PHN.hidden_DDI div.div_PHN_NUM {
	width: 100%;
	display: inline-block;
}

form.formIntegration2 .field-error {
	border-color: #CC0000 !important;
}

form.formIntegration2 .g-recaptcha {
	margin-bottom: 5px;
}

form.formIntegration2 .DinamizeDivMessageSuccess,
form.formIntegration2 .DinamizeDivMessageAlert,
form.formIntegration2 .DinamizeDivMessageError,
form.formIntegration2 .DinamizeDivCaptchaMessage {
	display: none;
	margin: 0px 0px 10px;
	color: rgb(255, 255, 255);
	font-size: 14px;
	font-family: arial;
	padding: 15px;
}

form.formIntegration2 .DinamizeDivMessageSuccess {
	background-color: rgb(20, 118, 18);
}

form.formIntegration2 .DinamizeDivMessageAlert,
form.formIntegration2 .DinamizeDivMessageError,
form.formIntegration2 .DinamizeDivCaptchaMessage {
	background-color: #ac0000;
}

form.formIntegration2 div.block {
	display: block;
	margin-bottom: 10px;
}

form.formIntegration2 div.block:last-child {
	margin-bottom: 0px;
}

form.formIntegration2 div.vertical {
	display: block;
}

form.formIntegration2 div.horizontal {
	display: inline-block;
	vertical-align: middle;
}

form.formIntegration2 div.horizontal.divlabel {
	width: 28%;
	margin-right: 2%;
	text-align: right;
}

form.formIntegration2 div.horizontal.divinput {
	width: 70%
}

form.formIntegration2 div.containerAllInline div.block {
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 5px;
}

form.formIntegration2 div.containerAllInline div.horizontal.divinput {
	width: 182px
}

form.formIntegration2 .submit {
	position: relative;
	width: 100%
}

form.formIntegration2 .submit.class1 {
	text-align: left;
}

form.formIntegration2 .submit.class2 {
	text-align: left;
	width: 70%
}

form.formIntegration2 .submit.class3 {
	text-align: center;
}

form.formIntegration2 .submit.class4 {
	text-align: right;
}

form.formIntegration2 .submit.class5 {
	text-align: center;
}

form.formIntegration2 .submit.class5 input[type=submit] {
	width: 100%
}

form.formIntegration2 .spinner {
	display: none;
}

form.formIntegration2.style1 label {
	color: #4a5765;
	font-family: arial;
	font-size: 14px;
}

form.formIntegration2.style1 input[type="text"] {
	border: 2px solid #bec5cb;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	box-shadow: 0 0 0 4px transparent;
	color: #4a5766;
	font-size: 13px;
	padding: 9px 6px;
	height: 38px;
}

form.formIntegration2.style1 input[type="submit"] {
	-webkit-appearance: none;
	border: medium none;
	background-color: #0e6e0e;
	color: #ffffff;
	cursor: pointer;
	font: bold 13px/38px Arial;
	height: 38px;
	padding: 0 15px;
	display: inline-block;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 5px 0 0 0;
}

form.formIntegration2.style1 div.containerMultiple,
form.formIntegration2.style1 select,
form.formIntegration2.style1 textarea {
	border: 2px solid #bec5cb;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	box-shadow: 0 0 0 4px transparent;
	color: #4a5766;
}

form.formIntegration2.style1 select {
	height: 40px;
}

form.formIntegration2.style1 textarea {
	max-height: 200px;
	min-height: 52px;
}

form.formIntegration2.style1 .spinner {
	display: none;
	bottom: 0;
	height: 18px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
}

form.formIntegration2.style1 .spinner>div {
	width: 18px;
	height: 18px;
	background-color: #fff;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

form.formIntegration2.style1 .spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

form.formIntegration2.style1 .spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

form.formIntegration2.style1 .checkbox-container {
	display: block;
	position: absolute !important;
	padding-left: 22px;
	margin-bottom: 4px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

form.formIntegration2.style1 .checkbox-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
	top: 0;
	left: 0;
}

form.formIntegration2.style1 .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 18px;
	width: 18px;
	background-color: #FFF;
	border: 2px solid #BBB;
	border-radius: 3px;
}

form.formIntegration2.style1 .checkbox-container:hover input~.checkmark {
	border: 2px solid #777;
}

form.formIntegration2.style1 .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

form.formIntegration2.style1 .checkbox-container input:checked~.checkmark:after {
	display: block;
}

form.formIntegration2.style1 .checkbox-container .checkmark:after {
	left: 5px;
	top: 0px;
	width: 5px;
	height: 12px;
	border: solid #555;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

form.formIntegration2.style2 label {
	font-family: arial;
	font-size: 14px;
}

form.formIntegration2.style2 input[type="text"] {
	border: 1px solid #bec5cb;
	box-shadow: 0 0 0 4px transparent;
	color: #4a5766;
	font-size: 13px;
	padding: 9px 6px;
}

form.formIntegration2.style2 div.containerMultiple {
	max-height: 82px;
}

form.formIntegration2.style2 div.containerMultiple,
form.formIntegration2.style2 select,
form.formIntegration2.style2 textarea {
	border: 1px solid #bec5cb;
	box-shadow: 0 0 0 4px transparent;
	color: #4a5766;
}

form.formIntegration2.style2 select {
	height: 40px;
}

form.formIntegration2.style2 textarea {
	max-height: 200px;
	min-height: 52px;
}

form.formIntegration2.style2 ::-webkit-input-placeholder {
	color: #000000;
}

form.formIntegration2.style2 ::-moz-placeholder {
	color: #000000;
	font-family: arial;
}

form.formIntegration2.style2 :-ms-input-placeholder {
	color: #000000;
	font-family: arial;
}

form.formIntegration2.style2 :-moz-placeholder {
	color: #000000;
	font-family: arial;
}

form.formIntegration2.style2 .spinner {
	display: none;
	bottom: 0;
	height: 18px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
}

form.formIntegration2.style2 .spinner>div {
	width: 18px;
	height: 18px;
	background-color: #fff;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

form.formIntegration2.style2 .spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

form.formIntegration2.style2 .spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0)
	}

	40% {
		-webkit-transform: scale(1.0)
	}
}

@keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}