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

body {
  background: #000;
  font-family: 'Arial', sans-serif;
  color: #fff;
  overflow-x: hidden;
}


@font-face {
    font-family: 'azo_bitmapregular';
    src: url('azobitmap-rounded-webfont.woff2') format('woff2'),
         url('azobitmap-rounded-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.main-wrapper {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.top-bar {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.status-time {
  font-size: 14px;
  font-weight: bold;
}

.main-content {
    background: #000000;
    background-image: url('../Images/bg.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    padding-bottom: 0px;
    overflow: hidden;
}

.questionario{
  background:#000000;
  background-image: url('../Images/bgquestionario.png');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  padding-top:18vh;
  padding-bottom: 0px;
  overflow: hidden;
}

.resultado {
    background: #000000;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    padding-top: 10vh;
    padding-bottom: 0px;
    overflow: hidden;
}

.resultado .resulttxt{
   text-align:center !important;
   font-family: 'azo_bitmapregular','Arial', sans-serif;
}

.resultado .resulttxt h1{
	margin-top:90px;
    font-size: 1.8rem !important;
}

.resultado .resulttxt p{
	margin-top:20px;
    font-size: 18px !important;
}

.qrcodearea{
  background:#000000;
  background-image: url('../Images/BGArea.png');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  padding-top:18vh;
  padding-bottom: 0px;
  overflow: hidden;
}



.hero-section {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-align: center;
  padding:30px;
}

.introtext {
  position: relative;
  z-index: 2;
  padding: 20px;
  padding-top:0px;
  padding-bottom:0px;
  text-align: center;
  padding-left:15vw;
  padding-right:15vw;
}

.introtext img{
  max-width:100%;
}

.badge-passatempo {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(90deg, #ff0080, #ff7b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,1);
  margin: 0;
}

.festival-card {
  background-size: cover;
  background-position: center;
  position: relative;
  border: 0px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 24px;
  padding-top:20px;
  padding-bottom:0px;
  overflow: hidden;
  /* backdrop-filter: blur(14px); */
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.festival-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
}

.festival-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0px;
}

.custom-input {
  width: 100%;
  background: rgba(0,0,0,1);
  border: 1px solid rgba(255,255,255,1);
  border-radius: 18px;
  height: 56px;
  padding: 0 18px;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.custom-input:focus {
  border-color: #3cdbc9;
  box-shadow: 0 0 0 4px rgba(60,219,201,0.15);
}

.custom-input::placeholder {
  color: rgba(255,255,255,1);
}

.custom-input:not(:placeholder-shown){
  border-color: #3cdbc9;
  box-shadow: 0 0 0 4px rgba(60,219,201,0.15);
}

.day-selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
  width: 55%;
  margin-left: 25px;
}

.question-selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
  width: 65%;
  margin-left: 25px;
}


.day-option {
  position: relative;
}

.day-option input {
  display: none;
}

.day-option label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.day-option input:checked + label {
  background: linear-gradient(90deg, rgba(60,219,201,0.2), rgba(255,123,0,0.2));
  border-color: rgba(60,219,201,0.5);
  transform: scale(1.01);
}

.day-option input:checked + label::after {
  background: #ff0080;
  border-color: #ff0080;
  box-shadow: 0 0 10px rgba(60,219,201,0.6);
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.custom-checkbox input {
  margin-top: 4px;
  transform: scale(1.2);
}

.custom-checkbox label {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,1);
}

.custom-checkbox a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding-right:6px;
}
.lermais{
  max-height:15px;
}

.btn-submit {
  border: none;
  padding:10px;
  padding-left:50px;
  padding-right:50px;
  border-radius: 30px;
  margin-top: 28px;
margin-bottom: 28px;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #3cdbcb;
  color: #fff;
  transition: all 0.3s ease;
}

.questions-screen,
.success-screen {
  padding: 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.question-card {
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding-left: 10vw;
  padding-right: 10vw;
  margin-bottom: 20px;

}

.question-number {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff0080, #ff7b00);
  font-weight: bold;
  margin-bottom: 18px;
}

.question-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}

.answer-option input {
  display: none;
}

.answer-option label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  padding-left: 15px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 1);
  border: 1px solid rgba(255, 255, 255, 1);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: normal;
  font-size: 16px;
  color: #ffffff !important;
}

.answer-option input:checked + label {
  background: rgba(60,219,201,0.45);
  border-color: rgba(60,219,201,0.45);
}

.success-box {
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #ff0080, #ff7b00);
  font-size: 44px;
  box-shadow: 0 20px 40px rgba(60,219,201,0.4);
}

.success-title {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
}

.success-text {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-size: 16px;
}

.floating-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
}

.blur-1 {
  width: 200px;
  height: 200px;
  background: #ff0080;
  top: 120px;
  left: -80px;
}

.blur-2 {
  width: 260px;
  height: 260px;
  background: #ff7b00;
  bottom: 80px;
  right: -100px;
}
.hero-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}


.preference-option label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px;
  padding-left:15px;
  border-radius: 18px;
  background: rgba(0,0,0,1);
  border: 1px solid rgba(255,255,255,1);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: normal;
  font-size: 16px;
  color: #ffffff !important;
}

.preference-option.active label {
  border-color: rgba(60,219,201,0.8);
}

.preference-number {
  width: 34px;
  height: 34px;
  line-height: 34px;
  vertical-align:middle;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  transition: all 0.3s ease;
}

.preference-option.active .preference-number {
  background: #3cdbcb;
  border: 1px solid #ffffff;
  color: #fff;
  box-shadow: 0 0 12px rgba(60,219,201,0.5);
}

.lblquestao{
  background: #000000;
  width:80%;
  padding:15px;
  padding-top:10px;
  padding-bottom:10px;
  font-size:16px !important;
  line-height:20px !important;
  border: 1px solid rgba(255,255,255,1);
  border-radius: 18px;
  outline: none;
  transition: all 0.3s ease;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(60,219,201,0.5);
  font-weight:normal !important;
}

.lblquestaoquestionario{
  background: #000000;
  width:100%;
  padding:15px;
  padding-top:10px;
  padding-bottom:10px;
  font-size:16px !important;
  line-height:20px !important;
  border: 1px solid rgba(255,255,255,1);
  border-radius: 18px;
  outline: none;
  transition: all 0.3s ease;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(60,219,201,0.5);
  font-weight:normal !important;
}

.question-wrapper{
  position:relative;
}

.question-icon{
  position:absolute;
  left:-18px;
  top:40px;

  width:35px;
  height:35px;

  z-index:5;
  pointer-events:none;
}
#termsInfo{
display:none;
margin-top:15px;
text-align:left !important;
background:#333333;
border-radius: 24px;
}

.custom-checkbox input[type="checkbox"]{
display:none;
}

.checkbox-label{
display:flex;
align-items:flex-start;
gap:10px;
cursor:pointer;
color:#fff;
line-height:1.5;
}

.checkmark{
width:15px;
height:15px;
min-width:15px;
border-radius:0px;
border:1px solid #ffffff;
background:#000;
position:relative;
transition:all .25s ease;
margin-top:2px;
}

.checkmark::after{
content:"";
position:absolute;
left:3px;
top:0px;
width:7px;
height:10px;
border:solid #fff;
border-width:0 3px 3px 0;
transform:rotate(45deg);
opacity:0;
transition:all .25s ease;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-label .checkmark{
background:#3cdbcb;
border-color:#3cdbcb;
box-shadow:0 0 12px rgba(60,219,203,.6);
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-label .checkmark::after{
opacity:1;
}

.info-icon{
width:22px;
height:22px;
object-fit:contain;
vertical-align:middle;
margin-right:6px;
}


@media(min-width: 768px) {
  .hero-section,
  .questions-screen,
  .success-screen {
    padding-left:18vw;
    padding-right:18vw;
    margin: auto;
  }

  .hero-title {
    font-size: 58px;
  }

  .festival-title {
    font-size: 42px;
  }
}
