:root {
    --mint-green: #3EB489;
    --mint-light: #F0FFF0;
    --mint-dark: #2E8B57;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --text-color: #2D3436;
    --accent-color: #00B894;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body {
    background-color: var(--white);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.navbar {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--mint-dark) !important;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -1px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-color) !important;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--mint-green) !important;
    transform: translateY(-1px);
}

.bg-mint-green {
    background-color: var(--mint-green) !important;
}

.text-mint-green {
    color: var(--mint-green) !important;
}

.btn-mint {
    background-color: var(--mint-green);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-mint:hover {
    background-color: var(--mint-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(62, 180, 137, 0.3);
}

.hero-section {
    background: linear-gradient(135deg, var(--mint-light) 0%, #ffffff 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    border-bottom: none;
}

.hero-section .container {
    width: 100%;
}

.hero-section h1 {
    font-weight: 700;
    font-size: 3rem;
    color: var(--mint-dark);
}

.search-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.card-negocio {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.card-negocio:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card-negocio .card-img-container {
    height: 200px;
    overflow: hidden;
}

.card-negocio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card-negocio:hover img {
    transform: scale(1.1);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-radius: 8px;
    font-weight: 600;
}

.btn-phone {
    background-color: var(--mint-green);
    color: white;
    border-radius: 8px;
    font-weight: 600;
}

.ad-zone {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--mint-light);
}

/* Spinner para geolocalización */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

.text-mint {
    color: var(--mint-green);
}

.bi-star-fill.text-warning {
    color: #FFD700 !important; /* Dorado más vibrante */
}

.google-maps-icon {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    display: inline-block !important;
    vertical-align: middle;
    margin-top: -3px;
}

.price-range {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 12px;
}

.bi-star.text-muted {
    color: #DEE2E6 !important;
}

.card-negocio .card-title {
    font-size: 1.15rem;
    color: var(--mint-dark);
}

.bg-mint-light {
    background-color: var(--mint-light);
}

/* Menú de Categorías Profesional */
.category-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    width: 100px;
}

.category-img-wrapper {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.category-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .category-img-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(62, 180, 137, 0.3);
    border-color: var(--mint-green);
}

.category-item:hover img {
    transform: scale(1.1);
}

.category-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Buscador Estilo Google */
.google-search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
}

.google-search-input-group {
    background: white;
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
    width: 100%;
}

.google-search-input-group:focus-within {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.google-search-input {
    border: none;
    flex-grow: 1;
    padding: 8px;
    font-size: 1rem;
    outline: none;
    width: 100%;
    min-width: 0;
}

@media (max-width: 576px) {
    .google-search-input-group {
        padding: 5px 15px;
        border-radius: 30px;
    }
    .google-search-input {
        font-size: 0.9rem;
    }
    .category-menu {
        gap: 10px;
    }
    .category-item {
        width: 80px;
    }
    .category-img-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
}

.google-search-btn {
    background-color: var(--mint-green);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 10px;
}

.google-search-btn:hover {
    background-color: var(--mint-dark);
}

.search-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.search-pill {
    background-color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.search-pill:hover {
    background-color: var(--mint-light);
    color: var(--mint-dark);
    border-color: var(--mint-green);
}

.promo-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.promo-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(62, 180, 137, 0.2) !important;
}

.promo-alert {
    transition: background-color 0.2s;
}

.promo-alert:hover {
    background-color: #fff3cd !important;
    border-color: #ffeeba !important;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: none !important;
}

.footer {
    background-color: #1a1a1a;
    color: rgba(255,255,255,0.7);
    padding: 60px 0;
}


.footer h5 {
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
}
