
/* HERO */
.hero-cat{
	background:radial-gradient(circle at top, #0b1732, #010514);
	color:#fff;
	padding-top:220px;
	padding-bottom:100px;
}

/* CONTENIDO IZQUIERDA REAL */
.hero-inner{
	max-width:900px;
	margin-left:0;
	padding:0 20px;
}

/* TÍTULO */
.hero-title{
	font-size:48px;
	font-weight:300;
	line-height:1.2;
}

/* BUSCADOR */
.search-wrapper{
	margin-top:30px;
}

/* CTA */
.hero-cta{
	margin-top:40px;
}

.hero-cta h2{
	font-size:22px;
	font-weight:400;
}

.hero-cta p{
	color:#cbd5f5;
	font-size:15px;
	margin-top:10px;

}

.info-section {
	padding: 20px 0;
}

.company-card {
	background: #fff;
	border-radius: 14px;
	padding: 20px;
	margin-bottom: 20px;
	display: flex;
	gap: 20px;
	align-items: center;
	box-shadow: 0 10px 30px rgba(0,0,0,.05);
	transition: .2s;
}

.company-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.company-img {
	width: 140px;
	height: 110px;
	border-radius: 12px;
	background-size: cover;
	background-position: center;
	flex-shrink: 0;
}

.company-content {
	flex: 1;
}

.company-title {
	font-size: 18px;
	font-weight: 600;
	color: #0f172a;
}

.company-meta {
	font-size: 14px;
	color: #64748b;
	margin-top: 6px;
}

.company-meta strong {
	color: #f59e0b;
}

.company-address {
	font-size: 13px;
	color: #94a3b8;
	margin-top: 6px;
}

/* 🔥 BADGES estilo "Reacciona con rapidez" */
.company-tags {
	display: flex;
	gap: 6px;
	margin-top: 10px;
	flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    background: #e0ecff; /* azul claro */
    color: #2563eb; /* azul texto */

    font-size: 13px;
    font-weight: 500;

    padding: 6px 12px;
    border-radius: 999px; /* pill */

    white-space: nowrap;
}

/* ACTIONS */
.company-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

	.company-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.company-img {
		width: 100%;
		height: 160px;
	}

	.company-actions {
		width: 100%;
		flex-direction: row;
	}

	.company-actions a {
		flex: 1;
		text-align: center;
	}
}

/* RESPONSIVE */
@media(max-width:768px){

	.hero-cat{
		padding-top:160px;
		padding-bottom:70px;
	}

	.hero-title{
		font-size:28px;
	}

	.hero-inner{
		padding:0 15px;
	}



}
.search-wrapper {

   margin: 0px;
   margin-top:20px;

}

/* CONTENEDOR */
#autocompleteList {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 6px;
    z-index: 1000;
    background: #fff;
    /* border-radius: 12px; */
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
    overflow: hidden;
    /* border: 1px solid #e5e7eb; */
    width: 100%;
}

/* ITEMS */
#autocompleteList .list-group-item {
    border: none;
    padding: 12px 16px;
    font-size: 16px;
    color: #111827;

    cursor: pointer;
    transition: all 0.2s ease;
}

/* HOVER */
#autocompleteList .list-group-item:hover {
    background: #f3f4f6;
}

/* ITEM ACTIVO (si luego quieres teclado) */
#autocompleteList .active {
    background: #0b1732;
    color: #fff;
}

/* BORDE ENTRE ITEMS */
#autocompleteList .list-group-item:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}
#locationInput {
    border-radius: 10px;
}
#autocompleteList {
    animation: fadeIn 0.15s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filters-rating {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.filter-pill {
    padding: 10px 18px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

/* hover */
.filter-pill:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* activo */
.filter-pill.active {
    background: #c7d2fe;
    color: #1e293b;
    font-weight: 600;
}

.load-more-btn {
background: #e7bd87;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    /* font-size: 18px; */
    font-weight: 200;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* hover */
.load-more-btn:hover {
    background: #ddb178;
    transform: translateY(-2px);
}

/* click */
.load-more-btn:active {
    transform: translateY(0);
}
#serviceAutocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 6px;
    width: 100%;
    z-index: 1000;
    background: #fff;
    color:black;
}

#serviceAutocomplete .list-group-item {
    border: none;
    padding: 12px 16px;
    cursor: pointer;
}

#serviceAutocomplete .list-group-item:hover {
    background: #f3f4f6;
}

#autocompleteList {
    position: absolute;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-top: 5px;
    z-index: 999;
    overflow: hidden;
}

.autocomplete-item {
    width: 100%;
    padding: 12px 14px;
    border: none;
    background: transparent;
    text-align: left;
    transition: 0.2s;
    font-size: 16px;
    color: black;
}

.autocomplete-item:hover {
    background: #f8f8f8;
}

.cat-name {
    font-weight: 600;
    font-size: 14px;
    color: #222;
}

.cat-parent {
    font-size: 12px;
    color: #9aa0a6; /* gris claro elegante */
    margin-top: 2px;
}