/* ===== VARIABLES ===== */
:root {
    /* Colores principales */
    --primary: #DC2626;
    --primary-dark: #B91C1C;
    --primary-light: #EF4444;
    --secondary: #1F2937;
    --accent: #F59E0B;
    
    /* Escala de 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;
    
    /* Colores especiales */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Efectos */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 6px 12px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 25px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 40px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Bordes */
    --radius-sm: 8px;
    --radius: 16px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --radius-full: 9999px;
    
    /* Transiciones */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--gray-900);
    color: var(--gray-200);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    max-width: 300px;
}

.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-100);
}

.loader-logo i {
    color: var(--primary);
    font-size: 32px;
}

.loader-animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
}

.loader-steak {
    width: 100%;
    height: 100%;
    position: relative;
    animation: rotate 8s linear infinite;
}

.steak-cut {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.steak-marbling {
    position: absolute;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    animation: float 3s ease-in-out infinite;
}

.steak-marbling:nth-child(2) {
    width: 16px;
    height: 16px;
    top: 30%;
    left: 30%;
    animation-delay: 0s;
}

.steak-marbling:nth-child(3) {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 60%;
    animation-delay: 0.5s;
}

.steak-marbling:nth-child(4) {
    width: 8px;
    height: 8px;
    top: 40%;
    left: 70%;
    animation-delay: 1s;
}

.loader-text {
    color: var(--gray-400);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.animate-slide-up {
    animation: slideUp var(--transition) ease-out;
}

.animate-fade-in {
    animation: fadeIn var(--transition) ease-out;
}

/* ===== GLASS EFFECTS ===== */
.glass-header {
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition);
}

header.scrolled {
    background: rgba(17, 24, 39, 0.95);
    box-shadow: var(--shadow-lg);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo i {
    font-size: 28px;
    color: var(--primary);
    transition: transform var(--transition);
}

.logo:hover i {
    transform: scale(1.1);
}

.logo h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-100);
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    position: relative;
    color: var(--gray-400);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    transition: color var(--transition);
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--gray-100);
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    transition: width var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.cart-btn i {
    font-size: 20px;
    color: var(--gray-300);
}

.cart-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.order-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: var(--radius);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gray-300);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    z-index: -2;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 32px;
}

.hero-badge span {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-badge i {
    color: var(--accent);
    font-size: 14px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.title-line.accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    border-radius: var(--radius-full);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 48px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-100);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-200);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--gray-300);
    border: 1px solid var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--gray-600);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
}

.meat-card {
    background: var(--gray-800);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform var(--transition);
}

.meat-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.meat-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.meat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.meat-card:hover .meat-image img {
    transform: scale(1.05);
}

.meat-grade {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(17, 24, 39, 0.9);
    padding: 12px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.meat-grade span {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.grade-dots {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: var(--radius-full);
}

.meat-info {
    padding: 24px;
}

.meat-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-100);
    margin-bottom: 4px;
}

.meat-info p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.meat-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.meat-price .price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-100);
}

.meat-price .weight {
    font-size: 14px;
    color: var(--gray-500);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 4s ease-in-out infinite;
}

.floating-element i {
    font-size: 24px;
    color: var(--gray-400);
}

.floating-element.element-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.floating-element.element-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 2s;
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-label span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-100);
    margin-bottom: 16px;
}

.section-title .accent {
    color: var(--accent);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 64px;
}

/* ===== CORTES ===== */
.cuts-section {
    padding: 120px 0;
    position: relative;
}

.cuts-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    gap: 24px;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--gray-400);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
    color: var(--primary);
}

.filter-search {
    position: relative;
    min-width: 300px;
}

.filter-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
}

.filter-search input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--gray-200);
    font-size: 16px;
    transition: all var(--transition);
}

.filter-search input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.cuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.cut-card {
    background: var(--gray-800);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.cut-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.cut-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.cut-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.cut-card:hover .cut-image img {
    transform: scale(1.1);
}

.cut-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(17, 24, 39, 0.9);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cut-content {
    padding: 24px;
}

.cut-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.cut-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-100);
}

.cut-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cut-rating i {
    color: var(--accent);
    font-size: 14px;
}

.cut-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-500);
}

.meta-item i {
    font-size: 12px;
}

.cut-description {
    color: var(--gray-400);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.cut-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cut-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-100);
}

.cut-price span {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 400;
}

.cut-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.action-btn.primary {
    background: var(--primary);
    color: white;
}

.action-btn.primary:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

/* ===== EXPERIENCIA ===== */
.experience-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: start;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(220, 38, 38, 0.1);
    transform: translateX(8px);
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
}

.step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-100);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 20px;
    color: var(--primary);
}

.experience-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visual-card {
    overflow: hidden;
}

.visual-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(17, 24, 39, 0.9));
    padding: 32px;
}

.overlay-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-100);
    margin-bottom: 4px;
}

.overlay-content p {
    color: var(--gray-500);
    font-size: 14px;
}

.stats-card {
    padding: 32px;
}

.stats-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-100);
    margin-bottom: 4px;
}

.stat-value span {
    font-size: 20px;
    color: var(--primary);
}

.stat-label {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== NOSOTROS ===== */
.about-section {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.visual-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.visual-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.visual-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
}

.secondary-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 16px;
}

.secondary-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius);
}

.certification-badge i {
    color: var(--accent);
    font-size: 20px;
}

.certification-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-text {
    margin-bottom: 48px;
}

.about-text p {
    color: var(--gray-400);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--gray-100);
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(220, 38, 38, 0.1);
    transform: translateY(-4px);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.value-icon i {
    font-size: 20px;
    color: var(--primary);
}

.value-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-100);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== CONTACTO ===== */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--gray-800) 0%, var(--gray-900) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.info-card {
    padding: 32px;
    margin-bottom: 24px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.info-header i {
    font-size: 24px;
    color: var(--primary);
}

.info-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-100);
}

.info-content p {
    color: var(--gray-400);
    margin-bottom: 24px;
    line-height: 1.6;
}

.info-list {
    list-style: none;
    margin-bottom: 24px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-400);
    font-size: 14px;
}

.info-list i {
    color: var(--success);
    font-size: 12px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail i {
    width: 32px;
    height: 32px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.detail div {
    display: flex;
    flex-direction: column;
}

.detail span {
    font-weight: 500;
    color: var(--gray-200);
}

.detail small {
    font-size: 12px;
    color: var(--gray-500);
}

.contact-form {
    padding: 32px;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-100);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--gray-500);
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
}

.form-group label i {
    color: var(--primary);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--gray-200);
    font-size: 16px;
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select {
    height: 120px;
}

.select-hint {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

.form-footer {
    text-align: center;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-500);
}

.form-note i {
    color: var(--success);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--primary);
}

.footer-logo h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-100);
}

.footer-brand p {
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-links h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-100);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-newsletter h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-100);
    margin-bottom: 16px;
}

.footer-newsletter p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--gray-200);
    font-size: 14px;
}

.newsletter-form button {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    color: white;
    cursor: pointer;
    transition: all var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translateX(4px);
}

.newsletter-note {
    font-size: 12px;
    color: var(--gray-500);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-copyright p {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-certifications {
    display: flex;
    gap: 16px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
}

.cert-badge i {
    color: var(--primary);
    font-size: 10px;
}

/* ===== CARRITO ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100%;
    background: var(--gray-900);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right var(--transition);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-100);
}

.close-cart {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: var(--radius);
    color: var(--gray-400);
    cursor: pointer;
    transition: all var(--transition);
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-200);
}

.cart-items {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: 64px 24px;
}

.empty-cart i {
    font-size: 48px;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.empty-cart p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-content {
    flex: 1;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.cart-item-header h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-100);
}

.cart-item-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.cart-item-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.cart-item-meta span {
    font-size: 12px;
    color: var(--gray-500);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--gray-400);
    cursor: pointer;
    transition: all var(--transition);
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-200);
}

.qty-value {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--gray-300);
}

.remove-item {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    transition: color var(--transition);
}

.remove-item:hover {
    color: var(--error);
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary {
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--gray-400);
    font-size: 14px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-100);
}

.cart-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--gray-500);
}

.cart-note i {
    color: var(--accent);
}

/* ===== WIDGETS ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.whatsapp-btn i {
    font-size: 24px;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 14px;
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--gray-300);
    cursor: pointer;
    z-index: 999;
    transition: all var(--transition);
    display: none;
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gray-100);
    transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .hero .container,
    .experience-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cuts-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-search {
        min-width: auto;
    }
    
    .cuts-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .filter-buttons {
        justify-content: center;
    }
}