/* ===================================
   EL BUEN SABOR - PIQUETEADERO
   Estilos Principales
   =================================== */

/* ===== VARIABLES CSS ===== */
:root {
    /* Colores principales */
    --primary: #dc2626;
    --primary-dark: #991b1b;
    --primary-light: #ef4444;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --accent: #10b981;
    --accent-dark: #059669;
    
    /* Colores de fondo */
    --bg-dark: #1f2937;
    --bg-darker: #111827;
    --bg-light: #f9fafb;
    --bg-card: #ffffff;
    
    /* Grises */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Tipografía */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Espaciado */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Bordes y sombras */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transiciones */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== UTILIDADES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.text-highlight {
    color: var(--primary);
}

.hidden {
    display: none !important;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary);
}

.logo i {
    font-size: var(--font-size-3xl);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav__menu a {
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    position: relative;
}

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

.nav__menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav__menu a:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-2);
}

.nav__toggle span {
    width: 24px;
    height: 3px;
    background: var(--gray-700);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    font-size: var(--font-size-xs);
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== BOTONES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn--primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: var(--secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn--secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--whatsapp {
    background: #25D366;
    color: white;
    box-shadow: var(--shadow-md);
}

.btn--whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: white;
}

.btn--light {
    background: white;
    color: var(--gray-900);
    box-shadow: var(--shadow);
}

.btn--light:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn--small {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
    position: relative;
}

.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
    background: rgba(0, 0, 0, 0.6); /* Overlay oscuro simple */
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
    align-items: center;
    padding: var(--space-20) 0;
}

.hero__tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.hero__title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: var(--space-6);
}

.hero__description {
    font-size: var(--font-size-lg);
    color: var(--gray-300);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.hero__features {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    color: white;
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.feature-badge i {
    color: var(--secondary);
}

.hero__visual {
    position: relative;
}

.hero__image-main {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero__image-main img {
    width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

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

/* ===== SECCIONES ===== */
section {
    padding: var(--space-20) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 5;
    padding: var(--space-4);
    
    /* Fondo semi-transparente para mejorar legibilidad */
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 50%,
        rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--font-size-base);
    font-weight: 800;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* 🔥 VISIBILIDAD MÁXIMA */
    box-shadow: 
        0 0 0 4px rgba(255, 255, 255, 1),
        0 0 0 6px rgba(220, 38, 38, 0.4),
        0 10px 40px rgba(220, 38, 38, 0.8),
        0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 100;
    animation: pulse-strong 2s ease-in-out infinite;
    
    /* Borde blanco grueso */
    outline: 3px solid white;
    outline-offset: 2px;
}

@keyframes pulse-strong {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 0 4px rgba(255, 255, 255, 1),
            0 0 0 6px rgba(220, 38, 38, 0.4),
            0 10px 40px rgba(220, 38, 38, 0.8),
            0 5px 15px rgba(0, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 0 4px rgba(255, 255, 255, 1),
            0 0 0 10px rgba(220, 38, 38, 0.6),
            0 15px 50px rgba(220, 38, 38, 1),
            0 8px 20px rgba(0, 0, 0, 0.6);
    }
}

.section-tag:hover {
    transform: translateY(-3px) scale(1.08);
    animation: none;
}

/* ===== PORCIONES GRID ===== */
.porciones {
    background: white;
}

.porciones__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-8);
}

.porcion-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.porcion-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.porcion-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-lg);
}

.badge-hot {
    background: var(--primary);
    color: white;
}

.badge-new {
    background: var(--secondary);
    color: white;
}

.btn-favorite {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: var(--font-size-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-favorite:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.card-content {
    padding: var(--space-6);
}

.card-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.card-description {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.card-info {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

.info-item i {
    color: var(--secondary);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-200);
}

.card-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    text-transform: uppercase;
}

.price-value {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary);
}

/* ===== PROMOCIONES ===== */
.promociones {
    background: var(--gray-50);
}

.promociones__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.promo-card {
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.promo-card:hover::before {
    animation: shine 1.5s ease;
}

@keyframes shine {
    from { transform: translateX(-100%) rotate(45deg); }
    to { transform: translateX(100%) rotate(45deg); }
}

.promo-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.promo-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.promo-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.promo-icon {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--space-4);
}

.promo-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.promo-card p {
    margin-bottom: var(--space-4);
    opacity: 0.9;
}

.promo-price {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--space-6);
}

.promo-price small {
    font-size: var(--font-size-sm);
    font-weight: 400;
    opacity: 0.8;
}

/* ===== CHEFBOT CTA ===== */
.chefbot-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.chefbot-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
    align-items: center;
}

.chefbot-visual {
    display: flex;
    justify-content: center;
}

.robot-icon {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.chefbot-text h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-4);
}

.chefbot-text p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-6);
    opacity: 0.9;
}

.chefbot-features {
    margin-bottom: var(--space-8);
}

.chefbot-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-base);
}

.chefbot-features i {
    color: var(--secondary);
}

.chefbot-buttons {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.chefbot-note {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

/* ===== CONTACTO ===== */
.contacto {
    background: white;
}

.contacto__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.contacto-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.contacto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contacto-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-3xl);
    margin: 0 auto var(--space-4);
}

.contacto-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.contacto-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.status-open {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-top: var(--space-4);
}

.mapa-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-16) 0 var(--space-8);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-section h4 {
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.footer-section p {
    margin-bottom: var(--space-4);
}

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: var(--space-2);
}

.newsletter-form {
    display: flex;
    gap: var(--space-2);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    background: var(--gray-800);
    color: white;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-800);
}

.footer__bottom p {
    margin-bottom: var(--space-2);
}

.demo-note {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.demo-note a {
    color: var(--primary);
}

.demo-note a:hover {
    text-decoration: underline;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    box-shadow: var(--shadow-2xl);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

/* ===== CARRITO MODAL ===== */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    justify-content: flex-end;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cart-content {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: white;
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    border-bottom: 1px solid var(--gray-200);
}

.cart-header h3 {
    font-size: var(--font-size-xl);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-close:hover {
    background: var(--gray-100);
}

.cart-items {
    flex: 1;
    padding: var(--space-6);
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    padding: var(--space-16) var(--space-6);
}

.cart-empty i {
    font-size: var(--font-size-5xl);
    color: var(--gray-300);
    margin-bottom: var(--space-4);
}

.cart-empty p {
    color: var(--gray-500);
    margin-bottom: var(--space-6);
}

.cart-footer {
    padding: var(--space-6);
    border-top: 1px solid var(--gray-200);
}

.cart-summary {
    margin-bottom: var(--space-6);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-3);
    font-size: var(--font-size-base);
    color: var(--gray-600);
}

.summary-total {
    font-size: var(--font-size-xl);
    color: var(--gray-900);
    padding-top: var(--space-3);
    border-top: 2px solid var(--gray-200);
}
/* ChefBot Chat Widget Flotante */
.chefbot-float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.chefbot-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.chefbot-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.chefbot-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.chefbot-float-btn:hover .chefbot-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Widget del Chat */
.chefbot-chat-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.chefbot-chat-widget.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chefbot-chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chefbot-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chefbot-header-info h4 {
    margin: 0;
    font-size: 16px;
}

.status-online {
    color: #a8ffbc;
}

.chefbot-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chefbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
    background: white;
    padding: 10px 15px;
    border-radius: 18px 18px 18px 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.user-message {
    align-self: flex-end;
    background: #667eea;
    color: white;
    padding: 10px 15px;
    border-radius: 18px 18px 5px 18px;
}

.chefbot-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
    background: white;
    border-radius: 0 0 16px 16px;
}

.chefbot-input-area input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
}

.chefbot-input-area button {
    margin-left: 10px;
    background: #667eea;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.chefbot-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.chefbot-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 480px) {
    .chefbot-chat-widget {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
}
/* Banner CTA Panel Admin */
.admin-cta-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    z-index: 999;
    animation: slideUp 0.8s ease, pulse 2s infinite;
    padding: 20px;
}

.admin-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.admin-cta-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.admin-cta-text p {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.5;
}

.admin-cta-btn {
    background: white;
    color: #e67e22;
    font-weight: bold;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.admin-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.admin-cta-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.admin-cta-close:hover {
    opacity: 1;
}

@keyframes slideUp {
    from { transform: translateX(-50%) translateY(100px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.02); }
}

/* Responsive */
@media (max-width: 768px) {
    .admin-cta-content {
        flex-direction: column;
        text-align: center;
    }
    .admin-cta-text h3 {
        font-size: 20px;
    }
    .admin-cta-text p {
        font-size: 15px;
    }
}