
        :root {
          --primary-color: #1e2d2f;     
          --text-color: #4f4f4f;          
          --white: #fef9f4;             
          --accent-yellow: #ffc107; 
          --accent-red: #d32f2f;    
          --accent-green: #388e3c;          
          --accent-blue: #1976d2;          
          --accent-orange: #ff5722;
          --dark-bg: #1a1a1a;
          --light-bg: #f8f9fa;
          --gold: #ffd700;     
          --silver: #c0c0c0;          
          --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }

        html {
          scroll-behavior: smooth;
        }

        body {
          font-family: "Montserrat", sans-serif;
          color: var(--text-color);
          background-color: var(--white);
          overflow-x: hidden;
          line-height: 1.6;
        }

        .container {
          width: 90%;
          max-width: 1200px;
          margin: 0 auto;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
          font-weight: 700;
          line-height: 1.2;
        }

        .section-title {
          font-size: 2.8rem;
          margin-bottom: 3rem;
          text-align: center;
          position: relative;
          font-family: "Rye", cursive;
          color: var(--accent-red);
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .section-title::after {
          content: "";
          display: block;
          width: 100px;
          height: 4px;
          background: linear-gradient(to right, var(--accent-yellow), var(--accent-red));
          margin: 1.5rem auto;
          border-radius: 2px;
        }

        .btn {
          display: inline-block;
          padding: 1.2rem 2.5rem;
          border-radius: 50px;
          text-decoration: none;
          font-weight: 600;
          transition: var(--transition);
          text-align: center;
          cursor: pointer;
          border: none;
          font-size: 1rem;
          position: relative;
          overflow: hidden;
          z-index: 1;
        }

        .btn::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 0%;
          height: 100%;
          background: rgba(255, 255, 255, 0.2);
          transition: var(--transition);
          z-index: -1;
        }

        .btn:hover::before {
          width: 100%;
        }

        .btn-outline {
          background-color: transparent;
          color: var(--black);
          border: 2px solid var(--accent-orange);
          position: relative;
          z-index: 1;
        }

        .btn-outline::after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 0%;
          height: 100%;
          background: var(--accent-orange);
          transition: var(--transition);
          z-index: -1;
        }

        .btn-outline:hover {
          color: var(--text-color);
          transform: translateY(-5px);
          box-shadow: var(--box-shadow-hover);
        }

        .btn-outline:hover::after {
          width: 100%;
        }

        .glf-button {
          display: inline-block;
          padding: 1.2rem 2.5rem;
          border-radius: 50px;
          text-decoration: none;
          font-weight: 700;
          transition: var(--transition);
          background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
          color: var(--white);
          border: none;
          cursor: pointer;
          font-family: "Montserrat", sans-serif;
          font-size: 1rem;
          position: relative;
          overflow: hidden;
          z-index: 1;
          text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: var(--box-shadow);
        }

        .glf-button::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 0%;
          height: 100%;
          background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
          transition: var(--transition);
          z-index: -1;
        }

        .glf-button:hover {
          color: var(--white);
          transform: translateY(-5px);
          box-shadow: var(--box-shadow-hover);
        }

        .glf-button:hover::before {
          width: 100%;
        }

        #header {
          background-color: rgba(254, 249, 244, 0.95);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
          position: fixed;
          width: 100%;
          top: 0;
          z-index: 1000;
          transition: var(--transition);
          backdrop-filter: blur(10px);
        }

        #header.scrolled {
          background-color: rgba(254, 249, 244, 0.98);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
          padding: 0.5rem 0;
        }

        .header-content {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 1rem 0;
          position: relative;
        }

        .desktop-nav ul {
          display: flex;
          list-style: none;
          gap: 2.5rem;
        }

        .nav-link {
          text-decoration: none;
          color: var(--text-color);
          font-weight: 600;
          transition: var(--transition);
          position: relative;
          padding: 0.5rem 0;
          font-size: 1.1rem;
        }

        .nav-link:hover,
        .nav-link.active {
          color: var(--accent-red);
        }

        .nav-link::after {
          content: "";
          position: absolute;
          width: 0;
          height: 3px;
          background: linear-gradient(to right, var(--accent-yellow), var(--accent-red));
          bottom: 0;
          left: 0;
          transition: var(--transition);
          border-radius: 2px;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
          width: 100%;
        }

        .header-logo {
          height: 70px;
          width: auto;
          transition: var(--transition);
          filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
        }

        #header.scrolled .header-logo {
          height: 90px;
        }

        .mobile-menu-btn {
          display: none;
          font-size: 1.5rem;
          cursor: pointer;
          color: var(--text-color);
          background: none;
          border: none;
          padding: 0.3rem;
          transition: var(--transition);
        }

        .mobile-menu-btn:hover {
          color: var(--accent-red);
          transform: scale(1.1);
        }

        .mobile-menu {
          position: fixed;
          top: 0;
          right: -100%;
          width: 300px;
          height: 100vh;
          background-color: var(--white);
          box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
          z-index: 1001;
          transition: right 0.4s ease;
        }

        .mobile-menu.active {
          right: 0;
        }

        .mobile-menu-content {
          padding: 2rem;
          height: 100%;
        }

        .mobile-menu-header {
          display: flex;
          justify-content: flex-end;
          margin-bottom: 2rem;
        }

        .mobile-menu-close {
          font-size: 1.5rem;
          cursor: pointer;
          color: var(--text-color);
          background: none;
          border: none;
          padding: 0.5rem;
          transition: var(--transition);
        }

        .mobile-menu-close:hover {
          color: var(--accent-red);
          transform: rotate(90deg);
        }

        .mobile-nav ul {
          list-style: none;
        }

        .mobile-nav li {
          margin-bottom: 1.5rem;
        }

        .mobile-nav-link {
          text-decoration: none;
          color: var(--text-color);
          font-weight: 600;
          font-size: 1.2rem;
          transition: var(--transition);
          display: block;
          padding: 0.5rem 0;
          position: relative;
        }

        .mobile-nav-link::after {
          content: "";
          position: absolute;
          width: 0;
          height: 2px;
          background: linear-gradient(to right, var(--accent-yellow), var(--accent-red));
          bottom: 0;
          left: 0;
          transition: var(--transition);
        }

        .mobile-nav-link:hover {
          color: var(--accent-red);
          transform: translateX(10px);
        }

        .mobile-nav-link:hover::after {
          width: 30px;
        }

        /* Hero section */
        .hero {
          height: 100vh;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          color: var(--white);
          position: relative;
          margin-top: 80px;
          overflow: hidden;
        }

        .hero video {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover; 
          z-index: 0;
        }

        .hero-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
          z-index: 1;
        }

        .hero-content {
          position: relative;
          z-index: 2;
          max-width: 900px;
          padding: 0 1.5rem;
        }

        .hero-logo-img {
          height: 400px;
          width: auto;
          margin-bottom: 2rem;
          filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
          transition: var(--transition);
        }

        .hero-logo-img:hover {
          transform: scale(1.05) rotate(2deg);
        }

        .hero-title {
          font-size: 2.5rem;
          margin-bottom: 1.5rem;
          font-family: "Rye", cursive;
          color: var(--accent-yellow);
          text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
          letter-spacing: 1px;
          text-align: center;
        }

        .hero-subtitle {
          font-size: 1.6rem;
          margin-bottom: 2.5rem;
          font-weight: 400;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
        }

        .hero-buttons {
          display: flex;
          justify-content: center;
          gap: 1.5rem;
          flex-wrap: wrap;
        }

/* Featured Card Wrapper */
.featured-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 3rem;
    background: var(--white);
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-card-wrapper::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-yellow), var(--accent-red), var(--accent-orange), var(--accent-yellow));
    z-index: -1;
    border-radius: 5px;
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.featured-card-wrapper .content {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.featured-card-wrapper .featured-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-yellow);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.featured-card-wrapper .featured-logo:hover {
    transform: scale(1.05) rotate(5deg);
    border-color: var(--accent-red);
}

.featured-card-wrapper h3 {
    font-family: 'Rye', cursive;
    font-weight: 400;
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.featured-card-wrapper h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-yellow), var(--accent-red));
    border-radius: 2px;
}

.featured-card-wrapper p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.featured-card-wrapper .glf-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(193, 33, 33, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-card-wrapper .glf-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(193, 33, 33, 0.5);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
}

.featured-image-wrapper {
    flex: 1;
    min-width: 300px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.featured-image-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.featured-image-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

@media (max-width: 900px) {
    .featured-card-wrapper {
        flex-direction: column;
        text-align: center;
        margin: 4rem auto;
        padding: 2.5rem;
    }
    
    .featured-card-wrapper .content {
        padding: 1.5rem;
    }
    
    .featured-card-wrapper h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .featured-image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .featured-card-wrapper {
        padding: 2rem;
    }
    
    .featured-card-wrapper .content {
        padding: 1rem;
    }
    
    .featured-card-wrapper h3 {
        font-size: 2rem;
    }
    
    .featured-card-wrapper .featured-logo {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .featured-card-wrapper {
        padding: 1.5rem;
        margin: 3rem auto;
    }
    
    .featured-card-wrapper h3 {
        font-size: 1.8rem;
    }
    
    .featured-card-wrapper p {
        font-size: 1rem;
    }
    
    .featured-card-wrapper .glf-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .featured-card-wrapper .featured-logo {
        width: 120px;
        height: 120px;
    }
}

        .featured-image-wrapper video {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
          border-radius: 5px;
        }

        .bottom-features {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 2.5rem;
          max-width: 1200px;
          margin: 4rem auto;
          padding: 2rem;
        }

        .bottom-features .feature {
          text-align: center;
          padding: 2rem 1.5rem;
          background: var(--white);
          border-radius: 4px;
          box-shadow: var(--box-shadow);
          flex: 1;
          min-width: 220px;
          transition: var(--transition);
          border-top: 5px solid var(--accent-red);
          position: relative;
          overflow: hidden;
        }

        .bottom-features .feature::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 5px;
          background: linear-gradient(to right, var(--accent-yellow), var(--accent-red));
          transform: scaleX(0);
          transform-origin: left;
          transition: var(--transition);
        }

        .bottom-features .feature:hover {
          transform: translateY(-10px);
          box-shadow: var(--box-shadow-hover);
        }

        .bottom-features .feature:hover::before {
          transform: scaleX(1);
        }

        .bottom-features .feature h4 {
          font-family: 'Rye', cursive;
          font-weight: 400;
          font-size: 1.8rem;
          color: var(--accent-red);
          margin-bottom: 0.8rem;
        }

        .bottom-features .feature small {
          font-family: 'Montserrat', sans-serif;
          font-weight: 500;
          color: var(--text-color);
          text-transform: uppercase;
          letter-spacing: 1.5px;
          font-size: 0.85rem;
        }

        /* Sección parallax mejorada */
        .parallax-hero {
          position: relative;
          height: 80vh;
          overflow: hidden;
          background-attachment: fixed;
          background-position: center;
          background-repeat: no-repeat;
          background-size: cover;
        }

        .parallax-content {
          position: relative;
          padding: 6rem 2rem;
          background: white;
          color: rgb(0, 0, 0);
          z-index: 2;
        }

        .parallax-container {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
        }

        .parallax-title {
          font-size: 3rem;
          font-weight: 700;
          margin-bottom: 2rem;
          color: var(--accent-yellow);
          position: relative;
          padding-bottom: 20px;
          font-family: 'Rye', cursive;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .parallax-title::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 120px;
          height: 4px;
          background: linear-gradient(to right, var(--accent-yellow), var(--accent-red));
          border-radius: 2px;
        }

        .parallax-text {
          font-size: 1.2rem;
          max-width: 800px;
          margin-bottom: 3rem;
          line-height: 1.8;
        }

        .parallax-text strong {
          color: var(--accent-yellow);
          font-weight: 600;
        }

        .parallax-btn {
          display: inline-block;
          background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
          color: white;
          padding: 18px 40px;
          border-radius: 25px;
          font-weight: 700;
          text-decoration: none;
          text-transform: uppercase;
          letter-spacing: 1.5px;
          transition: var(--transition);
          box-shadow: 0 8px 25px rgba(193, 33, 33, 0.4);
          border: none;
          cursor: pointer;
          font-size: 1.1rem;
          position: relative;
          overflow: hidden;
          z-index: 1;
        }

        .parallax-btn::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 0%;
          height: 100%;
          background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
          transition: var(--transition);
          z-index: -1;
        }

        .parallax-btn:hover {
          transform: translateY(-5px);
          box-shadow: 0 12px 30px rgba(193, 33, 33, 0.6);
        }

        .parallax-btn:hover::before {
          width: 100%;
        }

        .menu-preview {
          padding: 6rem 0;
          background-color: var(--primary-color);
          position: relative;
          overflow: hidden;
        }

        .menu-preview::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><text x="50%" y="50%" font-size="20" text-anchor="middle" dominant-baseline="middle" fill="white">🌮</text></svg>');
          z-index: 0;
        }

        .menu-categories {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
          gap: 2.5rem;
          margin-bottom: 4rem;
          position: relative;
          z-index: 1;
        }

        .menu-category {
          background-color: var(--white);
          padding: 2.5rem;
          border-radius: 10px;
          box-shadow: var(--box-shadow);
          transition: var(--transition);
          position: relative;
          overflow: hidden;
          border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .menu-category::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 5px;
          height: 100%;
          background: linear-gradient(to bottom, var(--accent-yellow), var(--accent-red));
          transition: var(--transition);
        }

        .menu-category:hover {
          transform: translateY(-10px);
          box-shadow: var(--box-shadow-hover);
        }

        .menu-category:hover::before {
          width: 8px;
        }

        .menu-category h3 {
          font-size: 2rem;
          margin-bottom: 2rem;
          color: var(--accent-red);
          text-align: center;
          font-family: "Rye", cursive;
          position: relative;
          padding-bottom: 15px;
        }

        .menu-category h3::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 60px;
          height: 3px;
          background: linear-gradient(to right, var(--accent-yellow), var(--accent-red));
          border-radius: 2px;
        }

        .menu-category ul {
          list-style: none;
        }

        .menu-category ul li {
          padding: 1.2rem 0;
          border-bottom: 1px dashed #e0e0e0;
          display: flex;
          justify-content: space-between;
          align-items: center;
          transition: var(--transition);
        }

        .menu-category ul li:hover {
          background-color: rgba(0, 0, 0, 0.02);
          padding-left: 10px;
          padding-right: 10px;
          margin-left: -10px;
          margin-right: -10px;
          border-radius: 8px;
        }

        .menu-category ul li:last-child {
          border-bottom: none;
        }

        .menu-category ul li span {
          font-weight: 700;
          color: var(--accent-red);
          font-size: 1.1rem;
        }

        .text-center {
          text-align: center;
          position: relative;
          z-index: 1;
        }

        /* About Summary mejorado */
        .about-summary {
          padding: 6rem 0;
          background: white;
          color: var(--black);
          text-align: center;
          position: relative;
          overflow: hidden;
        }

        .about-summary::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><text x="50%" y="50%" font-size="20" text-anchor="middle" dominant-baseline="middle" fill="white">🇲🇽</text></svg>');
          z-index: 0;
        }

        .summary-content {
          max-width: 800px;
          margin: 0 auto;
          position: relative;
          z-index: 1;
        }

        .summary-content p {
          font-size: 1.3rem;
          margin-bottom: 2.5rem;
          line-height: 1.8;
          text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        #more-about {
          display: none;
          animation: fadeIn 1s ease forwards;
        }

        @keyframes fadeIn {
          from { opacity: 0; }
          to { opacity: 1; }
        }

        /* Gallery Preview mejorado */
        .gallery-preview {
          padding: 6rem 0;
          background-color: var(--white);
          position: relative;
        }

        .gallery-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 2rem;
        }

        .gallery-item {
          position: relative;
          border-radius: 15px;
          overflow: hidden;
          height: 280px;
          box-shadow: var(--box-shadow);
          transition: var(--transition);
          cursor: pointer;
        }

        .gallery-item::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
          opacity: 0;
          transition: var(--transition);
          z-index: 1;
        }

        .gallery-item:hover {
          transform: translateY(-10px) scale(1.02);
          box-shadow: var(--box-shadow-hover);
        }

        .gallery-item:hover::before {
          opacity: 1;
        }

        .gallery-item img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
          transform: scale(1.1);
        }

        .gallery-overlay {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          padding: 2rem;
          color: var(--white);
          transform: translateY(100%);
          transition: var(--transition);
          z-index: 2;
        }

        .gallery-item:hover .gallery-overlay {
          transform: translateY(0);
        }

        .gallery-overlay h3 {
          font-size: 1.5rem;
          margin-bottom: 0.5rem;
          text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }

        /* Contact Section mejorada */
        .contact {
          padding: 6rem 0;
          background-color: var(--light-bg);
          position: relative;
        }

        .contact::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.02"><text x="50%" y="50%" font-size="20" text-anchor="middle" dominant-baseline="middle" fill="black">📞</text></svg>');
          z-index: 0;
        }

        .contact-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
          gap: 4rem;
          align-items: start;
          position: relative;
          z-index: 1;
        }

        .contact-info {
          background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
          padding: 3rem;
          border-radius: 20px;
          color: var(--white);
          box-shadow: var(--box-shadow);
          position: relative;
          overflow: hidden;
        }

        .contact-info::before {
          content: "";
          position: absolute;
          top: -50%;
          left: -50%;
          width: 200%;
          height: 200%;
          background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
          transform: rotate(30deg);
        }

        .contact-info h3 {
          font-size: 2.2rem;
          margin-bottom: 2.5rem;
          color: var(--white);
          text-align: center;
          font-family: "Rye", cursive;
          position: relative;
          z-index: 1;
        }

        .contact-item {
          display: flex;
          align-items: center;
          gap: 20px;
          margin-bottom: 2rem;
          font-size: 1.2rem;
          position: relative;
          z-index: 1;
        }

        .contact-item i {
          color: var(--accent-yellow);
          width: 24px;
          flex-shrink: 0;
          font-size: 1.3rem;
        }

        .social-links {
          display: flex;
          justify-content: center;
          gap: 1.5rem;
          margin-top: 3rem;
          position: relative;
          z-index: 1;
        }

        .social-links a {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 60px;
          height: 60px;
          background-color: var(--white);
          border-radius: 50%;
          color: var(--accent-red);
          transition: var(--transition);
          text-decoration: none;
          font-size: 1.5rem;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .social-links a:hover {
          background-color: var(--accent-yellow);
          transform: translateY(-5px) scale(1.1);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
          color: var(--white);
        }

        .map-container {
          border-radius: 2px;
          overflow: hidden;
          box-shadow: var(--box-shadow);
          height: 555px;
          transition: var(--transition);
        }

        .map-container:hover {
          transform: translateY(-5px);
          box-shadow: var(--box-shadow-hover);
        }

        .map-container iframe {
          width: 100%;
          height: 100%;
          border: none;
        }

        .hours {
          list-style: none;
          margin-top: 1.5rem;
        }

        .hours li {
          margin-bottom: 0.8rem;
          display: flex;
          justify-content: space-between;
          max-width: 300px;
          margin-left: auto;
          margin-right: auto;
        }

        .hours li strong {
          color: var(--accent-yellow);
        }

        @keyframes fadeInUp {
          from {
            opacity: 0;
            transform: translateY(50px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        .animate-fade-up {
          animation: fadeInUp 1s ease forwards;
        }

        .animate-fade-up:nth-child(1) {
          animation-delay: 0.2s;
        }
        .animate-fade-up:nth-child(2) {
          animation-delay: 0.4s;
        }
        .animate-fade-up:nth-child(3) {
          animation-delay: 0.6s;
        }
        .animate-fade-up:nth-child(4) {
          animation-delay: 0.8s;
        }

        .animate-on-scroll {
          opacity: 0;
          transform: translateY(50px);
          transition: all 0.8s ease;
        }

        .animate-on-scroll.visible {
          opacity: 1;
          transform: translateY(0);
        }

        /* Efectos de carga para imágenes */
        img {
          transition: opacity 0.5s ease;
        }

        img[data-src] {
          opacity: 0;
        }

        img.loaded {
          opacity: 1;
        }

        /* Responsive mejorado */
        @media (max-width: 1200px) {
          .section-title {
            font-size: 2.5rem;
          }
          
          .hero-title {
            font-size: 3.5rem;
          }
        }

        @media (max-width: 1024px) {
          .hero-title {
            font-size: 3rem;
          }

          .hero-subtitle {
            font-size: 1.4rem;
          }

          .contact-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
          }
          
          .map-container {
            height: 400px;
          }
        }

        @media (max-width: 900px) {
          .featured-card-wrapper {
            flex-direction: column;
            text-align: center;
            margin: 4rem auto;
            padding: 2.5rem;
          }
          
          .featured-card-wrapper .content {
            padding: 1.5rem;
          }
          
          .featured-card-wrapper h3::after {
            left: 50%;
            transform: translateX(-50%);
          }
          
          .featured-image-wrapper {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
          }

          .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 2.5rem;
          }
        }

        @media (max-width: 768px) {
          .desktop-nav {
            display: none;
          }

          .mobile-menu-btn {
            display: block;
          }

          .header-content {
            justify-content: center;
            position: relative;
          }

          .mobile-menu-btn {
            position: absolute;
            right: 0;
          }

          .hero-title {
            font-size: 2.5rem;
          }
          
          .hero-logo-img {
            height: 250px;
          }

          .section-title {
            font-size: 2.2rem;
          }

          .menu-categories {
            grid-template-columns: 1fr;
          }

          .gallery-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          }

          .contact-grid {
            grid-template-columns: 1fr;
          }

          .footer-links ul {
            flex-direction: column;
            gap: 1rem;
          }

          .parallax-title {
            font-size: 2.2rem;
          }
          
          .parallax-text {
            font-size: 1.1rem;
          }
          
          .parallax-btn {
            padding: 15px 30px;
            font-size: 1rem;
          }
          
          .featured-card-wrapper {
            padding: 2rem;
          }
          
          .featured-card-wrapper .content {
            padding: 1rem;
          }
          
          .featured-card-wrapper h3 {
            font-size: 2rem;
          }
          
          .bottom-features {
            flex-direction: column;
            gap: 2rem;
          }
          
          .bottom-features .feature {
            min-width: 100%;
          }
          
          .hero-buttons {
            flex-direction: column;
            align-items: center;
          }
          
          .btn, .glf-button {
            width: 100%;
            max-width: 300px;
            margin-bottom: 1rem;
          }
        }

        @media (max-width: 576px) {
          .hero-title {
            font-size: 2rem;
          }
          
          .hero-subtitle {
            font-size: 1.2rem;
          }

          .section-title {
            font-size: 2rem;
          }

          .contact-item {
            font-size: 1rem;
            flex-direction: column;
            text-align: center;
            gap: 10px;
          }
          
          .contact-item i {
            margin-bottom: 5px;
          }

          .gallery-grid {
            grid-template-columns: 1fr;
          }
          
          .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 2rem;
          }
          
          .footer-links ul {
            flex-direction: column;
          }
          
          .hours li {
            flex-direction: column;
            gap: 5px;
          }
          
          .parallax-hero {
            height: 60vh;
          }
          
          .parallax-content {
            padding: 4rem 1.5rem;
          }

          .footer-contact {
            padding: 2rem 1.5rem;
          }
          
          .footer-contact-item {
            flex-direction: column;
            text-align: center;
            gap: 8px;
          }
        }

        @media (prefers-contrast: high) {
          :root {
            --text-color: #000000;
            --accent-red: #b22222;
            --accent-yellow: #ff8c00;
          }
          
          .nav-link, .mobile-nav-link, .footer-links ul li a {
            font-weight: 700;
          }
        }

        @media (prefers-reduced-motion: reduce) {
          * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
          }
        }

        
.footer {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 2rem 0 1rem;
    position: relative;
}

.footer .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-quick-links {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.3rem 0;
    margin-bottom: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.quick-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Montserrat', sans-serif;
}

.quick-nav a:hover {
    color: var(--accent-yellow);
    transform: translateY(-2px);
}

.quick-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: var(--transition);
}

.quick-nav a:hover::after {
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr 1.1fr;
    gap: 2.8rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.footer-section {
    padding: 0.5rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-yellow);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.6rem;
    font-family: 'Rye', cursive;
    letter-spacing: 0.5px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-yellow), var(--accent-red));
    border-radius: 2px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.4));
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    max-width: 250px;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--accent-yellow), #ffb300);
    transform: translateY(-4px) scale(1.1);
    color: var(--dark-bg);
    border-color: var(--accent-yellow);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px; 
    transition: var(--transition);
}

.hour-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row .day {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.92rem;
    font-weight: 500;
    min-width: 75px;
}

.hour-row .hours {
    color: var(--accent-yellow);
    font-size: 0.92rem;
    font-weight: 600;
    text-align: right;
}

.hour-row.closed .hours {
    color: var(--accent-red);
    font-weight: 700;
}

.footer-section:nth-child(3) {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-section:nth-child(3) .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.footer-section:nth-child(3) .contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.8rem;
    transform: translateX(5px);
}

.footer-section:nth-child(3) .contact-item:last-child {
    border-bottom: none;
}

.footer-section:nth-child(3) .contact-item i {
    color: var(--accent-yellow);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    min-width: 20px;
    text-align: center;
}

.footer-section:nth-child(3) .contact-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.93rem;
    line-height: 1.5;
    font-weight: 500;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-yellow);
}

.footer-order-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(193, 33, 33, 0.4);
    cursor: pointer;
    text-align: center;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-order-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(193, 33, 33, 0.6);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-cta {
        grid-column: span 2;
        text-align: center;
        align-items: center;
    }
    
    .quick-nav {
        gap: 2rem;
    }
}

@media (max-width: 880px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
        align-items: center;
    }
    
    .footer-cta {
        grid-column: span 2;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .quick-nav {
        gap: 1.5rem;
    }
    
    .quick-nav a {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
    
    .footer-brand,
    .footer-cta {
        grid-column: span 1;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section:nth-child(3) .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .hour-row {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-order-btn {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }
    
    .quick-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .quick-nav a {
        padding: 0.6rem 0;
        font-size: 1rem;
    }
    
    .footer-quick-links {
        padding: 1.2rem 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .footer .container {
        padding: 0 1.2rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo {
        width: 140px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-order-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .quick-nav a {
        font-size: 0.95rem;
    }
    
    .footer-quick-links {
        margin-bottom: 1.8rem;
    }
}