/* ESTILOS ADN */

/* 🧬 ADN DE MARCA IDENTIDAD DE USUARIO */
:root {
    --color-text: #2C2C2C;
        --lfy-text: #2C2C2C;
        --color-accent: #10B981;
        --lfy-accent: #10B981;
        --color-primary: #FF4500;
        --lfy-primary: #FF4500;
        --color-secondary: #FF8C00;
        --lfy-secondary: #FF8C00;
        --color-background: #121212;
        --lfy-background: #121212;
        --color-bg: #121212;
        
    --primary-h: 16.235294117647054; --primary-s: 100.0%; --primary-l: 50.0%;
    --primary-lightness-delta: calc((var(--primary-l) - 60) * -100);
    --color-text-on-primary: hsl(0, 0%, clamp(0, var(--primary-lightness-delta), 100));
}    

@import url('https://fonts.googleapis.com/css2?family=:wght@400;700&family=Inter:wght@400;600&display=swap');

/* --- FIX DE SCROLL HORIZONTAL (BLINDAJE TOTAL) --- */
html, body { 
    scroll-behavior: smooth !important; 
    overflow-x: hidden !important; 
    max-width: 100% !important; 
    position: relative;
}

body { 
    font-family: 'Inter', sans-serif; 
    /* REPARACIÓN: Usamos 'background' y '--color-bg' con !important para forzar gradientes */
    background: var(--color-bg) !important; 
    color: var(--color-text); 
    display: flex; flex-direction: column; min-height: 100vh;
}
main { flex: 1; width: 100%; }
h1, h2, h3, h4, h5, h6 { font-family: '', sans-serif; }
/* REPARACIÓN: Botones con 'background' para soportar gradientes base */
.btn-primary { background: var(--color-primary); color: var(--color-text-on-primary, #FFFFFF); padding: 0.75rem 1.5rem; display: inline-block; text-align: center; border: none; }
.btn-secondary { background: var(--color-secondary); color: #FFFFFF; padding: 0.75rem 1.5rem; display: inline-block; text-align: center; border: none; }
.btn, .btn-primary, .btn-secondary, button:not(.lf-editor-icon):not(.radius-option-btn):not(.theme-swatch), a[class*="bg-"] { border-radius: 9999px !important; }





/* 🎨 ESTILOS CONSOLIDADOS */


/* LIBS IA */
/* COLORES DE FUEGO Y CARBÓN */
        :root {
            --color-primary: #FF4500; /* Naranja Fuego */
            --color-secondary: #FF8C00; /* Brasa Ardiente */
            --color-bg: #121212; /* Negro Carbón */
            --color-text: #2C2C2C; /* Gris Ceniza */
            --color-smoke: #E0E0E0; /* Humo */
            --color-meat: #8B0000; /* Rojo Carne Cruda */
        }

        body { 
            font-family: 'Inter', sans-serif; 
            background-color: var(--color-bg);
            color: var(--color-smoke);
            overflow-x: hidden;
        }
        
        h1, h2, h3, .font-grill { 
            font-family: 'Rye', serif; 
            letter-spacing: 2px;
        }
        
        .font-impact {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }

        /* TEXTURAS */
        .bg-grill-pattern {
            background-image: repeating-linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%, #000), repeating-linear-gradient(45deg, #000 25%, #121212 25%, #121212 75%, #000 75%, #000);
            background-position: 0 0, 10px 10px;
            background-size: 20px 20px;
        }

        /* EFECTO DE HUMO Y CHISPAS (NIVEL DIOS) */
        .smoke-container {
            position:  fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
        }
        .smoke {
            position: absolute; bottom: -100px;
            width: 200px; height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 70%);
            border-radius: 50%; filter: blur(20px);
            animation: rise 10s infinite ease-in;
        }
        .spark {
            position: absolute; bottom: -10px;
            width: 4px; height: 4px;
            background: var(--color-secondary);
            border-radius: 50%; box-shadow: 0 0 10px 2px var(--color-primary);
            animation: spark-rise 3s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        @keyframes rise {
            0% { transform: translateY(0) scale(1) translateX(0); opacity: 0; }
            50% { opacity: 0.6; }
            100% { transform: translateY(-100vh) scale(3) translateX(100px); opacity: 0; }
        }
        @keyframes spark-rise {
            0% { transform: translateY(0) translateX(0) scale(1); opacity: 1; }
            100% { transform: translateY(-50vh) translateX(50px) scale(0); opacity: 0; }
        }

        /* BOTONES AL ROJO VIVO */
        .btn-fire {
            background: linear-gradient(to right, var(--color-meat), var(--color-primary));
            color: white;
            padding: 1.2rem 3rem; 
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            letter-spacing: 2px;
            border-radius: 0;
            border: 2px solid var(--color-secondary);
            box-shadow: 0 0 15px rgba(255, 69, 0, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .btn-fire::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
            transition: all 0.5s ease; z-index: -1;
        }
        .btn-fire:hover::before { left: 100%; }
        .btn-fire:hover { 
            box-shadow: 0 0 25px rgba(255, 69, 0, 0.8);
            transform: scale(1.05);
            text-shadow: 0 0 5px white;
        }

        .btn-ash {
            background-color: var(--color-text);
            color: var(--color-smoke);
            border: 2px solid #444;
            transition: all 0.3s;
        }
        .btn-ash:hover { background-color: #444; border-color: var(--color-secondary); color: white; }

        /* GRID DE CARNES (HOVER DE BRASAS) */
        .meat-card {
            background: var(--color-text);
            border: 1px solid #333;
            position: relative;
            overflow: hidden;
            transition: all 0.5s;
            cursor: pointer;
        }
        .meat-card::after {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(circle at bottom, rgba(255,69,0,0.4) 0%, transparent 60%);
            opacity: 0; transition: opacity 0.5s; pointer-events: none;
        }
        .meat-card:hover {
            transform: translateY(-10px);
            border-color: var(--color-primary);
            box-shadow: 0 15px 30px rgba(255,69,0,0.2);
        }
        .meat-card:hover::after { opacity: 1; }
        .meat-card img { transition: transform 0.8s; filter: contrast(1.1) saturate(1.2); }
        .meat-card:hover img { transform: scale(1.1) rotate(2deg); }

        /* LA RULETA DE LA SUERTE */
        .roulette-wheel {
            width: 300px; height: 300px;
            border-radius: 50%;
            border: 10px solid var(--color-text);
            background: conic-gradient(
                var(--color-bg) 0 60deg, var(--color-primary) 60deg 120deg,
                var(--color-bg) 120deg 180deg, var(--color-meat) 180deg 240deg,
                var(--color-bg) 240deg 300deg, var(--color-secondary) 300deg 360deg
            );
            box-shadow: inset 0 0 20px #000, 0 0 30px rgba(255,69,0,0.5);
            transition: transform 4s cubic-bezier(0.2, 0.8, 0.2, 1);
            position: relative;
        }
        .roulette-pointer {
            position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
            width: 0; height: 0;
            border-left: 20px solid transparent; border-right: 20px solid transparent;
            border-top: 40px solid white; z-index: 10;
            filter: drop-shadow(0 4px 4px rgba(0,0,0,0.5));
        }

        /* MODAL UI */
        .grill-input {
            background: #1A1A1A; border: 1px solid #444; color: white;
            transition: all 0.3s;
        }
        .grill-input:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 10px rgba(255,69,0,0.2); }
        
        .step-panel { display: none; animation: fadeUp 0.4s ease forwards; }
        .step-panel.active { display: block; }
        @keyframes fadeUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

        /* TEXTO EN LLAMAS */
        .text-flame {
            background: linear-gradient(to top, #8B0000, #FF4500, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

/* CSS para Navegación (IA) */


/* CSS para Hero Section (IA) */


/* CSS para Sección 3 (IA) */


/* CSS para Sección 2 (IA) */


/* CSS para Sección 4 (IA) */


/* CSS para Sección 5 (IA) */


/* CSS para Sección 6 (IA) */


/* CSS para Sección 7 (IA) */


/* CSS para Sección 8 (IA) */


/* CSS para Sección 9 (IA) */


/* CSS para Sección 10 (IA) */


/* CSS para Footer (IA) */