/* ===== Buscador Directorio (categoria Equipo) ===== */

.buscador-equipo {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 24px;
}

.buscador-equipo .be-campo {
	position: relative;
}

/* Campo de texto */
.buscador-equipo .be-texto input {
	box-sizing: border-box;
	width: 300px;
	max-width: 100%;
	height: 39px;
	padding: 0 20px;
	border: 1px solid #1F0538;
	border-radius: 1000px;
	background: transparent;
	font-family: 'Work Sans', sans-serif;
	font-size: 16px;
	line-height: 39px;
	color: #1F0538;
	outline: none;
}

.buscador-equipo .be-texto input::placeholder {
	color: #1F0538;
	opacity: 0.5;
}

/* Desplegables */
.buscador-equipo .be-select select {
	box-sizing: border-box;
	width: 160px;
	max-width: 100%;
	height: 39px;
	padding: 0 38px 0 20px;
	border: 1px solid #1F0538;
	border-radius: 1000px;
	background-color: transparent;
	/* chevron #1F0538 */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1 3l4 4 4-4' stroke='%231F0538' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	font-family: 'Work Sans', sans-serif;
	font-size: 16px;
	line-height: 39px;
	color: #1F0538;
	cursor: pointer;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* Desplegable Area: mas ancho para que entre "Área de trabajo" */
.buscador-equipo .be-select select#be-area {
	width: 200px;
}

/* Boton Filtrar */
.buscador-equipo .be-filtrar {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 88px;
	height: 39px;
	padding: 0 20px;
	border: none;
	border-radius: 1000px;
	background: #D4D9B8;
	font-family: 'Work Sans', sans-serif;
	font-size: 16px;
	line-height: 39px;
	color: #1F0538;
	cursor: pointer;
}

.buscador-equipo .be-filtrar:hover {
	filter: brightness(0.96);
}

/* Estado cargando del grid */
.be-cargando {
	opacity: 0.45;
	transition: opacity 0.15s ease;
	pointer-events: none;
}

/* Mobile */
@media (max-width: 768px) {
	.buscador-equipo {
		flex-direction: column;
		align-items: stretch;
	}
	.buscador-equipo .be-campo,
	.buscador-equipo .be-texto input,
	.buscador-equipo .be-select select,
	.buscador-equipo .be-filtrar {
		width: 100%;
	}
}
