 /* Variables CSS optimizadas */
        :root {
            --gold: #c8a97e;
            --gold-dark: #b08d5e;
            --gold-light: #e6d5b8;
            --text-dark: #333333;
            --text-medium: #555555;
            --text-light: #777777;
            --bg-light: #ffffff;
            --bg-light-accent: #f9f9f9;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --uruguay-blue: #0038A8;
            --uruguay-white: #FFFFFF;
            --uruguay-gold: #FFD700;
            --uruguay-sun: #F9A602;
            --shadow-dark: rgba(0, 20, 80, 0.3);
            --max-width: 1400px;
        }

        /* Reset moderno con mejor rendimiento */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 100%;
            height: 100%;
        }

        body {
            font-family: 'Playfair Display', serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
        }

        /* Tipografía responsiva con unidades fluidas */
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 0.5em;
        }

        h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
        h2 { font-size: clamp(1.75rem, 4vw, 2.8rem); }
        h3 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
        h4 { font-size: clamp(1.25rem, 3vw, 1.8rem); }

        p {
            font-family: 'Handlee', cursive;
            color: var(--text-medium);
            font-size: clamp(1rem, 2vw, 1.1rem);
            margin-bottom: 1em;
        }

        .text-gold { color: var(--gold); }

        /* Estructura principal optimizada */
        .page-wrapper {
            flex: 1 0 auto;
            width: 100%;
            padding-top: 80px;
        }

        main {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 2rem 5%;
        }

        /* Barra de navegación ultra responsiva */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 0;
            background-color: var(--bg-light);
            box-shadow: var(--shadow);
            z-index: 1000;
            transition: var(--transition);
            will-change: transform, background-color;
        }

        .navbar.scrolled {
            padding: 0.75rem 0;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(10px);
        }

        .nav-container {
            width: 90%;
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Logo adaptable */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            background-color: rgba(0, 0, 0, 0.9);
            transition: var(--transition);
        }

        .logo-img {
            width: clamp(40px, 8vw, 50px);
            height: auto;
            transition: var(--transition);
        }

        .logo-text {
            font-family: 'Berkshire Swash', cursive;
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            font-weight: bold;
            margin-left: 0.75rem;
            color: white;
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-subtext {
            display: block;
            font-family: 'Handlee', cursive;
            font-size: clamp(0.7rem, 2vw, 0.85rem);
            color: var(--gold);
        }

        /* Efectos hover optimizados */
        @media (hover: hover) {
            .logo:hover {
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }
            
            .logo:hover .logo-img {
                transform: scale(1.05);
            }
            
            .logo:hover .logo-text {
                color: #1a5a8a;
            }
            
            .logo:hover .logo-subtext {
                color: #e69500;
            }
        }

        /* Menú de navegación adaptable */
        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: clamp(1rem, 3vw, 2rem);
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: clamp(1rem, 2vw, 1.1rem);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--gold);
            transition: var(--transition);
        }

        @media (hover: hover) {
            .nav-links a:hover {
                color: var(--gold);
            }
            
            .nav-links a:hover::after {
                width: 100%;
            }
        }

        .nav-btn {
            background-color: var(--gold);
            color: var(--text-dark) !important;
            padding: 0.6rem clamp(1rem, 3vw, 1.5rem);
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 3px 10px rgba(200, 169, 126, 0.3);
        }

        @media (hover: hover) {
            .nav-btn:hover {
                background-color: var(--gold-dark);
                transform: translateY(-3px);
                box-shadow: 0 5px 20px rgba(200, 169, 126, 0.4);
            }
        }

        /* Menú hamburguesa para móviles */
        .hamburger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            flex-direction: column;
            justify-content: space-between;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--text-dark);
            transition: var(--transition);
            transform-origin: center;
        }

        /* Secciones de contenido fluidas */
        .content-section {
            margin-bottom: clamp(3rem, 8vw, 5rem);
        }

        .section-header {
            text-align: center;
            margin-bottom: clamp(2rem, 6vw, 3rem);
        }

        .section-header h2 {
            font-size: clamp(1.75rem, 5vw, 2.5rem);
            margin-bottom: 1rem;
            color: var(--gold);
            position: relative;
            display: inline-block;
            font-family: 'Berkshire Swash', cursive;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -0.75rem;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--gold-dark);
        }

        /* Footer ultra responsivo */
        .footer {
            background-color: var(--bg-light);
            padding: clamp(3rem, 8vw, 5rem) 0 2rem;
            position: relative;
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.05);
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--gold), transparent);
        }

        .footer-container {
            width: 90%;
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: clamp(1.5rem, 4vw, 3rem);
        }

        .footer-col h3 {
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text-medium);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        @media (hover: hover) {
            .footer-links a:hover {
                color: var(--gold);
                transform: translateX(5px);
            }
        }

        .schedule-item, .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .contact-item a {
            color: var(--text-medium);
            text-decoration: none;
            transition: var(--transition);
        }

        @media (hover: hover) {
            .contact-item a:hover {
                color: var(--gold);
            }
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: clamp(35px, 8vw, 45px);
            height: clamp(35px, 8vw, 45px);
            border-radius: 50%;
            background-color: rgba(200, 169, 126, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: clamp(0.9rem, 3vw, 1.1rem);
            transition: var(--transition);
        }

        @media (hover: hover) {
            .social-link:hover {
                background-color: var(--gold);
                color: white;
                transform: translateY(-5px);
            }
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(200, 169, 126, 0.1);
            color: var(--text-light);
            font-size: clamp(0.8rem, 2vw, 0.9rem);
        }

        /* Carrusel circular responsivo */
        .circular-carousel-container {
            position: relative;
            width: 100%;
            height: clamp(300px, 70vw, 500px);
            overflow: hidden;
            margin: 0 auto;
            perspective: 1000px;
        }

        .circular-carousel {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .product-card {
            position: absolute;
            width: clamp(180px, 40vw, 250px);
            height: clamp(250px, 60vw, 350px);
            left: 50%;
            top: 50%;
            transform-origin: center;
            transform-style: preserve-3d;
            transition: all 0.8s ease;
            cursor: pointer;
        }

        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 1s;
            border-radius: 20px;
        }

        @media (hover: hover) {
            .product-card:hover .card-inner {
                transform: rotateY(180deg);
            }
        }

        .card-front, .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px var(--shadow-dark);
        }

        .card-front {
            background: linear-gradient(135deg, var(--uruguay-blue) 0%, #00267A 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: clamp(4px, 1vw, 8px) solid var(--uruguay-white);
        }

        .card-front::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: clamp(8px, 2vw, 12px);
            background: var(--uruguay-white);
            transform: translateY(-50%);
            box-shadow: 0 18px 0 var(--uruguay-white),
                        0 -18px 0 var(--uruguay-white);
        }

        .card-back {
            background: linear-gradient(to bottom right, var(--uruguay-white), #F5F5F5);
            transform: rotateY(180deg);
            padding: clamp(0.8rem, 2vw, 1.2rem);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s;
            position: relative;
            z-index: 1;
        }

        @media (hover: hover) {
            .product-card:hover .product-image {
                transform: scale(1.05);
            }
        }

        .product-info {
            color: #333;
            text-align: center;
        }

        .product-name {
            font-size: clamp(1.1rem, 3vw, 1.4rem);
            margin-bottom: 0.5rem;
            font-weight: 700;
            color: var(--uruguay-blue);
        }

        .product-desc {
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            margin-bottom: 0.8rem;
            color: #555;
        }

        .product-price {
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            font-weight: bold;
            color: var(--uruguay-blue);
            margin-bottom: 0.8rem;
            position: relative;
        }

        .product-price::after {
            content: "";
            position: absolute;
            bottom: -0.4rem;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: var(--uruguay-gold);
        }

        .carousel-controls {
            position: absolute;
            bottom: 1rem;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 1rem;
            z-index: 10;
        }

        .carousel-prev, .carousel-next {
            background: var(--uruguay-blue);
            color: white;
            border: none;
            width: clamp(35px, 8vw, 40px);
            height: clamp(35px, 8vw, 40px);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 56, 168, 0.3);
        }

        @media (hover: hover) {
            .carousel-prev:hover, .carousel-next:hover {
                background: #0044CC;
                transform: scale(1.1);
            }
        }

        /* Modal responsivo */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-container {
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            transition: transform 0.3s ease;
            position: relative;
        }

        .modal-overlay.active .modal-container {
            transform: translateY(0);
        }

        .modal-header {
            padding: 1.2rem;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #0038A8 0%, #00267A 100%);
            color: white;
            border-radius: 12px 12px 0 0;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .modal-title {
            margin: 0;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            color: white;
            cursor: pointer;
            transition: transform 0.2s;
            padding: 0.5rem;
        }

        @media (hover: hover) {
            .modal-close:hover {
                transform: rotate(90deg);
            }
        }

        .modal-body {
            display: flex;
            padding: 0;
            flex-direction: column;
        }

        .modal-image-container {
            flex: 1;
            padding: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #f9f9f9;
        }

        .modal-image {
            max-width: 100%;
            max-height: 300px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            object-fit: contain;
        }

        .modal-content {
            flex: 1;
            padding: 1rem;
        }

        .modal-section {
            margin-bottom: 1rem;
        }

        .modal-section-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #0038A8;
            margin-bottom: 0.5rem;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
        }

        .modal-price {
            font-size: clamp(1.4rem, 4vw, 1.8rem);
            color: #0038A8;
            font-weight: bold;
            margin: 1rem 0;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .modal-description {
            line-height: 1.6;
            color: #555;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .modal-footer {
            display: flex;
            justify-content: space-between;
            padding: 1rem;
            border-top: 1px solid #eee;
            background: #f9f9f9;
            border-radius: 0 0 12px 12px;
            position: sticky;
            bottom: 0;
        }

        .btn-back, .btn-action {
            border: none;
            border-radius: 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            font-weight: 500;
            padding: 0.7rem 1.2rem;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .btn-back {
            background: #0038A8;
            color: white;
        }

        .btn-action {
            background: #FFD700;
            color: #0038A8;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(0, 56, 168, 0.2);
            padding: 0.8rem 1.5rem;
        }

        @media (hover: hover) {
            .btn-back:hover {
                background: #00267A;
                transform: translateX(-5px);
            }
            
            .btn-action:hover {
                background: #F9A602;
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(0, 56, 168, 0.3);
            }
        }

        .ingredients-list {
            list-style-type: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .ingredient-item {
            background: #f0f4ff;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            color: #0038A8;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        /* Animaciones optimizadas */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        /* Media Queries optimizadas */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 300px;
                height: calc(100vh - 80px);
                background-color: var(--bg-light);
                flex-direction: column;
                align-items: center;
                padding: 2rem;
                transition: var(--transition);
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 1rem 0;
            }
            
            .hamburger {
                display: flex;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .modal-body {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-col {
                margin-bottom: 2rem;
            }

            .modal-container {
                width: 95%;
                max-height: 85vh;
            }

            .modal-image-container {
                padding: 0.8rem;
            }
        }

        @media (max-width: 576px) {
            .logo {
                padding: 0.4rem 0.8rem;
            }
            
            .logo-text {
                margin-left: 0.5rem;
            }

            .modal-footer {
                flex-direction: column;
                gap: 0.8rem;
            }

            .btn-back, .btn-action {
                justify-content: center;
                width: 100%;
            }
        }

        /* Mejoras de rendimiento */
        .will-change {
            will-change: transform, opacity;
        }

        /* Contenedor para evitar saltos de layout */
        .aspect-ratio-container {
            position: relative;
            width: 100%;
            padding-top: 100%; /* 1:1 Aspect Ratio */
            overflow: hidden;
        }

        .aspect-ratio-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Imágenes responsivas */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Mejoras de accesibilidad */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* Mejoras para modo oscuro */
        @media (prefers-color-scheme: dark) {
            body {
                background-color: #121212;
                color: #f0f0f0;
            }
            
            .navbar, .footer {
                background-color: #1e1e1e;
            }
            
            .text-gold, .nav-links a, .footer-links a {
                color: var(--gold-light);
            }
            
            .card-back {
                background: #2d2d2d;
                color: #f0f0f0;
            }
            
            .product-info, .product-name, .product-price {
                color: #f0f0f0;
            }
        }