* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  padding: 20px;
  overflow-x: hidden;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.header {
  background: white;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon{
    height: 40px;
    width: 40px;
    margin-right: -1.1rem;
}

.logo {
  width: 120px;
  height: auto;
}

.progress-container {
  padding: 30px;
  background: #f8f9fa;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.experienceOption{
    margin-left: 16px;
}
.step-circle.completed {
  background: #7bb41c;
  color: white;
}

.step-circle.active {
  background: #7bb41c;
  color: white;
  box-shadow: 0 0 20px rgba(123, 180, 28, 0.4);
}

.step-circle.inactive {
  background: #e9ecef;
  color: #6c757d;
}

.step-label {
  font-size: 12px;
  text-align: center;
  color: #6c757d;
  max-width: 100px;
}

.progress-line {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 4px;
  background: #e9ecef;
  z-index: 1;
}

.progress-line-fill {
  height: 100%;
  background: #7bb41c;
  transition: width 0.5s ease;
}

.content {
  padding: 40px;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.step-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-subtitle {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 30px;
}

.question-container {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.question-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.question-number {
  font-size: 14px;
  color: #6c757d;
}

.question-percentage {
  font-size: 14px;
  font-weight: bold;
  color: #7bb41c;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: #7bb41c;
  border-radius: 4px;
  transition: width 0.5s ease;
}

.question-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2c3e50;
}

.question-subtitle {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #7bb41c;
  box-shadow: 0 0 10px rgba(123, 180, 28, 0.2);
}

.phone-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.country-code {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 15px;
  font-weight: bold;
  color: #2c3e50;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.radio-option:hover {
  border-color: #7bb41c;
  background: #f8fff8;
}

.radio-option.selected {
  border-color: #7bb41c;
  background: #f0f8e8;
}

.radio-option input[type="radio"] {
  margin-right: 15px;
  transform: ease;
  margin: 20px 0;
}

.slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e9ecef;
  outline: none;
  -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #7bb41c;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #7bb41c;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider-value {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #7bb41c;
  margin: 15px 0;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6c757d;
  margin-top: 10px;
}

.feedback-message {
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feedback-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.feedback-warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.feedback-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.btn-back {
  background: transparent;
  color: #6c757d;
  border: none;
  padding: 10px 0;
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
}

.btn-back:hover {
  color: #495057;
}

.btn-next {
  background: #7bb41c;
  color: white;
}

.btn-next:hover {
  background: #6a9e1a;
  transform: translateY(-2px);
}

.result-page {
  text-align: center;
  padding: 40px;
}

.result-header {
  background: #7bb41c;
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.result-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.result-subtitle {
  font-size: 16px;
  opacity: 0.9;
}

.result-summary {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.summary-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2c3e50;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
}

.recommendation {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.recommendation-title {
  font-size: 24px;
  font-weight: bold;
  color: #7bb41c;
  margin-bottom: 20px;
}

.mascot-container {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.mascot {
  width: 200px;
  height: auto;
}

.recommendation-text {
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e50;
}

.pdf-notification {
  background: #e8f5e8;
  border: 2px solid #7bb41c;
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
  text-align: center;
}

.pdf-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.pdf-text h3 {
  color: #7bb41c;
  font-size: 24px;
  margin-bottom: 15px;
}

.pdf-text p {
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.pdf-text ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pdf-text li {
  background: white;
  padding: 10px 15px;
  margin: 10px 0;
  border-radius: 8px;
  font-size: 16px;
  color: #2c3e50;
}

.pdf-subtitle {
  font-style: italic;
  color: #6c757d !important;
  font-size: 14px !important;
}

.cta-buttons {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.cta-buttons h3 {
  color: #2c3e50;
  font-size: 24px;
  margin-bottom: 25px;
}

.buttons-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background: #20b358;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.agenda-btn {
  background: #7bb41c;
  color: white;
}

.agenda-btn:hover {
  background: #6a9e1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 180, 28, 0.3);
}

.button-icon {
  font-size: 32px;
}

.button-text {
  text-align: left;
}

.button-text strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.button-text span {
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  /* Eliminar padding duplo */
  body {
    padding: 0;
  }
  
  .container {
    margin: 0;
    border-radius: 0;
    min-height: 100vh;
  }

  /* Otimizar header */
  .header {
    padding: 15px 20px;
  }
  
  .icon {
    height: 32px;
    width: 32px;
  }

  /* Otimizar timeline/progress */
  .progress-container {
    padding: 20px 15px;
  }
  
  .step-circle {
    width: 45px;
    height: 45px;
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .step-label {
    font-size: 10px;
    max-width: 80px;
    line-height: 1.2;
  }
  
  .progress-line {
    top: 22px;
  }

  /* Reduzir espaçamentos gerais */
  .content {
    padding: 20px 15px;
  }

  .question-container {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  
  /* Ajustar títulos */
  .step-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .step-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .question-title {
    font-size: 18px;
  }

  /* Otimizar botões CTA */
  .buttons-container {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    min-width: 100%;
    justify-content: center;
  }

  /* Ajustar resultado */
  .result-page {
    padding: 20px 15px;
  }
  
  .result-title {
    font-size: 24px;
  }
  
  .pdf-notification {
    padding: 20px 15px;
  }
  
  .cta-buttons {
    padding: 20px 15px;
  }

  .mascot-container {
    flex-direction: column;
    text-align: center;
  }

  .mascot {
    width: 150px;
  }
}

/* Ajustes extras para telas muito pequenas */
@media (max-width: 480px) {
  /* Timeline ainda mais compacto */
  .step-label {
    font-size: 9px;
    max-width: 70px;
  }
  
  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .progress-line {
    top: 20px;
  }
  
  /* Textos ainda menores */
  .step-title {
    font-size: 20px;
  }
  
  .question-title {
    font-size: 16px;
  }
  
  /* Botões mais compactos */
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  /* Header mais compacto */
  .header {
    padding: 12px 15px;
  }
  
  /* Formulários otimizados */
  .form-input {
    padding: 12px;
    font-size: 16px; /* Impede zoom no iOS */
  }
  
  .country-code {
    padding: 12px;
  }
  
  /* Sliders otimizados */
  .slider-value {
    font-size: 20px;
  }
}
