
 
		* { margin: 0; padding: 0; box-sizing: border-box; }
 
		body {
			font-family: 'Quicksand', sans-serif;
			font-weight: 400;
			background-color: #EED638;
			color: #2e2e2e;
			min-height: 100vh;
		}
 
		a { text-decoration: none; color: inherit; }
 
		/* TOPBAR */
		.topbar {
			background-color: #2e2e2e;
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding: 14px 28px;
			position: sticky;
			top: 0;
			z-index: 100;
		}
		.topbar-logo { font-size: 1.4rem; font-weight: 700; color: #EED638; }
		.topbar-acciones { display: flex; align-items: center; gap: 12px; }
		.topbar-btn {
			font-family: 'Quicksand', sans-serif;
			font-size: 0.85rem;
			font-weight: 700;
			color: #ffffff;
			background: none;
			border: 2px solid rgba(255,255,255,0.3);
			border-radius: 20px;
			padding: 6px 16px;
			cursor: pointer;
			transition: border-color 0.15s, color 0.15s;
		}
		.topbar-btn:hover { border-color: #EED638; color: #EED638; }
		.logout-btn { font-size: 1.1rem; padding: 6px 12px; }
 
		/* LAYOUT */
		.layout { display: flex; min-height: calc(100vh - 54px); }
 
		/* SIDEBAR */
		.sidebar {
			width: 180px;
			flex-shrink: 0;
			background-color: #2e2e2e;
			display: flex;
			flex-direction: column;
			padding: 24px 0;
			gap: 4px;
		}
		.nav-item {
			font-family: 'Quicksand', sans-serif;
			font-size: 0.9rem;
			font-weight: 700;
			color: rgba(255,255,255,0.6);
			padding: 12px 20px;
			border-left: 3px solid transparent;
			transition: color 0.15s, border-color 0.15s, background-color 0.15s;
		}
		.nav-item:hover { color: #ffffff; background-color: rgba(255,255,255,0.05); }
		.nav-item.activo { color: #EED638; border-left-color: #EED638; background-color: rgba(238,214,56,0.08); }
 
		/* CONTENIDO */
		.contenido { flex: 1; padding: 36px 40px; }
		.saludo { font-size: 1.8rem; font-weight: 700; color: #2e2e2e; margin-bottom: 16px; }
 
		/* PAGE */
		.retake-sub {
			font-size: 1rem;
			color: #2e2e2e;
			margin-bottom: 32px;
		}
		.retake-botones { display: flex; flex-direction: column; gap: 14px; max-width: 400px; }
		.retake-btn {
			font-family: 'Quicksand', sans-serif;
			font-size: 1rem;
			font-weight: 700;
			color: #EED638;
			background-color: #2e2e2e;
			border: none;
			border-radius: 12px;
			padding: 16px 24px;
			cursor: pointer;
			text-align: left;
			transition: background-color 0.15s;
		}
		.retake-btn:hover { background-color: #3e3e3e; }
 
		/* MODAL */
		.modal-overlay {
			position: fixed;
			inset: 0;
			background-color: rgba(0,0,0,0.55);
			display: flex;
			align-items: center;
			justify-content: center;
			z-index: 200;
		}
		.modal-overlay.oculto { display: none; }
 
		.modal {
			background-color: #EED638;
			border-radius: 20px;
			padding: 28px;
			width: 100%;
			max-width: 540px;
			max-height: 88vh;
			overflow-y: auto;
			display: flex;
			flex-direction: column;
			gap: 18px;
		}
 
		.modal-header { display: flex; justify-content: space-between; align-items: center; }
		.modal-titulo {
			font-size: 0.75rem;
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 1px;
			color: rgba(46,46,46,0.5);
		}
		.modal-cerrar-btn {
			font-family: 'Quicksand', sans-serif;
			font-size: 0.9rem;
			font-weight: 700;
			color: #2e2e2e;
			background: none;
			border: 2px solid #2e2e2e;
			border-radius: 50%;
			width: 32px;
			height: 32px;
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
			flex-shrink: 0;
			transition: background-color 0.15s, color 0.15s;
		}
		.modal-cerrar-btn:hover { background-color: #2e2e2e; color: #EED638; }
 
		/* PROGRESO */
		.modal-progreso { display: flex; align-items: center; gap: 12px; }
		.modal-barra {
			flex: 1;
			height: 8px;
			background-color: rgba(46,46,46,0.2);
			border-radius: 99px;
			overflow: hidden;
		}
		.modal-relleno {
			height: 100%;
			background-color: #2e2e2e;
			border-radius: 99px;
			transition: width 0.3s ease;
			width: 0%;
		}
		.modal-contador { font-size: 0.78rem; font-weight: 700; color: rgba(46,46,46,0.5); white-space: nowrap; }
 
		/* PREGUNTA */
		.modal-pregunta-card { background-color: #2e2e2e; border-radius: 14px; padding: 22px; }
		.modal-pregunta-texto { font-size: 1.05rem; font-weight: 700; color: #ffffff; line-height: 1.55; }
 
		/* OPCIONES */
		.opciones-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
		.opciones-columna { display: flex; flex-direction: column; gap: 10px; }
		.opciones-chips { display: flex; flex-wrap: wrap; gap: 8px; }
 
		.opcion-btn {
			font-family: 'Quicksand', sans-serif;
			font-size: 0.88rem;
			font-weight: 700;
			color: #2e2e2e;
			background-color: #ffffff;
			border: 2px solid #2e2e2e;
			border-radius: 10px;
			padding: 12px 14px;
			cursor: pointer;
			text-align: left;
			line-height: 1.4;
			transition: background-color 0.15s, color 0.15s;
		}
		.opcion-btn:hover { background-color: #2e2e2e; color: #ffffff; }
		.opcion-btn.seleccionado { background-color: #2e2e2e; color: #EED638; }
 
		.chip-btn {
			font-family: 'Quicksand', sans-serif;
			font-size: 0.82rem;
			font-weight: 700;
			color: #2e2e2e;
			background-color: #ffffff;
			border: 2px solid #2e2e2e;
			border-radius: 20px;
			padding: 7px 14px;
			cursor: pointer;
			transition: background-color 0.15s, color 0.15s;
		}
		.chip-btn:hover { background-color: #2e2e2e; color: #ffffff; }
		.chip-btn.seleccionado { background-color: #2e2e2e; color: #EED638; }
 
		.opcion-textarea {
			font-family: 'Quicksand', sans-serif;
			font-size: 0.95rem;
			color: #2e2e2e;
			background-color: #ffffff;
			border: 2px solid #2e2e2e;
			border-radius: 12px;
			padding: 14px;
			width: 100%;
			resize: vertical;
			min-height: 90px;
		}
		.opcion-textarea:focus { outline: none; }
 
		/* NAV FLECHAS */
		.modal-nav { display: flex; justify-content: space-between; }
		.modal-nav-btn {
			font-family: 'Quicksand', sans-serif;
			font-size: 0.9rem;
			font-weight: 700;
			color: #2e2e2e;
			background: none;
			border: 2px solid #2e2e2e;
			border-radius: 10px;
			padding: 10px 20px;
			cursor: pointer;
			transition: background-color 0.15s, color 0.15s;
		}
		.modal-nav-btn:hover:not(:disabled) { background-color: #2e2e2e; color: #EED638; }
		.modal-nav-btn:disabled { opacity: 0.25; cursor: default; }
		.modal-nav-sig { background-color: #2e2e2e; color: #EED638; }
		.modal-nav-sig:hover:not(:disabled) { background-color: #3e3e3e; }
 
		/* RESULTADO */
		.modal-resultado {
			background-color: #2e2e2e;
			border-radius: 14px;
			padding: 28px;
			display: flex;
			flex-direction: column;
			gap: 10px;
		}
		.res-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.35); }
		.res-nombre { font-size: 1.8rem; font-weight: 700; color: #EED638; }
		.res-tipo { font-size: 0.95rem; color: rgba(255,255,255,0.55); }
		.res-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.6; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); }
		.res-cerrar {
			font-family: 'Quicksand', sans-serif;
			font-size: 0.95rem;
			font-weight: 700;
			color: #2e2e2e;
			background-color: #EED638;
			border: none;
			border-radius: 10px;
			padding: 12px 20px;
			cursor: pointer;
			margin-top: 6px;
			transition: opacity 0.15s;
		}
		.res-cerrar:hover { opacity: 0.85; }
 
		@media (max-width: 700px) {
			.sidebar { width: 120px; }
			.nav-item { font-size: 0.78rem; padding: 10px 12px; }
			.contenido { padding: 24px 16px; }
			.saludo { font-size: 1.4rem; }
			.opciones-grid { grid-template-columns: 1fr; }
			.modal { padding: 20px; }
		}
 