        :root {
            --bs-green: #F59E0B;
            --bs-gold: #F59E0B;
            --bs-red: #DC2626;
            --bs-dark-gray: #1F2937;
            --bs-light-bg: #FFFBF0;
            /* Só propriedades de pintura (cor/fundo/borda/sombra), nunca 'all' —
               'all' força o navegador a monitorar/animar até propriedades de
               layout (width, height, margin...) em CADA elemento da página,
               o que é caro em telas com muitos cards (listings/categorias). */
            --transition-smooth: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                                  color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                                  border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                                  box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            /* Light Mode (default) */
            --bg-primary: #FFFBF0;
            --bg-secondary: #FFFFFF;
            --text-primary: #1F2937;
            --text-secondary: #6B7280;
            --border-color: #E5E7EB;
        }

        /* Dark Mode */
        [data-theme="dark"] {
            --bg-primary: #0F172A;
            --bg-secondary: #1E293B;
            --text-primary: #F1F5F9;
            --text-secondary: #CBD5E1;
            --border-color: #334155;
        }

        * {
            transition: var(--transition-smooth);
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                transition: none !important;
                animation: none !important;
            }
        }

        body {
            background-color: var(--bs-light-bg);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        code, pre, .monospace {
            font-family: 'JetBrains Mono', monospace;
        }

        /* Focus States */
        :focus-visible {
            outline: 2px solid var(--bs-gold);
            outline-offset: 2px;
            border-radius: 4px;
        }

        button:focus-visible, a:focus-visible {
            outline: 2px solid var(--bs-gold);
            outline-offset: 2px;
        }

        input:focus-visible, select:focus-visible, textarea:focus-visible {
            outline: 2px solid var(--bs-gold);
            outline-offset: 2px;
        }

        /* Header Premium */
        header {
            background: linear-gradient(180deg, rgba(31, 41, 55, 0.98) 0%, rgba(17, 24, 39, 0.95) 100%);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(245, 158, 11, 0.1);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }

        /* Alinhado com a .search-section (mesma largura de 80%) */
        header .navbar { padding: 0.75rem 0; width: 80%; margin-left: auto; margin-right: auto; }

        header .navbar-brand {
            font-size: 1.3rem;
            font-weight: 800;
            color: white !important;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.2s;
        }

        header .navbar-brand:hover { transform: scale(1.02); }

        header .navbar-brand i { font-size: 1.5rem; color: var(--bs-gold); }

        header .nav-link {
            color: rgba(255,255,255,0.75) !important;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 1rem !important;
            border-radius: 6px;
            position: relative;
        }

        header .nav-link:hover {
            color: white !important;
            background: rgba(245, 158, 11, 0.1);
        }

        header .nav-link.active {
            color: var(--bs-gold) !important;
            background: rgba(245, 158, 11, 0.15);
        }

        header .nav-link:focus-visible { outline: 2px solid var(--bs-gold); border-radius: 4px; outline-offset: 2px; }

        .btn-add {
            background: linear-gradient(135deg, var(--bs-gold) 0%, #F97316 100%);
            color: white;
            font-weight: 700;
            border: none;
            padding: 0.6rem 1.5rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
            border-radius: 8px;
        }

        .btn-add:hover {
            background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
        }

        .btn-add:focus-visible { outline: 2px solid white; outline-offset: 2px; }

        #themeToggle {
            border-color: rgba(255,255,255,0.3) !important;
            color: rgba(255,255,255,0.8) !important;
            font-size: 1.1rem;
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #themeToggle:hover {
            background: rgba(245, 158, 11, 0.2) !important;
            border-color: var(--bs-gold) !important;
            color: var(--bs-gold) !important;
        }

        #themeToggle:focus-visible {
            outline: 2px solid var(--bs-gold);
            outline-offset: 2px;
        }

        /* Hero */
        .hero { background: linear-gradient(135deg, var(--bs-dark-gray) 0%, #374151 100%); color: white; }
        .hero h1 { font-size: 3rem; font-weight: 700; }
        .hero .btn-primary { background: var(--bs-gold); border: none; color: white; }
        .hero .btn-primary:hover { background: #F97316; }
        .hero .btn-outline-light:hover { background: rgba(255,255,255,0.2); }

        /* Cards */
        .card { border: 1px solid #E5E7EB; }
        .card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(245, 158, 11, 0.15); }

        /* CTA */
        .btn-success { background: var(--bs-green); border: none; font-weight: 600; }
        .btn-success:hover { background: #F97316; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3); }
        .btn-success:focus-visible { outline: 2px solid var(--bs-gold); outline-offset: 2px; }

        .btn-warning { background: var(--bs-gold); border: none; color: white; font-weight: 600; }
        .btn-warning:hover { background: #F97316; color: white; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3); }
        .btn-warning:focus-visible { outline: 2px solid white; outline-offset: 2px; }

        /* Botões de ação (Ligar, WhatsApp, Como chegar) - usam a cor da marca,
           não o verde padrão do Bootstrap */
        .btn-outline-success { color: var(--bs-gold); border-color: var(--bs-gold); font-weight: 600; }
        .btn-outline-success:hover, .btn-outline-success:focus { background: var(--bs-gold); border-color: var(--bs-gold); color: #fff; }
        .btn-outline-success:focus-visible { outline: 2px solid var(--bs-gold); outline-offset: 2px; }

        .btn-primary { font-weight: 600; }
        .btn-primary:focus-visible { outline: 2px solid var(--bs-gold); outline-offset: 2px; }

        /* Paginação (usa --bs-primary por padrão no Bootstrap, sem relação
           com --bs-success, então precisa de override próprio) */
        .pagination .page-link { color: var(--bs-gold); }
        .pagination .page-link:hover, .pagination .page-link:focus { color: #F97316; background-color: #FFF7ED; }
        .pagination .page-item.active .page-link { background-color: var(--bs-gold); border-color: var(--bs-gold); color: #fff; }

        /* Sticky Mobile CTA */
        .sticky-mobile-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-top: 2px solid var(--bs-gold);
            padding: 1rem;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 90;
            gap: 0.5rem;
        }

        .sticky-mobile-cta.visible {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sticky-mobile-cta .btn {
            flex: 1;
            font-size: 0.875rem;
            padding: 0.75rem 0.5rem;
        }

        @media (max-width: 768px) {
            body {
                padding-bottom: 80px;
            }
        }

        @media (min-width: 769px) {
            .sticky-mobile-cta {
                display: none !important;
            }
        }

        /* Footer Premium */
        footer {
            background: linear-gradient(180deg, #0F172A 0%, #020617 100%);
            color: #CBD5E1;
            border-top: 1px solid rgba(245, 158, 11, 0.1);
            margin-top: 6rem;
            padding-top: 4rem;
            padding-bottom: 2rem;
        }

        /* Hero das páginas internas: a largura vem do .container-lg interno */
        section.bg-dark.text-white {
            max-width: 100%;
            padding-left: 0;
            padding-right: 0;
            padding-top: 2rem;
            padding-bottom: 2rem;
        }

        footer h5 {
            color: white;
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        footer ul {
            display: block;
            gap: 0.5rem;
        }

        footer h5::before {
            content: '';
            width: 4px;
            height: 20px;
            background: linear-gradient(180deg, var(--bs-gold) 0%, transparent 100%);
            border-radius: 2px;
        }

        footer a {
            color: #CBD5E1;
            text-decoration: none;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            line-height: 1.8;
        }

        footer a:hover {
            color: var(--bs-gold);
            transform: translateX(4px);
        }

        footer li { margin-bottom: 0.5rem; }

        .social-link {
            width: 42px;
            height: 42px;
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bs-gold);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .social-link:hover {
            background: var(--bs-gold);
            color: white;
            transform: translateY(-3px) scale(1.1);
            border-color: var(--bs-gold);
            box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
        }

        .social-link:focus-visible {
            outline: 2px solid var(--bs-gold);
            outline-offset: 2px;
        }

        /* Redes sociais ainda sem conta cadastrada — mantém o ícone visível
           (não quebra o layout) mas sem parecer um link clicável funcional. */
        .social-link-disabled {
            opacity: 0.35;
            cursor: default;
        }
        .social-link-disabled:hover {
            background: rgba(245, 158, 11, 0.1);
            color: var(--bs-gold);
            transform: none;
            box-shadow: none;
        }

        footer .navbar-brand {
            font-size: 1.3rem;
            font-weight: 800;
            color: white !important;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        footer .navbar-brand i { font-size: 1.5rem; color: var(--bs-gold); }

        footer hr {
            border-top: 1px solid rgba(245, 158, 11, 0.1);
            margin: 2rem 0;
        }

        .footer-cta {
            background: rgba(245, 158, 11, 0.08);
            border: 1px solid rgba(245, 158, 11, 0.25);
            border-radius: 10px;
            padding: 1rem;
        }

        /* Blog */
        .post-cover-placeholder {
            background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .post-content { font-size: 1.05rem; line-height: 1.8; color: #374151; }
        .post-content h2 { font-size: 1.6rem; font-weight: 700; margin: 2.5rem 0 1rem; }
        .post-content h3 { font-size: 1.3rem; font-weight: 700; margin: 2rem 0 0.75rem; }
        .post-content p { margin-bottom: 1.25rem; }
        .post-content ul, .post-content ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
        .post-content li { margin-bottom: 0.5rem; }
        .post-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.5rem 0; }
        .post-content a { color: #F59E0B; }
        .post-content blockquote {
            border-left: 4px solid #F59E0B;
            padding: 0.5rem 0 0.5rem 1.25rem;
            margin: 1.5rem 0;
            color: #6B7280;
            font-style: italic;
        }

        /* Largura padrão de todas as páginas públicas, igual ao topbar/hero/search.
           O +24px com padding de 12px mantém o gutter do Bootstrap: assim as colunas
           de .row (que têm margin -12px) alinham exatamente na borda dos 80%. */
        .container-lg {
            width: calc(80% + 24px);
            max-width: none;
            margin-left: auto;
            margin-right: auto;
            padding-left: 12px;
            padding-right: 12px;
        }

        footer .text-muted {
            color: #64748B !important;
            font-size: 0.85rem;
        }

        /* Form Validation States */
        .form-control:valid, .form-select:valid {
            border-color: #F59E0B;
            box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
        }

        .form-control:invalid:not(:placeholder-shown), .form-select:invalid:not(:placeholder-shown) {
            border-color: #DC2626;
            box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
        }

        .form-control:focus:valid {
            border-color: #F59E0B;
            box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
        }

        .form-control:focus:invalid {
            border-color: #DC2626;
            box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
        }

        .invalid-feedback {
            display: block;
            color: #DC2626;
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }

        .valid-feedback {
            display: block;
            color: #F59E0B;
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }

        /* Skeleton Loading */
        .skeleton {
            background: linear-gradient(90deg, #E5E7EB 25%, #D1D5DB 50%, #E5E7EB 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
            border-radius: 8px;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .skeleton-text { height: 0.875rem; margin-bottom: 0.5rem; }
        .skeleton-title { height: 1.25rem; margin-bottom: 0.75rem; width: 60%; }
        .skeleton-image { height: 200px; margin-bottom: 1rem; }
        .skeleton-card { padding: 1.5rem; }

        /* Loading Spinner */
        .spinner-border {
            border: 3px solid rgba(245, 158, 11, 0.1);
            border-right-color: var(--bs-green);
        }

        /* Empty States */
        .empty-state {
            text-align: center;
            padding: 3rem 2rem;
            background: white;
            border-radius: 12px;
            border: 1px solid #E5E7EB;
        }

        .empty-state-icon {
            font-size: 4rem;
            color: var(--bs-gold);
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .empty-state h5 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1F2937;
            margin-bottom: 0.5rem;
        }

        .empty-state p {
            color: #6B7280;
            margin-bottom: 2rem;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .empty-state .btn {
            margin-top: 1rem;
        }

        /* Error State */
        .error-state {
            background: #FEF2F2;
            border: 1px solid #FECACA;
            color: #7F1D1D;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .error-state i {
            color: #DC2626;
            margin-right: 0.5rem;
        }

        /* Homepage Specific Styles */
        .hero { background: linear-gradient(135deg, #1F2937 0%, #374151 100%); color: white; padding: 2rem 0; }
        .hero-content { width: 80%; margin: 0 auto; }
        .hero h1 { font-size: 52px; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
        .hero p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }
        .urgency-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(245, 158, 11, 0.1); color: #F59E0B; padding: 0.5rem 1rem; border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 1rem; }
        .hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
        .btn-hero-primary { background: #F59E0B; color: white; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 16px; display: inline-flex; align-items: center; gap: 0.75rem; transition: all 0.3s; border: none; cursor: pointer; }
        .btn-hero-primary:hover { background: #F97316; transform: translateY(-2px); box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3); }
        .btn-hero-secondary { background: rgba(255,255,255,0.2); color: white; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 16px; display: inline-flex; align-items: center; gap: 0.75rem; transition: all 0.3s; border: 2px solid white; cursor: pointer; }
        .btn-hero-secondary:hover { background: rgba(255,255,255,0.3); }
        .search-section { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-top: 2rem; position: relative; z-index: 10; width: 80%; margin-left: auto; margin-right: auto; margin-bottom: 3rem; }
        .search-box { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; align-items: center; }
        .search-input { width: 100%; padding: 0.75rem 1rem; border: 2px solid #E5E7EB; border-radius: 8px; font-family: inherit; font-size: 15px; height: 44px; box-sizing: border-box; }
        .search-input:focus { outline: none; border-color: #F59E0B; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1); }
        .search-section .search-btn { padding: 0.75rem 2rem; background: #F59E0B; color: white; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; grid-column: span 3; display: flex; align-items: center; justify-content: center; gap: 0.75rem; height: 44px; }
        .search-section .search-btn:hover { background: #F97316; }
        .search-section select { padding: 0.75rem 1rem; border: 2px solid #E5E7EB; border-radius: 8px; font-family: inherit; font-size: 15px; cursor: pointer; background-color: white; height: 44px; box-sizing: border-box; }
        .search-section select:focus { outline: none; border-color: #F59E0B; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1); }

        /* Linha secundária de filtros (ordenação, avaliação, geolocalização) */
        .search-filters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: center; padding-top: 1.25rem; border-top: 1px solid #E5E7EB; }
        .search-filters-label { font-size: 12px; font-weight: 600; color: #6B7280; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.35rem; display: block; }
        .search-geo-btn { height: 44px; width: 100%; padding: 0.75rem 1rem; background: white; color: #F59E0B; border: 2px solid #F59E0B; border-radius: 8px; font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.3s; }
        .search-geo-btn:hover:not(:disabled) { background: #F59E0B; color: white; }
        .search-geo-btn:disabled { opacity: 0.6; cursor: not-allowed; }
        .search-geo-status { display: block; font-size: 12px; margin-top: 0.35rem; min-height: 1rem; }
        .social-proof { width: 80%; margin: 3rem auto; padding: 0; }
        .proof-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
        .stat-card { background: white; padding: 2rem; border-radius: 12px; border: 1px solid #E5E7EB; text-align: center; }
        .stat-number { font-size: 36px; font-weight: 700; color: #F59E0B; margin-bottom: 0.5rem; }
        .stat-label { font-size: 15px; color: #6B7280; font-weight: 500; }
        .categories-section { width: 80%; margin: 4rem auto; padding: 0; }
        .section-title { font-size: 32px; font-weight: 700; margin-bottom: 2rem; text-align: center; }
        .categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; }
        .category-card { background: white; padding: 2rem; border-radius: 12px; text-align: center; cursor: pointer; transition: all 0.3s; border: 1px solid #E5E7EB; }
        .category-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(245, 158, 11, 0.15); border-color: #F59E0B; }
        .category-icon { font-size: 36px; margin-bottom: 1rem; color: #F59E0B; }
        .category-card p { font-weight: 600; font-size: 14px; color: #1F2937; }
        .city-card { padding: 0; overflow: hidden; }
        .city-card-photo { width: 100%; height: 110px; background-size: cover; background-position: center; background-color: #FEF3E2; }
        .city-card-photo.placeholder { display: flex; align-items: center; justify-content: center; }
        .city-card-photo.placeholder .category-icon { margin-bottom: 0; }
        .city-card-body { padding: 1.25rem 1rem; }
        .featured-section { background: #F3F4F6; padding: 4rem 0; margin: 4rem 0; }
        .featured-content { width: 80%; margin: 0 auto; }
        .businesses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
        .business-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
        .business-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.12); }
        .business-image { width: 100%; height: 180px; background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%); display: flex; align-items: center; justify-content: center; font-size: 48px; }
        .business-info { padding: 1.5rem; }
        .business-name { font-size: 18px; font-weight: 600; margin-bottom: 0.5rem; }
        .business-category { font-size: 13px; color: #6B7280; margin-bottom: 0.75rem; }
        .business-rating { display: flex; align-items: center; gap: 0.5rem; font-size: 13px; font-weight: 600; color: #F59E0B; }
        .stars { color: #F59E0B; }
        .sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: white; border-top: 2px solid #F59E0B; padding: 1rem 2rem; box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); z-index: 90; display: none; }
        .sticky-cta.visible { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
        .sticky-cta-text { font-size: 14px; color: #6B7280; font-weight: 500; }
        .sticky-cta-text strong { color: #1F2937; }
        .sticky-cta-btn { padding: 0.75rem 2rem; background: #F59E0B; color: white; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 14px; display: flex; align-items: center; gap: 0.5rem; transition: background 0.3s; }
        .sticky-cta-btn:hover { background: #F97316; }
        .skeleton-card-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
        .skeleton-business-card { border-radius: 12px; overflow: hidden; }
        .skeleton-business-card .skeleton-image { height: 180px; width: 100%; }
        .skeleton-business-card .skeleton-body { padding: 1.5rem; }
        .skeleton-business-card .skeleton-title { width: 70%; }
        .skeleton-business-card .skeleton-text { width: 100%; }

        /* Categories Page */
        .hover-lift:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15) !important; border-color: #F59E0B !important; }


        /* Select2 Custom Styling */
        .select2-container--default .select2-selection--single {
            border: 2px solid #E5E7EB;
            border-radius: 8px;
            height: auto;
            padding: 0.5rem 0.75rem;
            background-color: white;
            transition: all 0.3s;
        }

        .select2-container--default .select2-selection--single:focus {
            border-color: #F59E0B;
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
        }

        .select2-container--default.select2-container--open .select2-selection--single {
            border-color: #F59E0B;
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
        }

        .select2-container--default .select2-selection--single .select2-selection__rendered {
            color: #1F2937;
            font-size: 0.95rem;
        }

        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 100%;
            top: 0;
            right: 6px;
        }

        /* Homepage search: Select2 alinhado com o input (44px) */
        .search-section .select2-container { width: 100% !important; }
        .search-section .select2-container--default .select2-selection--single {
            height: 44px;
            padding: 0;
            display: flex;
            align-items: center;
        }
        .search-section .select2-container--default .select2-selection--single .select2-selection__rendered {
            line-height: 1.2;
            padding: 0 2rem 0 1rem;
            font-size: 15px;
        }

        .select2-dropdown {
            border: 2px solid #E5E7EB;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .select2-container--default .select2-results__option--highlighted[aria-selected] {
            background-color: #F59E0B;
            color: white;
        }

        .select2-container--default .select2-search__field {
            border: none;
            padding: 0.5rem;
            font-size: 0.95rem;
        }

        .select2-container--default .select2-search__field:focus {
            outline: none;
            border-color: #F59E0B;
        }

        /* Em telas menores 80% aperta demais o conteúdo */
        @media (max-width: 1199px) {
            header .navbar, .hero-content, .search-section,
            .social-proof, .categories-section, .featured-content { width: 92%; }
            .container-lg { width: calc(92% + 24px); }
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 32px; }
            .search-box { grid-template-columns: 1fr; }
            .search-section .search-btn { grid-column: span 1; }
            .search-filters { grid-template-columns: 1fr; }
            .proof-stats { grid-template-columns: 1fr; }
            .businesses-grid { grid-template-columns: 1fr; }
        }
