.elementor-720 .elementor-element.elementor-element-e52216e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-f6012f8 *//* Reset básico */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #FAF5FF 0%, #FFFFFF 100%);
  color: #0B1A4B;
}

/* Estructura principal */
#app {
  max-width: 680px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.quiz-header {
  padding: 24px;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quiz-header .logo {
  font-size: 20px;
  font-weight: bold;
  color: #8B5CF6;
}
.progress-bar-container {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
}
.progress-bar {
  flex: 1;
  height: 8px;
  background: #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #8B5CF6, #7C3AED);
  transition: width 0.3s ease;
}
.progress-text {
  font-size: 14px;
  color: #6B7280;
  min-width: 30px;
}

/* Main container */
.quiz-container {
  padding: 24px;
  flex: 1;
}

/* Pregunta */
.question-badge {
  background: #F3E8FF;
  color: #8B5CF6;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}
.question-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Opciones */
.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.option {
  display: flex;
  align-items: center;
  border: 2px solid #E5E7EB;
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.option:hover {
  border-color: #8B5CF6;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}
.option.selected {
  border-color: #8B5CF6;
  background: #FAF5FF;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}
.option-radio {
  width: 24px;
  height: 24px;
  border: 2px solid #D1D5DB;
  border-radius: 50%;
  margin-right: 16px;
  position: relative;
}
.option.selected .option-radio {
  background-color: #8B5CF6;
  border-color: #8B5CF6;
}
.option.selected .option-radio::after {
  content: "✓";
  color: white;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.option-text {
  font-size: 16px;
  font-weight: 600;
  flex: 1;
}

/* Disclaimer */
.disclaimer-box {
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.disclaimer-icon {
  color: #F59E0B;
  font-size: 20px;
  flex-shrink: 0;
}
.disclaimer-text {
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}

/* Footer */
.quiz-footer {
  padding: 20px 24px;
  border-top: 1px solid #E5E7EB;
  background: #FFFFFF;
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.quiz-footer button {
  flex: 1;
  min-height: 56px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  transition: all 0.2s ease;
}
#prevBtn {
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  color: #6B7280;
}
#prevBtn:hover {
  background: #F9FAFB;
  border-color: #D1D5DB;
}
#nextBtn {
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}
#nextBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form final */
.final-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.final-form input {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #CBD5E1;
  background: #F1F5F9;
  font-size: 16px;
}
.final-form button {
  margin-top: 12px;
  background: #6366F1;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* Éxito */
.success-message {
  text-align: center;
  padding: 40px 24px;
}
.success-icon {
  font-size: 64px;
  margin-bottom: 16px;
}
.btn-restart {
  margin-top: 24px;
  background: #F3E8FF;
  color: #7C3AED;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

/* Botón inicio */
.btn-start {
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  color: white;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
  cursor: pointer;
  margin-top: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .question-title {
    font-size: 20px;
  }
  .option {
    padding: 16px;
  }
  .quiz-footer {
    padding: 16px;
  }
  .quiz-container {
    padding: 16px;
  }
}/* End custom CSS */