:root {
    --primary-color: #e29404;
    --secondary-color: #181379;
    --accent-color: #f7682f;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    color: var(--dark-color);
    min-height: 100vh;
}

/* Header estilizado */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
}

.logo {
    max-width: 180px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(-5deg);
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}


.hero-title {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.hero-subtitle {
    font-weight: 300;
    opacity: 0.9;
}

/* Barra de búsqueda mejorada */
.search-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

#search {
    padding: 1.2rem 1.5rem;
    padding-left: 3.5rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

#search:focus {
    box-shadow: 0 5px 25px rgba(67, 97, 238, 0.3);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Tarjetas de negocios premium */
.business-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 2rem;
    background: white;
    position: relative;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 51, 214, 0.456) 0%, rgba(62, 55, 201, 0.496) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.business-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.business-card:hover::before {
    opacity: 1;
}

.business-image-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.business-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.business-card:hover .business-image {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.card-body {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.card-text {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-visit {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-visit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 17, 86, 0.817);
}

.btn-visit i {
    margin-left: 5px;
    font-size: 0.9rem;
}

/* Efecto cuando no hay resultados */
.no-results {
    text-align: center;
    padding: 4rem 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.no-results i {
    font-size: 4rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.no-results h4 {
    color: #555;
    font-weight: 600;
}

.no-results p {
    color: #888;
    max-width: 500px;
    margin: 0 auto;
}

/* Efecto de carga */
.loading {
    display: none;
    text-align: center;
    padding: 2rem;
    color: var(--primary-color);
}

/* Footer mejorado */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0;
    margin-top: 5rem;
}

.logo-circle {
display: inline-block;
width: 120px; /* Ajusta el tamaño según necesites */
height: 120px; /* Ajusta el tamaño según necesites */
border-radius: 50%;
background-color: white; /* Fondo blanco */
padding: 1px; /* Espaciado interno */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra opcional */
}

.logo {
max-width: 100%;
height: auto; /* Mantiene la proporción del logo */
display: block;
margin: 0 auto; /* Centra la imagen */
}