.evi-encuesta {
	max-width: 560px;
	margin: 1.5em 0;
	padding: 1.25em 1.5em;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-family: inherit;
}

.evi-titulo {
	margin-top: 0;
}

.evi-form .evi-opcion {
	display: flex;
	align-items: center;
	padding: 0.5em 0.75em;
	margin-bottom: 0.5em;
	border: 1px solid #ccc;
	border-radius: 6px;
	cursor: pointer;
}

.evi-form .evi-opcion:hover {
	background: #f5f5f5;
}

.evi-form .evi-opcion input {
	margin-right: 0.5em;
}

.evi-opcion-foto {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	vertical-align: middle;
	margin-right: 0.5em;
}

.evi-opcion-foto-chica {
	width: 24px;
	height: 24px;
	margin-right: 0.4em;
}

.evi-boton-votar {
	margin-top: 0.5em;
	padding: 0.6em 1.4em;
	border: none;
	border-radius: 6px;
	background: #2271b1;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

.evi-boton-votar:disabled {
	background: #999;
	cursor: not-allowed;
}

.evi-mensaje {
	margin-top: 0.75em;
	padding: 0.5em 0.75em;
	border-radius: 6px;
}

.evi-mensaje.evi-ok {
	background: #e7f6e7;
	color: #1a5d1a;
}

.evi-mensaje.evi-error {
	background: #fbe7e7;
	color: #8a1c1c;
}

.evi-barra-fila {
	margin-bottom: 0.75em;
}

.evi-barra-label {
	display: flex;
	align-items: center;
	margin-bottom: 0.25em;
	font-size: 0.95em;
}

.evi-barra-fondo {
	background: #e5e5e5;
	border-radius: 6px;
	height: 14px;
	overflow: hidden;
}

.evi-barra-relleno {
	background: #2271b1;
	height: 100%;
	transition: width 0.4s ease;
}

.evi-total {
	margin-top: 0.5em;
	font-weight: 600;
}

.evi-ciudades-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 1em;
	margin: 1em 0;
}

.evi-ciudad-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6em;
	padding: 1em;
	border: 1px solid #ddd;
	border-radius: 10px;
	background: #fff;
	font: inherit;
	cursor: pointer;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.evi-ciudad-card:hover {
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.evi-ciudad-foto {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 8px;
}

.evi-ciudad-foto-placeholder {
	display: block;
	background: linear-gradient(135deg, #e5e5e5, #f2f2f2);
}

.evi-ciudad-nombre {
	font-weight: 600;
	text-align: center;
}

.evi-volver-ciudades {
	margin-bottom: 1em;
	padding: 0.5em 1em;
	border: 1px solid #ccc;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
}

.evi-ciudad-bloque .evi-encuesta {
	margin-top: 0;
}
