:root {
            --primary-green: #28c76f;
            --green-light: #5ed885;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f8f9fa;
            --shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: white;
            color: var(--text-dark);
            padding-bottom: 80px;
            overflow-x: hidden;
        }

        /* Header */
        .app-header {
            background: white;
            border-bottom: 1px solid #e9ecef;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .user-avatar {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--primary-green), var(--green-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Categories */
        .category-item {
            min-width: 80px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-icon {
            width: 60px;
            height: 60px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            font-size: 24px;
            color: var(--text-light);
            transition: all 0.3s ease;
        }

        .category-item.active .category-icon {
            background: var(--primary-green);
            color: white;
            transform: scale(1.1);
        }

        .category-item:hover .category-icon {
            transform: scale(1.05);
        }

        /* Restaurant Slider */
        .restaurant-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            background: white;
        }

        .restaurant-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .restaurant-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .restaurant-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: 20px;
        }

        .featured-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-green);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        /* Food Cards */
        .food-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: none;
        }

        .food-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .food-image {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 12px;
        }

        .rating-badge {
            background: #ffeaa7;
            color: #fdcb6e;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* Advertisement Box */
        .ad-box {
            background: linear-gradient(135deg, var(--primary-green), var(--green-light));
            color: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .ad-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20px;
            width: 100px;
            height: 100px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        /* Bottom Navigation */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--primary-green);
            padding: 12px 0;
            box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .nav-item {
            text-align: center;
            color: #FFFFFF;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0px;
            border-radius: 12px;
            font-weight:bold !important;
        }

        .nav-item.active,
        .nav-item:hover {
            color: #FFFFFF;
            transform: scale(1.05);
        }

        .nav-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 0px;
        }

        .nav-item span {
            font-size: 11px;
            font-weight: bold;
        }

        /* Side Menu */
        .offcanvas {
            width: 320px !important;
        }

        .menu-item {
            padding: 12px 20px;
            border-radius: 12px;
            margin: 4px 0;
            transition: all 0.3s ease;
            color: var(--text-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .menu-item:hover {
            background: rgba(40, 199, 111, 0.1);
            color: var(--primary-green);
        }

        .user-profile-sidebar {
            background: rgba(40, 199, 111, 0.1);
            border-radius: 12px;
            padding: 16px;
        }

        /* Animations */
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

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

        .slide-up {
            animation: slideUp 0.3s ease-out;
        }

        @keyframes slideUp {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }

        /* Swiper customization */
        .swiper-button-next,
        .swiper-button-prev {
            background: rgba(255,255,255,0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 16px;
            color: var(--primary-green);
            font-weight: bold;
        }

        /* Responsive */
        @media (max-width: 576px) {
            .container-fluid {
                padding-left: 16px;
                padding-right: 16px;
            }
        }
        
        .cta-section {
          background: #fff;
          border-radius: 12px;
          box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .stats-section img {
          object-fit: cover;
          border: 2px solid #fff;
          box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: #f1f3f5;
    border-radius: 10px;
    padding: 4px 10px;
    width: 400px;
    transition: all 0.3s ease-in-out;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    padding: 6px 10px;
    font-size: 14px;
}

.search-bar .btn-search {
    border: none;
    background: #28c76f;
    color: #fff;
   
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

 .cta-section {
            background: rgba(0, 0, 0, 0.85); /* Verde com opacidade */
            background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5'); /* Exemplo de imagem */
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay; /* Mistura da cor verde com a imagem */
            border-radius: 12px;
          }