
.feature-card {
            background: var(--white);
            border-radius: 15px;
            padding: 25px;
            margin: 1rem 0;
            height: 100%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--pastel-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .feature-icon i {
            font-size: 24px;
            color: var(--primary-color);
        }
        .category-badge {
            background: var(--pastel-pink);
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: inline-block;
        }
        .promo-banner {
            background: var(--primary-color);
            color: var(--white);
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }
        .promo-banner::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: var(--secondary-color);
            opacity: 0.1;
            border-radius: 50%;
            transform: translate(50%, -50%);
        }
        .testimonial-card {
            background: var(--pastel-yellow);
            border-radius: 15px;
            padding: 25px;
            margin: 0;
            position: relative;
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        .testimonial-card::before {
            content: '"';
            font-size: 60px;
            color: var(--primary-color);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
        }
        .customer-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        .stats-counter {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        .floating-whatsapp {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1050;
        }
        .floating-whatsapp:hover {
            transform: scale(1.1);
            color: white;
        }
        .food-banner {
            padding: 40px 0;
            background: var(--pastel-yellow);
            margin: 30px 0;
        }
        .food-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            margin: 10px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .food-card:hover {
            transform: translateY(-10px);
        }
        .food-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.3s ease;
        }
        .food-card:hover img {
            transform: scale(1.1);
        }
        .food-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 20px;
            color: white;
        }
        .promo-modal .modal-content {
            background: var(--white);
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
        .promo-modal .modal-header {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 20px;
        }
        .promo-modal .modal-body {
            padding: 30px;
        }
        .promo-timer {
            background: var(--pastel-yellow);
            padding: 10px;
            border-radius: 10px;
            text-align: center;
            margin: 15px 0;
        }
        .promo-timer span {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }
        .promo-price {
            font-size: 2.5rem;
            color: var(--primary-color);
            font-weight: bold;
            text-align: center;
            margin: 20px 0;
        }
        .promo-price small {
            font-size: 1rem;
            text-decoration: line-through;
            color: #666;
            margin-right: 10px;
        }
        .testimonials-section {
            padding: 60px 0;
            background: var(--white);
        }
        .features-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .testimonials-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .testimonials-row {
            display: flex;
            flex-wrap: wrap;
        }
        .testimonial-col {
            display: flex;
            flex: 1;
            padding: 15px;
        }
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .testimonial-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .testimonial-text {
            font-style: italic;
            line-height: 1.6;
            margin: 0;
            flex-grow: 1;
            position: relative;
            z-index: 1;
        }
        .customer-info {
            flex-grow: 1;
        }
        .footer {
            background: var(--primary-color);
            color: var(--white);
            padding: 60px 0 30px;
            position: relative;
        }
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, 
                var(--secondary-color) 0%, 
                var(--accent-color) 50%, 
                var(--secondary-color) 100%);
        }
        .footer-logo {
            max-width: 150px;
            margin-bottom: 20px;
        }
        .footer h4 {
            color: var(--secondary-color);
            margin-bottom: 25px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary-color);
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        .footer-links a i {
            margin-right: 10px;
            color: var(--secondary-color);
            font-size: 0.8rem;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--white);
            transition: all 0.3s ease;
        }
        .footer-social a:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        .footer-contact i {
            color: var(--secondary-color);
            margin-right: 10px;
            width: 20px;
        }
        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.9rem;
        }
        .footer-app-buttons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        .footer-app-button {
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-app-button:hover {
            background: var(--secondary-color);
            color: var(--white);
        }
        .footer-app-button i {
            font-size: 1.5rem;
            margin-right: 8px;
        }
        .carousel-item {
            height: 600px;
            position: relative;
            overflow: hidden;
        }
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }
        .carousel-caption {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            text-align: left;
            left: 10%;
            right: 10%;
        }
        .carousel-caption h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: slideInLeft 1s ease-out;
        }
        .carousel-caption p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            max-width: 600px;
            animation: slideInRight 1s ease-out;
        }
        .banner-btn {
            padding: 12px 30px;
            font-size: 1.1rem;
            border-radius: 50px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            animation: fadeIn 1.5s ease-out;
        }
        .banner-btn-primary {
            background: var(--primary-color);
            color: var(--white);
            border: 2px solid var(--primary-color);
            margin-right: 15px;
        }
        .banner-btn-primary:hover {
            background: transparent;
            color: var(--white);
        }
        .banner-btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        .banner-btn-outline:hover {
            background: var(--white);
            color: var(--primary-color);
        }
        @keyframes slideInLeft {
            from {
                transform: translateX(-100px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        @keyframes slideInRight {
            from {
                transform: translateX(100px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        .carousel-indicators {
            margin-bottom: 3rem;
        }
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 8px;
            background-color: var(--white);
            opacity: 0.5;
            transition: all 0.3s ease;
        }
        .carousel-indicators button.active {
            opacity: 1;
            width: 30px;
            border-radius: 10px;
        }
        .navbar-brand, .nav-link {
            color: var(--white) !important;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }

        @media (max-width: 1200px) {
            .stats-counter {
                font-size: 2.25rem;
            }
        }

        @media (max-width: 992px) {
            .promo-banner {
                padding: 2rem;
            }
            
            .stats-counter {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .feature-card {
                padding: 1.5rem;
            }
            
            .testimonial-card {
                padding: 1.5rem;
            }
            
            .stats-counter {
                font-size: 1.75rem;
            }
            
            .floating-whatsapp {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }

        @media (max-width: 576px) {
            .feature-icon {
                width: 50px;
                height: 50px;
            }
            
            .feature-icon i {
                font-size: 20px;
            }
            
            .promo-banner {
                padding: 1.5rem;
                text-align: center;
            }
            
            .testimonial-card::before {
                font-size: 40px;
            }
            
            .customer-img {
                width: 50px;
                height: 50px;
            }
            
            .stats-counter {
                font-size: 1.5rem;
            }
        }
    