        /* Estilos épicos inspirados en Sabores Peruanos - Fondo Transparente */
        body {
            font-family: 'Montserrat', sans-serif;
            /* Fondo con la imagen proporcionada  */
            background-image: url('${pageContext.request.contextPath}/cliente/vista/img/fondo_restaurante.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            margin: 0;
            padding: 0;
            line-height: 1.7;
            color: #4a4a4a;
            display: flex;
            justify-content: center; /* Centra el contenido horizontalmente */
            align-items: flex-start; /* Alinea los elementos al inicio verticalmente */
            min-height: 100vh; /* Asegura que el body ocupe al menos la altura del viewport */
        }
            #background-video {
            position: fixed;
            right: 0;
            bottom: 0;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -100;
            background-size: cover;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 40px;
            /* Fondo transparente para el contenedor  */
            background-color: transparent;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            animation: fadeIn 1s ease-out;
        }

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

        header {
            text-align: center;
            padding: 30px 0;
            /* Fondo sutilmente degradado, pero puede ser transparente si lo prefieres  */
            background: linear-gradient(to bottom, rgba(248, 248, 248, 0.8), rgba(234, 234, 234, 0.8));
            border-bottom: 3px solid #d32f2f;
            position: relative;
        }

        header h1 {
            color: #d32f2f;
            margin-bottom: 15px;
            font-size: 3.2em;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            font-family: 'Playfair Display', serif;
        }

        nav ul {
            list-style: none;
            padding: 0;
            margin: 20px 0 0;
            display: flex;
            justify-content: center;
        }

        nav ul li {
            margin: 0 25px;
            position: relative;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 1.1em;
            padding: 10px 15px;
            transition: all 0.3s ease-in-out;
            border-radius: 5px;
        }

        nav a:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #d32f2f;
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.3s ease-in-out;
        }

        nav a:hover,
        nav a:focus {
            color: #fff;
            background-color: #d32f2f;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        nav a:hover:before,
        nav a:focus:before {
            transform: scaleX(1);
        }

        .hero {
            /* Manteniendo la imagen de fondo  */
            background-image: url('${pageContext.request.contextPath}/cliente/vista/img/fondo.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 30px;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Ajusta la transparencia del overlay según sea necesario  */
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h2 {
            font-size: 3.8em;
            margin-bottom: 30px;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            letter-spacing: 1.5px;
        }

        .hero p {
            font-size: 1.4em;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            line-height: 1.8;
        }

        .about-us,
        .featured-dishes {
            padding: 40px;
            margin-bottom: 40px;
            border-bottom: 3px double #d32f2f;
            position: relative;
            /* Fondo casi transparente para mayor contraste con el texto  */
            background-color: rgba(255, 255, 255, 0.7);
        }

        .about-us h3,
        .featured-dishes h3 {
            color: #d32f2f;
            font-size: 2.8em;
            margin-bottom: 25px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            letter-spacing: 1.1px;
            text-align: center;
        }
        

        .about-us p {
            font-size: 1.2em;
            color: #5a5a5a;
            line-height: 1.9;
        }

        .dish-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .dish-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease-in-out;
            /* Fondo ligeramente transparente para que se vea el fondo  */
            background-color: rgba(255, 255, 255, 0.7);
        }

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

        .dish-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .dish-card img:hover {
            transform: scale(1.05);
        }

        .dish-card-content {
            padding: 25px;
        }

        .dish-card h4 {
            margin-top: 0;
            color: #333;
            font-size: 1.6em;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .dish-card p {
            color: #666;
            font-size: 1.1em;
            line-height: 1.6;
        }

        footer {
            text-align: center;
            padding: 30px 0;
            /* Fondo sutilmente degradado, pero puede ser transparente  */
            background: linear-gradient(to top, rgba(248, 248, 248, 0.8), rgba(234, 234, 234, 0.8));
            border-top: 3px solid #d32f2f;
            color: #777;
            font-size: 0.9em;
        }

        .mapa {
            width: 100%; /* El contenedor del mapa ocupa todo el ancho del .container */
            text-align: center; /* Centra el contenido dentro del mapa */
            margin-top: 20px;
            margin-bottom: 40px;
        }

        .mapa iframe {
            width: 100%; /* El iframe ocupa el 100% del ancho de su contenedor .mapa */
            height: 450px; /* Ajusta la altura según necesites */
            border: 0;
            border-radius: 8px;
            display: block; /* Evita espacios extra debajo del iframe */
        }

        /* Media query para pantallas más pequeñas */
        @media (max-width: 768px) {
            .container {
                margin: 20px auto;
                padding: 20px;
            }

            header h1 {
                font-size: 2.8em;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
            }

            nav ul li {
                margin: 10px 0;
            }

            .hero {
                padding: 80px 20px;
            }

            .hero h2 {
                font-size: 2.8em;
            }

            .about-us h3,
            .featured-dishes h3 {
                font-size: 2.4em;
            }

            .dish-grid {
                grid-template-columns: 1fr;
            }
            .mapa {
                margin-top: 15px;
                margin-bottom: 30px;
            }
            .mapa iframe {
                height: 300px; /* Reduce la altura en pantallas más pequeñas */
            }
        }