/* /Components/ArchitectSection.razor.rz.scp.css */
.architect-container[b-2mdstq8hbm] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #0f172a;
    position: relative;
}

.content-grid[b-2mdstq8hbm] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.section-title[b-2mdstq8hbm] {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #4f46e5;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle[b-2mdstq8hbm] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.2;
    margin-bottom: 2rem;
    margin-top: 0;
}

.philosophy-text p[b-2mdstq8hbm] {
    color: #94a3b8;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stats-row[b-2mdstq8hbm] {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item[b-2mdstq8hbm] {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat-number[b-2mdstq8hbm] {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f8fafc;
    transition: color 0.3s ease;
}

.stat-label[b-2mdstq8hbm] {
    color: #4f46e5;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* --- MAGIA DEL BOTÓN SECRETO --- */
.secret-trigger[b-2mdstq8hbm] {
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem; /* Compensa el padding para no romper el layout */
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.secret-hover-text[b-2mdstq8hbm] {
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    color: #6366f1;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.secret-trigger:hover[b-2mdstq8hbm] {
    background-color: rgba(79, 70, 229, 0.1);
}

    .secret-trigger:hover .stat-number[b-2mdstq8hbm] {
        color: #818cf8;
    }

    .secret-trigger:hover .secret-hover-text[b-2mdstq8hbm] {
        opacity: 1;
        transform: translateY(0);
    }

/* Columna de la Imagen */
.image-column[b-2mdstq8hbm] {
    position: relative;
    display: flex;
    justify-content: center;
}

.glass-panel[b-2mdstq8hbm] {
    position: relative;
    width: 100%;
    aspect-ratio: 4/4;
    background-color: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.decorative-blur[b-2mdstq8hbm] {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background-color: rgba(79, 70, 229, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.architect-final-image[b-2mdstq8hbm] {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.glass-panel:hover .architect-final-image[b-2mdstq8hbm] {
    opacity: 1;
}

/* --- RESPONSIVIDAD MEJORADA --- */
@media (max-width: 900px) {
    .content-grid[b-2mdstq8hbm] {
        grid-template-columns: 1fr;
        gap: 2rem; /* Menos espacio entre textos e imagen */
    }

    .section-subtitle[b-2mdstq8hbm] {
        font-size: 1.75rem; /* Reducción drástica para móviles */
        margin-bottom: 1rem;
    }

    .philosophy-text p[b-2mdstq8hbm] {
        font-size: 1rem;
    }

    .stats-row[b-2mdstq8hbm] {
        gap: 1.5rem;
        flex-wrap: wrap; /* Permite que las métricas bajen de línea si no caben */
    }

    .stat-number[b-2mdstq8hbm] {
        font-size: 2rem;
    }

    .image-column[b-2mdstq8hbm] {
        order: -1;
    }

    .glass-panel[b-2mdstq8hbm] {
        aspect-ratio: 16/9; /* En móvil, la imagen se vuelve apaisada para no comerse toda la pantalla */
    }
}
/* /Components/ConnectionSection.razor.rz.scp.css */
.connection-container[b-xmqsxkzy1x] {
    width: 100%;
    height: 100vh; /* Ocupa exactamente el lienzo completo */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #0f172a;
    position: relative;
    overflow: hidden;
}

/* El brillo de cierre en la base de la pantalla */
.ambient-glow-bottom[b-xmqsxkzy1x] {
    position: absolute;
    bottom: -15rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40rem;
    height: 30rem;
    background-color: rgba(79, 70, 229, 0.15); /* Indigo suave */
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.contact-content[b-xmqsxkzy1x] {
    z-index: 10;
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin-top: auto; /* Empuja el contenido hacia el centro */
    margin-bottom: auto;
}

.section-title[b-xmqsxkzy1x] {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #4f46e5;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle[b-xmqsxkzy1x] {
    font-size: 3rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.section-desc[b-xmqsxkzy1x] {
    color: #94a3b8;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 4rem;
}

/* Tarjetas de Contacto */
.contact-methods[b-xmqsxkzy1x] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.contact-glass-card[b-xmqsxkzy1x] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    min-width: 300px;
    text-align: left;
    text-decoration: none; /* Quita el subrayado del link */
    transition: all 0.3s ease;
}

    .contact-glass-card.hoverable:hover[b-xmqsxkzy1x] {
        transform: translateY(-5px);
        background-color: rgba(30, 41, 59, 0.6);
        border-color: rgba(79, 70, 229, 0.4);
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    }

.icon-box[b-xmqsxkzy1x] {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(15, 23, 42, 0.6);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5; /* Icono color Indigo */
    flex-shrink: 0; /* Previene que el ícono se apachurre en celulares */
}

    .icon-box svg[b-xmqsxkzy1x] {
        width: 2rem;
        height: 2rem;
    }

.contact-info[b-xmqsxkzy1x] {
    display: flex;
    flex-direction: column;
    min-width: 0; /* Necesario para que el word-break funcione en flexbox */
}

.contact-label[b-xmqsxkzy1x] {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-value[b-xmqsxkzy1x] {
    color: #f8fafc;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Footer Minimalista */
.minimal-footer[b-xmqsxkzy1x] {
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
}

    .minimal-footer p[b-xmqsxkzy1x] {
        color: #64748b;
        font-size: 0.875rem;
        margin: 0;
    }

/* Responsividad para Móviles */
@media (max-width: 768px) {
    .section-subtitle[b-xmqsxkzy1x] {
        font-size: 2rem;
    }

    .contact-glass-card[b-xmqsxkzy1x] {
        width: 100%;
        min-width: unset; /* Quitamos el ancho mínimo que forzaba el scroll horizontal */
        padding: 1.2rem; /* Reducimos el padding interior para dar aire al texto */
        gap: 1rem;
    }

    .contact-value[b-xmqsxkzy1x] {
        font-size: 0.95rem; /* Letra un poco más pequeña */
        word-break: break-word; /* Red de seguridad: si no cabe, rompe la línea */
    }
}
/* /Components/EcosystemSection.razor.rz.scp.css */
.ecosystem-container[b-gm2mn4z58h] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #0f172a;
    position: relative;
}

.header-area[b-gm2mn4z58h] {
    text-align: center;
    margin-bottom: 4rem;
    z-index: 10;
}

.section-title[b-gm2mn4z58h] {
    font-size: 3rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.section-subtitle[b-gm2mn4z58h] {
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.cards-grid[b-gm2mn4z58h] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    z-index: 10;
}

.glass-card[b-gm2mn4z58h] {
    position: relative;
    background-color: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: pointer;
}

    .glass-card:hover[b-gm2mn4z58h] {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

.card-glow[b-gm2mn4z58h] {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.glass-card:hover .card-glow[b-gm2mn4z58h] {
    opacity: 0.8;
}

.icon-wrapper[b-gm2mn4z58h] {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.solution-icon[b-gm2mn4z58h] {
    width: 2rem;
    height: 2rem;
    color: #f8fafc;
}

.card-title[b-gm2mn4z58h] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.card-desc[b-gm2mn4z58h] {
    color: #94a3b8;
    line-height: 1.6;
}

.loading-pulse[b-gm2mn4z58h] {
    color: #4f46e5;
    font-size: 1.2rem;
    animation: pulse-b-gm2mn4z58h 2s infinite;
}

@keyframes pulse-b-gm2mn4z58h {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* =========================================================
   LA MAGIA MÓVIL: CARRUSEL HORIZONTAL TÁCTIL
   ========================================================= */
@media (max-width: 900px) {
    /* 1. Quitamos los padding laterales al contenedor padre para que el scroll fluya de orilla a orilla */
    .ecosystem-container[b-gm2mn4z58h] {
        padding: 2rem 0;
    }

    /* 2. Le regresamos el padding lateral solo al header para que no se pegue al borde */
    .header-area[b-gm2mn4z58h] {
        padding: 0 2rem;
        margin-bottom: 2rem;
    }

    .section-title[b-gm2mn4z58h] {
        font-size: 2.2rem;
    }

    .section-subtitle[b-gm2mn4z58h] {
        font-size: 1rem;
    }

    /* 3. Mutación del Grid a Cinta de Scroll Horizontal Magnética */
    .cards-grid[b-gm2mn4z58h] {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        /* Habilitamos el "magnetismo" al hacer swipe */
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        /* Reintegramos el padding aquí para dar espacio inicial/final y evitar recortes de sombra */
        padding: 1rem 2rem 3rem 2rem;
        gap: 1.5rem;
        width: 100vw;
        max-width: 100vw;
        /* Ocultar barra de scroll para un look nativo */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

        .cards-grid[b-gm2mn4z58h]::-webkit-scrollbar {
            display: none;
        }

    .glass-card[b-gm2mn4z58h] {
        /* 4. Dictamos el ancho: 80% de la pantalla para obligar a que se asome la tarjeta siguiente */
        flex: 0 0 80vw;
        /* Punto de anclaje magnético al soltar el dedo */
        scroll-snap-align: center;
        /* En móviles los hover extremos interfieren con el táctil, los anulamos */
        transition: box-shadow 0.4s ease;
    }

        .glass-card:hover[b-gm2mn4z58h] {
            transform: none;
        }
}
/* /Components/HeroSection.razor.rz.scp.css */
.hero-master-container[b-owpxnh5nxp] {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    background-color: #020617;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select:none;
}

.carousel-track[b-owpxnh5nxp] {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
}

/* FIX DEL JALÓN: Se agrega la transición de 'transform' al estado inactivo */
.cinematic-slide-item[b-owpxnh5nxp] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
    transition: opacity 1.5s ease-in-out, visibility 1.5s, transform 4s ease-out;
}

    /* El elemento crece gradualmente hasta 1.05 durante 5 segundos */
    .cinematic-slide-item.active[b-owpxnh5nxp] {
        opacity: 1;
        visibility: visible;
        transform: scale(1.05);
        transition: opacity 1.5s ease-in-out, transform 5s linear;
    }

/* Tipografía de los Slides */
.mega-title[b-owpxnh5nxp] {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

.quote-text[b-owpxnh5nxp] {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #e2e8f0;
    font-style: italic;
    line-height: 1.3;
    max-width: 1000px;
    margin: 0 0 1.5rem 0;
}

.quote-author[b-owpxnh5nxp] {
    font-size: 1.5rem;
    color: #6366f1;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.slide-subtitle[b-owpxnh5nxp] {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: #94a3b8;
    margin-top: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Botón Fijo */
.floating-action-area[b-owpxnh5nxp] {
    position: absolute;
    bottom: 15%;
    z-index: 20;
}

.btn-glass-elite[b-owpxnh5nxp] {
    background-color: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

    .btn-glass-elite:hover[b-owpxnh5nxp] {
        background-color: rgba(79, 70, 229, 0.4);
        border-color: rgba(99, 102, 241, 0.5);
        transform: translateY(-3px);
        box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.3);
    }

/* Brillos de Fondo */
.ambient-glow[b-owpxnh5nxp] {
    position: absolute;
    width: 40vw;
    height: 40vw;
    background-color: rgba(79, 70, 229, 0.15);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

    .ambient-glow.top-left[b-owpxnh5nxp] {
        top: -10%;
        left: -10%;
    }

    .ambient-glow.bottom-right[b-owpxnh5nxp] {
        bottom: -10%;
        right: -10%;
    }
/* /Components/UI/FloatingBrand.razor.rz.scp.css */
.floating-brand-anchor[b-bfj87zkyiw] {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 100; /* Siempre por encima de todo */
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    /* Transición suave para aparecer y desaparecer */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

    .floating-brand-anchor.hidden[b-bfj87zkyiw] {
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none; /* Para que no estorbe los clics cuando no se ve */
    }

    .floating-brand-anchor.visible[b-bfj87zkyiw] {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

.glass-sphere[b-bfj87zkyiw] {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.brand-logo[b-bfj87zkyiw] {
    width: 1.8rem;
    height: 1.8rem;
    z-index: 2;
    transition: transform 0.3s ease;
}

.hover-glow[b-bfj87zkyiw] {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.6) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Efectos Sabrosos al pasar el mouse */
.floating-brand-anchor:hover .glass-sphere[b-bfj87zkyiw] {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
    transform: scale(1.05);
}

.floating-brand-anchor:hover .hover-glow[b-bfj87zkyiw] {
    opacity: 1;
}

.floating-brand-anchor:hover .brand-logo[b-bfj87zkyiw] {
    transform: scale(0.9); /* El logo se encoje un milímetro mientras el botón crece, da un efecto 3D genial */
}

/* Responsividad: En móviles lo pegamos un poco más a la esquina */
@media (max-width: 768px) {
    .floating-brand-anchor[b-bfj87zkyiw] {
        top: 1.5rem;
        left: 1.5rem;
    }

    .glass-sphere[b-bfj87zkyiw] {
        width: 3rem;
        height: 3rem;
    }
}
/* /Components/UI/SabrosoLoader.razor.rz.scp.css */
.loader-overlay[b-f1boq8880e] {
    position: absolute;
    inset: 0;
    background-color: #020617;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select:none;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}

    .loader-overlay.fade-out[b-f1boq8880e] {
        opacity: 0;
        visibility: hidden;
    }

.pulse-ring[b-f1boq8880e] {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.4) 0%, transparent 70%);
    animation: pulse-animation-b-f1boq8880e 2s infinite;
}

.loader-logo[b-f1boq8880e] {
    font-size: 3rem;
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -2px;
    z-index: 2;
}

@keyframes pulse-animation-b-f1boq8880e {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}
/* /Pages/Credenciales.razor.rz.scp.css */
/* --- EFECTO PARALLAX --- */
.parallax-stage[b-kdrhqjhnrr] {
    min-height: 100vh;
    width: 100%;
    /* La imagen de fondo fija crea el efecto parallax al hacer scroll */
    background-image: linear-gradient(rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.95)), url('../img/iw-paint.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    padding: 6rem 2rem 4rem 2rem;
}

.dossier-container[b-kdrhqjhnrr] {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6rem; /* Más espacio para respirar entre el Hero y el Bento Box */
}

/* --- FUSIÓN EDITORIAL (HERO SPLIT) --- */
.dossier-hero-split[b-kdrhqjhnrr] {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* La foto ocupa un poco menos de la mitad */
    gap: 4rem;
    align-items: center;
    min-height: 60vh;
}

.dossier-text-content[b-kdrhqjhnrr] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.dossier-title[b-kdrhqjhnrr] {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.dossier-manifesto[b-kdrhqjhnrr] {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #94a3b8;
    line-height: 1.7;
    font-weight: 300;
    max-width: 600px;
}

.hero-decorative-line[b-kdrhqjhnrr] {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, transparent);
    margin-top: 2rem;
    border-radius: 2px;
}

/* Tratamiento Artístico de la Fotografía */
.dossier-image-container[b-kdrhqjhnrr] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end; /* Alinea la foto a la derecha */
    align-items: flex-end;
}

.dossier-profile-pic[b-kdrhqjhnrr] {
    width: 100%;
    max-width: 450px;
    object-fit: contain;
    /* Efecto "Midnight Glass" en la foto */
    filter: grayscale(100%) contrast(1.15) brightness(0.9);
    opacity: 0.85;
    /* MÁSCARA MAGISTRAL: Desvanece la parte inferior de la foto a transparente */
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    transition: all 0.5s ease;
}

.indigo-tint-overlay[b-kdrhqjhnrr] {
    position: absolute;
    inset: 0;
    /* Tiñe la foto de índigo usando blend-modes avanzados */
    background-color: rgba(79, 70, 229, 0.2);
    mix-blend-mode: color;
    z-index: 2;
    pointer-events: none; /* No estorba clics */
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.dossier-image-container:hover .dossier-profile-pic[b-kdrhqjhnrr] {
    filter: grayscale(80%) contrast(1.1) brightness(1);
    opacity: 1;
}


/* --- BENTO BOX GRID --- */
.bento-grid[b-kdrhqjhnrr] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
}

.bento-card[b-kdrhqjhnrr] {
    position: relative;
    background-color: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .bento-card:hover[b-kdrhqjhnrr] {
        transform: translateY(-5px);
        border-color: rgba(255, 255, 255, 0.1);
    }

.card-large[b-kdrhqjhnrr] {
    grid-column: span 2;
}

.card-tall[b-kdrhqjhnrr] {
    grid-column: span 1;
    grid-row: span 2;
}

.card-title[b-kdrhqjhnrr] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.card-desc[b-kdrhqjhnrr] {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.card-glow[b-kdrhqjhnrr] {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.15;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.bento-card:hover .card-glow[b-kdrhqjhnrr] {
    opacity: 0.3;
}

.card-glow.emerald[b-kdrhqjhnrr] {
    background-color: #10b981;
}

.card-glow.indigo[b-kdrhqjhnrr] {
    background-color: #4f46e5;
}

.card-glow.pink[b-kdrhqjhnrr] {
    background-color: #ec4899;
}

.card-glow.slate[b-kdrhqjhnrr] {
    background-color: #64748b;
}


/* --- RESPONSIVIDAD DEL DOSSIER --- */
@media (max-width: 900px) {
    /* El Hero se apila en móviles */
    .dossier-hero-split[b-kdrhqjhnrr] {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .dossier-text-content[b-kdrhqjhnrr] {
        align-items: center;
        order: 2; /* El texto va debajo en móviles */
    }

    .dossier-image-container[b-kdrhqjhnrr] {
        justify-content: center;
        order: 1; /* Tu foto va primero arriba */
        max-height: 350px;
    }

    .dossier-profile-pic[b-kdrhqjhnrr] {
        max-width: 300px;
        /* Hacemos el fade más pronunciado en móvil para que el texto debajo no choque */
        -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 90%);
        mask-image: linear-gradient(to bottom, black 40%, transparent 90%);
    }

    .indigo-tint-overlay[b-kdrhqjhnrr] {
        -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 90%);
        mask-image: linear-gradient(to bottom, black 40%, transparent 90%);
    }

    .hero-decorative-line[b-kdrhqjhnrr] {
        margin: 2rem auto;
    }

    /* El Bento Box colapsa a una sola columna */
    .bento-grid[b-kdrhqjhnrr] {
        grid-template-columns: 1fr;
    }

    .card-large[b-kdrhqjhnrr], .card-tall[b-kdrhqjhnrr] {
        grid-column: span 1;
        grid-row: span 1;
    }
}
/* /Pages/Index.razor.rz.scp.css */
.cinematic-scroll-container[b-ylmja5q9ko] {
    height: 100vh;
    width: 100%;
    /* Ocultar scrollbar para un look limpio */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .cinematic-scroll-container[b-ylmja5q9ko]::-webkit-scrollbar {
        display: none;
    }

    /* =========================================
   ESTADOS DE CONTROL DE FLUJO
   ========================================= */

    /* Estado 1: Bloqueo absoluto. El usuario no puede escapar de la carga. */
    .cinematic-scroll-container.scroll-locked[b-ylmja5q9ko] {
        overflow: hidden;
    }

    /* Estado 2: Liberación magnética. El scroll se activa con snap. */
    .cinematic-scroll-container.scroll-active[b-ylmja5q9ko] {
        overflow-y: scroll;
        scroll-snap-type: y mandatory;
        scroll-behavior: smooth;
    }

.cinematic-slide[b-ylmja5q9ko] {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    overflow: hidden;
}
