/* ==============================================================================
   ESTILOS PREMIUM - LA MAMÁ DE LOS POLLITOS
   Estilo: Rústico Moderno, Alta Conversión, Optimizado para SEO & Mobile-First
   ============================================================================== */

/* --- Variables de Diseño (Tokens) --- */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --brand-primary: #ff5e00;      /* Naranja Fuego */
    --brand-secondary: #ffb700;    /* Oro Caliente */
    --brand-accent: #d32f2f;       /* Rojo Brasas */
    --text-primary: #f5f5f3;       /* Blanco Hueso / Crema */
    --text-secondary: #adaba4;     /* Gris Ceniza */
    --text-muted: #6b6962;
    --accent-whatsapp: #25d366;    /* WhatsApp Green */
    --accent-whatsapp-hover: #1ebd5d;
    --accent-rappi: #ff441f;       /* Rappi Orange */
    --accent-didi: #ff8000;        /* DiDi Orange */
    
    /* Efecto Glassmorphism */
    --glass-bg: rgba(22, 22, 22, 0.7);
    --glass-border: rgba(255, 94, 0, 0.15);
    --glass-shadow: rgba(0, 0, 0, 0.6);
    
    /* Fuentes */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Bordes y Transiciones */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Sombras de Fuego */
    --glow-orange: 0 0 20px rgba(255, 94, 0, 0.3);
    --glow-gold: 0 0 20px rgba(255, 183, 0, 0.25);
    --glow-green: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* --- Estilos Globales --- */
* {
    margin: 0;
    padding: 0;
    box-index: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(26, 15, 10, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(26, 18, 10, 0.4) 0%, transparent 40%);
}

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

/* --- Tipografía --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Botones Comunes --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-title);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-whatsapp) 0%, var(--accent-whatsapp-hover) 100%);
    color: #fff;
    box-shadow: var(--glow-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-secondary {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
}

.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* --- Cabecera y Navegación --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    border-radius: 50%;
    border: 2px solid var(--brand-primary);
    object-fit: cover;
}

.brand-name {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--text-primary) 50%, var(--brand-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Badge de Horario en Header */
.header-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #777;
    display: inline-block;
}

.status-open .status-dot {
    background-color: #25d366;
    box-shadow: 0 0 8px #25d366;
}

.status-closed .status-dot {
    background-color: #d32f2f;
    box-shadow: 0 0 8px #d32f2f;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(10, 10, 10, 0.98);
    z-index: 99;
    overflow: hidden;
    transition: var(--transition-normal);
    border-bottom: 0px solid var(--brand-primary);
}

.mobile-nav-overlay.open {
    height: calc(100vh - 80px);
    border-bottom: 2px solid var(--brand-primary);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 32px;
}

.mob-link {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-secondary);
}

.mob-link:hover {
    color: var(--brand-primary);
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-background-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.promo-badge-hero {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 94, 0, 0.1);
    color: var(--brand-primary);
    border: 1px solid rgba(255, 94, 0, 0.25);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.app-delivery-platforms {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.platform-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.platforms-grid {
    display: flex;
    gap: 16px;
}

.platform-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.platform-card.rappi:hover {
    border-color: var(--accent-rappi);
    background-color: rgba(255, 68, 31, 0.05);
    box-shadow: 0 4px 15px rgba(255, 68, 31, 0.15);
}

.platform-card.didi:hover {
    border-color: var(--accent-didi);
    background-color: rgba(255, 128, 0, 0.05);
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.15);
}

.platform-name {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.95rem;
}

.platform-card.rappi .platform-name {
    color: var(--accent-rappi);
}

.platform-card.didi .platform-name {
    color: var(--accent-didi);
}

/* Área de Imagen del Hero */
.hero-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--glow-orange), 0 20px 50px rgba(0, 0, 0, 0.7);
    animation: float 6s ease-in-out infinite;
}

.hero-main-image {
    object-fit: cover;
    transition: var(--transition-slow);
}

.hero-image-container:hover .hero-main-image {
    transform: scale(1.05);
}

.image-overlay-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* --- Features Section --- */
.features-section {
    background-color: var(--bg-secondary);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-primary);
    box-shadow: var(--glow-orange);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Menu Section --- */
.menu-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px auto;
}

.section-subtitle {
    color: var(--brand-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    margin: 0 auto 20px auto;
    border-radius: var(--radius-full);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Tabs del Menú */
.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.tab-btn {
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-title);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
    box-shadow: var(--glow-orange);
}

/* Menú Grid y Tarjetas */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.menu-item-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.menu-item-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 94, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), var(--glow-gold);
}

.menu-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.menu-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-item-card:hover .menu-img-container img {
    transform: scale(1.08);
}

.menu-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    z-index: 1;
}

.badge-popular {
    background-color: var(--brand-primary);
    box-shadow: 0 4px 10px rgba(255, 94, 0, 0.4);
}

.badge-promo {
    background-color: var(--brand-secondary);
    color: #000;
    box-shadow: 0 4px 10px rgba(255, 183, 0, 0.4);
}

.menu-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-name {
    font-size: 1.15rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.item-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.item-price {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--brand-secondary);
}

.btn-add-cart {
    background-color: rgba(255, 94, 0, 0.1);
    color: var(--brand-primary);
    border: 1px solid rgba(255, 94, 0, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-add-cart:hover {
    background-color: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}

/* --- Panel Flotante de Carrito --- */
.order-summary-panel {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 360px;
    max-height: 480px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px var(--glass-shadow);
    border-radius: var(--radius-md);
    z-index: 98;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(120px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.order-summary-panel.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.cart-header {
    background-color: rgba(255, 94, 0, 0.1);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-close-cart {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.btn-close-cart:hover {
    color: var(--brand-primary);
}

.cart-items-container {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.cart-empty-msg {
    color: var(--text-muted);
    text-align: center;
    font-size: 0.9rem;
    padding: 40px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.cart-item-info span {
    font-size: 0.8rem;
    color: var(--brand-secondary);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-qty {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
}

.btn-qty:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.cart-form-container {
    padding: 16px 20px;
    border-top: 1px solid var(--glass-border);
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-form-group label {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-secondary);
}

.cart-form-group input, 
.cart-form-group select, 
.cart-form-group textarea {
    background-color: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.cart-form-group input:focus, 
.cart-form-group select:focus, 
.cart-form-group textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 5px rgba(255, 94, 0, 0.3);
}

.cart-form-group textarea {
    resize: none;
}

.cart-totals {
    padding: 16px 20px;
    border-top: 1px solid var(--glass-border);
    background-color: rgba(0,0,0,0.2);
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.total-row strong {
    font-family: var(--font-title);
    font-size: 1.15rem;
    color: var(--brand-secondary);
}

.cart-delivery-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
}

.cart-actions {
    padding: 16px 20px;
}

.btn-whatsapp-action {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-whatsapp) 0%, var(--accent-whatsapp-hover) 100%);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-title);
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-fast);
}

.btn-whatsapp-action:hover {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* --- Cómo Pedir Section --- */
.how-to-order-section {
    background-color: var(--bg-secondary);
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.step-card {
    background-color: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.step-num {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 94, 0, 0.05);
    line-height: 1;
    font-family: var(--font-title);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--brand-primary);
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Promo Banner inside How to Order */
.promo-banner-container {
    max-width: 900px;
    margin: 0 auto;
}

.promo-banner {
    background: linear-gradient(135deg, rgba(26, 18, 10, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--glow-gold);
}

.promo-badge {
    background-color: rgba(255, 183, 0, 0.1);
    color: var(--brand-secondary);
    border: 1px solid rgba(255, 183, 0, 0.2);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.promo-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.promo-banner p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.promo-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-app-link {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.btn-app-link.rappi {
    background-color: var(--accent-rappi);
    color: #fff;
}

.btn-app-link.rappi:hover {
    background-color: #e03212;
    transform: translateY(-2px);
}

.btn-app-link.didi {
    background-color: var(--accent-didi);
    color: #fff;
}

.btn-app-link.didi:hover {
    background-color: #e07000;
    transform: translateY(-2px);
}

/* --- Sucursal / Ubicación Section --- */
.branch-section {
    padding: 100px 0;
}

.branch-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.branch-info-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 48px;
    border-radius: var(--radius-lg);
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 36px;
    margin-bottom: 36px;
}

.info-list li {
    display: flex;
    gap: 16px;
}

.info-icon {
    font-size: 1.5rem;
    background-color: rgba(255, 94, 0, 0.1);
    color: var(--brand-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-details strong {
    font-family: var(--font-title);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}

.info-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.info-details p span {
    color: var(--brand-accent);
    font-weight: 700;
}

.order-phone-cta {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.order-phone-cta p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.phone-link {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--brand-secondary);
}

.phone-link:hover {
    color: var(--brand-primary);
}

.map-container {
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* --- Reviews Section --- */
.reviews-section {
    background-color: var(--bg-secondary);
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.review-card {
    background-color: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 32px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 183, 0, 0.2);
    box-shadow: var(--glow-gold);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: #000;
    font-weight: 800;
    font-family: var(--font-title);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-info {
    flex-grow: 1;
}

.user-info strong {
    display: block;
    font-size: 0.95rem;
}

.user-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.rating-stars {
    color: var(--brand-secondary);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.5;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-trigger:hover {
    color: var(--brand-primary);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: var(--transition-fast);
}

.accordion-item.active {
    border-color: rgba(255, 94, 0, 0.2);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--brand-primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1); /* Accordion slide anim */
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.accordion-content p {
    padding: 0 24px 24px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Footer --- */
.main-footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 120px 0; /* extra bottom padding for sticky bar */
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    border-radius: 50%;
    border: 2px solid var(--brand-primary);
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.footer-brand h3 {
    font-size: 1.4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--brand-primary);
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact p a:hover {
    color: var(--brand-secondary);
}

.footer-legal h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-legal p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.developer-tag {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Sticky Bottom CTA Bar para Móvil --- */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    display: none; /* Only mobile */
    align-items: center;
    justify-content: space-between;
    z-index: 97;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.sticky-status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
}

.btn-whatsapp-sticky {
    background: linear-gradient(135deg, var(--accent-whatsapp) 0%, var(--accent-whatsapp-hover) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: var(--glow-green);
    animation: pulseBtn 2s infinite;
}

#cartCountBadge {
    background-color: #fff;
    color: #000;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    min-width: 18px;
    text-align: center;
    display: inline-block;
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- RESPONSIVIDAD (Media Queries) --- */

/* Tablets / Computadoras Medianas */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-area {
        order: -1; /* Image first on mobile/tablet */
    }
    
    .hero-image-container {
        max-width: 380px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .branch-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .map-container {
        height: 350px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .mobile-sticky-cta {
        display: flex;
    }
    
    /* Move desktop cart further up on tablet/mobile so sticky bar doesn't cover it */
    .order-summary-panel {
        bottom: 74px;
        right: 12px;
        left: 12px;
        width: auto;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .nav-menu, .header-status-badge {
        display: none; /* Hide standard nav on mobile */
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
    
    .promo-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .promo-banner {
        padding: 24px;
    }
    
    .branch-info-card {
        padding: 24px;
    }
}
