body {
	height: 100%;
	width: 100%;
}

html {
	height: 100%;
	width: 100%;
}

.contenedor-hero {
	position: relative;
	height: 30vh;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contenedor-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(56, 32, 113, 0.6);
	opacity: 0.7;
	pointer-events: none;
	z-index: 1;
}

.contenedor-hero .seccion-1-texto {
	z-index: 4;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.contenedor-hero .seccion-1-texto h1,
.contenedor-hero .seccion-1-texto .resultado {
	color: #fff;
}

.contenedor-hero .seccion-1-texto .inicio {
	color: #E7E9EB;
}

.contenedor-hero .img-hero {
	position: absolute;
	top: -30rem;
	left: 0;
	height: 300%;
	width: 100%;
	transform: scale(1.3);
	z-index: 0;
}

.filtros{
    padding: 0;
    width:100%;
}

.filtros button {
	background-color: #fff;
}



.buscador-container {
	position: relative;
	
}


.buscador {
	height: 3rem;
	border: 1px solid #ccc;
	border-radius: 20PX !important;
	padding-left: 1rem !important;
	outline: none;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
}

.buscador-container .fa-magnifying-glass {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	background-color: #F5F5FA;
	color: #4A60A1;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.buscador-container .fa-magnifying-glass:active{
	opacity: 20%;
}

.btn-filtros button {
	border-radius: 20px;
	border: 2px solid #4A60A1;
	outline: none;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


@media (max-width:767px) {
	.buscador-container {
		width: 100%;
	}
	
		.buscador-container .buscador{
	  width: 100%;
	}
	
	.buscador-container .fa-magnifying-glass{
	   right: 1rem;
	}
}

/* Estilos para que el contenedor del mapa y las entradas tengan altura y transiciones */
#map-posts-row {
	height: 80vh;
}

/* Lista de posts con scroll vertical y transición en ancho */
#post-list {
	overflow-y: auto;
	height: 100%;
	padding-right: 15px;
	transition: width 0.3s ease;
}

/* Contenedor del mapa con altura mínima y transición */
#map {
	height: 100%;
	min-height: 400px;
	transition: all 0.3s ease;
}

/* Margen inferior para el área del botón */
#map-controls {
	margin-bottom: 1rem;
}

.btn-mapa {
	border-radius: 20px;
	border: 2px solid #4A60A1;
	outline: none;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	background-color: #fff;
	outline: none;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.btn-mapa:active {
	background-color: #fff;
	border: 2px solid #4A60A1;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transform: none;
}

.btn-mapa:hover {
	background-color: #fff;
	color: initial;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	border: 2px solid #4A60A1;
	transform: none;
}

@media (max-width: 992px) {
	#map-container {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		z-index: 10;
	}

	#map-controls {
		position: fixed;
		bottom: 20px;
		width: 50%;
		z-index: 100;
		margin: auto;
		left: 30%;
	}

	.btn-mapa {
		position: fixed;
		bottom: 20px;
		width: 50%;
		z-index: 100;
		margin: auto;
		left: 20%;
	}

	/* Ajuste adicional para el div col-12 dentro de #map-controls */
	#map-controls .col-12 {
		padding: 0;
		/* Elimina cualquier padding horizontal que pueda tener */
	}
}