/* =========================================
   BernardoQuiz: SPACIOUS DARK LUXURY
   Mobile First, High Contrast, No Clutter.
   ========================================= */

/* --- RESET TOTAL --- */
.bq-root, .bq-root * { box-sizing: border-box !important; }

.bq-root {
  width: 100% !important;
  display: block !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  background-color: #000000 !important;
  color: #ffffff !important;
  line-height: 1.6 !important;
  -webkit-font-smoothing: antialiased !important;
}

.bq-root h2{
  color: #ebebeb;
}

/* --- CONTENEDOR PRINCIPAL (MÓVIL AMIGABLE) --- */
.bq-card {
  max-width: 800px !important;
  margin: 0 auto !important;
  /* Mucho espacio interior para que respire */
  padding: 30px 20px 60px 20px !important; 
  background: #000000 !important;
  min-height: 100vh !important; /* Ocupa toda la pantalla en móvil para inmersión */
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* --- TIPOGRAFÍA GIGANTE Y LIMPIA --- */
.bq-header { margin-bottom: 40px !important; }

.bq-progress {
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3em !important;
  color: #666 !important;
  margin-bottom: 20px !important;
  display: block !important;
  font-weight: 600 !important;
}

.bq-question {
  /* Tamaño grande para lectura fácil en móvil */
  font-size: 26px !important; 
  font-weight: 400 !important;
  line-height: 1.4 !important;
  color: #fff !important;
  margin: 0 0 10px 0 !important;
}

@media (min-width: 768px) {
  .bq-question { font-size: 38px !important; }
  .bq-card { min-height: auto !important; padding: 60px 40px !important; }
}

/* --- BOTONES DE RESPUESTA (ZONA TÁCTIL GRANDE) --- */
.bq-answers {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important; /* Separación clara entre bloques */
  margin-top: 20px !important;
}

.bq-answer {
  /* Rectángulos puros, sin bordes */
  background: #161616 !important; /* Gris oscuro elegante */
  color: #cccccc !important;
  
  /* Relleno generoso = fácil de pulsar */
  padding: 22px 25px !important; 
  width: 100% !important;
  
  border: none !important;
  border-radius: 0 !important; /* Cuadrado perfecto */
  cursor: pointer !important;
  
  text-align: left !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  transition: all 0.25s ease !important;
  
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* Estado Hover (Escritorio) */
.bq-answer:hover {
  background: #252525 !important;
  color: #fff !important;
  transform: translateX(5px) !important; /* Pequeño movimiento de invitación */
}

/* ESTADO SELECCIONADO (El cambio radical) */
.bq-answer.is-selected {
  background: #ffffff !important; /* Blanco puro */
  color: #000000 !important;      /* Texto negro */
  font-weight: 700 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important; /* Sombra sutil para elevarlo */
}

/* --- BOTONES DE NAVEGACIÓN --- */
.bq-actions {
  margin-top: 50px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
}

.bq-btn {
  background: transparent !important;
  border: none !important;
  color: #555 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  padding: 15px 0 !important;
  cursor: pointer !important;
  transition: color 0.3s !important;
}

.bq-btn:hover { color: #fff !important; }

/* Botón siguiente destacado */
.bq-btn.bq-next {
  font-size: 16px !important;
  color: #fff !important;
  border-bottom: 1px solid #fff !important; /* Subrayado minimalista */
  padding-bottom: 5px !important;
}

.bq-btn[disabled] { display: none !important; }

/* --- RESULTADOS (Espaciado) --- */
.bq-result-style {
  font-size: 36px !important;
  margin-bottom: 15px !important;
  line-height: 1.1 !important;
  color: white;
}

.bq-paragraph {
  font-size: 16px !important;
  line-height: 1.8 !important; /* Lectura cómoda */
  margin-bottom: 25px !important;
  color: #ddd !important;
  max-width: 650px !important;
}

.bq-block-title {
  color: #555 !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  margin-bottom: 15px !important;
  text-transform: uppercase !important;
  display: block !important;
  border-top: 1px solid #222 !important;
  padding-top: 15px !important;
  margin-top: 30px !important;
}

.bq-list li {
  margin-bottom: 12px !important;
  color: #ccc !important;
  font-size: 15px !important;
}

/* Imágenes Grandes */
.bq-images {
  margin-top: 50px !important;
  display: grid !important;
  gap: 40px !important;
}
.bq-img-frame img { width: 100% !important; display: block !important; }
.bq-img-title { margin-top: 10px !important; color: #555 !important; font-size: 12px !important; text-transform: uppercase; letter-spacing: 0.1em;}

/* Animación de entrada */
.bq-fade-in {
  animation: bqFadeIn 0.8s ease forwards;
  opacity: 0;
}
@keyframes bqFadeIn { to { opacity: 1; } }

