/**
  @license Copyleft
  @copyright MetodologIA
  @author Javier Montaño
  @technology Antigravity | GoogleAI Studio | Gemini 3 Pro | Gemini 3 Flash
  @poweredBy Pristino Agent
 */

/**
 * MetodologIA Components
 * Botones, Cards, Navegación, Footers, Animaciones.
 */

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.btn-gold {
    background: var(--brand-gold);
    color: #000;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px var(--brand-gold-glow);
    text-decoration: none;
}

.btn-gold:hover {
    background: var(--brand-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--brand-gold-glow);
}

/* CTA Primary: Color-Swap Hover */
.cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--brand-yellow);
    color: #000;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border-radius: 99px; /* Pill shape standard */
    border: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px var(--brand-gold-glow);
}

.cta-primary:hover {
    background: var(--brand-gold);
    color: #000;
    box-shadow: 0 10px 30px var(--brand-gold-glow);
    transform: scale(1.02) translateY(-2px);
}

/* CTA Secondary: Subtle Link */
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid var(--brand-gold-glow);
    padding-bottom: 0.25rem;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.cta-secondary:hover {
    color: var(--brand-gold);
    border-color: var(--brand-gold);
}

.cta-secondary i, .cta-secondary svg {
    transition: transform 0.25s ease;
}

.cta-secondary:hover i, .cta-secondary:hover svg {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════
   CARDS (GLASSMORPHISM)
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   CARDS (PREMIUM GLASSMORPHISM v4.0 - GPU Optimized)
   ═══════════════════════════════════════════════════════════════ */
.card-glass {
    background: var(--bg-elevated);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    /* GPU-only transitions: transform ONLY (no box-shadow) */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.card-glass:hover {
    transform: translateY(-4px) scale(1.01);
    /* Static shadow on hover - no transition */
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px var(--brand-gold-glow);
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM TEXT UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.highlight-ia-premium {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--brand-gold); /* Fallback */
    font-weight: 900;
}

.highlight-ia-yellow {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--brand-gold); /* Fallback */
    font-weight: 800;
}

.highlight-metodologia {
    color: white;
    font-weight: 900;
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM BUTTONS (Glow - GPU Optimized)
   ═══════════════════════════════════════════════════════════════ */
.nav-cta-glow { 
    position: relative; 
    padding: 0.6rem 1.25rem; 
    background: var(--brand-gold); 
    color: #000; 
    font-size: 0.8rem; 
    font-weight: 700; 
    text-decoration: none; 
    border-radius: 0.75rem; 
    box-shadow: 0 4px 15px var(--brand-gold-glow); 
    /* GPU-only: transform and box-shadow */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    border: none;
    cursor: pointer;
    will-change: transform;
}

.nav-cta-glow:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px var(--brand-gold-glow); 
}

/* ═══════════════════════════════════════════════════════════════
   GANTT / ROADMAP COMPONENTS (Dossier Standard)
   ═══════════════════════════════════════════════════════════════ */
.gantt-lane {
    position: relative;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.gantt-lane:last-child { border-bottom: none; }

.gantt-bar {
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.gantt-bar:hover {
    transform: scale(1.02) translateY(-2px);
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Bar Variants */
.bar-gold { background: linear-gradient(90deg, rgba(234, 179, 8, 0.2) 0%, rgba(234, 179, 8, 0.4) 100%); border: 1px solid rgba(234, 179, 8, 0.3); color: #facc15; }
.bar-cyan { background: linear-gradient(90deg, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.4) 100%); border: 1px solid rgba(6, 182, 212, 0.3); color: #22d3ee; }
.bar-blue { background: linear-gradient(90deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.4) 100%); border: 1px solid rgba(59, 130, 246, 0.3); color: #60a5fa; }


/* ═══════════════════════════════════════════════════════════════
   UTILITIES (Brand Colors)
   ═══════════════════════════════════════════════════════════════ */
.bg-brand-gold { background-color: var(--brand-gold); }
.bg-brand-yellow { background-color: var(--brand-yellow); }
.text-brand-gold { color: var(--brand-gold); }
.text-brand-yellow { color: var(--brand-yellow); }
.border-brand-gold { border-color: var(--brand-gold); }

.hover-bg-brand-gold:hover { background-color: var(--brand-gold); transition: background-color 0.3s ease; }
.hover-text-brand-gold:hover { color: var(--brand-gold); transition: color 0.3s ease; }

/* Ensure cards don't overflow on horizontal layouts */
@media (min-width: 768px) and (max-width: 1080px) {
    .grid.md\:grid-cols-3 {
        gap: 1rem;
    }
    .card-glass {
        padding: 1.25rem;
    }
}

.card-interaction {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-interaction:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION (Golden Reference - Homologated)
   ═══════════════════════════════════════════════════════════════ */
.premium-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: hsla(220, 34%, 18%, 0.85); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.nav-container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; height: 4.5rem; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; }
.nav-logo-link { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo-link:hover .logo-svg { transform: scale(1.05) rotate(3deg); }
.nav-logo-link h1 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; color: white; display: flex; align-items: center; }
.nav-tagline-modern { 
    display: flex; 
    align-items: center; 
    gap: 0.4rem; 
    opacity: 0.9; 
    margin-left: 2.75rem; /* Precise alignment with "Metodolog" */
    margin-top: -0.25rem;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    pointer-events: none;
}
.tagline-separator { width: 1rem; height: 1px; background: rgba(255, 255, 255, 0.2); }
.tagline-text { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: white; }
.logo-svg { filter: drop-shadow(0 0 8px var(--brand-gold-glow)); transition: transform 0.3s ease; }
.nav-cta-glow { position: relative; padding: 0.5rem 1.1rem; background: var(--gradient-gold); color: #020617 !important; font-size: 0.75rem; font-weight: 700; text-decoration: none; border-radius: 0.65rem; box-shadow: 0 0 15px var(--brand-gold-glow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.nav-cta-glow:hover { transform: translateY(-1px); box-shadow: 0 0 25px rgba(255, 215, 0, 0.35); }

/* GPT Assistant Buttons */
.gpt-btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.35rem; 
    padding: 0.4rem 0.75rem; 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.12); 
    border-radius: 0.5rem; 
    color: rgba(255, 255, 255, 0.85); 
    font-size: 0.7rem; 
    font-weight: 600; 
    text-decoration: none; 
    transition: all 0.25s ease; 
    white-space: nowrap;
}
.gpt-btn:hover { 
    background: var(--brand-gold-glow); 
    border-color: var(--brand-gold-dark); 
    color: var(--brand-gold); 
    transform: translateY(-1px); 
}
.gpt-btn svg { 
    flex-shrink: 0; 
}

/* GPT Button Large - For page sections */
.gpt-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}
.gpt-btn-large:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--brand-gold);
    color: var(--brand-gold);
    transform: translateY(-2px);
}

.nav-glow-line { height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.05) 20%, var(--brand-gold-glow) 50%, rgba(255, 215, 0, 0.05) 80%, transparent 100%); bottom: 0; position: absolute; width: 100%; opacity: 0.6; }

/* Mobile Menu Button */
.mobile-menu-btn { display: flex; padding: 0.5rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 0.5rem; color: white; cursor: pointer; }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

/* ═══════════════════════════════════════════════════════════════
   GOLDEN LAYOUT COMPONENTS: QUOTE & BREADCRUMB
   ═══════════════════════════════════════════════════════════════ */

/* 1. Standard Space */
.layout-space {
    height: 1.5rem;
    width: 100%;
}

/* 2. Hook Quote (Centered with Divider Lines) */
.hook-quote-section {
    position: relative;
    padding: 5.5rem 0 0.5rem 0; /* Adjusted: closer to header, tighter */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hook-quote-divider {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 80%, transparent);
}

.hook-quote-content {
    position: relative;
    z-index: 10;
    background: var(--bg-primary);
    padding: 0 2rem;
    text-align: center;
}

.hook-quote-text {
    font-family: var(--font-mono, 'Jost', monospace);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--brand-gold);
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

@media (min-width: 768px) {
    .hook-quote-text {
        font-size: 0.75rem;
    }
}

.hook-quote-section:hover .hook-quote-text {
    opacity: 1;
}

/* 3. Golden Breadcrumb (Always Centered) */
.breadcrumb-nav {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--brand-gold);
    letter-spacing: 0.1em;
    font-weight: 600;
}

.breadcrumb-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--brand-gold);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.1);
}

.breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer-link {
    position: relative;
    color: var(--text-secondary); /* Using Lightest Gray Token */
    transition: color 0.25s ease, transform 0.25s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--brand-yellow);
    transform: translateX(4px);
}

.footer-link-active {
    color: var(--brand-gold) !important;
    font-weight: 600;
}

.footer-link-active::before {
    content: '›';
    margin-right: 0.5rem;
    color: var(--brand-gold);
    font-weight: 700;
}

.footer-glow-line {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--brand-gold-glow) 20%, 
        var(--brand-gold-glow) 50%, 
        var(--brand-gold-glow) 80%, 
        transparent 100%);
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0.5;
}

.footer-section-title {
    position: relative;
    display: inline-block;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-gold-dark), transparent);
    opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════
   TEXT UTILITIES & GRADIENTS
   ═══════════════════════════════════════════════════════════════ */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fade-in 0.8s ease-out forwards; }

.animate-fade-in-up { animation: fade-in-up 0.6s ease-out forwards; }

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.animate-shimmer {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .animate-shimmer,
    .animate-fade-in-up,
    .nav-glow-line {
        animation: none;
    }
}

/* Modals */
.modal-overlay { 
    display: none; 
    position: fixed; 
    inset: 0; 
    z-index: 100; 
    background: rgba(2, 6, 23, 0.95); 
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px); 
    align-items: center; 
    justify-content: center;
}
.modal-overlay.active { display: flex; opacity: 1; visibility: visible; }

.modal-content {
    position: relative;
    background: rgba(15, 23, 42, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--brand-gold-dark);
    transform: rotate(90deg);
}



/* ═══════════════════════════════════════════════════════════════
   UI MICRO-COMPONENTS (Ruta & General)
   ═══════════════════════════════════════════════════════════════ */
.badge-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: var(--bg-hover);
    border: 1px solid var(--border-default);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.icon-box-feature {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.card-feature:hover .icon-box-feature {
    transform: scale(1.1);
}

/* Pricing/Selection Cards */
.pricing-option-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(15, 23, 42, 0.5); /* slate-900/50 - Keeping semi-transparent slate */
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-option-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.7);
}

.pricing-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
    background: transparent;
    transition: all 0.2s;
}

/* Color variations for Icon Box */



/* ═══════════════════════════════════════════════════════════════
   BADGES & TAGS
   ═══════════════════════════════════════════════════════════════ */
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; border: 1.5px solid;
    transition: all 0.4s;
}
.hero-badge .badge-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: currentColor; animation: badge-pulse 2s infinite; }
@keyframes badge-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.2); } }

.hero-badge-gold { background: var(--brand-gold-glow); border-color: var(--brand-gold-glow); color: var(--brand-gold-dark); }
.hero-badge-red { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.4); color: #f87171; }
.hero-badge-cyan { background: rgba(6, 182, 212, 0.1); border-color: rgba(6, 182, 212, 0.4); color: #22d3ee; }
.hero-badge-purple { background: rgba(168, 85, 247, 0.1); border-color: rgba(168, 85, 247, 0.4); color: #c084fc; }
.hero-badge-emerald { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.4); color: #34d399; }

/* ═══════════════════════════════════════════════════════════════
   TOOLTIPS (Smart Context)
   ═══════════════════════════════════════════════════════════════ */
.tooltip-trigger {
    position: relative;
    cursor: help;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.35rem; /* Gap from text */
    color: #94a3b8; /* Lightened from #64748b */
    transition: color 0.2s;
}

.tooltip-trigger:hover {
    color: var(--brand-gold);
}

.tooltip-content {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    width: max-content;
    max-width: 220px;
    padding: 0.6rem 0.8rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #f1f5f9; /* Lightened from #e2e8f0 */
    font-size: 0.7rem;
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.4;
    text-transform: none;
    text-align: center;
    letter-spacing: normal;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 50;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.tooltip-trigger:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px);
}

.tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(15, 23, 42, 0.95) transparent transparent transparent;
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT & CARDS (Added from Servicios/Vision audit)
   ═══════════════════════════════════════════════════════════════ */

/* Standard Container */
.container-max {
    max-width: 80rem; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
}

/* Service Card Hover (Servicios) */
.service-card { 
    cursor: pointer; 
    transition: all 0.2s; 
}
.service-card:hover { 
    transform: translateY(-4px); 
}
