
        @font-face {
            font-family: 'Inter';
            src: url('fonts/inter.woff2') format('woff2');
            font-weight: 100 900;
            font-style: normal;
            font-display: swap;
        }
    

        /* Reset e Estilos Gerais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2a3820;
            --secondary-color: #2a3820;
            --accent-color: #3d5229;
            --drink-gradient: linear-gradient(135deg, #2a3820 0%, #3d5229 100%);
            --food-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --hero-gradient: linear-gradient(135deg, #2a3820 0%, #3d5229 100%);
            --text-light: #6a6255;
            --text-dark: #1c1c1a;
            --bg-light: #f9f5ee;
            --creme: #f0ead6;
            --dourado: #b07d2e;
            --shadow-light: 0 4px 12px rgba(42, 56, 32, 0.08);
            --shadow-hover: 0 8px 25px rgba(42, 56, 32, 0.14);
            --border-radius: 16px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 130px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: #f9f5ee;
            color: var(--text-dark);
            line-height: 1.6;
            font-weight: 400;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Cabeçalho */
        .header {
            background: #ffffff;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            gap: 12px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }

        .logo img {
            height: 44px;
            border-radius: 50%;
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .header-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--primary-color);
            letter-spacing: -0.2px;
            line-height: 1.2;
        }

        .header-title span {
            display: block;
            font-size: 11px;
            font-weight: 400;
            color: var(--text-light);
            letter-spacing: 0;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-header {
            background: none;
            border: none;
            cursor: pointer;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-light);
            transition: var(--transition);
        }

        .btn-header:hover {
            background: rgba(102, 126, 234, 0.1);
            color: var(--secondary-color);
        }

        /* Navegação */
        .categories {
            background: #ffffff;
            border-bottom: 1px solid #ebebeb;
            position: sticky;
            top: 64px;
            z-index: 90;
        }

        /* Ocultar seções do turno inativo */
        .menu-section.turno-hidden { display: none; }
        .category-button.turno-hidden { display: none; }

        /* Badge de turno no hero */
        .turno-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255,255,255,0.18);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
            margin-bottom: 8px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .category-scroll {
            display: flex;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 15px 0;
            gap: 8px;
            justify-content: flex-start;
        }

        .category-scroll::-webkit-scrollbar {
            display: none;
        }

        .category-button {
            background: none;
            border: none;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light);
            cursor: pointer;
            text-decoration: none;
            transition: none;
            border-radius: 25px;
            white-space: nowrap;
            position: relative;
        }

        .category-button:hover {
            color: var(--primary-color);
            background-color: rgba(102, 126, 234, 0.1);
            transform: translateY(-1px);
        }

        .category-button.active {
            color: white;
            background: var(--drink-gradient);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            transform: translateY(-1px);
        }

        /* Conteúdo Principal */
        .main-content {
            padding: 30px 0 60px;
        }

        .menu-section {
            margin-bottom: 60px;
            padding-top: 20px;
        }

        h2 {
            font-size: 24px;
            margin: 16px 0 10px;
            font-weight: 700;
            text-align: center;
            color: var(--primary-color);
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: var(--drink-gradient);
            border-radius: 2px;
        }

        .section-description {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 16px;
            max-width: 600px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            line-height: 1.5;
        }

        /* Grid Responsivo Melhorado */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        @media (min-width: 640px) {
            .menu-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
        }

        @media (min-width: 1024px) {
            .menu-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 18px;
            }
        }

        /* Cards dos Itens Melhorados */
        .menu-item {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            position: relative;
        }

        @media (hover: hover) {
            .menu-item:hover {
                transform: translateY(-5px);
                box-shadow: var(--shadow-hover);
            }
        }

        .item-image {
            position: relative;
            height: 140px;
            background: var(--food-gradient);
            overflow: hidden;
            cursor: pointer;
        }

        .item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .menu-item:hover .item-image img {
            transform: scale(1.05);
        }

        .overlay-text {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
            color: white;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            text-align: center;
            padding: 0 10px 10px;
            font-weight: 700;
            font-size: 13px;
            line-height: 1.2;
            transition: var(--transition);
        }

        /* Ícone de zoom sobre a imagem */
        .zoom-icon {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(255,255,255,0.85);
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            opacity: 0;
            transition: var(--transition);
            pointer-events: none;
        }

        .item-image:hover .zoom-icon {
            opacity: 1;
        }

        .item-info {
            padding: 12px 14px;
        }

        .item-description {
            font-size: 12px;
            color: var(--text-light);
            line-height: 1.5;
            text-align: center;
            font-weight: 400;
            margin-bottom: 8px;
        }

        .item-price {
            font-size: 16px;
            font-weight: bold;
            color: var(--dourado);
            text-align: center;
        }

        .item-price-multi {
            font-size: 12px;
            font-weight: 600;
            color: var(--dourado);
            text-align: center;
            line-height: 1.4;
        }

        /* Lightbox Modal */
        .lightbox-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.88);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 20px;
            animation: fadeIn 0.2s ease;
        }

        .lightbox-overlay.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .lightbox-img {
            max-width: 90vw;
            max-height: 70vh;
            border-radius: 12px;
            object-fit: contain;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            animation: zoomIn 0.25s ease;
        }

        @keyframes zoomIn {
            from { transform: scale(0.85); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .lightbox-title {
            color: white;
            font-size: 20px;
            font-weight: 700;
            margin-top: 18px;
            text-align: center;
        }

        .lightbox-close {
            position: absolute;
            top: 16px;
            right: 20px;
            background: rgba(255,255,255,0.15);
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            line-height: 1;
        }

        .lightbox-close:hover {
            background: rgba(255,255,255,0.3);
        }

        /* Hero Section Melhorada */
        .featured-item {
            position: relative;
            margin-bottom: 40px;
            border-radius: var(--border-radius);
            overflow: hidden;
            height: 300px;
            background: var(--hero-gradient);
            box-shadow: var(--shadow-hover);
        }

        .featured-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-item .overlay-text {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
        }


        /* Gradientes para cada seção */
        #destaque .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        #entradas .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
        #entradas .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
        #entradas .menu-item:nth-child(3) .item-image { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }

        #kids .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
        #kids .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
        #kids .menu-item:nth-child(3) .item-image { background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%); }

        #saladas .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%); }
        #saladas .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }

        #pratos .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); }
        #pratos .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #fdbb2d 0%, #22c1c3 100%); }
        #pratos .menu-item:nth-child(3) .item-image { background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%); }

        #pratos-compartilhados .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #fdbb2d 0%, #22c1c3 100%); }
        #pratos-compartilhados .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

        #sobremesas .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
        #sobremesas .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

        #soft-drinks .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        #soft-drinks .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        #soft-drinks .menu-item:nth-child(3) .item-image { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

        #cervejas .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        #cervejas .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
        #cervejas .menu-item:nth-child(3) .item-image { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

        #cachaca .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

        #vodkas .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
        #vodkas .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
        #vodkas .menu-item:nth-child(3) .item-image { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

        #gin .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

        #whisky .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%); }
        #whisky .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%); }
        #whisky .menu-item:nth-child(3) .item-image { background: linear-gradient(135deg, #CD853F 0%, #A0522D 100%); }
        #whisky .menu-item:nth-child(4) .item-image { background: linear-gradient(135deg, #4B0082 0%, #8A2BE2 100%); }

        #licores .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #FF69B4 0%, #FFB6C1 100%); }

        /* Vinhos com gradientes especiais */
        #vinhos-tintos .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%); }
        #vinhos-tintos .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #4B0082 0%, #8A2BE2 100%); }
        #vinhos-tintos .menu-item:nth-child(3) .item-image { background: linear-gradient(135deg, #8B0000 0%, #B22222 100%); }
        #vinhos-tintos .menu-item:nth-child(4) .item-image { background: linear-gradient(135deg, #DC143C 0%, #B22222 100%); }
        #vinhos-tintos .menu-item:nth-child(5) .item-image { background: linear-gradient(135deg, #4B0082 0%, #663399 100%); }
        #vinhos-tintos .menu-item:nth-child(6) .item-image { background: linear-gradient(135deg, #8B0000 0%, #A0522D 100%); }
        #vinhos-tintos .menu-item:nth-child(7) .item-image { background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%); }
        #vinhos-tintos .menu-item:nth-child(8) .item-image { background: linear-gradient(135deg, #4B0082 0%, #8B0000 100%); }
        #vinhos-tintos .menu-item:nth-child(9) .item-image { background: linear-gradient(135deg, #B22222 0%, #DC143C 100%); }
        #vinhos-tintos .menu-item:nth-child(10) .item-image { background: linear-gradient(135deg, #8B0000 0%, #4B0082 100%); }

        #vinhos-brancos .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); }

        #espumantes .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #FFD700 0%, #FFF8DC 100%); }
        #espumantes .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #F0E68C 0%, #BDB76B 100%); }
        #espumantes .menu-item:nth-child(3) .item-image { background: linear-gradient(135deg, #DDA0DD 0%, #DA70D6 100%); }

        #grandes-formatos .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%); }
        #grandes-formatos .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #DC143C 0%, #B22222 100%); }

        #drinks-autorais .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        #drinks-autorais .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        #drinks-autorais .menu-item:nth-child(3) .item-image { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

        #drinks-classicos .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
        #drinks-classicos .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
        #drinks-classicos .menu-item:nth-child(3) .item-image { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        #drinks-classicos .menu-item:nth-child(4) .item-image { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }

        #caipifrutas .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
        #caipifrutas .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
        #caipifrutas .menu-item:nth-child(3) .item-image { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

        #drinks-sem-alcool .menu-item:nth-child(1) .item-image { background: linear-gradient(135deg, #32CD32 0%, #7CFC00 100%); }
        #drinks-sem-alcool .menu-item:nth-child(2) .item-image { background: linear-gradient(135deg, #00CED1 0%, #20B2AA 100%); }
        #drinks-sem-alcool .menu-item:nth-child(3) .item-image { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); }

        /* Loading Animation */
        .menu-item {
            opacity: 1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsivo Aprimorado */
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }

            .category-scroll {
                padding: 12px 0;
                justify-content: flex-start;
            }

            .category-button {
                padding: 10px 16px;
                font-size: 13px;
            }

            .item-image {
                height: 120px;
            }

            .overlay-text {
                font-size: 12px;
            }
            
            h2 {
                font-size: 28px;
                margin: 24px 0;
            }
            
            .featured-item {
                height: 220px;
            }
            
            .featured-item .overlay-text {
                font-size: 32px;
            }
            
            .section-description {
                font-size: 16px;
                margin-bottom: 30px;
            }
            
            html {
                scroll-padding-top: 185px;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                padding: 16px 0;
            }
            
            .logo img {
                height: 55px;
            }
            
            .item-image {
                height: 160px;
            }
            
            .overlay-text {
                font-size: 16px;
                padding: 0 16px;
            }
            
            .item-info {
                padding: 20px;
            }
            
            .featured-item {
                height: 200px;
            }
            
            .featured-item .overlay-text {
                font-size: 28px;
            }
        }

        /* Micro-interações */
        @media (hover: hover) {
            .category-button::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--drink-gradient);
                opacity: 0;
                border-radius: 25px;
                transition: var(--transition);
                z-index: -1;
            }
            
            .category-button:hover::before {
                opacity: 0.1;
            }
        }

        /* Acessibilidade */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            html {
                scroll-behavior: auto;
            }
        }

        /* Print Styles */
        @media print {
            .header,
            .categories {
                position: static;
            }
            
            .menu-item {
                break-inside: avoid;
            }
        }

        /* Estilos para Seção de Contato */
        .contact-info {
            margin: 16px 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .info-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 14px 18px;
            margin-bottom: 8px;
            box-shadow: var(--shadow-light);
            display: flex;
            align-items: center;
            transition: var(--transition);
        }

        .info-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .info-icon {
            font-size: 24px;
            margin-right: 16px;
            min-width: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .info-text {
            flex-grow: 1;
        }

        .info-text h3 {
            margin: 0 0 4px 0;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-dark);
        }

        .info-text .status {
            font-weight: 500;
            margin: 4px 0;
            font-size: 14px;
        }
        .info-text .status.fechado { color: #e74c3c; }
        .info-text .status.aberto  { color: #27ae60; }

        /* Painel de horários */
        .horarios-panel {
            display: none;
            background: #f8f9fa;
            border-radius: 12px;
            padding: 16px 20px;
            margin-top: 8px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid rgba(0,0,0,0.06);
        }
        .horarios-panel.visible { display: block; }
        .horarios-panel table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }
        .horarios-panel td {
            padding: 6px 8px;
            color: var(--text-dark);
        }
        .horarios-panel td:first-child {
            font-weight: 600;
            width: 130px;
        }
        .horarios-panel tr.hoje td {
            color: var(--secondary-color);
            font-weight: 700;
        }
        .horarios-panel .turno-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-light);
            padding: 10px 8px 4px;
        }

        .info-text .details {
            color: var(--text-light);
            font-size: 14px;
            margin: 4px 0;
        }

        .info-text .details a:hover {
            text-decoration: underline !important;
        }

        /* Linha compacta de contato/localização */
        .info-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 2px;
        }

        .info-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: white;
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 30px;
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-dark);
            text-decoration: none;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
        }

        .info-chip:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            color: var(--secondary-color);
        }

        /* ── 1. Botão voltar ao topo ── */
        .back-to-top {
            position: fixed;
            bottom: 24px;
            right: 20px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--drink-gradient);
            color: white;
            border: none;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(102,126,234,0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            z-index: 500;
            pointer-events: none;
        }
        .back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        .back-to-top:hover {
            box-shadow: 0 6px 20px rgba(102,126,234,0.6);
            transform: translateY(-2px);
        }

        /* ── 3. Placeholder imagem quebrada ── */
        .item-image .img-placeholder {
            display: none;
            position: absolute;
            inset: 0;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 6px;
            color: rgba(255,255,255,0.7);
            font-size: 28px;
        }
        .item-image .img-placeholder span {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.04em;
        }
        .item-image.broken .img-placeholder { display: flex; }
        .item-image.broken img { display: none; }

        /* ── 7. Ponto pulsante no status ── */
        .status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            flex-shrink: 0;
        }
        .status-dot.aberto {
            background: #27ae60;
            box-shadow: 0 0 0 0 rgba(39,174,96,0.6);
            animation: pulseGreen 1.8s infinite;
        }
        .status-dot.fechado {
            background: #e74c3c;
            box-shadow: 0 0 0 0 rgba(231,76,60,0.6);
            animation: pulseRed 1.8s infinite;
        }
        @keyframes pulseGreen {
            0%   { box-shadow: 0 0 0 0 rgba(39,174,96,0.55); }
            70%  { box-shadow: 0 0 0 8px rgba(39,174,96,0); }
            100% { box-shadow: 0 0 0 0 rgba(39,174,96,0); }
        }
        @keyframes pulseRed {
            0%   { box-shadow: 0 0 0 0 rgba(231,76,60,0.55); }
            70%  { box-shadow: 0 0 0 8px rgba(231,76,60,0); }
            100% { box-shadow: 0 0 0 0 rgba(231,76,60,0); }
        }

        /* ── 8. Banner de boas-vindas ── */
        .hero-banner {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            height: 180px;
            margin-bottom: 16px;
            box-shadow: var(--shadow-hover);
        }
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 60%;
        }
        .hero-banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding: 20px;
            text-align: center;
        }
        .hero-banner-overlay h2 {
            color: white;
            font-size: 22px;
            margin: 0 0 4px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }
        .hero-banner-overlay h2::after { display: none; }
        .hero-banner-overlay p {
            color: rgba(255,255,255,0.85);
            font-size: 13px;
            margin: 0;
        }
        @media (max-width: 480px) {
            .hero-banner { height: 150px; }
            .hero-banner-overlay h2 { font-size: 18px; }
        }

        @media (max-width: 768px) {
            .contact-info {
                margin: 12px 0;
            }

            .info-card {
                padding: 14px 16px;
                margin-bottom: 8px;
            }

            .info-icon {
                font-size: 20px;
                margin-right: 12px;
                min-width: 32px;
            }

            .info-text h3 {
                font-size: 15px;
                margin-bottom: 4px;
            }

            .info-chip {
                font-size: 12px;
                padding: 7px 13px;
            }
        }
    