    /* Estilos generales */
    :root {
        --primary-orange: #FF8C00;
        --primary-yellow: #FFD700;
        --primary-black: #1A1A1A;
        --secondary-orange: #FFA500;
        --light-gray: #F5F5F5;
        --white: #FFFFFF;
        --text-color: #333333;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--text-color);
        line-height: 1.6;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    h1, h2, h3, h4 {
        font-weight: 700;
        margin-bottom: 20px;
    }

    p {
        margin-bottom: 15px;
    }

    a {
        text-decoration: none;
        color: var(--primary-black);
        transition: all 0.3s ease;
    }

    a:hover {
        color: var(--primary-orange);
    }

    .btn {
        display: inline-block;
        padding: 12px 30px;
        background-color: var(--primary-orange);
        color: var(--white);
        border-radius: 30px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .btn:hover {
        background-color: var(--primary-black);
        color: var(--primary-yellow);
        transform: translateY(-3px);
    }

    section {
        padding: 80px 0;
    }

    /* Header */
    header {
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }

    .logo-container {
        display: flex;
        align-items: center;
    }

    .logo {
        height: 80px;
        margin-right: 15px;
    }

    nav ul {
        display: flex;
        list-style: none;
    }

    nav ul li {
        margin-left: 30px;
    }

    nav ul li a {
        font-weight: 600;
        position: relative;
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background-color: var(--primary-orange);
        bottom: -5px;
        left: 0;
        transition: width 0.3s ease;
    }

    nav ul li a:hover::after {
        width: 100%;
    }

    .hamburger {
        display: none;
        font-size: 24px;
        cursor: pointer;
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/combo_fiesta.jpeg') no-repeat center center/cover;
        height: 60vh;
        display: flex;
        align-items: center;
        text-align: center;
        color: var(--white);
        margin-top: 80px;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .hero h2 {
        font-size: 3rem;
        margin-bottom: 20px;
        color: var(--primary-yellow);
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    /* About Section */
    .about {
        background-color: var(--light-gray);
    }

    .about-content {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .about-text {
        flex: 1;
    }

    .about-image {
        flex: 1;
    }

    .about-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Menu Section */
    .menu h2 {
        text-align: center;
    }

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

    .menu-item {
        background-color: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .menu-item:hover {
        transform: translateY(-10px);
    }

    .menu-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .menu-item h3 {
        padding: 0 15px;
        color: var(--primary-orange);
    }

    .menu-item p {
        padding: 0 15px;
        font-size: 0.9rem;
        color: var(--text-color);
    }

    .price {
        display: block;
        padding: 15px;
        font-weight: 700;
        color: var(--primary-black);
        font-size: 1.2rem;
    }

    /* Banquets Section */
    .banquets {
        background-color: var(--light-gray);
    }

    .banquets-content {
    /*  display: flex;  */
        gap: 40px;
    }

    .banquets-text {
        flex: 1;
    }

    .events-list {
        list-style: none;
        margin: 20px 0;
    }

    .events-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        font-size: 1.1rem;
    }

    .events-list i {
        margin-right: 10px;
        color: var(--primary-orange);
        width: 25px;
        text-align: center;
    }

    .banquets-gallery {
        flex: 1;
    }

    .events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .event-item {
        background-color: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .event-item:hover {
        transform: translateY(-5px);
    }

    .event-item img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .event-item p {
        padding: 10px;
        text-align: center;
        font-weight: 600;
    }

    /* Gallery Section */
    .gallery {
        background-color: var(--light-gray);
    }

    .gallery h2 {
        text-align: center;
    }

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

    .gallery-item {
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .gallery-item:hover {
        transform: scale(1.05);
    }

    .gallery-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    /* Location Section */
    .location h2 {
        text-align: center;
    }

    .location-content {
        display: flex;
        gap: 40px;
        align-items: center;
        background-color: var(--white);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .location-text {
        flex: 1;
    }

    .location-text p {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .location-text i {
        margin-right: 10px;
        color: var(--primary-orange);
    }

    .location-map {
        flex: 1;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Contact Section */
    .contact-content {
        display: flex;
        gap: 40px;
    }

    .contact-form {
        flex: 1;
        background-color: var(--white);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: inherit;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-orange);
        box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
    }

    .form-group textarea {
        min-height: 150px;
        resize: vertical;
    }

    .contact-info {
        flex: 1;
        padding: 30px;
        background-color: var(--primary-black);
        color: var(--white);
        border-radius: 10px;
    }

    .contact-info h3 {
        color: var(--primary-yellow);
    }

    .contact-info p {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .contact-info i {
        margin-right: 10px;
        color: var(--light-gray);
    }

    .social-media {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }

    .social-media a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--primary-orange);
        color: var(--white);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .social-media a:hover {
        background-color: var(--primary-yellow);
        color: var(--primary-black);
        transform: translateY(-3px);
    }

    /* Footer */
    footer {
        background-color: var(--primary-black);
        color: var(--white);
        padding: 60px 0 0;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-logo img {
        height: 80px;
        margin-bottom: 15px;
    }

    .footer-logo p {
        color: var(--primary-yellow);
    }

    .footer-links h3 {
        color: var(--primary-yellow);
    }

    .footer-links ul {
        list-style: none;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-links ul li a {
        color: var(--white);
    }

    .footer-links ul li a:hover {
        color: var(--primary-orange);
    }

    .footer-contact h3 {
        color: var(--primary-yellow);
    }

    .footer-bottom {
        text-align: center;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* BotÃ³n flotante de WhatsApp */
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
        animation: pulse 2s infinite;
    }

    .whatsapp-float:hover {
        background-color: #128C7E;
        transform: scale(1.1) translateY(-5px);
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
            box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    /* Modal de selecciÃ³n de sucursal para WhatsApp */
    .whatsapp-modal {
        z-index: 2001;
    }

    .whatsapp-container {
        max-width: 600px;
        padding: 30px;
        animation: modalFadeIn 0.3s ease;
    }

    .whatsapp-container h3 {
        text-align: center;
        color: var(--primary-orange);
        margin-bottom: 30px;
    }

    .whatsapp-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .whatsapp-option {
        background: white;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .whatsapp-option:hover {
        transform: translateY(-5px);
    }

    .whatsapp-option img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
        border: 3px solid var(--primary-yellow);
    }

    .whatsapp-option h4 {
        color: var(--primary-black);
        margin-bottom: 5px;
    }

    .whatsapp-option p {
        color: var(--text-color);
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .whatsapp-option .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .whatsapp-close {
        position: absolute;
        top: -15px;
        right: -15px;
        background-color: var(--primary-orange);
        color: white;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .about-content,
        .location-content,
        .contact-content {
            flex-direction: column;
        }
        
        .about-image,
        .location-map {
            margin-top: 30px;
        }
    }

    @media (max-width: 768px) {
        nav ul {
            display: none;
            position: absolute;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: var(--white);
            flex-direction: column;
            padding: 20px 0;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }
        
        nav ul.show {
            display: flex;
        }
        
        nav ul li {
            margin: 0;
            text-align: center;
            padding: 10px 0;
        }
        
        .hamburger {
            display: block;
        }
        
        .hero h2 {
            font-size: 2.5rem;
        }
        
        section {
            padding: 60px 0;
        }
        
        .whatsapp-options {
            grid-template-columns: 1fr;
        }
        
        .whatsapp-container {
            width: 90%;
            padding: 20px;
        }
        
        .whatsapp-float {
            width: 50px;
            height: 50px;
            bottom: 20px;
            right: 20px;
            font-size: 25px;
        }
    }

    @media (max-width: 576px) {
        .hero h2 {
            font-size: 2rem;
        }
        
        .hero p {
            font-size: 1rem;
        }
        
        .btn {
            padding: 10px 20px;
        }
    }
    /* Modal Styles */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 2000;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .modal-container {
        width: 80%;
        max-width: 300px; /* TamaÃ±o mÃ¡s moderado */
        background-color: var(--white);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        position: relative;
        padding: 20px;
        animation: modalFadeIn 0.5s ease;
    }

    .modal-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .modal-image {
        width: 100%;
        max-width: 30vh; /* Controla el tamaÃ±o mÃ¡ximo de la imagen */
        height: auto;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .modal-close {
        position: absolute;
        top: -15px;
        right: -15px;
        font-size: 26px;
        font-weight: bold;
        background-color: var(--primary-orange);
        border: 2px solid var(--white);
        color: var(--white);
        cursor: pointer;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
        transition: all 0.3s ease;
        z-index: 10;
    }

    .modal-close:hover {
        background-color: var(--primary-black);
        color: var(--primary-yellow);
        transform: rotate(90deg);
    }

    @keyframes modalFadeIn {
        from {
            opacity: 0;
            transform: translateY(-50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive adjustments for the modal */
    @media (max-width: 1600px) {
        .modal-container {
            width: 80%;
            padding: 15px;
        }
        /* .modal-image {
            max-width: 220px;
        } */
    }
    @media (max-width: 768px) {
        .modal-container {
            width: 85%;
            max-width: 220px;
            padding: 15px;
        }
        
        .modal-close {
            width: 30px;
            height: 30px;
            font-size: 22px;
            top: -10px;
            right: -10px;
        }
        
        /* .modal-image {
            max-width: 300px;
        } */
    }

    /* Delivery Section */
    .delivery {
        background-color: var(--primary-orange);
        color: var(--white);
        text-align: center;
        padding: 60px 0;
    }

    .delivery h2 {
        color: var(--primary-black);
        margin-bottom: 10px;
    }

    .delivery-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .delivery-platforms {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 40px;
    }

    .platform {
        background-color: var(--white);
        border-radius: 10px;
        padding: 20px;
        transition: all 0.3s ease;
        width: 200px;
    }

    .platform:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .platform a {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--primary-black);
    }

    .platform img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .platform span {
        font-weight: 600;
    }

    .delivery-info {
        background-color: rgba(0, 0, 0, 0.2);
        padding: 20px;
        border-radius: 10px;
        max-width: 600px;
        margin: 0 auto;
    }

    .delivery-info p {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }

    .delivery-info i {
        margin-right: 10px;
        font-size: 1.2rem;
    }

    /* Estilos para el menÃº nocturno */
    .night-menu {
        background-color: #f9f5f0;
        padding: 80px 0;
    }

    .night-menu h2 {
        text-align: center;
        color: #d35400;
        margin-bottom: 10px;
    }

    .night-menu h2 span {
        color: #e67e22;
    }

    .section-subtitle {
        text-align: center;
        color: #7f8c8d;
        margin-bottom: 30px;
    }

    .schedule-notice {
        background-color: #f39c12;
        color: white;
        padding: 15px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .schedule-notice i {
        font-size: 1.2rem;
    }

    .menu-category-title {
        color: #d35400;
        border-bottom: 2px solid #f39c12;
        padding-bottom: 10px;
        margin: 40px 0 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

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

    .menu-item {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .menu-item:hover {
        transform: translateY(-10px);
    }

    .menu-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .menu-item h4 {
        padding: 15px 15px 5px;
        color: #d35400;
        font-size: 1.3rem;
    }

    .menu-item p {
        padding: 0 15px;
        color: #7f8c8d;
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .menu-item .price {
        display: block;
        padding: 15px;
        font-weight: bold;
        color: #2c3e50;
        font-size: 1.2rem;
    }

    /* Estilos para promociones */
    .promo-items {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .promo-item {
        background-color: #fef9e7;
        text-align: center;
    }

    .delivery-notice {
        text-align: center;
        margin-top: 50px;
        padding: 20px;
        background-color: rgba(243, 156, 18, 0.1);
        border-radius: 10px;
    }

    .delivery-notice p {
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

    /* Estilos para el modal de Didi */
    .didi-modal .modal-container {
        max-width: 600px;
        padding: 30px;
        animation: modalFadeIn 0.3s ease;
    }

    .didi-modal h3 {
        text-align: center;
        color: #FF6B35; /* Naranja de Didi */
        margin-bottom: 30px;
    }

    .didi-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .didi-option {
        background: white;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .didi-option:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .didi-option img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
        border: 3px solid #FF6B35; /* Borde naranja de Didi */
    }

    .didi-option h4 {
        color: var(--primary-black);
        margin-bottom: 5px;
    }

    .didi-option p {
        color: var(--text-color);
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .didi-option .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
        background: #FF6B35; /* Naranja de Didi */
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .didi-option .btn:hover {
        background: #e05a2b; /* Naranja mÃ¡s oscuro para hover */
    }

    .didi-close {
        position: absolute;
        top: -15px;
        right: -15px;
        background-color: #FF6B35; /* Naranja de Didi */
        color: white;
        border: 2px solid white;
    }

    .didi-close:hover {
        background-color: #e05a2b; /* Naranja mÃ¡s oscuro para hover */
    }

    }