/* _content/ReferenceAI/Components/Audio/AudioPlayer.razor.rz.scp.css */
/* ========================================
   CONTENEDOR PRINCIPAL DEL SISTEMA DE AUDIO
   ======================================== */
.audio-system-container[b-5vy0kwpvii] {
    position: fixed;
    inset: 0; /* Ocupa toda la pantalla */
    z-index: 9998; /* Justo debajo del header */
    display: flex;
    flex-direction: column-reverse; /* Clave: Los items se apilan desde abajo */
    pointer-events: none; /* No intercepta clicks por defecto */
}

/* ========================================
   CONTROLES DEL REPRODUCTOR (antes .audio-player-container)
   ======================================== */
.audio-player-controls[b-5vy0kwpvii] {
    background: rgba(30, 30, 30, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 -1rem 2rem rgba(0, 0, 0, 0.4);
    padding: 1.5rem 1rem 0 1rem;
    border-top: 3px solid rgba(200, 200, 200, 1);
    z-index: 9999; 
    pointer-events: auto; /* CLAVE: Este componente siempre debe ser clickeable */
}

/* Contenido centrado con max-width */
.audio-player-content[b-5vy0kwpvii] {
    max-width: 50rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

/* Botones de control superior */
.close-btn-left[b-5vy0kwpvii] {
    position: absolute;
    /*background: rgba(100, 100, 255, 0.85);*/

    background: rgba(50, 50, 50, 0.9);
    top: -2.15rem;
    left: 0;
    width: 2.7rem;
    height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.close-btn-left:hover[b-5vy0kwpvii] {

    /*border-color: rgba(100, 100, 255, 0.85);*/
    /*color: white;*/
    /*transform: scale(1.1);*/
}

.collapse-btn[b-5vy0kwpvii] {
    position: absolute;   
    /*background: rgba(100, 100, 255, 0.85);*/

    background: rgba(50, 50, 50, 0.9);
    top: -2.15rem;
    right: 0;
    width: 2.7rem;
    height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    font-weight: 900;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.collapse-btn:hover[b-5vy0kwpvii] {

    /*border-color: rgba(100, 100, 255, 0.85);*/
    /*color: white;*/
    /*transform: scale(1.1);*/
}

/* Íconos más gruesos dentro de los botones */
.close-btn-left .mud-icon-root[b-5vy0kwpvii],
.collapse-btn .mud-icon-root[b-5vy0kwpvii] {
    font-weight: 900;
    stroke-width: 2;
}

/* Título del artículo */
.article-title[b-5vy0kwpvii] {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.5rem 0;
    text-align: center;
    line-height: 1.4;
    padding-left: 2.5rem; /* Espacio para botón cerrar izquierdo más grande */
    padding-right: 2.5rem; /* Espacio para botón colapsar derecho más grande */
}

/* Controles principales */
.main-controls[b-5vy0kwpvii] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    /*margin-bottom: 0.5rem;*/
    padding-bottom: 1rem;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
}

.playback-buttons[b-5vy0kwpvii] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.control-btn[b-5vy0kwpvii] {
    padding: 0rem 0.3rem;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
}

/* Fila de progreso con botón de velocidad */
.progress-row[b-5vy0kwpvii] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Barra de progreso */
.progress-container[b-5vy0kwpvii] {
    flex: 1;
    padding: 0rem 4.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.progress-bar[b-5vy0kwpvii] {
    width: 100%;

    padding: 0.2rem;
    height: 0.4rem;
    border-radius: 0.25rem;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    /* Custom background: gradiente de azul celeste a fucsia */
    background: linear-gradient(to right, 
                                rgb(100, 181, 246), /* Azul celeste */
                                rgb(240, 98, 146)) 0% 0% / var(--progress-fill, 0%) 100% no-repeat,
                rgba(255, 255, 255, 0.1); /* Unfilled track background */
    /* Default value for the CSS variable, will be updated inline */
    --progress-fill: 0%; 
}

/* Webkit specific styling for the track and thumb */
.progress-bar[b-5vy0kwpvii]::-webkit-slider-runnable-track {
    background: transparent; /* Make the default track transparent so our custom background shows */
    border-radius: 0.25rem;
}

.progress-bar[b-5vy0kwpvii]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

/* Firefox specific styling for the track and thumb */
.progress-bar[b-5vy0kwpvii]::-moz-range-track {
    background: transparent; /* Make the default track transparent */
    border-radius: 0.25rem;
}

.progress-bar[b-5vy0kwpvii]::-moz-range-thumb {
    width: 0;
    height: 0;
    opacity: 0;
    border: none;
    pointer-events: none;
}

.time-display[b-5vy0kwpvii] {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Botón de velocidad */
.speed-btn[b-5vy0kwpvii] {
    position: absolute;
    right: 0;
    /*padding-right: 2rem ;*/
    background: rgba(20, 118, 217, 0.9); /* Azul oscuro */
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 0.4rem 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    white-space: nowrap;
    min-width: 3rem;
    text-align: center;
}

.speed-btn:hover:not(:disabled)[b-5vy0kwpvii] {
    /*background: rgba(25, 118, 210, 1);*/
    /*transform: scale(1.05);*/
}

.speed-btn.active[b-5vy0kwpvii] {
    background: rgba(46, 125, 50, 0.95); /* Verde más oscuro cuando está activo */
    border-color: rgba(46, 125, 50, 1);
}

.speed-btn.active:hover[b-5vy0kwpvii] {
    /*background: rgba(46, 125, 50, 1);*/
}

.speed-btn:disabled[b-5vy0kwpvii] {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Opciones de profundidad */
.depth-options[b-5vy0kwpvii] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0.7rem;
    border:solid 2px rgba(255, 255, 255, 1);
    overflow: clip;
    gap: 1px;
    background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 768px) {
    .progress-container[b-5vy0kwpvii]{
        padding: 0 5rem;
    }
    .speed-btn[b-5vy0kwpvii] {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }
    .depth-options[b-5vy0kwpvii] {
        grid-template-columns: repeat(4, 1fr);
    }
}

.depth-btn[b-5vy0kwpvii] {
    background: rgba(35, 35, 35, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0rem;
    padding: 0.3rem 0rem;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    font-weight: 400;
    font-size: 0.9rem;
}

.depth-btn.active[b-5vy0kwpvii] {
    background: rgba(85, 85, 85, 1); 
}

/* Toggle de observación */
.observacion-toggle[b-5vy0kwpvii] {
    background: rgba(35, 35, 35, 1);
    border-radius: 0.7rem;
    border:solid 2px rgba(255,255,255,1) ;
    padding: 0.3rem 0rem;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    font-size:0.8rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    gap: 0.3rem;
}

.observacion-toggle.active[b-5vy0kwpvii] {
    background: rgba(255, 255, 255, 0.15);
}

.check-icon[b-5vy0kwpvii] {
    font-weight: bold;
    color: rgb(76, 175, 80);
}

/* Modo de reproducción automática */
.autoplay-mode[b-5vy0kwpvii] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
}

.autoplay-btn[b-5vy0kwpvii] {
    background: rgba(35, 35, 35, 1);
    border-radius: 0.7rem;
    border:solid 2px rgba(255,255,255,1) ;
    padding: 0.3rem 0rem;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.autoplay-btn:hover[b-5vy0kwpvii] {
    background: rgba(255, 255, 255, 0.15);
}

.autoplay-btn.active[b-5vy0kwpvii] {
    background: rgba(255, 255, 255, 0.15);
}

/* Indicador de carga */
.loading-indicator[b-5vy0kwpvii] {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 0rem 0.3rem;
}
/* _content/ReferenceAI/Components/Audio/PlaylistPanel.razor.rz.scp.css */
/* ========================================
   PLAYLIST PANEL - LÍNEAS HORIZONTALES PERFECTAS
   ======================================== */

/* Panel principal */
.playlist-panel[b-ymvts1qnas] {
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 100%;
    position: relative;
    z-index: 1000;
    pointer-events: auto;
}

.playlist-panel.expanded[b-ymvts1qnas] {
    flex: 1;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -1rem 3rem rgba(0, 0, 0, 0.6);
    min-height: 0;
}

.playlist-panel.collapsed[b-ymvts1qnas] {
    flex: 0;
}

/* ========================================
   HEADER DEL PLAYLIST
   ======================================== */
.playlist-header[b-ymvts1qnas] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(30, 30, 30, 0.9);
}

.playlist-title[b-ymvts1qnas] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.playlist-close-btn[b-ymvts1qnas] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
}

.playlist-close-btn:hover[b-ymvts1qnas] {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ========================================
   SOLAPA SEMICIRCULAR
   ======================================== */
.playlist-tab[b-ymvts1qnas] {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 3rem;
    background: linear-gradient(135deg, 
        hsl(225, 85%, 50%) 0%,
        hsl(265, 85%, 50%) 50%,
        hsl(275, 85%, 50%) 100%
    );
    border-radius: 4rem 4rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    color: white;
    font-weight: 600;
    box-shadow: 
        0 -0.5rem 1rem rgba(0, 0, 0, 0.3),
        0 0 2rem rgba(147, 51, 234, 0.4);
    transition: all 0.3s;
    animation: tab-pulse-b-ymvts1qnas 2s ease-in-out infinite;
}

.playlist-tab:hover[b-ymvts1qnas] {
    transform: translateX(-50%) translateY(-0.3rem);
    box-shadow: 
        0 -0.8rem 1.5rem rgba(0, 0, 0, 0.4),
        0 0 3rem rgba(147, 51, 234, 0.6);
}

@keyframes tab-pulse-b-ymvts1qnas {
    0%, 100% { 
        box-shadow: 
            0 -0.5rem 1rem rgba(0, 0, 0, 0.3),
            0 0 2rem rgba(147, 51, 234, 0.4);
    }
    50% { 
        box-shadow: 
            0 -0.5rem 1rem rgba(0, 0, 0, 0.3),
            0 0 3rem rgba(147, 51, 234, 0.7);
    }
}

.tab-badge[b-ymvts1qnas] {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: bold;
}

/* ========================================
   LISTA DE ITEMS
   ======================================== */
.playlist-items[b-ymvts1qnas] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.playlist-items[b-ymvts1qnas]::-webkit-scrollbar {
    width: 8px;
}

.playlist-items[b-ymvts1qnas]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.playlist-items[b-ymvts1qnas]::-webkit-scrollbar-thumb {
    background: rgba(147, 51, 234, 0.5);
    border-radius: 4px;
}

/* ========================================
   ITEM INDIVIDUAL - LÍNEAS HORIZONTALES PERFECTAS
   ======================================== */
.playlist-item[b-ymvts1qnas] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(40, 40, 40, 0.8);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    /*overflow: hidden;*/
}

/* ✨ BORDE ANIMADO - LÍNEAS PERFECTAMENTE HORIZONTALES ✨ */
.playlist-item.active[b-ymvts1qnas]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    padding: 2.5px; /* Grosor del borde */
    
    /* CLAVE: Linear gradient repetido para crear líneas horizontales */
    background: repeating-linear-gradient(
        90deg, /* Perfectamente horizontal */
        hsl(225, 85%, 60%) 0%,
        hsl(265, 85%, 65%) 12.5%,
        hsl(275, 85%, 60%) 25%,
        hsl(320, 85%, 65%) 37.5%,
        hsl(275, 85%, 60%) 50%,
        hsl(265, 85%, 65%) 62.5%,
        hsl(225, 85%, 60%) 75%,
        hsl(200, 85%, 65%) 87.5%,
        hsl(225, 85%, 60%) 100%
    );
    
    /* Tamaño del gradiente - esto controla cuántas "líneas" se ven */
    background-size: 200% 100%;
    
    /* Mask para crear el efecto de borde */
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    
    /* CLAVE: Animación que mueve el gradiente horizontalmente */
    animation: 
        slide-gradient-b-ymvts1qnas 4s linear infinite,
        border-glow-b-ymvts1qnas 2s ease-in-out infinite;
    animation-delay: var(--item-delay, 0s);
    
    pointer-events: none;
    will-change: background-position;
}

/* Item inactivo */
.playlist-item.inactive[b-ymvts1qnas] {
    border: 2.5px solid rgba(100, 100, 100, 0.4);
}

/* Item actual */
.playlist-item.current[b-ymvts1qnas] {
    background: rgba(60, 40, 80, 0.5);
}

.playlist-item.current.active[b-ymvts1qnas]::before {
    box-shadow: 0 0 2rem rgba(147, 51, 234, 0.6);
}

.playlist-item:hover[b-ymvts1qnas] {
    transform: translateX(0.25rem);
    background: rgba(50, 50, 50, 0.9);
}

/* ANIMACIÓN - DESLIZAR GRADIENTE HORIZONTALMENTE */
@keyframes slide-gradient-b-ymvts1qnas {
    from { 
        background-position: 0% 0%;
    }
    to { 
        background-position: 100% 0%;
    }
}

@keyframes border-glow-b-ymvts1qnas {
    0%, 100% { 
        filter: brightness(1);
    }
    50% { 
        filter: brightness(1.3);
    }
}

/* ========================================
   SELECTOR CIRCULAR CUSTOM
   ======================================== */
.item-selector[b-ymvts1qnas] {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 2.5px solid rgba(150, 150, 150, 0.5);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(30, 30, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.item-selector.selected[b-ymvts1qnas] {
    background: radial-gradient(circle, 
        hsl(250, 85%, 70%) 0%, 
        hsl(240, 90%, 60%) 100%
    );
    border-color: hsl(320, 90%, 65%);
    box-shadow: 
        0 0 1.5rem hsla(320, 90%, 65%, 0.5),
        inset 0 0 0.5rem rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.selector-check[b-ymvts1qnas] {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    animation: check-pop-b-ymvts1qnas 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes check-pop-b-ymvts1qnas {
    0% { 
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.3);
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
   INFORMACIÓN DEL ITEM
   ======================================== */
.item-info[b-ymvts1qnas] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.item-title[b-ymvts1qnas] {
    color: white;
    font-family: 'Segoe UI', 'Inter', 'system-ui', sans-serif;
    font-size: 1.075rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.item-badge[b-ymvts1qnas] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.2), 
        rgba(34, 197, 94, 0.3)
    );
    color: rgb(34, 197, 94);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

/* ========================================
   ESTADO VACÍO
   ======================================== */
.playlist-empty[b-ymvts1qnas] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, 0.5);
    gap: 1rem;
}

.playlist-empty p[b-ymvts1qnas] {
    margin: 0;
    font-size: 1rem;
}

/* ========================================
   RESPONSIVE - MÓVIL
   ======================================== */
@media (max-width: 767px) {
    .playlist-item[b-ymvts1qnas] {
        padding: 1rem 1.25rem;
    }

    .item-title[b-ymvts1qnas] {
        font-size: 0.95rem;
    }
    
    .playlist-tab[b-ymvts1qnas] {
        width: 7rem;
    }
}

/* ========================================
   ACCESIBILIDAD
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .playlist-item.active[b-ymvts1qnas]::before {
        animation: none;
    }
    
    .playlist-tab[b-ymvts1qnas] {
        animation: none;
    }
    
    *[b-ymvts1qnas] {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
/* _content/ReferenceAI/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-mkg9auylib] {
    position: relative;
    min-height: -webkit-fill-available; /* iOS Safari */
    display: flex;
    flex-direction: column;
    padding-top: env(safe-area-inset-top, 0px);
}

/* En modo fullscreen (PWA instalada), usar toda la pantalla */
@media (display-mode: fullscreen), (display-mode: standalone) {
    .page-container[b-mkg9auylib] {
        min-height: 100vh;
        padding-top: 0;
    }
}

/* ====================================================================
   EPIC HEADER - Degradado + Shadow + Scroll Animation
   ==================================================================== */

.epic-header[b-mkg9auylib] {
    /* Degradado: Negro → Gris → Negro (efecto profesional) */
    background: linear-gradient(180deg, 
        rgb(0, 0, 0) 0%,        /* Negro absoluto arriba */
        rgb(35, 35, 35) 30%,    /* Transición a gris */
        rgb(37, 37, 37) 40%,    /* Gris más claro en el centro */
        rgb(20, 20, 20) 100%    /* Negro absoluto abajo */
    );

    /* Shadow fuerte debajo del header */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);

    /* Altura normal del header */
    height: auto;
    /* Display flex para alinear contenido */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* 🚀 OPTIMIZACIÓN: Transiciones más rápidas y específicas */
    transition: padding 0.2s ease-out, box-shadow 0.2s ease-out, background 0.2s ease-out;
    /* 🚀 Aceleración GPU */
    transform: translate3d(0, 0, 0);
    /* 🚀 Contenedorización */
    contain: layout style;
}

/* Estado SCROLLED - Header comprimido */
.epic-header.scrolled[b-mkg9auylib] {
    padding-top: max(env(safe-area-inset-top), 0.5rem) !important;
    padding-bottom: 0.5rem !important;

    /* Shadow más pronunciado al scrollear */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);

    /* Degradado más sutil */
    background: linear-gradient(180deg, 
        rgb(10, 10, 10) 0%, 
        rgb(25, 25, 25) 100%);
}

/* Título principal */
.header-title[b-mkg9auylib] {
    font-size: 1.5rem;
    font-weight: bold;
    color: aliceblue;
    font-family: 'Trebuchet MS';
    line-height: 1.2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Título en estado scrolled - más pequeño */
.scrolled .header-title[b-mkg9auylib] {
    font-size: 1.1rem;
    margin-bottom: 0 !important;
}

/* Tagline */
.header-tagline[b-mkg9auylib] {
    font-size: 0.8rem;
    font-weight: 300;
    font-style: italic;
    color: aliceblue;
    opacity: 1;
    max-height: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tagline en estado scrolled - OCULTO */
.scrolled .header-tagline[b-mkg9auylib] {
    opacity: 0;
    max-height: 0;
    margin-top: 0 !important;
    transform: translateY(-10px);
}

/* Logo - transición de tamaño */
.header-logo[b-mkg9auylib] {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo más pequeño al scrollear */
.scrolled .header-logo[b-mkg9auylib] {
    width: 32px !important;
    height: 32px !important;
}

@media (min-width: 768px) {
    .scrolled .header-logo[b-mkg9auylib] {
        width: 38px !important;
        height: 38px !important;
    }
}

/* Espaciador también se ajusta 
.header-spacer {
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
*/
.scrolled .header-spacer[b-mkg9auylib] {
    width: 32px !important;
}

@media (min-width: 768px) {
    .scrolled .header-spacer[b-mkg9auylib] {
        width: 38px !important;
    }
}

/* Animación de entrada del header */
@keyframes headerSlideDown-b-mkg9auylib {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.epic-header[b-mkg9auylib] {
    animation: headerSlideDown-b-mkg9auylib 0.6s ease-out;
}

/* ====================================================================
   HEADER OFFSET - Espaciador para header fijo
   ==================================================================== */

/* Div que ocupa el espacio del header fijo - misma altura exacta que el header */
.header-offset[b-mkg9auylib] {
    /* Cálculo: padding-top + contenido aproximado + padding-bottom */
    height: calc(max(env(safe-area-inset-top), 2.5rem) + 85px);
    width: 100%;
}

/* En móvil, contenido ligeramente más chico */
@media (max-width: 768px) {
    .header-offset[b-mkg9auylib] {
        height: calc(max(env(safe-area-inset-top), 2.5rem) + 80px );
    }
}

/* ====================================================================
   HEADER LAYOUT - Logo izquierda, Título centrado
   ==================================================================== */

.header-layout[b-mkg9auylib] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

/* Contenedor del logo (izquierda) */
.header-logo-container[b-mkg9auylib] {
    display: flex;
    align-items: center;
    padding-left: 1rem; /* Margen del borde izquierdo */
}

/* Logo responsive - 15% más grande */
.header-logo[b-mkg9auylib] {
    width: 55px;        /* 36px + 15% ≈ 41px */
    height: 55px;
    object-fit: contain;
    border-radius: 9px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

/* Logo un poco más grande en desktop */
@media (min-width: 768px) {
    .header-logo[b-mkg9auylib] {
        width: 51px;    /* 44px + 15% ≈ 51px */
        height: 51px;
        border-radius: 11px;
    }

    .header-logo-container[b-mkg9auylib] {
        padding-left: 1.5rem;
    }
}

/* Efecto hover sutil */
.header-logo:hover[b-mkg9auylib] {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4)) brightness(1.15);
    cursor: pointer;
}

/* Contenedor del título (centro absoluto) */
.header-title-container[b-mkg9auylib] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Centrado absoluto en la pantalla */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Espaciador derecho para balance */
.header-spacer[b-mkg9auylib] {
    width: 41px; /* Mismo ancho que el logo en móvil */
}

@media (min-width: 768px) {
    .header-spacer[b-mkg9auylib] {
        width: 51px; /* Mismo ancho que el logo en desktop */
    }
}

/* Animación de entrada */
@keyframes logoFadeIn-b-mkg9auylib {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.header-logo[b-mkg9auylib] {
    animation: logoFadeIn-b-mkg9auylib 0.6s ease-out;
}

main[b-mkg9auylib] {
    flex: 1;
}

.sidebar[b-mkg9auylib] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-mkg9auylib] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-mkg9auylib]  a, .top-row[b-mkg9auylib]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-mkg9auylib]  a:hover, .top-row[b-mkg9auylib]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-mkg9auylib]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-mkg9auylib] {
        justify-content: space-between;
    }

    .top-row[b-mkg9auylib]  a, .top-row[b-mkg9auylib]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-mkg9auylib] {
        flex-direction: row;
    }

    .sidebar[b-mkg9auylib] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-mkg9auylib] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-mkg9auylib]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-mkg9auylib], article[b-mkg9auylib] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-mkg9auylib] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-mkg9auylib] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.page-container[b-mkg9auylib] {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;

}

.background-video[b-mkg9auylib] {
    position: fixed;
    top: 0;
    left: 0; 
     object-fit:fill;
    /* object-position: center;  */
    background-color: rgb(43, 43, 43); 
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.content-container[b-mkg9auylib] {
    position: relative;
    z-index: 1;
    max-width: 50rem;
    width: 100%;
    padding: 0rem 1.3rem;

    /* 🚀 OPTIMIZACIÓN DE SCROLL PERFORMANCE */
    will-change: scroll-position;
    transform: translate3d(0, 0, 0);
    -webkit-overflow-scrolling: touch;
    contain: layout;
}

.app-bar-safe-area[b-mkg9auylib] {
    padding-top: env(safe-area-inset-top);
    box-sizing: border-box;
}
/* _content/ReferenceAI/Components/Layout/NavMenu.razor.rz.scp.css */
.nav-container[b-12tx46afpk] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Espacio entre botones */
}

.nav-button[b-12tx46afpk] {
    /* Estilos de fuente y texto */
    font-family: 'Segoe UI', 'Inter', 'system-ui', sans-serif;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;

    /* --- ESTILOS SINCRONIZADOS --- */
    background-color: rgba(160, 160, 160, 0.4); /* Color base correcto */
    border: 1.5px solid white; /* Borde correcto */
    /* --- FIN DE ESTILOS SINCRONIZADOS --- */

    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;

    display: flex;
    align-items: center;
}

/* Estado Hover Y Estado Seleccionado (cuando la ruta está activa) */
.nav-button:hover[b-12tx46afpk],
.nav-button.active[b-12tx46afpk] {
    background-color: rgba(80, 80, 80, 0.4); /* Color hover/activo correcto */
    color: white;
}

/* Estado Click (mientras se presiona el botón) */
.nav-button:active[b-12tx46afpk] {
    box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.3); /* Resplandor */
}

/* --- Estilos para los íconos (se mantienen igual) --- */
.bi[b-12tx46afpk] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-12tx46afpk] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-12tx46afpk] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-12tx46afpk] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}
/* _content/ReferenceAI/Components/MyComponents/ArticleCard.razor.rz.scp.css */

[b-t2sj246bfe] .interactive-card {
    cursor: pointer;
    /* 🚀 OPTIMIZACIÓN: Usar transform3d para aceleración GPU y transiciones más rápidas */
    transform: translate3d(0, 0, 0);
    transition: transform .08s ease-out;
    -webkit-tap-highlight-color: transparent;
    background-color: rgba(31, 31, 31, 1) !important;
    border: 1px solid rgba(200, 200, 200, 0.5) !important;
    border-radius: 13px !important;
    box-shadow: -5px -5px 15px rgb(29, 111, 182) !important;
    /* 🚀 Preparar para animaciones futuras */
    will-change: transform;
    /* 🚀 Contenedorización para mejor performance */
    contain: layout style paint;
}

[b-t2sj246bfe] .mud-typography.mud-typography-body1 {
    opacity: 0.77 !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 400 !important;
}

[b-t2sj246bfe] .mud-typography.mud-typography-h6 {
    opacity: 0.90 !important;
    /*color: white !important;*/
    font-size: 20px !important;
    font-weight: 600 !important;
}

[b-t2sj246bfe] .interactive-card.is-expanded {
    background-color: rgba(31, 31, 31, 1) !important;
}

/* Contenido de paneles de expansión */
[b-t2sj246bfe] .mud-expand-panel .mud-expand-panel-content {
    padding-bottom: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

[b-t2sj246bfe] .interactive-card .mud-expand-panel .mud-panel-expanded {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

[b-t2sj246bfe] .mud-expand-panel .mud-expand-panel-header {
    padding-left: 0;
    padding-right: 0;
}

/* Leve “lift” en hover (desktop) */
[b-t2sj246bfe] .interactive-card:hover {
    transform: translateY(-2px);
}



/* Botón primary (variant=Filled) más sutil dentro de la card */
[b-t2sj246bfe] .interactive-card .mud-button-root.mud-button-filled.mud-button-filled-primary {
    background-color: color-mix(in srgb, var(--mud-palette-primary)50%, rgb(30, 30, 30) 50%) !important;
    border: 1px solid color-mix(in srgb, var(--mud-palette-primary) 90%, rgb(25, 25, 25) 10%) !important;
}

/* ====================================================================
   BOTONES DE ACCIÓN (Audio y Compartir) - Esquina inferior derecha
   ==================================================================== */

/* Contenedor de botones */
.bottom-action-buttons[b-t2sj246bfe] {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: row;
    gap: 0.625rem; /* 10px - Espacio uniforme entre botones */
    align-items: center;
    z-index: 10;
}

/* 🚀 OPTIMIZACIÓN: Botones más eficientes */
.action-btn[b-t2sj246bfe] {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: 0;
    border-radius: 50%;
    background: rgba(170, 130, 215, 0.32);
    border: 2px solid rgba(170, 130, 215, 0.55);
    /* 🚀 Reemplazar backdrop-filter costoso con background sólido */
    background: rgba(100, 80, 120, 0.85);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 🚀 Transición más rápida y específica */
    transition: transform 0.15s ease-out, background-color 0.15s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    /* 🚀 Aceleración GPU */
    transform: translate3d(0, 0, 0);
}

.action-btn:hover[b-t2sj246bfe] {
    transform: translate3d(0, 0, 0) scale(1.1);
    background: rgba(120, 90, 140, 0.9);
    border-color: rgba(170, 130, 215, 0.82);
}

/* Estado activo del botón de audio */
.audio-btn.active[b-t2sj246bfe] {
    background: rgba(16, 185, 129, 0.4);  /* Verde esmeralda suave */
    border-color: rgba(16, 185, 129, 0.8);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    animation: pulse-b-t2sj246bfe 2s infinite;
}

.audio-btn.active:hover[b-t2sj246bfe] {
    background: rgba(16, 185, 129, 0.6);
    border-color: rgba(16, 185, 129, 1);
}

/* Efecto al hacer click en compartir */
.share-btn:active[b-t2sj246bfe] {
    background: rgba(16, 185, 129, 0.6);
    border-color: rgba(16, 185, 129, 0.9);
    transform: scale(0.95);

    /* 🚀 OPTIMIZACIONES DE RENDIMIENTO PARA SCROLL */
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: layout style paint;
}

/* Iconos dentro de los botones */
.action-icon[b-t2sj246bfe] {
    font-size: 1.25rem;      /* 20px - Tamaño del icono */
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Animación de pulso para audio activo */
@keyframes pulse-b-t2sj246bfe {
    0%, 100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
    }
}

/* Responsive - Botones más pequeños en móvil */
@media (max-width: 767px) {
    .bottom-action-buttons[b-t2sj246bfe] {
        bottom: 0.5rem;
        right: 0.5rem;
        gap: 0.5rem;
    }

    .action-btn[b-t2sj246bfe] {
        width: 2rem;
        height: 2rem;
        min-width: 2rem;
        min-height: 2rem;
    }

    .action-icon[b-t2sj246bfe] {
        font-size: 1rem;
    }
}

.article-image-container[b-t2sj246bfe] {
    width: 100%;
    /*aspect-ratio: 16/9;*/
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: rgba(40, 40, 40, 0.5);
}

.article-cover-image[b-t2sj246bfe] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.interactive-card:hover .article-cover-image[b-t2sj246bfe] {
    transform: scale(1.05);
}
/* _content/ReferenceAI/Components/MyComponents/AudioBannerCTA.razor.rz.scp.css */
/* ====================================================================
   AUDIO CTA BANNER - Banner llamativo para modo podcast
   ==================================================================== */

.audio-cta-banner[b-ci68uwtklq] {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    padding: 1.2rem 1rem;
    background: linear-gradient(135deg, 
        rgba(40, 40, 40, 0.95) 0%,
        rgba(45, 38, 52, 0.95) 50%,
        rgba(40, 40, 40, 0.95) 100%);
    border: 2px solid rgba(140, 110, 180, 0.5);
    border-radius: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(140, 110, 180, 0.15);
}

.audio-cta-banner:hover[b-ci68uwtklq] {
    transform: translateY(-4px);
    border-color: rgba(140, 110, 180, 0.7);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(140, 110, 180, 0.3);
}

.audio-cta-banner:active[b-ci68uwtklq] {
    transform: translateY(-2px);
}

/* Glow animado de fondo */
.banner-glow[b-ci68uwtklq] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle,
        rgba(140, 110, 180, 0.08) 0%,
        transparent 70%
    );
    animation: glowPulse-b-ci68uwtklq 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes glowPulse-b-ci68uwtklq {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Contenedor del contenido */
.banner-content[b-ci68uwtklq] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Emoji auriculares (posición absoluta a la izquierda) */
.emoji-audio[b-ci68uwtklq] {
    position: absolute;
    left: 0.35rem;
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    animation: bounceAudio-b-ci68uwtklq 2s ease-in-out infinite;
}

@keyframes bounceAudio-b-ci68uwtklq {
    0%, 100% {
        transform: translateY(0) rotate(-10deg);
    }
    50% {
        transform: translateY(-5px) rotate(-10deg);
    }
}

/* Contenedor de texto (centrado absoluto) */
.banner-text-container[b-ci68uwtklq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

/* Título del banner */
.banner-title[b-ci68uwtklq] {
    font-size: 1rem;
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.3px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(140, 110, 180, 0.25);
    margin: 0;
}

.banner-subtitle[b-ci68uwtklq] {
    display: inline-block;
    background: linear-gradient(135deg, #9d7fc9 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 900;
    animation: shimmer-b-ci68uwtklq 3s ease-in-out infinite;
}

@keyframes shimmer-b-ci68uwtklq {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

/* Icono ecualizador */
.banner-icon[b-ci68uwtklq] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.equalizer-icon[b-ci68uwtklq] {
    font-size: 1.5rem !important;
    color: #9d7fc9;
    filter: drop-shadow(0 2px 4px rgba(140, 110, 180, 0.4));
    animation: equalizerBounce-b-ci68uwtklq 1s ease-in-out infinite;
}

@keyframes equalizerBounce-b-ci68uwtklq {
    0%, 100% {
        transform: scaleY(1);
    }
    25% {
        transform: scaleY(1.2);
    }
    50% {
        transform: scaleY(0.8);
    }
    75% {
        transform: scaleY(1.1);
    }
}

/* Responsive - Tablets */
@media (min-width: 768px) {
    .audio-cta-banner[b-ci68uwtklq] {
        padding: 1.5rem 1.5rem;
    }

    .emoji-audio[b-ci68uwtklq] {
        left: 1.5rem;
        font-size: 3rem;
    }

    .banner-title[b-ci68uwtklq] {
        font-size: 1.1rem;
    }

    .banner-subtitle[b-ci68uwtklq] {
        font-size: 1.2rem;
    }

    .equalizer-icon[b-ci68uwtklq] {
        font-size: 1.8rem !important;
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .audio-cta-banner[b-ci68uwtklq] {
        padding: 1.5rem 2rem;
    }

    .emoji-audio[b-ci68uwtklq] {
        left: 2rem;
        font-size: 3.5rem;
    }

    .banner-title[b-ci68uwtklq] {
        font-size: 1.2rem;
    }

    .banner-subtitle[b-ci68uwtklq] {
        font-size: 1.3rem;
    }
}

/* Accessibility - Reducir animaciones si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {
    .audio-cta-banner[b-ci68uwtklq],
    .emoji-container[b-ci68uwtklq],
    .emoji-pointer[b-ci68uwtklq],
    .banner-subtitle[b-ci68uwtklq],
    .equalizer-icon[b-ci68uwtklq],
    .banner-glow[b-ci68uwtklq] {
        animation: none;
    }

    .audio-cta-banner:hover[b-ci68uwtklq] {
        transform: none;
    }
}
/* _content/ReferenceAI/Components/MyComponents/ChangeBackgroundButton.razor.rz.scp.css */
.change-bg-button[b-2xpzy1bxzv] {
    font-family: 'Segoe UI', 'Inter', 'system-ui', sans-serif;
    color: white;
    border: 1.5px solid white;
    font-weight: bold;
    text-transform: uppercase;
    
    background-color: rgba(160, 160, 160, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.change-bg-button:hover[b-2xpzy1bxzv] {
    background-color: rgba(80, 80, 80, 0.4);
}

.change-bg-button:active[b-2xpzy1bxzv] {
    box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.3); /* Resplandor al hacer clic */
}
/* _content/ReferenceAI/Components/MyComponents/MenuOpcionesDeNoticiasV2.razor.rz.scp.css */
/* Contenedor principal del menú - estilo del botón de cambiar fondo */
.menu-feed-container[b-z38xoa7629] {
    font-family: 'Segoe UI', 'Inter', 'system-ui', sans-serif;
    /*background-color: rgba(160, 160, 160, 0.4);*/
    /*backdrop-filter: blur(3px);*/
    border: 2px solid white;
    border-radius: 0.375rem;
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
    
    /* 📱 Por defecto (móvil): filas verticales */
    flex-direction: column;
}

/* 💻 Desktop: columnas horizontales */
@media (min-width: 640px) {
    .menu-feed-container[b-z38xoa7629] {
        flex-direction: row;
    }
}

/* Estilos de cada opción del menú */
.menu-feed-option[b-z38xoa7629] {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hover state para opciones NO seleccionadas */
.menu-feed-option:not(.selected):hover[b-z38xoa7629] {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Estado seleccionado */
.menu-feed-option.selected[b-z38xoa7629] {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: white;
    box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

/* Efecto al hacer click */
.menu-feed-option:active[b-z38xoa7629] {
    transform: scale(0.98);
}
/* _content/ReferenceAI/Components/MyComponents/MisionPrismaInteractive.razor.rz.scp.css */
.mision-prisma-container[b-mq11v98zkm] {
    position: relative;
    overflow: hidden;
    height: var(--expand-height, 180px);
    transition: height 80ms linear;
    /* Los estilos visuales (border, border-radius, background) se aplican inline */
}

.mision-prisma-content[b-mq11v98zkm] {
    /* Contenedor interno solo para padding del contenido */
}

.mision-prisma-fade[b-mq11v98zkm] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.4));
    border-radius: 0 0 10px 10px;
}

/* ====================================================================
   BANNER TÍTULO "¿QUE ES PRISMA IA?" - Estilo limpio y minimalista
   ==================================================================== */

.prisma-title-banner[b-mq11v98zkm] {
    position: relative;
    width: 100%;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem; /* Padding inferior reducido para acercar al texto */
    margin: 0;
    background: transparent; /* Fondo transparente */
    border: none; /* Sin borde */
    text-align: center;
    display: flex;
    align-items: flex-end; /* Alinear contenido hacia la base inferior */
    justify-content: center;
    min-height: 3rem; /* Height controlado para mantener distancia del borde superior */
}

/* Título principal - Tipografía limpia y blanca */
.prisma-title[b-mq11v98zkm] {
    font-family: 'Segoe UI', 'Inter', 'system-ui', sans-serif;
    font-size: 1.2rem; /* Tamaño un poco más grande */
    font-weight: 630;
    color: #ffffff; /* Todo blanco, sin degradados */
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

/* La palabra PRISMA ahora también es blanca */
.prisma-gradient-title[b-mq11v98zkm] {
    color: #ffffff; /* Blanco igual que el resto */
}

/* Responsive para el título */
@media (min-width: 640px) {
    .prisma-title[b-mq11v98zkm] {
        font-size: 1.4rem;
    }
}

@media (min-width: 768px) {
    .prisma-title[b-mq11v98zkm] {
        font-size: 1.6rem;
    }
}

/* ====================================================================
   BOTÓN DE CERRAR (CRUZ) - Esquina superior derecha
   ==================================================================== */

.prisma-close-button[b-mq11v98zkm] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;

    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 50%;

    /* 🎯 Fondo blanco 50% transparencia - más sutil */
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);

    /* 🎯 Ícono oscuro para contraste */
    color: #1f2937;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.2s ease;

    /* Hover effects */
    &:hover {
        background: rgba(255, 255, 255, 0.75); // Más sutil que antes
        transform: scale(1.08);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    &:active[b-mq11v98zkm] {
        transform: scale(0.92);
        background: rgba(255, 255, 255, 0.7);
    }

    /* Focus para accesibilidad */
    &:focus[b-mq11v98zkm] {
        outline: 2px solid rgba(59, 130, 246, 0.6);
        outline-offset: 2px;
    }
}

.prisma-close-icon[b-mq11v98zkm] {
    width: 1rem;
    height: 1rem;
    fill: none;
}

/* Responsive - Cruz más grande en mobile */
@media (max-width: 640px) {
    .prisma-close-button[b-mq11v98zkm] {
        width: 2.25rem;
        height: 2.25rem;
    }

    .prisma-close-icon[b-mq11v98zkm] {
        width: 1.125rem;
        height: 1.125rem;
    }
}
/* _content/ReferenceAI/Components/MyComponents/PrismaBannerCTA.razor.rz.scp.css */
/* ====================================================================
   PRISMA CTA BANNER - Banner para agregar a la pantalla de inicio
   ==================================================================== */

.prisma-cta-banner[b-0vjd5hyn0z] {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(145deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%); /* Negro satinado */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(180, 120, 255, 0.1);
}

.prisma-cta-banner:hover[b-0vjd5hyn0z] {
    transform: translateY(-5px);
    border-color: rgba(180, 120, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 50px rgba(180, 120, 255, 0.2);
}

/* Glow animado de fondo (inspirado en Prisma) */
.banner-glow[b-0vjd5hyn0z] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(150, 80, 255, 0.1) 0%, transparent 60%);
    animation: glowPulse-b-0vjd5hyn0z 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes glowPulse-b-0vjd5hyn0z {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* Contenido del banner - SIEMPRE VERTICAL */
.banner-content[b-0vjd5hyn0z] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

/* Logo de Prisma */
.prisma-logo[b-0vjd5hyn0z] {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7));
    animation: floatLogo-b-0vjd5hyn0z 5s ease-in-out infinite;
}

@keyframes floatLogo-b-0vjd5hyn0z {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Contenedor de texto */
.banner-text-container[b-0vjd5hyn0z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Título del banner - TAMAÑO AJUSTADO */
.banner-title[b-0vjd5hyn0z] {
    font-size: 1.8rem; /* Reducido desde 2rem */
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    margin: 0;
}

/* Degradado para la palabra PRISMA */
.prisma-gradient[b-0vjd5hyn0z] {
    display: inline-block;
    background: linear-gradient(45deg, #9D7FEA, #DAA3F7, #A885ED, #9D7FEA);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: prismaShimmer-b-0vjd5hyn0z 4s ease-in-out infinite;
}

@keyframes prismaShimmer-b-0vjd5hyn0z {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtítulo */
.banner-subtitle[b-0vjd5hyn0z] {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 300px;
}

/* Botón para agregar */
.prisma-add-button[b-0vjd5hyn0z] {
    background: #1765bd; /* Violeta más oscuro y azulado */
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px; /* Bordes redondeados */
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 64, 173, 0.3);
}

.prisma-add-button:hover[b-0vjd5hyn0z] {
    background: #1450e7; /* Vio Un poco más claro al pasar el mouse */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 34, 173, 0.4);
}

.prisma-add-button:active[b-0vjd5hyn0z] {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(8, 42, 178, 0.3);
}

/* --- Instrucciones para iOS --- */
.ios-instructions[b-0vjd5hyn0z] {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    color: #ffffff;
}

.ios-instructions p[b-0vjd5hyn0z] {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    max-width: 320px;
}

.ios-instructions strong[b-0vjd5hyn0z] {
    color: #9D7FEA;
}

.close-instructions[b-0vjd5hyn0z] {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-instructions:hover[b-0vjd5hyn0z] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}
/* _content/ReferenceAI/Components/MyScoopedButton.razor.rz.scp.css */
[b-ipyjx24ke8] .custom {
    background-color: red;
    border-color: red;
    margin: 100px;
}
/* _content/ReferenceAI/Components/Pages/Home.razor.rz.scp.css */
.philosophy-container[b-fcerz95yjf] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.philosophy-container.expanded[b-fcerz95yjf] {
    max-height: 120px;
}
/* _content/ReferenceAI/Components/PrismaBackground/PrismaBackground.razor.rz.scp.css */
/* PrismaBackground.razor.css
   Fondo animado: color homogéneo por fotograma, variando tono e intensidad.
   Paleta inspirada en Prisma IA: azul → violeta → magenta → retorna a azul */

/* Houdini: propiedades animables para tono y luminosidad */
@property --h {
  syntax: '<number>';
  initial-value: 265;
  inherits: false;
}
@property --l {
  syntax: '<number>';
  initial-value: 60;
  inherits: false;
}

/* Capa de fondo: ocupa toda la pantalla y no intercepta clics */
.prisma-bg[b-8mn2naeqkj]{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;                /* al fondo de todo */
  --h: 265;                   /* tono base (violeta) */
  --l: 60;                    /* luminosidad base */
  background: hsl(var(--h) 85% calc(var(--l)*1%));
  animation:
    prisma-hue-b-8mn2naeqkj 18s linear infinite,
    prisma-light-b-8mn2naeqkj 6s ease-in-out infinite;
  will-change: background-color;
}

/* Recorre la paleta (azul → violeta → magenta → azul) */
@keyframes prisma-hue-b-8mn2naeqkj {
  0%   { --h: 225; }  /* azul */
  33%  { --h: 265; }  /* violeta */
  66%  { --h: 275; }  /* magenta muy sutil, casi violeta */
  100% { --h: 225; }  /* azul */
}

/* Pulso sutil de intensidad (luminosidad) */
@keyframes prisma-light-b-8mn2naeqkj {
  0%,100% { --l: 60; }
  50%     { --l: 70; }
}

/* Accesibilidad: respeta preferencia de menos animaciones */
@media (prefers-reduced-motion: reduce){
  .prisma-bg[b-8mn2naeqkj]{ animation: none; }
}
