*{
box-sizing:border-box;
margin:0;
padding:0;
}

/* CUERPO */
body{
font-family:'Segoe UI',sans-serif;
background:#fefefe;
margin:0;
color:#1f2937;
-webkit-user-select: none; /* Chrome, Safari */
-moz-user-select: none;    /* Firefox */
-ms-user-select: none;     /* Edge antiguo */
user-select: none; 
}

.feedback {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
}

.correcto {
    background-color: #e6f4ea;
    border-left: 5px solid #28a745;
    color: #28a745;
}

.incorrecto {
    background-color: #fbecec;
    border-left: 5px solid #dc3545;
    color: #dc3545;
}

.feedback-texto {
    margin: 0;
}

/* HEADER */

.simulador-header{
display:flex;
justify-content:space-between;
align-items:center;
background:linear-gradient(90deg,#0b6fa4,#0a4d74);
color:white;
padding:18px 30px;
}

.timer{
font-weight:bold;
}

/* CONTENEDOR */

.main-container{
max-width:1000px;
margin:40px auto;
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* TITULO */

.titulo-principal{
font-size:26px;
margin-bottom:10px;
}

.descripcion{
font-size:15px;
color:#4b5563;
margin-bottom:25px;
line-height:1.6;
}

/* FILTROS */

.filtros{
display:flex;
flex-wrap:wrap;
gap:12px;
align-items:center;
margin-bottom:25px;
}

.filtros select{
padding:8px 12px;
border-radius:6px;
border:1px solid #dfe3ea;
}

/* ESTADISTICAS */

.estadisticas{
margin-left:auto;
display:flex;
gap:20px;
font-size:14px;
}

.correctas{
color:green;
}

.incorrectas{
color:red;
}

/* PROGRESS */

.progress-bar{
height:8px;
background:#e5e7eb;
border-radius:20px;
margin-bottom:30px;
overflow:hidden;
}

.progress{
height:100%;
width:20%;
background:#0b6fa4;
}

/* PREGUNTA */

.numero-pregunta{
font-size:14px;
color:#6b7280;
margin-bottom:10px;
}

.texto-pregunta{
font-size:20px;
font-weight:500;
margin-top:30px;
margin-bottom:25px;
}

/* OPCIONES */

.opcion{
display:block;
border:1px solid #dfe3ea;
padding:14px 16px;
border-radius:8px;
margin-bottom:12px;
cursor:pointer;
background:#fafbfc;
transition:.2s;
}

.opcion:hover{
background:#eef6ff;
border-color:#0b6fa4;
}

.opcion input{
margin-right:10px;
}

/* BOTONES */

.botones{
display:flex;
justify-content:space-between;
margin-top:30px;
}

button{
background:#0b6fa4;
color:white;
border:none;
padding:12px 24px;
border-radius:8px;
cursor:pointer;
font-size:15px;
}

button:hover{
background:#084c74;
}

.btn-sec{
background:#9ca3af;
}

.btn-sec:hover{
background:#6b7280;
}

/* MIGA DE PAN */

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 8px 16px;
  margin: 10px 0;
  background: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-item {
  color: #0b6fa4;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  margin: 0 8px;
  color: #9aa5b1;
  font-weight: bold;
}

.breadcrumb-item:hover {
  text-decoration: underline;
  color: #084c74;
}

.breadcrumb-item.active {
  color: #6b7280;
  pointer-events: none;
  font-weight: 600;
}

/* Pie de página */

footer{
  background:linear-gradient(90deg,#0d47a1,#1976d2,#42a5f5);
  color:#fff;
  padding:20px 10px;
}

.footer-container{
  max-width:1000px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* Links arriba en móvil */
.footer-links{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  justify-content:flex-start;
}

/* Redes debajo en móvil */
.footer-social{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  justify-content:flex-start;
}

.footer-links a,
.footer-social a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  transition:opacity .3s ease;
}

.footer-links a:hover,
.footer-social a:hover{
  opacity:0.8;
}

.footer-social a{
  font-size:18px;
}

.footer-copy{
  font-size:12px;
  margin-top:5px;
}

/* Escritorio */

@media (min-width:600px){

.footer-container{
  flex-direction:row;
  justify-content:space-between;
  align-items:center;
}

.footer-social{
  justify-content:flex-end;
}

}

.scrollable-content {
  width: 100%;
  height: 100%; 
  overflow: auto; 
  padding: 0px;
}

.mapa-aislado {
  position: relative;
  z-index: 0;
}

.mapa-aislado img {
  pointer-events: auto !important;
}

.mapa-aislado area {
  pointer-events: auto;
} 

/* SECCIONES DEL LIENZO */
.section {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  z-index: 1;
}

.section .field {
  flex: 1 1 calc(50% - 1rem);
  background: #f8f9fa;
  padding: 1rem;
  margin: 0.5rem;
  border-radius: 8px;
  border: 1px solid #e1e5eb;
}

.section .field h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #004085;
}

/* HIPERVINCULOS */

a {
    color: #0b6fa4;
    text-decoration: none;
    font-weight: 500;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.25s ease;
}

a:hover {
    background: rgba(11,111,164,0.08);
    color: #084e73;
}