
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Mejoras para touch devices */
        * {
            -webkit-tap-highlight-color: rgba(0,0,0,0);
        }

        button, a {
            touch-action: manipulation;
        }

           .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 1000;
            background: #25d366;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: box-shadow 0.2s;
        }
        .whatsapp-float:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.3);
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .header {
            position: relative;
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('../../public/Yuca mixto.avif');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            z-index: 1;
        }

        .header-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            color: #d4af37;
        }

        .subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-style: italic;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        }

        .nav-container {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            padding: 60px 20px;
            margin: 0 auto;
            max-width: 1200px;
            margin-top: -100px;
            position: relative;
            z-index: 3;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .menu-title {
            text-align: center;
            color: #333;
            font-size: 2.5rem;
            margin-bottom: 50px;
            font-weight: bold;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .menu-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .menu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            border-color: #d4af37;
        }

        .card-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(212,175,55,0.8), rgba(139,69,19,0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .menu-card:hover .card-image::before {
            opacity: 1;
        }

        .comida {
            background-image: url('../../public/Logo de pastel.jpeg');
        }

        .bebidas {
            background-image: url('../../public/Jugo portada.jpeg');
        }

        .postres {
            background-image: url('../../public/sandwich1.jpg');
        }

        .card-content {
            padding: 30px;
            text-align: center;
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .card-description {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .card-button {
            background: linear-gradient(45deg, #d4af37, #b8941f);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
        }

        .card-button:hover {
            background: linear-gradient(45deg, #b8941f, #d4af37);
            transform: scale(1.05);
        }

        .footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 40px 20px;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer h3 {
            color: #d4af37;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .footer p {
            margin-bottom: 10px;
            color: #ccc;
        }

        .footer img {
            vertical-align: middle;
            margin-right: 8px;
            width: 22px;
            height: 22px;
        }

        .footer a {
            color: #d4af37;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 8px;
           
        }
        .footer a:hover {
            color: #b8941f;
            text-decoration: underline;
        }
            
        /* Responsive Design */
        @media (max-width: 1200px) {
            .nav-container {
                max-width: 95%;
                margin-left: auto;
                margin-right: auto;
            }
            
            .menu-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .menu-title {
                font-size: 2rem;
            }
            
            .nav-container {
                margin-top: -50px;
                padding: 30px 15px;
                border-radius: 15px;
            }
            
            .menu-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .card-content {
                padding: 20px;
            }
            
            .card-title {
                font-size: 1.6rem;
            }
            
            .card-description {
                font-size: 0.9rem;
                line-height: 1.6;
            }
            
            .card-button {
                padding: 10px 25px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .header {
                height: 80vh;
            }
            
            .logo {
                font-size: 2rem;
                margin-bottom: 15px;
            }
            
            .subtitle {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .header-content {
                padding: 0 15px;
            }
            
            .nav-container {
                margin-top: -30px;
                padding: 20px 10px;
                border-radius: 10px;
            }
            
            .menu-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .menu-grid {
                gap: 15px;
            }
            
            .card-content {
                padding: 15px;
            }
            
            .card-title {
                font-size: 1.4rem;
                margin-bottom: 10px;
            }
            
            .card-description {
                font-size: 0.85rem;
                margin-bottom: 15px;
            }
            
            .card-button {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
            
            .footer {
                padding: 30px 15px;
            }
            
            .footer h3 {
                font-size: 1.3rem;
            }
            
            .footer p {
                font-size: 0.9rem;
            }
            
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                padding: 6px;
            }
            
            .whatsapp-float img {
                width: 40px !important;
                height: 40px !important;
            }
        }

        @media (max-width: 360px) {
            .logo {
                font-size: 1.8rem;
            }
            
            .menu-title {
                font-size: 1.6rem;
            }
            
            .card-title {
                font-size: 1.3rem;
            }
            
            .nav-container {
                padding: 15px 8px;
            }
        }

        .icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #d4af37;
        }

        .card-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .menu-card:hover .card-icon {
            opacity: 1;
        }
    