/* Reset y configuración base optimizada */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* CSS Custom Properties para mejor mantenimiento */
    --primary-color: #e74c3c;
    --primary-dark: #c0392b;
    --text-color: #333;
    --text-light: #666;
    --white: #fff;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 25px 50px rgba(0, 0, 0, 0.2);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Improve font loading */
@font-face {
    font-family: 'Poppins';
    font-display: swap;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 1.8rem;
    color: #e74c3c;
}

.logo h2 {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #e74c3c;
}

.btn-pedido {
    background: #e74c3c;
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-pedido:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: transparent;
    border: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(231, 76, 60, 0.1);
    transform: scale(1.05);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.hamburger span:nth-child(1) {
    margin-bottom: 4px;
}

.hamburger span:nth-child(2) {
    margin-bottom: 4px;
}

.hamburger span:nth-child(3) {
    margin-bottom: 0;
}

/* Animación del hamburger a X simple */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #e74c3c;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #e74c3c;
}

.hamburger.active {
    background: rgba(231, 76, 60, 0.15);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: #333;
}

.hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) contrast(1.2) saturate(1.1);
    display: none;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    filter: brightness(0.8) contrast(1.2) saturate(1.1);
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(231, 76, 60, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 4px 4px 12px rgba(0,0,0,0.9), 2px 2px 6px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.5);
    letter-spacing: -2px;
}

.hero .highlight {
    color: #e74c3c;
    text-shadow: 4px 4px 12px rgba(0,0,0,0.9), 2px 2px 6px rgba(0,0,0,0.8), 0 0 40px rgba(231,76,60,0.4);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8), 1px 1px 4px rgba(0,0,0,0.9);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8), 1px 1px 3px rgba(0,0,0,0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e74c3c;
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.6);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Sobre Nosotros */
.about {
    padding: 60px 0;
    background: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}



.about-image {
    flex: 1;
}

.about-image {
    position: relative;
}

.about-image img,
.about-image video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .about-image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(231, 76, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #e74c3c;
    transform: scale(1.1);
}

.play-button i {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}
/* Menú Rediseñado */
.menu {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(231, 76, 60, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header del menú */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(231, 76, 60, 0.3);
}

.menu-title {
    text-align: left;
}

.menu-subtitle {
    font-size: 1.2rem;
    color: #e74c3c;
    font-weight: 400;
    font-style: italic;
    display: block;
    margin-bottom: 0.5rem;
}

.menu-main-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    margin: 0;
    position: relative;
    display: inline-block;
}

.menu-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 8px;
    background: #e74c3c;
    border-radius: 4px;
}

.menu-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e74c3c;
    font-size: 1.2rem;
    font-weight: 600;
}

.menu-logo i {
    font-size: 2rem;
    color: #e74c3c;
}

/* Grid del menú */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.menu-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.menu-section:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.menu-section-full {
    grid-column: 1 / -1;
    justify-content: center;
}

.section-content {
    flex: 1;
}

.section-title {
    font-size: 1.8rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

.menu-row:last-child {
    border-bottom: none;
}

.item-details {
    flex: 1;
}

.item-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.item-description {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-left: 1rem;
    flex-shrink: 0;
}

.section-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
    border: 3px solid #e74c3c;
    transition: transform 0.3s ease;
}

.menu-section:hover .section-image img {
    transform: scale(1.1);
}

/* Footer del menú */
.menu-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(231, 76, 60, 0.3);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: rgba(231, 76, 60, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #e74c3c;
}



/* Destacados */
.featured {
    padding: 80px 0;
    background: white;
}

.featured h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 600;
}

.featured-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.featured-item {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.featured-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.featured-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-item:hover img {
    transform: scale(1.05);
}

.featured-info {
    padding: 2rem;
    text-align: center;
}

.featured-info h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.featured-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.featured-details {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #888;
}

.featured-price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

/* Ubicación */
.location {
    padding: 80px 0;
    background: #f8f9fa;
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 600;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-top: 0.2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
    margin: 0;
}

.map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map iframe {
    flex: 1;
    min-height: 100%;
}

.map iframe {
    border-radius: 15px;
}

/* Contacto */
.contact {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    background: white;
    border: 2px solid #e74c3c;
    border-radius: 20px;
    text-decoration: none;
    color: #e74c3c;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.contact-btn i {
    font-size: 2rem;
}

.whatsapp:hover {
    background: #e74c3c;
    border-color: #e74c3c;
}

.phone:hover {
    background: #e74c3c;
    border-color: #e74c3c;
}

.email:hover {
    background: #e74c3c;
    border-color: #e74c3c;
}

.contact-btn.location:hover {
    background: #e74c3c;
    border-color: #e74c3c;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-detail {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-detail h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-detail p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

.developer-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.developer-credit a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Botón flotante */
.floating-order {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #e74c3c;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    }
    50% {
        box-shadow: 0 5px 20px rgba(231, 76, 60, 0.6);
    }
    100% {
        box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        text-align: left;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        padding: 80px 0 2rem 0;
        z-index: 1000;
        border-left: 1px solid rgba(231, 76, 60, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu li:last-child {
        margin-top: 1rem;
    }
    
    .nav-menu a {
        display: block;
        padding: 1.2rem 2rem;
        color: #333;
        font-weight: 500;
        font-size: 1rem;
        text-decoration: none;
        transition: color 0.3s ease;
        border-radius: 0;
    }
    
    .nav-menu a:hover {
        color: #e74c3c;
    }
    
    .btn-pedido {
        background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
        color: white !important;
        margin: 1rem 2rem 0 2rem !important;
        padding: 1rem 1.5rem !important;
        border-radius: 25px !important;
        text-align: center !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3) !important;
    }
    
    .btn-pedido:hover {
        background: linear-gradient(135deg, #c0392b, #a93226) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4) !important;
        padding-left: 1.5rem !important;
    }
    
    .btn-pedido::before {
        display: none !important;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .location-content {
        grid-template-columns: 1fr;
    }



    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .menu-main-title {
        font-size: 2.5rem;
    }
    
    .menu-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .section-image {
        align-self: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .featured-items {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .floating-order {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .menu-main-title {
        font-size: 2rem;
    }
    
    .about h2,
    .featured h2,
    .location h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .menu-section {
        min-width: auto;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Animaciones suaves */
.menu-item,
.featured-item,
.info-item,
.contact-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Efectos hover adicionales */
.menu-item:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.featured-item:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
/* Estilos adicionales para funcionalidades profesionales */





/* Animaciones mejoradas */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.preloader::after {
    content: '';
    width: 60px;
    height: 60px;
    border: 6px solid rgba(231, 76, 60, 0.2);
    border-top: 6px solid #e74c3c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Efectos de carga del video */
.hero-video video {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video video.loaded {
    opacity: 1;
}

/* Mejoras en imágenes */
img {
    transition: opacity 0.3s ease;
}

img:not(.loaded) {
    opacity: 0.5;
}

img.loaded {
    opacity: 1;
}

/* Efectos hover mejorados */
.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.menu-item:hover::before {
    opacity: 1;
}

/* Responsive mejorado para hero */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-video video {
        object-position: center center;
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 0;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-detail {
        padding: 1.5rem;
    }
    
    .hero-video video {
        transform: scale(1.1);
        filter: brightness(0.7) contrast(1.2) saturate(1.1);
    }
}

/* Mejoras en accesibilidad */
.btn-primary:focus,
.btn-secondary:focus {
    outline: 3px solid rgba(231, 76, 60, 0.5);
    outline-offset: 2px;
}

/* Efectos de carga suave */
.menu-item,
.featured-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.menu-item.animate-in,
.featured-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Indicador de scroll */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(231, 76, 60, 0.2);
    z-index: 1001;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #e74c3c;
    transition: width 0.1s ease;
}

/* Mejoras en el botón flotante */
.floating-btn {
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.floating-btn:hover::before {
    width: 100px;
    height: 100px;
}
/* ===== NUEVAS FUNCIONALIDADES PROFESIONALES ===== */

/* 1. INDICADOR DE PROGRESO DE SCROLL */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 10000;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

/* 3. ANIMACIONES AL HACER SCROLL */
.menu-section,
.featured-item,
.info-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Delays escalonados para animaciones */
.menu-section:nth-child(1) { transition-delay: 0.1s; }
.menu-section:nth-child(2) { transition-delay: 0.2s; }
.menu-section:nth-child(3) { transition-delay: 0.3s; }
.menu-section:nth-child(4) { transition-delay: 0.4s; }
.menu-section:nth-child(5) { transition-delay: 0.5s; }
.menu-section:nth-child(6) { transition-delay: 0.6s; }

.featured-item:nth-child(1) { transition-delay: 0.1s; }
.featured-item:nth-child(2) { transition-delay: 0.3s; }
.featured-item:nth-child(3) { transition-delay: 0.5s; }

/* 4. EFECTOS HOVER MEJORADOS */
.menu-section {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.contact-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}





/* RESPONSIVE PARA NUEVAS FUNCIONALIDADES */
@media (max-width: 480px) {
    .scroll-progress {
        height: 3px;
    }
}

/* MEJORAS EN ANIMACIONES EXISTENTES */
.btn-primary,
.btn-secondary,
.floating-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
}

/* Efecto de pulso mejorado para el botón flotante */
@keyframes pulse-enhanced {
    0% {
        box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(231, 76, 60, 0.6);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
        transform: scale(1);
    }
}

.floating-btn {
    animation: pulse-enhanced 3s infinite;
}

/* Mejoras en el menú circular */
.section-image img {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-section:hover .section-image img {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.3);
}
/* ===== RESPONSIVE MEJORADO PARA MÓVILES ===== */

/* Tablets grandes y laptops pequeñas */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        gap: 2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Header mejorado */
    .nav-container {
        padding: 0 15px;
    }
    
    .logo h2 {
        font-size: 1.6rem;
    }
    
    .logo i {
        font-size: 1.6rem;
    }
    
    /* Hero optimizado */
    .hero {
        min-height: 80vh;
        padding: 100px 20px 40px;
    }
    
    .hero h1 {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Menú responsive */
    .menu-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .menu-main-title {
        font-size: 2.8rem;
    }
    
    .menu-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .section-image {
        align-self: center;
        width: 100px;
        height: 100px;
    }
    
    /* About section */
    .about {
        padding: 50px 0;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .about h2 {
        font-size: 2.2rem;
    }
    
    .about-image video {
        height: 300px;
    }
    
    /* Featured items */
    .featured {
        padding: 50px 0;
    }
    
    .featured h2 {
        font-size: 2.2rem;
    }
    
    .featured-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Location section */
    .location {
        padding: 50px 0;
    }
    
    .location h2 {
        font-size: 2.2rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info {
        gap: 1.5rem;
    }
    
    /* Contact section */
    .contact {
        padding: 50px 0;
    }
    
    .contact h2 {
        font-size: 2.2rem;
    }
    
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-btn {
        padding: 1.5rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .contact-btn i {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Redes sociales centradas en tablets */
    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Móviles grandes */
@media (max-width: 480px) {
    /* Container más pequeño */
    .container {
        padding: 0 15px;
    }
    
    /* Header ultra compacto */
    .nav-container {
        padding: 0 10px;
    }
    
    .logo h2 {
        font-size: 1.4rem;
    }
    
    .logo i {
        font-size: 1.4rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    /* Hero ultra optimizado */
    .hero {
        min-height: 70vh;
        padding: 80px 15px 30px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .btn-primary,
    .btn-secondary-hero {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Menú ultra compacto */
    .menu {
        padding: 50px 0;
    }
    
    .menu-container {
        padding: 0 15px;
    }
    
    .menu-header {
        margin-bottom: 2rem;
    }
    
    .menu-main-title {
        font-size: 2rem;
    }
    
    .menu-grid {
        gap: 1.5rem;
    }
    
    .menu-section {
        padding: 1rem;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .section-image {
        width: 80px;
        height: 80px;
    }
    
    .item-name {
        font-size: 1rem;
    }
    
    .item-description {
        font-size: 0.8rem;
    }
    
    .item-price {
        font-size: 1.1rem;
    }
    
    /* About ultra compacto */
    .about {
        padding: 40px 0;
    }
    
    .about h2 {
        font-size: 1.8rem;
    }
    
    .about p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-image video {
        height: 250px;
    }
    
    /* Featured ultra compacto */
    .featured {
        padding: 40px 0;
    }
    
    .featured h2 {
        font-size: 1.8rem;
    }
    
    .featured-item {
        margin: 0 10px;
    }
    
    .featured-info {
        padding: 1.5rem;
    }
    
    .featured-info h3 {
        font-size: 1.3rem;
    }
    
    .featured-info p {
        font-size: 0.9rem;
    }
    
    .featured-price {
        font-size: 1.6rem;
    }
    
    /* Location ultra compacto */
    .location {
        padding: 40px 0;
    }
    
    .location h2 {
        font-size: 1.8rem;
    }
    
    .info-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .info-item i {
        font-size: 1.2rem;
    }
    
    .info-item h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
    
    /* Contact ultra compacto */
    .contact {
        padding: 40px 0;
    }
    
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .contact p {
        font-size: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }
    
    .contact-btn {
        padding: 1.2rem 1rem;
        font-size: 0.85rem;
    }
    
    .contact-btn i {
        font-size: 1.3rem;
    }
    
    /* Footer ultra compacto */
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    .footer-section:last-child {
        margin-bottom: 0;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 0.9rem;
        min-height: 44px; /* Touch target mínimo */
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .developer-credit {
        font-size: 0.8rem;
    }
    
    /* Botón flotante optimizado */
    .floating-order {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
        border-radius: 25px;
    }
    
    .floating-btn i {
        font-size: 0.9rem;
    }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .menu-main-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .about h2,
    .featured h2,
    .location h2,
    .contact h2 {
        font-size: 1.6rem;
    }
    
    .contact-methods {
        max-width: 250px;
    }
    
    .menu-section {
        padding: 0.8rem;
    }
    
    .section-image {
        width: 70px;
        height: 70px;
    }
    
    /* Redes sociales optimizadas para móviles muy pequeños */
    .social-links {
        gap: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        min-width: 40px;
        min-height: 40px;
        font-size: 0.8rem;
    }
}

/* Landscape móviles */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 20px 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary-hero {
        width: auto;
        padding: 0.8rem 1.5rem;
    }
}

/* Mejoras en touch targets para móviles */
@media (max-width: 768px) {
    .contact-btn,
    .btn-primary,
    .btn-secondary,
    .floating-btn {
        min-height: 44px; /* Tamaño mínimo recomendado para touch */
    }
    
    .nav-menu a {
        padding: 1rem 0;
        display: block;
    }
    
    .hamburger {
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Optimizaciones de performance para móviles */
@media (max-width: 768px) {
    .hero-video video,
    .about-image video {
        will-change: transform;
    }
    
    .menu-section,
    .featured-item {
        will-change: transform;
    }
    
    /* Reducir animaciones en móviles lentos */
    @media (prefers-reduced-motion: reduce) {
        .menu-section,
        .featured-item,
        .info-item {
            transition: none;
        }
        
        .scroll-progress-bar {
            transition: none;
        }
    }
}
/* Overlay para el menú móvil */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mejoras adicionales para el menú hamburguesa */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    /* Animación de entrada para los elementos del menú */
    .nav-menu.active li {
        animation: slideInRight 0.3s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive mejorado para el menú hamburguesa */
@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .nav-menu a {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .nav-menu a:hover {
        color: #e74c3c;
    }
    
    .btn-pedido {
        margin: 1rem 1.5rem 0 1.5rem !important;
    }
}

@media (max-width: 360px) {
    .hamburger {
        width: 40px;
        height: 40px;
    }
    
    .hamburger span {
        width: 20px;
    }
}