@import '_content/TransitoComponentes/TransitoComponentes.scv0vshjvu.bundle.scp.css';

/* /Pages/IA/ChatAgent.razor.rz.scp.css */
.chat-container[b-hdkt0zc81j] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 120px);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.chat-header[b-hdkt0zc81j] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.chat-header h3[b-hdkt0zc81j] {
    margin: 0;
    font-weight: 600;
}

.chat-actions[b-hdkt0zc81j] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chat-messages[b-hdkt0zc81j] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f8f9fa;
}

.chat-messages[b-hdkt0zc81j]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-hdkt0zc81j]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chat-messages[b-hdkt0zc81j]::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 3px;
}

.welcome-message[b-hdkt0zc81j] {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.welcome-message h4[b-hdkt0zc81j] {
    color: #667eea;
    margin-bottom: 1rem;
}

.welcome-message ul[b-hdkt0zc81j] {
    text-align: left;
    display: inline-block;
    margin: 1.5rem 0;
}

.welcome-message li[b-hdkt0zc81j] {
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.message[b-hdkt0zc81j] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: fadeIn-b-hdkt0zc81j 0.4s ease-out;
}

.user-message[b-hdkt0zc81j] {
    flex-direction: row-reverse;
}

.message-avatar[b-hdkt0zc81j] {
    font-size: 2.2rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    flex-shrink: 0;
}

.user-message .message-avatar[b-hdkt0zc81j] {
    background: #667eea;
}

.message-content[b-hdkt0zc81j] {
    max-width: 75%;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.user-message .message-content[b-hdkt0zc81j] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.message-text[b-hdkt0zc81j] {
    word-wrap: break-word;
    white-space: pre-wrap;
    line-height: 1.5;
}

.message-actions[b-hdkt0zc81j] {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-style: italic;
    color: #6c757d;
}

.user-message .message-actions[b-hdkt0zc81j] {
    border-top-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
}

.message-time[b-hdkt0zc81j] {
    font-size: 0.75rem;
    color: #adb5bd;
    margin-top: 0.5rem;
    text-align: right;
}

.user-message .message-time[b-hdkt0zc81j] {
    color: rgba(255,255,255,0.7);
}

.typing-indicator[b-hdkt0zc81j] {
    display: flex;
    gap: 6px;
    padding: 0.75rem 0;
    align-items: center;
}

.typing-indicator span[b-hdkt0zc81j] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #667eea;
    animation: typing-b-hdkt0zc81j 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2)[b-hdkt0zc81j] {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3)[b-hdkt0zc81j] {
    animation-delay: 0.4s;
}

.chat-input[b-hdkt0zc81j] {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e9ecef;
}

.chat-input input[b-hdkt0zc81j] {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.chat-input input:focus[b-hdkt0zc81j] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.chat-input button[b-hdkt0zc81j] {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: transform 0.2s ease;
}

.chat-input button:hover:not(:disabled)[b-hdkt0zc81j] {
    transform: translateY(-1px);
}

.chat-input button:disabled[b-hdkt0zc81j] {
    opacity: 0.6;
    cursor: not-allowed;
}

@keyframes fadeIn-b-hdkt0zc81j {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typing-b-hdkt0zc81j {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-12px);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .chat-container[b-hdkt0zc81j] {
        height: calc(100vh - 80px);
        margin: 0;
        border-radius: 0;
    }
    
    .message-content[b-hdkt0zc81j] {
        max-width: 85%;
    }
    
    .chat-header[b-hdkt0zc81j] {
        padding: 1rem;
    }
    
    .chat-header h3[b-hdkt0zc81j] {
        font-size: 1.1rem;
    }
    
    .chat-actions[b-hdkt0zc81j] {
        gap: 0.5rem;
    }
    
    .welcome-message[b-hdkt0zc81j] {
        padding: 2rem 1rem;
    }
}
/* /Pages/Index.razor.rz.scp.css */
/* Clean and professional styles for Index.razor */

/* Hero Section */
.hero-section[b-uzy25gzwvd] {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.hero-title[b-uzy25gzwvd] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description[b-uzy25gzwvd] {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Main Content */
.main-content[b-uzy25gzwvd] {
    padding: 4rem 0;
}

.services-grid[b-uzy25gzwvd] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item[b-uzy25gzwvd] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    outline: none;
}

.service-item:hover[b-uzy25gzwvd] {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.service-item:focus[b-uzy25gzwvd] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.service-icon[b-uzy25gzwvd] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #f1f5f9;
    border-radius: 50%;
    color: #3b82f6;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon[b-uzy25gzwvd] {
    background: #3b82f6;
    color: white;
    transform: scale(1.1);
}

.service-item h3[b-uzy25gzwvd] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.service-item p[b-uzy25gzwvd] {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-arrow[b-uzy25gzwvd] {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.service-item:hover .service-arrow[b-uzy25gzwvd] {
    color: #3b82f6;
    transform: translateX(4px);
}

/* Info Section */
.info-section[b-uzy25gzwvd] {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid #e2e8f0;
}

.info-content h2[b-uzy25gzwvd] {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.info-content p[b-uzy25gzwvd] {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-list[b-uzy25gzwvd] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li[b-uzy25gzwvd] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #475569;
}

.feature-list i[b-uzy25gzwvd] {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

.info-stats[b-uzy25gzwvd] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 2rem;
}

.stat-card[b-uzy25gzwvd] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number[b-uzy25gzwvd] {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label[b-uzy25gzwvd] {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title[b-uzy25gzwvd] {
        font-size: 2rem;
    }

    .hero-description[b-uzy25gzwvd] {
        font-size: 1rem;
    }

    .main-content[b-uzy25gzwvd] {
        padding: 3rem 0;
    }

    .services-grid[b-uzy25gzwvd] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-item[b-uzy25gzwvd] {
        padding: 1.5rem;
    }

    .info-section[b-uzy25gzwvd] {
        padding: 3rem 0;
    }

    .info-stats[b-uzy25gzwvd] {
        padding-left: 0;
        margin-top: 2rem;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card[b-uzy25gzwvd] {
        flex: 1;
        min-width: 120px;
    }

    .info-content h2[b-uzy25gzwvd] {
        font-size: 1.75rem;
    }

    .info-content p[b-uzy25gzwvd] {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section[b-uzy25gzwvd] {
        padding: 3rem 0;
    }

    .hero-title[b-uzy25gzwvd] {
        font-size: 1.75rem;
    }

    .service-item[b-uzy25gzwvd] {
        padding: 1.25rem;
    }

    .service-icon[b-uzy25gzwvd] {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }

    .info-stats[b-uzy25gzwvd] {
        flex-direction: column;
    }
}

/* Focus states for accessibility */
.service-item:focus-visible[b-uzy25gzwvd] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Smooth scrolling */
html[b-uzy25gzwvd] {
    scroll-behavior: smooth;
}

/* Improved button-like behavior */
.service-item[b-uzy25gzwvd] {
    user-select: none;
}

.service-item:active[b-uzy25gzwvd] {
    transform: translateY(0);
}
/* /Pages/Tramites.razor.rz.scp.css */
/* Scoped styles for Tramites.razor */

.hero-section[b-b4wacfj661] {
    background: linear-gradient(135deg, rgba(13,110,253,0.08) 0%, rgba(25,135,84,0.08) 100%);
    border-radius: 1rem;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
}

.hero-icon[b-b4wacfj661] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tramites-grid[b-b4wacfj661] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .tramites-grid[b-b4wacfj661] {
        grid-template-columns: 1fr;
    }
}

.tramite-card[b-b4wacfj661] {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: .75rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    transition: all .2s ease;
    overflow: hidden;
    cursor: pointer;
}

.tramite-card:hover[b-b4wacfj661] {
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    border-color: rgba(13,110,253,0.3);
    transform: translateY(-2px);
}

.tramite-header[b-b4wacfj661] {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(to right, rgba(13,110,253,0.03), transparent);
}

.tramite-icon[b-b4wacfj661] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border-radius: .5rem;
    color: white;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.tramite-title[b-b4wacfj661] {
    flex: 1;
}

.tramite-title h5[b-b4wacfj661] {
    margin: 0 0 .25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

.tramite-badge[b-b4wacfj661] {
    display: inline-block;
    padding: .25rem .5rem;
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    border-radius: .25rem;
    font-size: .75rem;
    font-weight: 500;
}

.tramite-toggle[b-b4wacfj661] {
    color: #6c757d;
    font-size: 1rem;
    transition: transform .2s ease;
}

.tramite-card:hover .tramite-toggle[b-b4wacfj661] {
    color: #0d6efd;
}

.tramite-body[b-b4wacfj661] {
    padding: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    animation: slideDown-b-b4wacfj661 .3s ease;
}

@keyframes slideDown-b-b4wacfj661 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.requisitos-title[b-b4wacfj661] {
    font-weight: 600;
    color: #495057;
    margin-bottom: .75rem;
    font-size: .95rem;
}

.requisitos-list[b-b4wacfj661] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requisitos-list li[b-b4wacfj661] {
    padding: .5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: .9rem;
    line-height: 1.5;
}

.requisitos-list li:last-child[b-b4wacfj661] {
    border-bottom: none;
}

.requisitos-list i[b-b4wacfj661] {
    font-size: .85rem;
}

.alert[b-b4wacfj661] {
    border-radius: .5rem;
    font-size: .9rem;
}

.alert-info[b-b4wacfj661] {
    background-color: rgba(13,202,240,0.1);
    border-color: rgba(13,202,240,0.2);
    color: #055160;
}

.alert-warning[b-b4wacfj661] {
    background-color: rgba(255,193,7,0.1);
    border-color: rgba(255,193,7,0.2);
    color: #664d03;
}

.alert-link[b-b4wacfj661] {
    font-weight: 600;
    text-decoration: underline;
}
/* /Shared/Header.razor.rz.scp.css */
.navbar.header-navbar[b-8wnqikgnds] {
    flex-grow: 0;
    flex-wrap: nowrap;
    border: none;
    background-color: inherit;
    border-radius: 0;
    height: 3.5rem;
    min-height: 3.5rem;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.12);
    justify-content: flex-start;
}

.header-navbar .navbar-toggler[b-8wnqikgnds] {
    outline: none;
    border-radius: 0;
    padding-left: .75rem;
    padding-right: .75rem;
    box-shadow: none;
    align-self: stretch;
}

.header-navbar .navbar-toggler .navbar-toggler-icon[b-8wnqikgnds] {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    background-color: transparent !important;
    height: 2rem;
    width: 2rem;
}

.title[b-8wnqikgnds] {
    font-size: 1.1rem;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 350px) {
    .title[b-8wnqikgnds] {
        font-size: inherit;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-jdy3j77vlw] {
    height: 100%;
    overflow: hidden;
    background-color: inherit;
}
[b-jdy3j77vlw] .page-layout,
[b-jdy3j77vlw] .page-layout > .dxbl-gridlayout-root,
[b-jdy3j77vlw] .layout-item {
    background-color: var(--bs-body-bg, var(--dxbl-body-bg, #fff));
}

[b-jdy3j77vlw] .content {
    padding: 1.1rem 2rem 0 2rem;
    overflow: auto;
}

@media (max-width: 1199.98px) {
    [b-jdy3j77vlw] .page-layout > .dxbl-gridlayout-root {
        grid-template-columns: minmax(0, 1fr) !important;
    }
}

[b-jdy3j77vlw] .fit-width {
    max-width: 100%;
}

[b-jdy3j77vlw] .mw-1100 {
    max-width: 1100px;
}

:deep .app-content[b-jdy3j77vlw] {
    display: flex;
    justify-content: center;
    padding: 1.25rem 1.5rem 0 1.5rem;
    background-color: var(--bs-body-bg, var(--dxbl-body-bg, #fff));
}

:deep .content-wrapper[b-jdy3j77vlw] {
    width: 100%;
}

:deep .content-inner[b-jdy3j77vlw] {
    width: 100%;
    /* Centrado y ancho máximo para una experiencia más premium */
    max-width: clamp(960px, 92vw, 1280px);
    margin: 0 auto;
}

/* Utilidad para ocupar todo el ancho cuando sea necesario (reportes, tablas grandes, etc.) */
:deep .full-bleed .content-inner[b-jdy3j77vlw],
:deep .content-inner.full-bleed[b-jdy3j77vlw] {
    max-width: none;
}

/* Opción para páginas/componente de ancho completo: envuelva su contenido en un div.full-bleed-page */
:deep .content-inner > .full-bleed-page[b-jdy3j77vlw] {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
}

@media (max-width: 991.98px) {
    :deep .content-inner[b-jdy3j77vlw] {
        max-width: 100%;
    }
    :deep .content-inner > .full-bleed-page[b-jdy3j77vlw] {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
}

.page[b-jdy3j77vlw] {
    height: 100%;
    overflow: hidden;
    background-color: inherit;
}
:deep .page-layout[b-jdy3j77vlw],
:deep .page-layout > .dxbl-gridlayout-root[b-jdy3j77vlw],
:deep .layout-item[b-jdy3j77vlw] {
    background-color: var(--bs-body-bg, var(--dxbl-body-bg, #fff));
}

:deep .content[b-jdy3j77vlw] {
    padding: 1.1rem 2rem 0 2rem;
    overflow: auto;
}

@media (max-width: 1199.98px) {
    :deep .page-layout > .dxbl-gridlayout-root[b-jdy3j77vlw] {
        grid-template-columns: minmax(0, 1fr) !important;
    }
}

:deep .fit-width[b-jdy3j77vlw] {
    max-width: 100%;
}

:deep .mw-1100[b-jdy3j77vlw] {
    max-width: 1100px;
}
/* /Shared/NavMenu.razor.rz.scp.css */
.sidebar[b-c9nbvid0hk] {
    min-width: 300px;
    max-width: 300px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.16);
    transition: transform 0.1s ease-out;
    height: 100%;
    max-height: 100%;
    overflow: auto;
    background-color: var(--bs-body-bg, var(--dxbl-body-bg, #fff));
}

.sidebar.collapse[b-c9nbvid0hk] {
    display: none;
}

.sidebar.expand[b-c9nbvid0hk] {
    display: block;
}

@media (max-width: 1199.98px) {
    .sidebar[b-c9nbvid0hk] {
        display: none;
    }

    .sidebar.expand[b-c9nbvid0hk] {
        position: fixed;
        top: 3.5rem;
        left: 0;
        height: auto;
        min-width: 100%;
        z-index: 1050;
    }
}

[b-c9nbvid0hk] .app-sidebar {
    --dxbl-treeview-spacing-x: 0.5rem;
    --dxbl-treeview-spacing-y: 1rem;
}

[b-c9nbvid0hk] .app-sidebar .root-item > :first-child {
    --dxbl-treeview-font-weight: 600;
}

[b-c9nbvid0hk] .app-sidebar .root-item > :only-child:not(.dxbl-treeview-tmpl) > button {
    display: none;
}

@media (max-width: 1199.98px) {
    [b-c9nbvid0hk] .app-sidebar {
        padding-bottom: 0;
    }
}
