:root {
  --header-height: 80px;
  --container-max-width: 1200px;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --font-headline: "Sora", sans-serif;
  --font-body: "Poppins", sans-serif;
  --headline-size: 62px;
  --description-size: 18px;
  --primary-gradient-left: #00aaff;
  --primary-gradient-right: #ffffff;
  --transition-speed: 0.2s;

  --primary: #00aaff;
  --primary-dark: #0091da;
  --msg-form: #4fbbf1;
  --box-line: #BDE9FF;
  --bg-quiz-light: #EBF8FF;

  --secondary: #8b2be2;
  --text-primary: #1a1a1a;
  --text-secondary: #666;
  --bg-light: #f8f9fa;
  --border: #e0e0e0;
  --error: #ff4444;
  --success: #00c851;
  --radius: 12px;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  overflow-x: hidden;
  background: var(--bg-quiz-light);
  min-height: 100vh;
}
/* Logo Hover (Não Crítico) */
.logo {
  transition: transform var(--transition-speed);
}
.logo:hover {
  transform: scale(1.05);
}
.logo-image {
  fill: var(--text-primary);
}
.logo-mix {
  fill: var(--primary-gradient-left);
}
.logo-slogan {
  padding: 0;
  margin: 0;
  font-size: 14px;
  margin-top: -6px;
}
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 0px;
  width: 100%;
}
/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: #ffffff;
  z-index: 1000;
  border-bottom: solid 1px var(--box-line);
}
.header-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-left-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.container-quiz {
  max-width: 900px;
  margin: 100px auto 40px;
  padding: 40px;
  
}
.container-quiz h2 {
  font-size: 32px;
}
.container-quiz h2{
  padding: 10px 0;
  text-align: center;
}
.container-quiz p{
  padding: 10px 0;
  padding-bottom:30px;
  text-align: center;
}
.btn-quiz {
  font-family: inherit;
  font-weight: 600;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  color: #3d3d3d;
  transition: ease-in-out 0.2s;
  cursor: pointer;
}
.btn-quiz:hover {
  background: var(--primary);
  border: 1px solid #e0e0e0;
  color: white;
}
.container-step {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 15px 0px;
  width: 100%;
}
.steps-all {
  width: 300px;
  padding: 8px;
  display: flex;
  gap: 2px;
}
.steps-all .step {
  background: white;
  height: 8px;
  width: 14.28%;
  border: 0;
  border-radius: 0;
  transition: all 0.3s ease;
}
.steps-all .step.active {
  background: var(--primary);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  cursor: pointer;
}
.desktop-only {
  display: flex;
}
.btn-nextQuiz {
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 20px;
  background: #181818;
  border-radius: 8px;
  color: #ffffff;
  border: 0;
  transition: ease-in-out 0.2s;
  cursor: pointer;
}
.btn-nextQuiz:hover {
  background: var(--primary);
  color: #ffffff;
}
.btn-nextQuiz:disabled {
  background: #cccccc;
  color: #666666;
  cursor: not-allowed;
}

/* Form Steps */
.step-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
.step-content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Options Grid */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.option-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 25px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  border:solid 1px var(--box-line);
}
.option-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.option-card.selected {
  border-color: var(--primary);
  background: rgb(0, 0, 0);
}

.option-card.selected .option-title {
  color:white
}
.option-thumb { 
  display: flex;  
  justify-content: center; 
  align-items: center;
  max-height: 180px;
  padding-bottom:20px;  
}


.option-thumb img { 
  max-width: 100%;
  height: auto;  
  display: block;
}
.mini-2 img{
  height:80px
}
.option-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.option-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: var(--font-headline);
}
.option-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Checkbox Options */
.checkbox-option {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid var(--box-line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
}
.checkbox-option:hover {
  border-color: var(--primary);
}
.checkbox-option.selected {
  border-color: var(--primary);
  background: black;
}
.checkbox-option input {
  margin-right: 15px;
  margin-top: 3px;
  accent-color: var(--primary);
}
.checkbox-content {  
  display:flex;  
  gap:10px;
}
.checkbox-content-info{
  padding-top:10px;
}
.checkbox-title {
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkbox-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Form Fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 20px;
}
label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
label .required {
  color: var(--error);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  transition: all 0.2s;
  background: white;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 242, 250, 0.1);
}
textarea {
  resize: vertical;
  min-height: 120px;
}

/* File Upload */
.file-upload {
  position: relative;
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}
.file-upload:hover {
  border-color: var(--primary);
  background: rgba(0, 242, 250, 0.05);
}
.file-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}
.file-upload-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 12px;
}
.file-upload-text {
  font-size: 14px;
  color: var(--text-secondary);
}
.file-upload-text strong {
  color: var(--primary);
}
.file-name {
  margin-top: 12px;
  padding: 8px 12px;
  background: var(--bg-light);
  border-radius: 6px;
  font-size: 14px;
  display: none;
}

/* Checkbox Customizado */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  cursor: pointer;
  accent-color: var(--primary);
}
.checkbox-item label {
  margin: 0;
  cursor: pointer;
  font-weight: 400;
}

/* Confirmation Screen */
.confirmation-screen {
  text-align: center;
  padding: 40px 0;
}
.confirmation-icon {
  font-size: 80px;
  margin-bottom: 20px;
}
.confirmation-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 30px;
  margin: 30px 0;
  text-align: left;
}
.confirmation-detail {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.confirmation-detail .icon {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Next Steps */
.next-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.next-step {
  text-align: center;
  padding: 20px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.error-message{
  color:var(--msg-form)
}
.next-step-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  line-height: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}
.btn-whatsapp {
  background: #25d366;
  color: white;
}
.btn-whatsapp:hover {
  background: #128c7e;
}


/* Responsive -------------------------------------------------------*/

.step-content { display: none; }
.step-content.active { display: block; }

.checkbox-option {
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.2s;
}
.checkbox-option:hover { background: #ffffff; }
.checkbox-option.selected {
    background: black;
    border: 1px solid #1976d2;
}
.checkbox-option.selected .checkbox-title{
    color:white;
}

.error-text {
    display: block;
    font-size: 0.85rem;
    margin-top: 4px;
    font-weight: 500;
}

.error-text.show {
    display: block !important;
}


@media (max-width: 768px) {
  .header-container {
    padding: 0 24px;
  }
  .container-quiz {
    padding: 20px;
    margin: 100px auto 20px;
  }
  .container-quiz h2 {
    font-size: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .options-grid {
    grid-template-columns: 1fr;
  }
  .action-buttons {
    flex-direction: column;
  }
  .btn-nextQuiz {
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 12px;
  background: #181818;
  border-radius: 8px;
  color: #ffffff;
  border: 0;
  transition: ease-in-out 0.2s;
  cursor: pointer;
  }
  .logo svg{
    width:150px
  }
}
