/* 
           FONTES CUSTOMIZADAS
           - Host Grotesk (Sans-serif moderna)
           - Minion / Crimson Pro (Serifada clássica/acolhedora)
        */
        :root {
            --color-primary: #2d5a27;
            --color-primary-600: #1e3d1a;
            --color-primary-light: #4caf50;
            --color-bg: #fdfdfb;
            --color-white: #ffffff;
            --color-text: #1b2610;
            --color-text-muted: #5a6b52;
            --color-accent: #e67e22;
            --color-accent-hover: #d35400;
            --font-sans: 'Host Grotesk', sans-serif;
            --font-serif: 'Crimson Pro', serif; /* Placeholder para Minion */
            --container-width: 1140px;
            --header-height: 180px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline-color: var(--color-primary);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Utilidades */
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
            font-family: var(--font-sans);
        }

        .btn-primary {
            background-color: var(--color-primary);
            color: var(--color-white);
        }

        .btn-primary:hover {
            background-color: var(--color-primary-600);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
        }

        .btn-accent {
            background-color: var(--color-accent);
            color: var(--color-white);
        }

        .btn-accent:hover {
            background-color: var(--color-accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
        }

        h1, h2, h3 {
            line-height: 1.1;
            font-weight: 700;
            font-family: var(--font-serif);
            letter-spacing: -0.02em;
        }

        section {
            padding: 5rem 0;
            scroll-margin-top: var(--header-height);
        }

        /* Tags */
        .badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-right: 0.5rem;
            font-family: var(--font-sans);
        }

        .badge-healthy { background: #e8f5e9; color: #2e7d32; }
        .badge-vegano { background: #f1f8e9; color: #558b2f; }
        .badge-fit { background: #fff3e0; color: #ef6c00; }
        .badge-bebida { background: #e3f2fd; color: #1976d2; }
        .badge-mais-pedido, .badge-melhor-preço, .badge-combo { 
            background: #ffebee; 
            color: #c62828; 
            box-shadow: 0 2px 8px rgba(198, 40, 40, 0.2);
            border: 1px solid rgba(198, 40, 40, 0.1);
            animation: pulse-red 2s infinite;
        }

        @keyframes pulse-red {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.4); }
            70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(198, 40, 40, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(198, 40, 40, 0); }
        }

        /* Header */
        header {
            height: var(--header-height);
            background-color: var(--color-primary); /* Changed to primary to make white logo visible */
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 160px;
            width: auto;
            transition: var(--transition);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            text-decoration: none;
            color: var(--color-white); /* White text for contrast */
            font-weight: 500;
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--color-accent);
        }

        .mobile-toggle {
            display: none;
            cursor: pointer;
        }

        /* Hero */
        #hero {
            padding-top: calc(var(--header-height) + 3rem);
            background: linear-gradient(135deg, #fdfdfb 0%, #f1f8e9 100%);
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            align-items: center;
            gap: 4rem;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: var(--color-primary);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: var(--color-text-muted);
            max-width: 500px;
        }

        .hero-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
        }

        /* Benefícios */
        #benefits {
            background-color: var(--color-white);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .benefit-card {
            text-align: center;
            padding: 2rem;
            border-radius: 20px;
            background: var(--color-bg);
            transition: var(--transition);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
        }

        .benefit-card svg {
            width: 48px;
            height: 48px;
            color: var(--color-primary);
            margin-bottom: 1.5rem;
        }

        /* Menu */
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--color-primary);
        }

        .menu-filter {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: transparent;
            border: 2px solid var(--color-primary);
            color: var(--color-primary);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--color-primary);
            color: var(--color-white);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: var(--color-white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.1);
        }

        .product-img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            background: #eee;
        }

        .product-info {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-title {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .product-desc {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .product-price {
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--color-primary);
        }

        .add-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-primary);
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .add-btn:hover {
            transform: scale(1.1);
            background: var(--color-accent);
        }

        /* How it works */
        .step-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .step-item {
            text-align: center;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--color-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }

        /* Testimonials */
        #testimonials {
            background-image: linear-gradient(rgba(45, 90, 39, 0.05), rgba(45, 90, 39, 0.05));
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .testimonial-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--color-primary-light);
            padding: 2px;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--color-text-muted);
            line-height: 1.5;
        }

        .testimonial-author {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--color-primary);
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
        }

        .faq-question {
            font-weight: 700;
            margin-bottom: 0.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
            opacity: 0;
            color: var(--color-text-muted);
            font-size: 0.95rem;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            opacity: 1;
            margin-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

        .faq-question span {
            transition: transform 0.3s ease;
            font-size: 1.2rem;
            color: var(--color-primary);
        }

        /* Warning banner */
        .warning-banner {
            background: #ffecb3;
            color: #856404;
            padding: 0.5rem;
            text-align: center;
            font-size: 0.8rem;
            font-weight: 600;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1001;
            display: none;
        }

        /* Footer */
        footer {
            background: linear-gradient(rgba(45, 90, 39, 0.96), rgba(45, 90, 39, 0.96)), url('https://i.postimg.cc/WzQzPtQ6/e-sopas-(1).jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 4rem 0 2rem;
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-col h4 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 0.5rem;
            opacity: 0.8;
        }

        .footer-col a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: var(--transition);
        }

        .footer-col a:hover { opacity: 1; }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            opacity: 0.6;
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-content p { margin-left: auto; margin-right: auto; }
            .grid-3, .step-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-content h1 { font-size: 3rem; }
        }

        @media (max-width: 768px) {
            :root { --header-height: 150px; }
            section { padding: 3rem 0; }
            #hero {
                padding-top: calc(var(--header-height) + 1.5rem);
                background: linear-gradient(rgba(253, 253, 251, 0.92), rgba(253, 253, 251, 0.92)), url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?auto=format&fit=crop&q=80&w=800');
                background-size: cover;
                background-position: center;
                min-height: auto;
            }
            .hero-grid { gap: 2rem; }
            .section-title { margin-bottom: 2rem; }
            .logo img { height: 130px; }
            nav ul { display: none; }
            .mobile-toggle { display: block; }
            .hero-content h1 { font-size: 2.5rem; }
            .footer-grid { grid-template-columns: 1fr; }
            footer {
                background: linear-gradient(rgba(45, 90, 39, 0.85), rgba(45, 90, 39, 0.85)), url('https://i.postimg.cc/WzQzPtQ6/e-sopas-(1).jpg');
                background-size: cover;
                background-position: center;
            }
        }

        /* Cart Indicator & Drawer */
        .cart-indicator {
            position: fixed;
            bottom: 100px;
            right: 20px;
            background: var(--color-accent);
            color: white;
            padding: 0.6rem 1rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 998;
            display: none;
            animation: slideIn 0.3s ease-out;
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 500;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .shake {
            animation: shake 0.2s ease-in-out 0s 2;
        }

        .cart-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 350px;
            height: 100%;
            background: white;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
            padding: 2rem 1.5rem;
        }

        .cart-drawer.active { right: 0; }

        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            display: none;
        }

        .cart-overlay.active { display: block; }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--color-bg);
            padding-bottom: 1rem;
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--color-bg);
        }

        .remove-btn {
            background: #ffebee;
            color: #c62828;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .remove-btn:hover { background: #ffcdd2; }

        .cart-footer {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 2px solid var(--color-bg);
        }

        /* Combo & Addons Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            display: none;
            align-items: flex-start;
            justify-content: center;
            z-index: 2000;
            padding: 2rem 1rem;
        }

        .modal.active { display: flex; }

        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            width: 100%;
            max-width: 500px;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .scroll-indicator {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--color-accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
            animation: bounce 2s infinite;
            z-index: 2001;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .scroll-indicator.visible {
            opacity: 1;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
            40% {transform: translateX(-50%) translateY(-10px);}
            60% {transform: translateX(-50%) translateY(-5px);}
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
        }

        .combo-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #f9f9f9;
        }

        .option-info {
            display: flex;
            flex-direction: column;
        }

        .option-price {
            font-size: 0.8rem;
            color: var(--color-primary);
            font-weight: 600;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .qty-btn {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid var(--color-primary);
            background: white;
            color: var(--color-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            transition: var(--transition);
        }

        .qty-btn:hover { background: var(--color-primary); color: white; }
        .qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }

        .qty-val { font-weight: 700; min-width: 18px; text-align: center; font-size: 0.95rem; }

        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }