/* 
VARIABLES DE COLOR - PERSONALIZABLES
===============================================================
🎨 Solo edita los colores entre estas líneas para personalizar tu sitio
🚫 No modifiques nada fuera de esta sección para evitar problemas
*/

:root {
    /* Color café principal - para botones y títulos */
    --primary: #8B5A2B;
    
    /* Color café claro - para detalles y efectos */
    --secondary: #D4A76A;
    
    /* Color fondo claro - para secciones claras */
    --light: #F5E8D0;
    
    /* Color café oscuro - para textos y fondos oscuros */
    --dark: #3A2C1A;
    
    /* Color blanco - para textos sobre fondos oscuros */
    --white: #FFFFFF;
}

/* 
🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫
NO MODIFICAR NADA DEBAJO DE ESTA LÍNEA
Todas las modificaciones deben hacerse SOLO en las variables de arriba
Cualquier cambio abajo puede afectar el diseño y funcionalidad del sitio
🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫
*/

        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 50px;
            font-weight: 300;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 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;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .navbar {
            display: flex;
            gap: 30px;
        }
        
        .navbar a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar a:hover {
            color: var(--primary);
        }
        
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }
        
        /* Hero Section */
       .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.5); /* Reemplaza el gradiente para oscurecer */
}

.hero-content {
    position: relative;
    z-index: 1;
}
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* About Section */
        .about {
            background-color: var(--white);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Menu Section */
        .menu {
            background-color: var(--light);
        }
        
        .menu-categories {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .category-btn {
            padding: 10px 25px;
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .category-btn.active, .category-btn:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .menu-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .menu-item {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .menu-item:hover {
            transform: translateY(-10px);
        }
        
        .menu-item-image {
            height: 200px;
            overflow: hidden;
        }
        
        .menu-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .menu-item:hover .menu-item-image img {
            transform: scale(1.1);
        }
        
        .menu-item-content {
            padding: 20px;
        }
        
        .menu-item-title {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .menu-item-title h3 {
            font-size: 1.3rem;
            color: var(--primary);
        }
        
        .menu-item-price {
            color: var(--secondary);
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .menu-item-description {
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: var(--white);
        }
        
        .testimonials-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial {
            text-align: center;
            padding: 30px;
            background-color: var(--light);
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 3px solid var(--secondary);
        }
        
        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--primary);
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--light);
        }
        
        .contact-container {
            display: flex;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .contact-info-icon {
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        .contact-info-text h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .contact-form {
            flex: 1;
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-logo span {
            color: var(--secondary);
        }
        
        .footer-about p {
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .footer-links h3, .footer-newsletter h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            padding: 0 20px;
            background-color: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: var(--primary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .navbar {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 40px 0;
                transition: left 0.3s ease;
            }
            
            .navbar.active {
                left: 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .menu-items {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
        }
/* Map styles */
.map-container {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Estilos para métodos de pago */
.footer-payment-methods {
    width: 100%;
    padding: 15px;
    text-align: center;
}

.footer-payment-methods h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-payment-methods p {
    color: #aaa;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 0.8rem;
    min-width: 60px;
}

.payment-icon i {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #f8f8f8;
    transition: all 0.3s ease;
}

.payment-icon:hover i {
    transform: translateY(-3px);
    color: #fff;
}

/* Colores específicos para cada método */
.payment-icon:nth-child(1) i { color: #1a1f71; } /* Visa */
.payment-icon:nth-child(2) i { color: #eb001b; } /* Mastercard */
.payment-icon:nth-child(3) i { color: #016fd0; } /* Amex */
.payment-icon:nth-child(4) i { color: #003087; } /* PayPal */
.payment-icon:nth-child(5) i { color: #28a745; } /* Efectivo */
.payment-icon:nth-child(6) i { color: #6f42c1; } /* Transferencia */

@media (max-width: 768px) {
    .payment-icons {
        gap: 10px;
    }
    
    .payment-icon {
        min-width: 50px;
        font-size: 0.7rem;
    }
    
    .payment-icon i {
        font-size: 1.5rem;
    }
}

/* Estilos para el carrusel de testimonios */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.carousel-indicators span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators span.active {
    background: #333;
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .testimonial {
        min-width: 50%;
        padding: 20px 40px;
    }
}

@media (min-width: 992px) {
    .testimonial {
        min-width: 33.333%;
    }
}
/* Estilos para el menú de categorías */
.menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 30px;
    padding: 0 10px;
}

.category-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 30px;
    background-color: #f0f0f0;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}

.category-btn:hover {
    background-color: #e0e0e0;
}

.category-btn.active {
    background-color: #333;
    color: white;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .menu-categories {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 5px;
    }
    
    .category-btn {
        padding: 8px 10px;
        font-size: 13px;
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .menu-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-btn {
        padding: 6px 8px;
        font-size: 12px;
    }
}

  #activador-licencia {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            font-family: Arial, sans-serif;
        }

        .activador-contenido {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            max-width: 350px;
            width: 90%;
        }

        #input-licencia {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 15px;
            text-align: center;
        }

        .btn-activar {
            background: #007cba;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
        }

        #mensaje-activacion {
            margin-top: 15px;
            padding: 10px;
            border-radius: 5px;
            display: none;
        }

        .mensaje-exito { background: #e8f5e8; color: #2e7d32; }
        .mensaje-error { background: #ffebee; color: #c62828; }

        #contenido-principal {
            display: none;
        }