.search-hero {
    background: linear-gradient(180deg, #00B4DB 0%, #0083B0 100%);
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.search-box {
    flex-grow: 1;
    position: relative;
}
.search-box .bi-search {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}
.search-box .form-control {
    border-radius: 25px;
    padding-left: 40px;
    height: 50px;
}
.map-link {
    color: white;
    font-size: 1.5rem;
}
.section-title {
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.sector-card-link {
    text-decoration: none;
    color: inherit;
}
.sector-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.valoraciones-section .valoracion-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.valoracion-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.valoracion-info {
    flex-grow: 1;
}
.valoracion-info h6 {
    font-weight: bold;
    margin: 0;
}
.valoracion-info p {
    font-size: 0.9rem;
    margin: 0;
    color: #555;
}
.valoracion-rating {
    font-weight: bold;
    color: #0083B0;
}
.valoracion-rating .bi-star-fill {
    color: #ffc107;
}