/* ========================================
   Q'RICO RESTAURANT - CORPORATE CSS FRAMEWORK
   Professional Design System & Advanced Styling
   ======================================== */

/* ===== TABLE OF CONTENTS =====
   1. ROOT VARIABLES & BRAND COLORS
   2. TYPOGRAPHY SYSTEM
   3. BASE COMPONENTS & RESETS
   4. HERO SECTION ADVANCED STYLING
   5. NAVIGATION & HEADER ENHANCEMENTS
   6. SECTION-SPECIFIC STYLING
   7. INTERACTIVE COMPONENTS
   8. ANIMATIONS & TRANSITIONS
   9. RESPONSIVE DESIGN SYSTEM
   10. ACCESSIBILITY & PERFORMANCE
   ================================= */

/* === 1. ROOT VARIABLES & BRAND COLORS === */
:root {
    /* Primary Brand Colors */
    --qrico-red-primary: #DC2626;
    --qrico-red-dark: #991B1B;
    --qrico-red-light: #FCA5A5;
    --qrico-red-50: #FEF2F2;
    
    /* Gold Accent System */
    --qrico-gold: #F59E0B;
    --qrico-gold-dark: #D97706;
    --qrico-gold-light: #FDE68A;
    --qrico-gold-50: #FFFBEB;
    
    /* Neutral Palette */
    --qrico-white: #FFFFFF;
    --qrico-charcoal: #111827;
    --qrico-slate: #64748B;
    --qrico-slate-light: #94A3B8;
    --qrico-light: #F8FAFC;
    --qrico-medium: #E2E8F0;
    --qrico-gray-900: #0F172A;
    
    /* Success & Status Colors */
    --qrico-green: #059669;
    --qrico-green-light: #D1FAE5;
    --qrico-blue: #2563EB;
    --qrico-blue-light: #DBEAFE;
    --qrico-orange: #EA580C;
    --qrico-orange-light: #FED7AA;
    --qrico-purple: #7C3AED;
    --qrico-purple-light: #EDE9FE;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--qrico-red-primary) 0%, var(--qrico-red-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--qrico-gold) 0%, var(--qrico-gold-dark) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(153, 27, 27, 0.5) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-3xl: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    --transition-bounce: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-tooltip: 1070;
}

/* === 2. TYPOGRAPHY SYSTEM === */
.font-oswald {
    font-family: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

.font-inter {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-feature-settings: 'kern' 1, 'liga' 1, 'tnum' 1;
}

/* Typography Utility Classes */
.text-gold {
    color: var(--qrico-gold);
}

.text-gold-dark {
    color: var(--qrico-gold-dark);
}

.bg-gold {
    background-color: var(--qrico-gold);
}

/* === 3. BASE COMPONENTS & RESETS === */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* === 4. HERO SECTION ADVANCED STYLING === */
#hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-background {
    background: var(--gradient-hero);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, var(--qrico-red-primary) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--qrico-gold) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === 5. NAVIGATION & HEADER ENHANCEMENTS === */
header {
    backdrop-filter: blur(20px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(200%);
    border-bottom: 1px solid var(--qrico-medium);
    box-shadow: var(--shadow-lg);
}

/* Navigation Link Enhancements */
header nav a {
    position: relative;
    transition: all var(--transition-normal);
}

header nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

header nav a:hover::after {
    width: 100%;
}

/* === 6. SECTION-SPECIFIC STYLING === */

/* Services Section */
.service-card {
    transition: all var(--transition-normal);
    cursor: pointer;
}

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

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Why Choose Us Section */
.advantage-card {
    transition: all var(--transition-bounce);
}

.advantage-card:hover {
    transform: translateY(-12px) rotateY(5deg);
    box-shadow: var(--shadow-3xl);
}

/* Gallery Section */
.gallery-item {
    transition: all var(--transition-slow);
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow-3xl);
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.8;
}

/* Process Section */
.process-step {
    position: relative;
}

.process-step:hover {
    z-index: 10;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--qrico-red-light) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all var(--transition-normal);
    z-index: -1;
}

.process-step:hover::before {
    width: 120%;
    height: 120%;
}

/* Awards Section */
.award-card {
    position: relative;
    overflow: hidden;
}

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

.award-card:hover::before {
    transform: rotate(45deg) translateX(100%);
}

/* Stats Cards */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left var(--transition-slow);
}

.stat-card:hover::after {
    left: 100%;
}

/* === 7. INTERACTIVE COMPONENTS === */

/* Button Enhancements */
.btn {
    position: relative;
    overflow: hidden;
    transform: perspective(1px) translateZ(0);
    transition: all var(--transition-normal);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

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

.btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Card Components */
.card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-bounce);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(10px) saturate(120%);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.card:hover::before {
    opacity: 1;
}

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

/* === 8. ANIMATIONS & TRANSITIONS === */

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Pulse Animation */
.animate-pulse-custom {
    animation: pulseCustom 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseCustom {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Bounce Animation */
.animate-bounce-subtle {
    animation: bounceSubtle 2s ease-in-out infinite;
}

@keyframes bounceSubtle {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateY(0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translateY(-8px);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translateY(-4px);
    }
    90% {
        transform: translateY(-2px);
    }
}

/* Float Animation */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

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

/* === 9. RESPONSIVE DESIGN SYSTEM === */

/* Mobile First Optimizations */
@media (max-width: 640px) {
    :root {
        --shadow-lg: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        --shadow-xl: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        letter-spacing: 0.025em;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
        line-height: 1.1;
    }
    
    .grid-responsive {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Optimizations */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 5rem;
        line-height: 1;
    }
    
    .container-large {
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Large Screen Optimizations */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero h1 {
        font-size: 6rem;
    }
    
    .text-xl-large {
        font-size: 1.5rem;
        line-height: 1.4;
    }
}

/* Ultra-wide Screen Support */
@media (min-width: 1920px) {
    .container-ultra {
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* === 10. ACCESSIBILITY & PERFORMANCE === */

/* High Contrast Support */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid var(--qrico-charcoal);
    }
    
    .btn {
        border: 2px solid currentColor;
        font-weight: 700;
    }
    
    .text-muted {
        color: var(--qrico-charcoal) !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .parallax {
        transform: none !important;
    }
}

/* Focus Management */
.btn:focus,
a:focus,
button:focus {
    outline: 2px solid var(--qrico-gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--qrico-charcoal);
    color: var(--qrico-white);
    padding: 8px;
    text-decoration: none;
    transition: top var(--transition-fast);
    z-index: var(--z-tooltip);
}

.skip-link:focus {
    top: 6px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .hero {
        height: auto !important;
        min-height: auto !important;
        background: none !important;
        color: var(--qrico-charcoal) !important;
    }
    
    .bg-red-600,
    .bg-gradient-to-r {
        background: var(--qrico-charcoal) !important;
        color: var(--qrico-white) !important;
    }
    
    a {
        text-decoration: underline;
    }
    
    .card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--qrico-medium);
    }
}

/* Performance Optimizations */
.will-change-transform {
    will-change: transform;
}

.will-change-scroll {
    will-change: scroll-position;
}

.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000;
}

/* Mobile Menu Animation */
#mobile-menu {
    transition: all var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
}

#mobile-menu.show {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
}

/* Logo Styling */
img[alt*="Logo"] {
    transition: all var(--transition-normal);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

img[alt*="Logo"]:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Text Selection */
::selection {
    background-color: var(--qrico-gold);
    color: var(--qrico-white);
    text-shadow: none;
}

::-moz-selection {
    background-color: var(--qrico-gold);
    color: var(--qrico-white);
    text-shadow: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--qrico-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--qrico-red-primary), var(--qrico-gold));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--qrico-red-dark), var(--qrico-gold-dark));
}

/* === UX LAWS IMPLEMENTATION === */

/* Ley de Fitts: Tama\u00f1os m\u00ednimos para elementos interactivos */
.btn, 
button, 
[role="button"],
input[type="submit"],
input[type="button"] {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 16px;
    cursor: pointer;
}

/* CTAs principales m\u00e1s grandes */
.cta-primary {
    min-height: 56px;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 16px 32px;
}

.cta-secondary {
    min-height: 48px;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 24px;
}

/* Ley de Hick: Reducci\u00f3n de opciones y jerarqu\u00eda clara */
.primary-nav {
    display: flex;
    gap: 2rem;
    max-width: 100%;
    justify-content: space-between;
}

.primary-nav > * {
    flex: 0 0 auto;
}

/* Jerarqu\u00eda visual clara para CTAs */
.cta-primary {
    background: linear-gradient(135deg, var(--qrico-red-primary), var(--qrico-red-dark));
    box-shadow: 0 4px 14px 0 rgba(220, 38, 38, 0.39);
    z-index: 10;
    position: relative;
}

.cta-secondary {
    background: transparent;
    border: 2px solid currentColor;
    opacity: 0.9;
}

/* Jakob's Law: Patrones familiares */
.product-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all var(--transition-normal);
}

.product-card:hover,
.product-card:focus-within {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Navegaci\u00f3n familiar estilo hamburger */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
}

/* === RETROALIMENTACI\u00d3N (FEEDBACK) === */

/* Estados de hover con retroalimentaci\u00f3n visual */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0) scale(0.98);
    transition: transform 0.1s ease;
}

/* Loading states */
.btn.loading {
    pointer-events: none;
    opacity: 0.8;
    position: relative;
}

.btn.loading .btn-text {
    opacity: 0;
}

.btn.loading .loading-spinner {
    display: block !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Focus states mejorados */
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--qrico-gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

/* Hover states para cards */
.card:hover {
    transform: translateY(-4px) scale(1.01);
    transition: all var(--transition-normal);
}

/* === CONSISTENCIA === */

/* Sistema consistente de espaciado */
.section-padding {
    padding: 5rem 0;
}

.container-spacing {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container-spacing {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-spacing {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Tipograf\u00eda consistente */
.heading-primary {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.heading-secondary {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.body-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.body-text-medium {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.5;
}

/* Sistema de colores consistente */
.text-brand-primary { color: var(--qrico-red-primary); }
.text-brand-secondary { color: var(--qrico-gold); }
.text-neutral-primary { color: var(--qrico-charcoal); }
.text-neutral-secondary { color: var(--qrico-slate); }

.bg-brand-primary { background-color: var(--qrico-red-primary); }
.bg-brand-secondary { background-color: var(--qrico-gold); }
.bg-neutral-light { background-color: var(--qrico-light); }

/* Borders consistentes */
.border-radius-sm { border-radius: 8px; }
.border-radius-md { border-radius: 12px; }
.border-radius-lg { border-radius: 16px; }
.border-radius-xl { border-radius: 24px; }

/* === ACCESIBILIDAD (WCAG) === */

/* Skip links */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--qrico-charcoal);
    color: var(--qrico-white);
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 16px;
}

/* Contraste mejorado para textos */
.text-high-contrast {
    color: var(--qrico-charcoal);
    font-weight: 600;
}

/* Focus management mejorado */
.focus-trap {
    outline: none;
}

.focus-trap:focus-within {
    outline: 2px solid var(--qrico-gold);
    outline-offset: 2px;
}

/* Improved click targets */
.click-target {
    position: relative;
    z-index: 1;
}

.click-target::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    z-index: -1;
}

/* Screen reader improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: inherit;
    margin: inherit;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Error states */
.error-state {
    border: 2px solid #DC2626;
    background-color: #FEF2F2;
}

.error-message {
    color: #DC2626;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 4px;
}

/* Success states */
.success-state {
    border: 2px solid #059669;
    background-color: #ECFDF5;
}

.success-message {
    color: #059669;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 4px;
}

/* Custom Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--qrico-red-primary), var(--qrico-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.neumorphism {
    background: var(--qrico-light);
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.1),
        -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.neumorphism-inset {
    background: var(--qrico-light);
    box-shadow: 
        inset 8px 8px 16px rgba(0, 0, 0, 0.1),
        inset -8px -8px 16px rgba(255, 255, 255, 0.8);
}

/* End of Stylesheet */