@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('material-design-iconic-font/css/materialdesignicons.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/*ESTILOS NUEVO DISEÑO*/
body {
    font-family: 'Inter', sans-serif !important;
    background-color: #f8fafc !important;
    color: #1e293b !important;
    overflow-x: hidden;
}

.cursor-pointer{
    cursor:pointer;
}

/* Efecto Glassmorphism Mejorado */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

/* Sombras Suaves y Profundas */
.shadow-soft-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-soft-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
}

.shadow-soft-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-soft-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.05);
}

.shadow-soft-2xl {
    box-shadow: 0 25px 50px -12px rgb(0, 0, 0, 0,26);
}

/* Efecto de Elevación al pasar el cursor */
.hover-lift {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

    .hover-lift:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.1), 0 10px 10px -5px rgba(99, 102, 241, 0.04);
    }

/* Brillo para botones y elementos primarios */
.shadow-glow {
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

    .shadow-glow:hover {
        box-shadow: 0 0 25px rgba(99, 102, 241, 0.3);
    }

/* Degradados */
.gradient-bg {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Utilidad para ocultar scrollbars */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

/* Estilos de Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #cbd5e1;
    }

/* Transiciones suaves para todos los elementos interactivos */
button, a, input {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

    /* Mejora visual para inputs enfocados */
    input:focus {
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
        border-color: var(--primary);
    }

/* Card Styling extra */
.app-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.text-transparent {
    color: transparent;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.gradientazul-pupura {
    background: linear-gradient(90deg, #3b82f6 0%, #9333ea 100%);
}
.apphub-pro {
    /* Tipografía similar a la imagen */
    font-family: sans-serif;
    font-weight: 800; /* Extra bold */
    font-size: 2rem;
    letter-spacing: -0.02em;
    /* Efecto de degradado en el texto */
    background: linear-gradient(to right, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text; /* Recorta el fondo con la forma del texto */
    -webkit-text-fill-color: transparent; /* Hace el color del texto transparente para ver el fondo */
    background-clip: text;
}
.btn-primero-fondo{
    background-color:#6366f1 !important;
    color:#fff !important;
    font-weight:bold !important;
}
.barra-navegacion {
    background-color: #f8fafc !important;
    position:fixed;
    z-index:9;
    width:100%;
}
/* Contenedor principal para centrar en pantalla */
.hero-container {
    min-height: 100vh; /* Altura completa de la pantalla */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrado vertical */
    align-items: center; /* Centrado horizontal */
   /* background-color: #ffffff;*/
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Estilos del Título Principal */
.main-title {
    font-weight: 800; /* Extra bold para igualar la imagen */
    color: #111827; /* Gris muy oscuro casi negro */
    font-size: 3rem; /* Ajusta el tamaño según necesites */
    margin-bottom: 1rem;
    line-height: 1.1;
}

/* Estilo para la línea con degradado */
.gradient-text {
    display: block; /* Para que baje a la siguiente línea */
    background: linear-gradient(to right, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Descripción */
.description-text {
    color: #4b5563; /* Gris intermedio */
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Botón (Simulando el estilo de la imagen para el TelerikButton) */
.btn-primero-fondo {
    background-color: #4f46e5 !important;
    border: none !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
    transition: transform 0.2s;
}

    .btn-primero-fondo:hover {
        transform: translateY(-2px);
        background-color: #4338ca !important;
    }

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.text-gray-500 {
   opacity: 1;
   color: rgb(107 114 128);
}
.text-small {
    font-size:0.9em;
}

.modal-entrar{
   
}
.custom-card {
    border-radius: 25px !important; /* Ajusta según la captura */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: 2px solid transparent; /* Reservamos el espacio para el borde */
}

    /* Opcional: efecto al pasar el mouse */
    .custom-card:hover {
        transform: translateY(-5px);
    }
    .custom-card.is-selected {
        transform: scale(1.03); /* Crece ligeramente */
        border-color: #e2e2e2;
        box-shadow: 0 20px 40px rgba(93, 95, 239, 0.2) !important; /* Sombra profunda y suave */
        z-index: 10; /* Asegura que la sombra quede por encima de las vecinas */
        background-color: #ffffff;
    }
/* Efecto de desvanecimiento para las NO seleccionadas */
.cards-container.has-selection .custom-card:not(.is-selected) {
    opacity: 0.7;
    filter: grayscale(20%);
}
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02); /* Opcional: un ligero aumento de tamaño */
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

footer {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px); /* Efecto cristal igual que tu nav */
    margin-top: 2rem; /* Espacio mínimo entre el contenido y el pie */
}

.logo-flotante{
 position: absolute;
 bottom:5px;
 right:22px;
}


.btn-pill
{
    background-color: #6366f1 !important;
    color:#fff !important;
    font-size:0.9em !important;
}
/*FIN ESTILOS NUEVO DISEÑO*/
html, body {
    /* background: #fff;
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    overflow: hidden;
    color: #263238;
    font-weight: 300;
    height: 100%;
    background-image: url('/images/back_img.png') !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;*/
}

#header-section.main-header {
    border-bottom: 1px solid #d2d6de;
    height: 55px;
    min-height: 55px;
    max-height: 55px;
    background: #fff;
    color: #000;
    position: sticky !important;
    z-index: 1001 !important;
    top: 0;
    box-shadow: -1px 2px 7px 0px #00000040;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.ojo-pass {
    width: 25px;
    text-align: center;
}

.fondo-inicio {
    background: url('images/supderechasombra.png'), url('images/infeizqui.png');
    background-repeat: no-repeat;
    background-position: top left, bottom right;
    background-size: 50%,50%;
    height: 50%;
}

.btn-entrar {
    background-color: #002a57 !important;
    color: #fff;
    font-weight: bold;
}
