/*
* Desenvolvedor Gabriel Afonso
* www.gabrielafonso.dev
*/

@charset "UTF-8";

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}
select {
    background: url(https://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat right #fff !important;
	-webkit-appearance: none;
	background-position: right 20px center !important;
}

a, input {
	outline: none;
}

:root {
	--background-site: url('../imagens/background.jpg');
	--cor-primaria: #354052;
	--cor-secundaria: #2d3646;
	--cor-terciaria: rgba(45, 54, 70, 0.86);
	--cor-quartenaria: #1c232f;
	--cor-contraste: #FFA100;
	--cor-background: #000;
	--font-family-sans-serif: "Nunito Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif;
	--font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;;
}

html {
	height: 100%;
	width: 100%;
}

body {
	font-family: 'Nexa-Book', sans-serif;
	background-color: var(--cor-primaria);
	background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.78), rgb(53, 64, 82)), var(--background-site) !important;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	min-height: 100%;
	width: 100%;
	align-items: center;
	text-align: center;
}

/* Animação de entrada */
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  	opacity:0;
	-webkit-animation:fadeIn ease-in 1;
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;

	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	animation-duration:1s;
}
.fadeIn.first {
	-webkit-animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
  	animation-delay: 0.4s;
}
.fadeIn.second {
	-webkit-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.fadeIn.third {
	-webkit-animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	animation-delay: 0.8s;
}
.fadeIn.fourth {
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	animation-delay: 1s;
}

/* Animação Loading */
#loadingProcess {
	width: 100%;
	height: 100%;
	position: fixed;
	background: rgba(0,0,0,.85);
	z-index: 10;
	display: flex;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	-webkit-animation:fadeIn ease-in 1;
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;

	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	animation-duration:1s;
}
#loadingProcess .loader {
	border: 16px solid #f3f3f3; /* Light grey */
	border-top: 16px solid var(--cor-secundaria); /* Blue */
	border-radius: 50%;
	width: 120px;
	height: 120px;
	animation: spin 2s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


#formRafaMoreira {
	padding: 60px;
	margin: 40px 0;
	background: var(--cor-terciaria);
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0,0,0,.2);
	-o-box-shadow: 0 10px 40px rgba(0,0,0,.2);
	-moz-box-shadow: 0 10px 40px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 10px 40px rgba(0,0,0,.2);
	border-top: 10px solid var(--cor-secundaria);
	align-items: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
    text-align: left;
    float: right;
}

#urlInvalid {
	padding: 20px;
	margin: 40px 0;
	background: var(--cor-terciaria);
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0,0,0,.2);
	-o-box-shadow: 0 10px 40px rgba(0,0,0,.2);
	-moz-box-shadow: 0 10px 40px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 10px 40px rgba(0,0,0,.2);
	border-top: 10px solid var(--cor-secundaria);
	align-items: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
    text-align: left;
    float: right;
}
#urlInvalid h1 {
    font-size: 30px;
    text-transform: uppercase;
    width: 100%;
    display: block;
    text-align: center;
    font-family: 'Nexa-Bold', sans-serif;
    margin: 0 0 20px;
    color: #ececec;
}
#urlInvalid a {
    font-size: 20px;
    font-family: 'Nexa-Bold', sans-serif;
    color: #ececec;
    padding: 10px 20px;
    border-radius: 5px;
    background: #394251;
    text-decoration: none;
}
#urlInvalid a:hover {
    background: #3d4a60;
}

#formResponse {
    float: right!important;
}
#formResponse .formSucesso {
	padding: 40px;
	margin: 40px 0;
	background: var(--cor-terciaria);
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0,0,0,.2);
	-o-box-shadow: 0 10px 40px rgba(0,0,0,.2);
	-moz-box-shadow: 0 10px 40px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 10px 40px rgba(0,0,0,.2);
	border-top: 10px solid var(--cor-secundaria);
	align-items: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
    text-align: left;
    float: right;
}
#formResponse .formSucesso h1 {
    font-size: 42px;
    text-transform: uppercase;
    width: 100%;
    display: block;
    font-family: 'Nexa-Bold', sans-serif;
    margin: 0 0 20px;
    color: #ececec;
}
#formResponse .formSucesso p {
    color: #fff;
    margin: 0;
}

.headerParq {
    padding: 40px 0 0;
}
.headerParq  h1 {
    font-size: 42px;
    text-transform: uppercase;
    text-align: left;
    font-family: 'Nexa-Bold', sans-serif;
    margin: 0;
    text-align: center;
    color: #ececec;
}

#headerForm {
	padding: 40px 0 0;
}
#headerForm img {
	width: 350px;
}
#headerForm h1 {
	font-weight: 300;
	color: #fff;
	text-align: center;
	margin: 0;
}

select {
	display: block;
	width: 100%;
	font-size: 18px;
	padding: 17px 20px 15px 20px;
	border: 1px solid #d9d9d9;
	line-height: 1.5;
	box-shadow: 0 5px 10px rgba(0,0,0,.1);
	margin-bottom: 20px;
	outline: none;
	cursor: pointer;
}

#btnComprar {
	padding: 10px 30px;
	font-family: 'Nexa-Heavy', sans-serif;
	font-size: 26px;
	border-radius: 50px;
	background: var(--cor-secundaria);
	color: #fff;
	border: 0;
	box-shadow: 0 10px 10px rgba(0,0,0,.3);
}
  
.input{
	border: none;
	flex: 1;
}
.input-icon-wrap .input-icon  {
	height: 55px;
	width: 65px;
	padding-left: 2px;
	align-items: center;
	display: flex;
	position: absolute;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 24px;
	color: #6a6a6a;
}
.input-icon-wrap input {
	padding: 12px 20px 8px 60px!important;
}

.versao2 {
	width: 600px!important;
	float: right!important;
}

.formularioTotal {
	width: 600px;
}
.formularioTotal label {
	padding: 10px 0 0 10px;
	color: #fff;
	display: block;
}
.formularioTotal .inputControl {
	background: var(--cor-secundaria);
	color: #fff;
	padding: 12px 20px;
	border-radius: 10px;
	border: 1px solid var(--cor-quartenaria);
	width: 100%;
	font-size: 20px;
	margin-bottom: 15px;
}
.formularioTotal input[disabled]{
	opacity: 0.8;
	cursor: not-allowed;
}
.formularioTotal .radios {
	padding: 20px 10px;
}
.formularioTotal .radios label.label-title {
	font-size: 20px;
	margin-bottom: 10px!important;
}
.formularioTotal .radios label {
	padding: 0!important;
	margin: 0!important;
}
.formularioTotal .radios span {
	font-size: 24px;
	color: #fff;
	padding: 5px 0 0;
}
.formularioTotal .radios svg {
	margin-right: 10px;
}

/* Button Radios RafaMoreira */
.btn-radio {
  cursor: pointer;
  display: inline-block;
  /* float: left; */
  -webkit-user-select: none;
  user-select: none;
}
@media screen and (max-width: 480px) {
  .btn-radio {
    display: block;
    float: none;
  }
  .btn-radio:not(:first-child) {
    margin-left: 0;
    margin-top: 15px;
  }
}
.btn-radio svg {
  fill: none;
  vertical-align: middle;
}
.btn-radio svg circle {
  stroke-width: 2;
  stroke: #C8CCD4;
}
.btn-radio svg path {
  stroke: var(--cor-contraste);
}
.btn-radio svg path.inner {
  stroke-width: 6;
  stroke-dasharray: 19;
  stroke-dashoffset: 19;
}
.btn-radio svg path.outer {
  stroke-width: 2;
  stroke-dasharray: 57;
  stroke-dashoffset: 57;
}
.btn-radio input {
  display: none;
}
.btn-radio input:checked + svg path {
  transition: all 0.4s ease;
}
.btn-radio input:checked + svg path.inner {
  stroke-dashoffset: 38;
  transition-delay: 0.3s;
}
.btn-radio input:checked + svg path.outer {
  stroke-dashoffset: 0;
}
.btn-radio span {
  display: inline-block;
  vertical-align: middle;
}
/* Finish Button Radio */

.formularioTotal .checks {
	padding: 20px 10px;
}
.formularioTotal .checks label.label-title {
	font-size: 20px;
	margin-bottom: 10px!important;
}
.formularioTotal .checks label {
	padding: 0!important;
	margin: 0!important;
}
.formularioTotal .checks span {
	font-size: 24px;
	color: #fff;
	padding: 5px 0 0;
}
.formularioTotal .checks svg {
	margin-right: 30px;
}

/* Input Button Checkbox */
.cbx {
  margin: auto;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
.cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #9098A9;
  transition: all 0.2s ease;
}
.cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--cor-contraste);
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}
.cbx span:last-child {
  padding-left: 8px;
}
.cbx:hover span:first-child {
  border-color: var(--cor-contraste);
}

.checkinput {
	display:none!important;
}
.checkinput:checked + .cbx span:first-child {
  background: var(--cor-contraste);
  border-color: var(--cor-contraste);
  animation: wave 0.4s ease;
}
.checkinput:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.checkinput:checked + .cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

@keyframes wave {
  50% {
    transform: scale(0.9);
  }
}

/* Finish Button Checkbox */

#declaracao {
	background: #484343;
	color: #fff;
	padding: 40px 20px;
	margin: 20px 0;
	box-shadow: 0 20px 30px 1px rgba(2, 2, 2, 0.1);
	-o-box-shadow: 0 20px 30px 1px rgba(2, 2, 2, 0.1);
	-moz-box-shadow: 0 20px 30px 1px rgba(2, 2, 2, 0.1);
	-webkit-box-shadow: 0 20px 30px 1px rgba(2, 2, 2, 0.1);
}
#declaracao h1 {
	font-size: 24px;
}

.submeter {
	width: 100%;
	text-align: center;
	padding: 20px 0;
}
.submeter input[type="submit"] {
	background: #079120;
	color: #fff;
	font-size: 26px;
	padding: 10px 30px;
	border-radius: 10px;
	border: 3px solid #00b521;
	text-transform: uppercase;
}
.submeter input[type="submit"]:hover {
	background: #00b521;
}

#anexoParq {
    display: none;
    background: #bd6d00;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}
#anexoParq h1 {
    font-size: 32px;
    font-family: 'Nexa-Bold', sans-serif;
    color: #fff;
}
#anexoParq p {
    font-size: 16px;
    color: #fff;
    padding: 10px 0 20px;
}

#responseForm {
	padding: 40px;
	margin: 40px 0;
	background: var(--cor-terciaria);
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0,0,0,.2);
	-o-box-shadow: 0 10px 40px rgba(0,0,0,.2);
	-moz-box-shadow: 0 10px 40px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 10px 40px rgba(0,0,0,.2);
	border-top: 10px solid var(--cor-secundaria);
	align-items: left;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: left;
    text-align: left;
    float: right;
}
#responseForm h1 {
    font-size: 40px;
    text-transform: uppercase;
    width: 100%;
    display: block;
    text-align: left;
    font-family: 'Nexa-Bold', sans-serif;
    margin: 0 0 10px;
    color: #ececec;
}
#responseForm p {
    color: #fff;
    margin: 0;
    display: block;
    width: 100%;
}
#responseForm a {
    font-size: 20px;
    font-family: 'Nexa-Bold', sans-serif;
    color: #ececec;
    padding: 10px 20px;
    border-radius: 5px;
    background: #394251;
    text-decoration: none;
    margin: 20px 0 0;
}
#responseForm a:hover {
    background: #3d4a60;
}

#anexoFotos {
    padding: 20px 0;
}
#anexoFotos h1 {
    font-size: 38px;
    text-align: center;
    font-family: 'Nexa-Bold', sans-serif;
    margin: 0 0 5px;
    color: #ececec;
}
#anexoFotos p {
    color: #fff;
    padding: 0 10px;
    text-align: center;
}
#anexoFotos .uploads-anexos {
    display: inline-grid;
    grid-template-columns: 50% 50%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-width: 100%;
    margin-top: 10px;
}
.anexo-upload {
    position: relative;
    padding: 10px;
}
.anexo-upload .anexo-edit {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
}
.anexo-upload .anexo-edit input {
    display: none;
}
.anexo-upload .anexo-edit input + label {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
    background: rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;    
    color: #fff;  
    border-radius: 15px;
    right: 0;
    position: absolute;
    font-size: 40px;
}
.anexo-upload .anexo-edit input + label:hover {
    background: rgba(43, 52, 67, 0.7);
}
.anexo-upload .anexo-edit input + label:after {
    color: #757575;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}
.anexo-upload .anexo-preview {
	height: 250px;
    background: var(--cor-secundaria);
    border-radius: 20px;
    border: 3px solid var(--cor-quartenaria);
    width: 100%;
    position: relative;
}
.anexo-upload .anexo-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}