/* Variables y Reseteo */
:root {
    --bg-color: #0a0a0a;
    --text-color: #f5f5f5;
    --accent-color: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Fondo con Color y Textura --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0b0c10;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(50, 25, 90, 0.15), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(20, 80, 100, 0.15), transparent 30%),
        url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='2'/%3E%3Ccircle cx='13' cy='13' r='2'/%3E%3C/g%3E%3C/svg%3E");
    color: var(--text-color);
}

html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

/* --- Animación de Entrada Suave al Scrollear --- */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-on-scroll.visible,
.fade-on-scroll.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    will-change: auto;
}

/* En paneles de administración, formularios y catálogos, asegurar visibilidad inmediata */
.producer-admin-wrapper .fade-on-scroll,
.producer-auth-wrapper .fade-on-scroll,
.artists-all-wrapper .fade-on-scroll,
.gear-admin-wrapper .fade-on-scroll,
.artist-admin-wrapper .fade-on-scroll,
.admin-card,
.admin-topbar,
.artists-all-nav-bar,
.artists-all-header,
.artists-all-filter-bar,
.artists-all-grid {
    opacity: 1;
    transform: none;
}

/* --- Ajuste de la capa sobre el video --- */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

/* Asegurar que el contenido y el botón estén por encima de las capas */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* --- Botón semitransparente --- */
.scroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
    cursor: pointer;
    will-change: transform;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(167, 139, 250, 0.45);
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px -5px rgba(167, 139, 250, 0.35),
        0 0 25px rgba(255, 255, 255, 0.1);
}

.scroll-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Animación de la flechita saltando */
.scroll-btn .arrow {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(4px);
    }

    60% {
        transform: translateY(2px);
    }
}

/* --- Difuminado para quitar el corte brusco --- */
.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(11, 12, 16, 0), #0b0c10);
    z-index: 2;
    pointer-events: none;
}

/* --- Nuevo Estilo de Tarjeta (Card) con Sombras --- */
.owner-image.card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.owner-image.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 255, 255, 0.05);
}

.owner-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.owner-image.card:hover img {
    filter: grayscale(0%);
}



/* Contenedor del Reproductor de Spotify con Estética Studio */
.owner-media-view {
    width: 100%;
}

.owner-spotify-frame-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    min-height: 480px;
    border-radius: 14px;
    overflow: hidden;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.8), 0 0 20px rgba(29, 185, 84, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.owner-image.card:hover .owner-spotify-frame-wrap {
    border-color: rgba(29, 185, 84, 0.35);
    box-shadow: 0 14px 36px -5px rgba(0, 0, 0, 0.9), 0 0 25px rgba(29, 185, 84, 0.15);
}

.owner-spotify-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* --- Hero Section (Video) --- */
.hero {
    margin-top: 0.5%;
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(33, 32, 32, 0.7), 0 0 20px rgba(255, 255, 255, 0.555);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #ccc;
}

/* --- Owner Section --- */
.owner-section {
    padding: 10rem 0;
}

.owner-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.owner-text {
    flex: 1;
}

.owner-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.owner-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bbb;
    font-weight: 300;
}

/* --- Artists Section --- */
.artists-section {
    padding: 5rem 0 10rem;
    position: relative;
}

.artists-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 30%, rgba(120, 90, 200, 0.08) 80%, transparent);
    pointer-events: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.75rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    text-align: left;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.carousel-controls {
    display: flex;
    gap: 0.75rem;
}

.carousel-btn {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    color: var(--text-color);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease,
        color 0.45s ease;
    will-change: transform;
    user-select: none;
}

.carousel-btn:hover {
    background: rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.5);
    color: #a78bfa;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px -5px rgba(167, 139, 250, 0.35);
}

.carousel-btn:active {
    transform: translateY(0) scale(0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    background: rgba(167, 139, 250, 0.25);
}

.artists-carousel {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.artists-track {
    display: flex;
    gap: 1.8rem;
    padding: 1.2rem 0 2.2rem;
    transform: translate3d(0, 0, 0);
    touch-action: pan-y;
    user-select: none;
    cursor: grab;
}

.artists-track:active {
    cursor: grabbing;
}

.artist-card {
    position: relative;
    flex: 0 0 min(360px, 76vw);
    height: 490px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 24px;
    opacity: 0.55;
    transform: scale(0.91);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.8);
    background: rgba(255, 255, 255, 0.02);
    user-select: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.artist-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 8, 0.88), rgba(5, 5, 8, 0.18) 45%, rgba(26, 18, 50, 0.12));
    z-index: 1;
}

.artist-card.is-active {
    opacity: 1;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(138, 92, 246, 0.22);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translate3d(0, 0, 0) scale(1);
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: filter;
}

.artists-track.is-animating .artist-card,
.artists-track.is-dragging .artist-card {
    pointer-events: none;
}

.artist-info {
    position: absolute;
    left: 2.2rem;
    bottom: 2.2rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(18px);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.artist-card.is-active .artist-info {
    opacity: 1;
    transform: translateY(0);
}

.artist-info h3 {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 10px rgba(0, 0, 0, 0.6);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.artist-info h3::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a78bfa, #38bdf8);
    margin-top: 8px;
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.artist-card.is-active .artist-info h3::after {
    width: 48px;
}

/* ==========================================================================
   --- OPTIMIZACIÓN RESPONSIVA: CARRUSEL Y CABECERA DE ARTISTAS EN CELULAR ---
   ========================================================================== */
@media (max-width: 768px) {
    .artists-section {
        padding: 4rem 0 3rem;
    }

    .artists-section .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.75rem 0.5rem;
        margin-bottom: 1.75rem;
    }

    .artists-section .section-title {
        font-size: clamp(1.5rem, 4.2vw, 2.2rem);
        letter-spacing: 0.05em;
        margin: 0;
    }

    .artists-header-actions {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        flex-shrink: 0;
    }

    .view-all-artists-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.82rem;
        gap: 0.35rem;
        white-space: nowrap;
    }

    .carousel-controls {
        display: flex;
        gap: 0.4rem;
        flex-shrink: 0;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.35rem;
    }

    .artists-track {
        gap: 1.2rem;
        padding: 0.6rem 0 1.6rem;
    }

    .artist-card {
        flex: 0 0 min(320px, 80vw);
        height: 460px;
        border-radius: 22px;
    }

    .artist-info {
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .artists-section {
        padding: 3rem 0 2rem;
    }

    .artists-section .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.35rem;
    }

    .artists-section .section-title {
        font-size: 1.4rem;
        letter-spacing: 0.04em;
    }

    .artists-header-actions {
        gap: 0.4rem;
    }

    .view-all-artists-btn {
        padding: 0.38rem 0.75rem;
        font-size: 0.76rem;
        gap: 0.25rem;
    }

    .carousel-controls {
        gap: 0.35rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1.2rem;
    }

    .artists-track {
        gap: 0.9rem;
        padding: 0.5rem 0 1.4rem;
    }

    .artist-card {
        flex: 0 0 min(290px, 82vw);
        height: 430px;
        border-radius: 20px;
    }

    .artist-lock-btn {
        top: 0.85rem !important;
        right: 0.85rem !important;
        width: 38px !important;
        height: 38px !important;
        border-radius: 10px !important;
    }

    .artist-lock-btn svg {
        width: 17px !important;
        height: 17px !important;
    }

    .artist-info {
        left: 1.25rem;
        right: 1.25rem;
        bottom: 1.25rem;
    }

    .artist-info h3 {
        font-size: 1.28rem;
        letter-spacing: 0.05em;
    }

    .artist-card-genre {
        font-size: 0.8rem;
        line-height: 1.35;
        margin-top: 3px;
    }

    .artist-spotify-btn {
        padding: 0.4rem 0.85rem;
        font-size: 0.76rem;
        gap: 0.4rem;
        margin-top: 0.55rem;
    }

    .artist-spotify-btn .spotify-svg-icon {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 360px) {
    .artists-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }

    .artists-header-actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* --- Animaciones JS Clases --- */
.fade-on-scroll {
    opacity: 0;
    transform: translate3d(0, 45px, 0) scale(0.96);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-on-scroll.visible,
.fade-on-scroll.is-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
    will-change: auto;
}

/* --- Footer Estilos Premium --- */
.main-footer {
    position: relative;
    background: linear-gradient(to bottom, transparent, rgba(5, 5, 10, 0.98));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    margin-top: 4rem;
    z-index: 10;
}

.main-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.4), rgba(56, 189, 248, 0.4), transparent);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 4rem;
}

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #a0a0b0;
    line-height: 1.6;
    max-width: 380px;
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
    text-decoration: none;
    will-change: transform;
}

.social-link:hover {
    background: rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.5);
    color: #a78bfa;
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 10px 22px -5px rgba(167, 139, 250, 0.35);
}

.social-link:active {
    transform: translateY(-1px) scale(0.94);
}

.footer-links,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact p {
    color: #a0a0b0;
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 0.6rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 0;
    background: rgba(0, 0, 0, 0.4);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #707080;
}

.back-to-top {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.45s ease,
        border-color 0.45s ease,
        color 0.45s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    will-change: transform;
}

.back-to-top:hover {
    color: #ffffff;
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(167, 139, 250, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -5px rgba(167, 139, 250, 0.3);
}

.footer-bottom-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-lock-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-lock-btn:hover {
    color: #c084fc;
    background: rgba(124, 58, 237, 0.18);
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 0 20px 2px rgba(124, 58, 237, 0.6);
    transform: translateY(-2px);
}

.back-to-top:active {
    transform: translateY(0) scale(0.95);
}

.footer-contact .location-btn,
.footer-contact .contact-link {
    cursor: pointer;
    color: #a0a0b0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.footer-contact .location-btn:hover,
.footer-contact .contact-link:hover {
    color: #a78bfa;
    transform: translateX(4px);
}

.map-hint {
    font-size: 0.8rem;
    color: #38bdf8;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-left: 2px;
}

.location-btn:hover .map-hint {
    opacity: 1;
    color: #a78bfa;
}

/* --- Modal de Google Maps --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(5, 5, 12, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-card {
    position: relative;
    width: 100%;
    max-width: 680px;
    background: rgba(18, 18, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 35px 80px -10px rgba(0, 0, 0, 0.95), 0 0 50px rgba(138, 92, 246, 0.25);
    overflow: hidden;
    transform: translate3d(0, 30px, 0) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.is-open .modal-card {
    transform: translate3d(0, 0, 0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.modal-title-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.modal-title-group h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.04em;
}

.modal-icon {
    font-size: 1.2rem;
}

.modal-close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 50;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1.3rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

.modal-close-btn:active {
    transform: scale(0.94);
}

.modal-body {
    padding: 1rem;
    line-height: 0;
}

/* --- Modal Disco de Vinilo PIN --- */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.vinyl-btn {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.vinyl-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

.vinyl-modal-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: rgba(12, 12, 18, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 35px 90px -10px rgba(0, 0, 0, 0.96);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transform: translate3d(0, 30px, 0) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.is-open .vinyl-modal-card {
    transform: translate3d(0, 0, 0) scale(1);
}

.vinyl-modal-header {
    text-align: center;
    margin-bottom: 1.3rem;
}

.vip-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(250, 204, 21, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.25);
    margin-bottom: 0.5rem;
}

.vip-badge span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #facc15;
}

.vinyl-modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #ffffff 0%, #fef08a 60%, #eab308 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vinyl-modal-subtitle {
    font-size: 0.85rem;
    color: #8a8a9a;
    font-weight: 300;
}

/* Escenario Disco de Vinilo Ultra-Realista */
.vinyl-stage {
    position: relative;
    width: 310px;
    height: 310px;
    margin: 0.4rem 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-record {
    position: relative;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    background: #08080d;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), inset 0 0 2px rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    z-index: 2;
}

.vinyl-record.is-spinning {
    animation: spinVinyl 3.5s linear infinite;
}

@keyframes spinVinyl {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.vinyl-grooves {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: repeating-radial-gradient(circle,
            #15151e 0,
            #15151e 2px,
            #09090e 3px,
            #09090e 5px);
    opacity: 0.9;
}

.vinyl-shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 45deg,
            transparent 0%,
            rgba(255, 255, 255, 0.12) 20%,
            transparent 40%,
            transparent 50%,
            rgba(255, 255, 255, 0.12) 70%,
            transparent 90%);
    pointer-events: none;
}

/* Label Central */
.vinyl-center-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #1e1e2c, #0e0e16);
    border: 2px solid rgba(250, 204, 21, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.label-brand {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #facc15;
}

.label-sub {
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.vinyl-hole {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #050508;
    border: 2px solid rgba(255, 255, 255, 0.25);
    margin-top: 5px;
}

/* Brazo del Tocadiscos */
.tonearm {
    position: absolute;
    top: -15px;
    right: 5px;
    width: 110px;
    height: 140px;
    pointer-events: none;
    z-index: 1;
    transform-origin: 90px 15px;
    transform: rotate(-10deg);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.tonearm.is-active {
    transform: rotate(8deg);
}

.tonearm::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 15px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #333;
    border: 2px solid #555;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.tonearm::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 25px;
    width: 6px;
    height: 100px;
    background: linear-gradient(to bottom, #888, #444);
    border-radius: 3px;
    transform: rotate(18deg);
    transform-origin: top center;
}

.tonearm-head {
    position: absolute;
    bottom: 22px;
    left: 20px;
    width: 16px;
    height: 26px;
    background: linear-gradient(135deg, #e2e8f0, #94a3b8);
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
    transform: rotate(18deg);
}

/* 8 Stickers Anulares en el Disco */
.stickers-container {
    position: absolute;
    inset: 0;
    z-index: 12;
    pointer-events: none;
}

.pin-sticker {
    position: absolute;
    width: 36px;
    height: 38px;
    border-radius: 2px 2px 5px 2px;
    background-color: #facc15;
    background-image: linear-gradient(to bottom, rgba(161, 98, 7, 0.3) 0%, rgba(161, 98, 7, 0.3) 24%, transparent 24%),
        linear-gradient(135deg, #facc15 0%, #eab308 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 3px 6px 14px rgba(0, 0, 0, 0.65), 1px 2px 5px rgba(0, 0, 0, 0.4);
    opacity: 0.35;
    border: none;
}

.pin-sticker.pos-0 {
    top: 18px;
    left: 127px;
    transform: rotate(-6deg);
}

.pin-sticker.pos-1 {
    top: 46px;
    left: 197px;
    transform: rotate(10deg);
}

.pin-sticker.pos-2 {
    top: 126px;
    left: 227px;
    transform: rotate(-4deg);
}

.pin-sticker.pos-3 {
    top: 206px;
    left: 197px;
    transform: rotate(14deg);
}

.pin-sticker.pos-4 {
    top: 234px;
    left: 127px;
    transform: rotate(-8deg);
}

.pin-sticker.pos-5 {
    top: 206px;
    left: 55px;
    transform: rotate(8deg);
}

.pin-sticker.pos-6 {
    top: 126px;
    left: 25px;
    transform: rotate(-12deg);
}

.pin-sticker.pos-7 {
    top: 46px;
    left: 55px;
    transform: rotate(6deg);
}

.pin-sticker.is-filled {
    opacity: 1;
    background-image: linear-gradient(to bottom, rgba(161, 98, 7, 0.45) 0%, rgba(161, 98, 7, 0.45) 24%, transparent 24%),
        linear-gradient(135deg, #fef08a 0%, #facc15 100%);
    box-shadow: 4px 10px 22px rgba(0, 0, 0, 0.85), 0 0 12px rgba(250, 204, 21, 0.5);
    transform: scale(1.18);
}

.sticker-char {
    font-family: 'Inter', monospace;
    font-size: 1.1rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    text-shadow: none;
}

/* Formulario e Input */
.pin-input-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pin-input-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
}

#vinyl-pin-input {
    width: 100%;
    padding: 12px 48px 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.1rem;
    font-family: monospace;
    letter-spacing: 0.25em;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

#vinyl-pin-input:focus {
    border-color: rgba(250, 204, 21, 0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 18px rgba(250, 204, 21, 0.25);
}

.pin-eye-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.pin-eye-btn:hover {
    opacity: 1;
}

.pin-actions {
    display: flex;
    gap: 0.8rem;
}

.pin-action-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pin-action-btn.secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #a0a0b0;
}

.pin-action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.pin-action-btn.primary {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(250, 204, 21, 0.7);
    color: #fef08a;
    font-weight: 600;
    box-shadow: 0 0 16px rgba(250, 204, 21, 0.35);
}

.pin-action-btn.primary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(250, 204, 21, 0.95);
    color: #ffffff;
    box-shadow: 0 0 24px 2px rgba(250, 204, 21, 0.55);
    transform: translateY(-1px);
}

.pin-status-msg {
    font-size: 0.88rem;
    font-weight: 500;
    min-height: 1.4rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pin-status-msg.success {
    color: #facc15;
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.4);
}

.pin-status-msg.error {
    color: #f87171;
    text-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
}

/* --- Botón Agendar Cita (Minimalista & Premium) --- */
.booking-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    box-shadow: 0 0 3px rgb(70, 192, 232);
}

.booking-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.booking-btn:active {
    transform: translateY(0) scale(0.98);
}

/* --- Modal Registrar Cita --- */
.booking-modal-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 88vh;
    background: rgba(12, 12, 18, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.95);
    padding: 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translate3d(0, 30px, 0) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-card::-webkit-scrollbar {
    width: 5px;
}

.booking-modal-card::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.booking-modal-card::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 10px;
}

.booking-modal-card::-webkit-scrollbar-thumb:hover {
    background: rgba(167, 139, 250, 0.5);
}

.modal-overlay.is-open .booking-modal-card {
    transform: translate3d(0, 0, 0) scale(1);
}

.booking-modal-header {
    text-align: left;
    margin-bottom: 1rem;
    padding-right: 2.5rem;
}

.booking-modal-subtitle {
    font-size: 0.84rem;
    color: #8a8a9a;
    font-weight: 300;
    margin-top: 0.2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #a0a0b0;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: all 0.25s ease;
}

.form-group select {
    cursor: pointer;
    background-color: #0c0c12;
}

.form-group select option {
    background-color: #12121c;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(167, 139, 250, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

/* --- Calendario Interactivo Minimalista --- */
.custom-calendar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.8rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.cal-month-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #f1f5f9;
    letter-spacing: 0.03em;
    text-transform: capitalize;
}

.cal-nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #a0a0b0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.cal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.68rem;
    font-weight: 600;
    color: #606070;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day-cell {
    position: relative;
    aspect-ratio: 1;
    max-height: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 400;
    color: #d0d0e0;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    user-select: none;
}

.cal-day-cell:hover:not(.is-disabled) {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.cal-day-cell.is-today {
    border-color: rgba(167, 139, 250, 0.5);
    font-weight: 600;
}

.cal-day-cell.is-selected {
    background: #7c3aed !important;
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.4);
}

.cal-day-cell.is-disabled {
    opacity: 0.22;
    cursor: not-allowed;
}

/* Semáforo de Disponibilidad en Calendario */
.cal-day-cell.cal-avail-green::after {
    content: '';
    position: absolute;
    bottom: 2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 6px #22c55e;
}

.cal-day-cell.cal-avail-orange::after {
    content: '';
    position: absolute;
    bottom: 2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #f97316;
    box-shadow: 0 0 6px #f97316;
}

.cal-day-cell.cal-avail-red {
    opacity: 0.4;
    cursor: not-allowed !important;
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

.cal-day-cell.cal-avail-red::after {
    content: '';
    position: absolute;
    bottom: 2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #ef4444;
    box-shadow: 0 0 6px #ef4444;
}

.cal-day-cell.is-monday {
    opacity: 0.2 !important;
    cursor: not-allowed !important;
    text-decoration: line-through;
    color: #64748b;
}

/* Leyenda del Calendario y Helpers */
.calendar-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
}

.selected-date-preview {
    font-size: 0.78rem;
    color: #a78bfa;
    font-weight: 600;
}

.cal-legend-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.65rem;
    padding: 0.35rem 0.6rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: #94a3b8;
}

.legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.legend-dot.green { background: #22c55e; box-shadow: 0 0 5px #22c55e; }
.legend-dot.orange { background: #f97316; box-shadow: 0 0 5px #f97316; }
.legend-dot.red { background: #ef4444; box-shadow: 0 0 5px #ef4444; }
.legend-dot.monday { background: #64748b; }

.booking-time-hint {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.35rem;
}

.form-actions {
    margin-top: 0.3rem;
}

.booking-submit-btn {
    width: 100%;
    padding: 11px 22px;
    border-radius: 10px;
    background: #7c3aed;
    border: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-submit-btn:hover {
    background: #6d28d9;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(124, 58, 237, 0.45);
}

.booking-submit-btn:active {
    transform: translateY(0) scale(0.98);
}

.booking-status-msg {
    font-size: 0.95rem;
    font-weight: 500;
    min-height: 1.4rem;
    text-align: center;
    transition: all 0.3s ease;
}

.booking-status-msg.success {
    color: #34d399;
    text-shadow: 0 0 12px rgba(52, 211, 153, 0.5);
}


/* ==========================================================================
   BARRA DE NAVEGACIÓN FLOTANTE (MINIMALIST GLASS NAVBAR)
   ========================================================================== */
.studio-navbar {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 999;
    padding: 9px 24px;
    background: rgba(10, 10, 14, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.35s ease;
}

.studio-navbar.scrolled {
    top: 12px;
    background: rgba(8, 9, 12, 0.9);
    border-color: rgba(255, 255, 255, 0.11);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: opacity 0.25s ease;
}

.nav-brand:hover {
    opacity: 0.85;
}

.brand-logo-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 5px;
    filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.45));
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.nav-brand:hover .brand-logo-icon {
    transform: scale(1.12);
}

.brand-live-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: livePulse 2.4s infinite ease-in-out;
}

@keyframes livePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

.brand-sub {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85em;
    letter-spacing: 2.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.4px;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 0 7px rgb(70, 192, 232);
}

.nav-cta-btn:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.25);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.toggle-bar {
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.nav-toggle.is-open .toggle-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open .toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open .toggle-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ==========================================================================
   ENCABEZADOS DE SECCIÓN COMPARTIDOS (MINIMALIST)
   ========================================================================== */
.section-header-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 30px;
}

.section-main-title {
    font-size: 2.15rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.48);
    font-weight: 300;
    line-height: 1.6;
}

/* ==========================================================================
   SECCIÓN DE SERVICIOS & TARIFAS (MINIMALIST GLASS)
   ========================================================================== */
.services-section {
    padding: 6.5rem 0;
    position: relative;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: all 0.35s ease;
}

/* Capas de contenido superior garantizando legibilidad total */
.service-card > *:not(.service-card-media-bg) {
    position: relative;
    z-index: 2;
}

/* Tarjetas con video de fondo: color y fondo más translúcidos para apreciar el video */
.service-card.has-video-bg {
    background: rgba(12, 12, 18, 0.35) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.service-card.has-video-bg .service-title {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.service-card.has-video-bg .service-desc {
    color: #e2e8f0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.service-card.has-video-bg .service-features li {
    color: #f8fafc;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.95);
}

.service-card.has-video-bg .service-card-price-pill {
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Contenedor del video o imagen de fondo */
.service-card-media-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    overflow: hidden;
}

.service-card-bg-video,
.service-card-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.42; /* Opacidad optimizada para lucir el video con claridad */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-card-bg-video,
.service-card:hover .service-card-bg-img {
    opacity: 0.55; /* Sube en hover de forma estética */
}

/* Capa de overlay degradado con opacidad reducida */
.service-card-bg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(12, 12, 17, 0.35) 0%, rgba(13, 12, 19, 0.45) 40%, rgba(8, 8, 12, 0.72) 100%);
}

.service-card.card-accent-pink .service-card-bg-overlay {
    background: radial-gradient(circle at 80% 15%, rgba(244, 114, 182, 0.12), transparent 60%),
                linear-gradient(180deg, rgba(16, 11, 17, 0.30) 0%, rgba(10, 10, 14, 0.68) 100%);
}

.service-card.card-accent-purple .service-card-bg-overlay {
    background: radial-gradient(circle at 80% 15%, rgba(168, 85, 247, 0.12), transparent 60%),
                linear-gradient(180deg, rgba(15, 11, 20, 0.30) 0%, rgba(10, 10, 14, 0.68) 100%);
}

.service-card.card-accent-cyan .service-card-bg-overlay {
    background: radial-gradient(circle at 80% 15%, rgba(6, 182, 212, 0.12), transparent 60%),
                linear-gradient(180deg, rgba(10, 14, 20, 0.30) 0%, rgba(10, 10, 14, 0.68) 100%);
}

.service-card.card-accent-emerald .service-card-bg-overlay {
    background: radial-gradient(circle at 80% 15%, rgba(16, 185, 129, 0.12), transparent 60%),
                linear-gradient(180deg, rgba(10, 17, 14, 0.30) 0%, rgba(10, 10, 14, 0.68) 100%);
}

.service-card.card-accent-gold .service-card-bg-overlay {
    background: radial-gradient(circle at 80% 15%, rgba(234, 179, 8, 0.12), transparent 60%),
                linear-gradient(180deg, rgba(17, 15, 10, 0.30) 0%, rgba(10, 10, 14, 0.68) 100%);
}

/* Card Pink (Grabación) */
.service-card.card-accent-pink {
    background: linear-gradient(165deg, rgba(244, 114, 182, 0.055) 0%, rgba(20, 15, 20, 0.4) 40%, rgba(10, 10, 14, 0.7) 100%);
    border: 1px solid rgba(244, 114, 182, 0.18);
    box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.7);
}
.service-card.card-accent-pink .service-icon-box {
    color: #f472b6;
    background: rgba(244, 114, 182, 0.09);
    border: 1px solid rgba(244, 114, 182, 0.22);
    box-shadow: 0 2px 10px rgba(244, 114, 182, 0.1);
}
.service-card.card-accent-pink .bullet {
    color: rgba(244, 114, 182, 0.85);
    font-weight: 500;
}
.service-card.card-accent-pink .service-book-btn {
    background: transparent;
    border: 1px solid rgba(244, 114, 182, 0.2);
    color: rgba(255, 255, 255, 0.8);
}
.service-book-btn {
    box-shadow: 0 0 2px rgb(238, 238, 238);
}
.service-card.card-accent-pink:hover {
    border-color: rgba(244, 114, 182, 0.38);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(244, 114, 182, 0.14);
}
.service-card.card-accent-pink .service-book-btn:hover {
    background: rgba(244, 114, 182, 0.14);
    border-color: rgba(244, 114, 182, 0.45);
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(244, 114, 182, 0.18);
}

/* Card Purple (Producción) */
.service-card.card-accent-purple {
    background: linear-gradient(165deg, rgba(167, 139, 250, 0.055) 0%, rgba(18, 15, 24, 0.4) 40%, rgba(10, 10, 14, 0.7) 100%);
    border: 1px solid rgba(167, 139, 250, 0.18);
    box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.7);
}
.service-card.card-accent-purple .service-icon-box {
    color: #c084fc;
    background: rgba(167, 139, 250, 0.09);
    border: 1px solid rgba(167, 139, 250, 0.22);
    box-shadow: 0 2px 10px rgba(167, 139, 250, 0.1);
}
.service-card.card-accent-purple .bullet {
    color: rgba(167, 139, 250, 0.85);
    font-weight: 500;
}
.service-card.card-accent-purple .service-book-btn {
    background: transparent;
    border: 1px solid rgba(167, 139, 250, 0.2);
    color: rgba(255, 255, 255, 0.8);
}
.service-card.card-accent-purple:hover {
    border-color: rgba(167, 139, 250, 0.38);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(167, 139, 250, 0.14);
}
.service-card.card-accent-purple .service-book-btn:hover {
    background: rgba(167, 139, 250, 0.14);
    border-color: rgba(167, 139, 250, 0.45);
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(167, 139, 250, 0.18);
}

/* Card Cyan (Mezcla & Master) */
.service-card.card-accent-cyan {
    background: linear-gradient(165deg, rgba(56, 189, 248, 0.055) 0%, rgba(13, 19, 24, 0.4) 40%, rgba(10, 10, 14, 0.7) 100%);
    border: 1px solid rgba(56, 189, 248, 0.18);
    box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.7);
}
.service-card.card-accent-cyan .service-icon-box {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.09);
    border: 1px solid rgba(56, 189, 248, 0.22);
    box-shadow: 0 2px 10px rgba(56, 189, 248, 0.1);
}
.service-card.card-accent-cyan .bullet {
    color: rgba(56, 189, 248, 0.85);
    font-weight: 500;
}
.service-card.card-accent-cyan .service-book-btn {
    background: transparent;
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: rgba(255, 255, 255, 0.8);
}
.service-card.card-accent-cyan:hover {
    border-color: rgba(56, 189, 248, 0.38);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(56, 189, 248, 0.14);
}
.service-card.card-accent-cyan .service-book-btn:hover {
    background: rgba(56, 189, 248, 0.14);
    border-color: rgba(56, 189, 248, 0.45);
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(56, 189, 248, 0.18);
}

/* Card Emerald (Asesoría & Diagnóstico) */
.service-card.card-accent-emerald {
    background: linear-gradient(165deg, rgba(52, 211, 153, 0.055) 0%, rgba(13, 21, 18, 0.4) 40%, rgba(10, 10, 14, 0.7) 100%);
    border: 1px solid rgba(52, 211, 153, 0.18);
    box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.7);
}
.service-card.card-accent-emerald .service-icon-box {
    color: #34d399;
    background: rgba(52, 211, 153, 0.09);
    border: 1px solid rgba(52, 211, 153, 0.22);
    box-shadow: 0 2px 10px rgba(52, 211, 153, 0.1);
}
.service-card.card-accent-emerald .bullet {
    color: rgba(52, 211, 153, 0.85);
    font-weight: 500;
}
.service-card.card-accent-emerald .service-book-btn {
    background: transparent;
    border: 1px solid rgba(52, 211, 153, 0.2);
    color: rgba(255, 255, 255, 0.8);
}
.service-card.card-accent-emerald:hover {
    border-color: rgba(52, 211, 153, 0.38);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(52, 211, 153, 0.14);
}
.service-card.card-accent-emerald .service-book-btn:hover {
    background: rgba(52, 211, 153, 0.14);
    border-color: rgba(52, 211, 153, 0.45);
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(52, 211, 153, 0.18);
}

.service-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: transform 0.25s ease;
}

.service-card:hover .service-icon-box {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.90rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 1.8rem;
    flex-grow: 1;
    min-height: 4.5rem;
}

.service-features {
    display: none !important;
}

.bullet {
    color: rgba(255, 255, 255, 0.28);
    font-weight: 300;
    user-select: none;
    transition: color 0.25s ease;
}

.service-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
}

.service-book-btn {
    width: 100%;
    padding: 9px 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.81rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.service-book-btn .arrow {
    transition: transform 0.25s ease;
    opacity: 0.6;
}

.service-book-btn:hover {
    color: #ffffff;
}

.service-book-btn:hover .arrow {
    transform: translateX(3px);
    opacity: 1;
}

/* ==========================================================================
   SECCIÓN DE EQUIPAMIENTO (MINIMALIST GEAR CATALOG)
   ========================================================================== */
.gear-section {
    padding: 6.5rem 0;
    position: relative;
    background: transparent;
}

.gear-filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3.2rem;
    position: relative;
    z-index: 1;
}

.gear-tab-btn {
    padding: 7px 18px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.81rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gear-tab-btn:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
}

.gear-tab-btn.active {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 1100px) {
    .gear-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .gear-grid {
        grid-template-columns: 1fr;
    }
}

.gear-card {
    background: rgba(255, 255, 255, 0.012);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    transition: all 0.3s ease;
}

.gear-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* Toques de color definidos pero sobrios en equipamiento */
.gear-card[data-category="mics"] {
    background: linear-gradient(165deg, rgba(244, 114, 182, 0.045) 0%, rgba(18, 14, 18, 0.5) 40%, rgba(10, 10, 14, 0.85) 100%);
    border: 1px solid rgba(244, 114, 182, 0.16);
}
.gear-card[data-category="mics"] .gear-category-tag {
    color: #f472b6;
    font-weight: 500;
}
.gear-card[data-category="mics"] .gear-spec-pill {
    border-color: rgba(244, 114, 182, 0.25);
    color: #f472b6;
    background: rgba(244, 114, 182, 0.08);
}
.gear-card[data-category="mics"]:hover {
    border-color: rgba(244, 114, 182, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), 0 0 16px rgba(244, 114, 182, 0.12);
}

.gear-card[data-category="monitoring"] {
    background: linear-gradient(165deg, rgba(52, 211, 153, 0.045) 0%, rgba(13, 20, 17, 0.5) 40%, rgba(10, 10, 14, 0.85) 100%);
    border: 1px solid rgba(52, 211, 153, 0.16);
}
.gear-card[data-category="monitoring"] .gear-category-tag {
    color: #34d399;
    font-weight: 500;
}
.gear-card[data-category="monitoring"] .gear-spec-pill {
    border-color: rgba(52, 211, 153, 0.25);
    color: #34d399;
    background: rgba(52, 211, 153, 0.08);
}
.gear-card[data-category="monitoring"]:hover {
    border-color: rgba(52, 211, 153, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), 0 0 16px rgba(52, 211, 153, 0.12);
}

.gear-card[data-category="hardware"] {
    background: linear-gradient(165deg, rgba(167, 139, 250, 0.045) 0%, rgba(19, 15, 24, 0.5) 40%, rgba(10, 10, 14, 0.85) 100%);
    border: 1px solid rgba(167, 139, 250, 0.16);
}
.gear-card[data-category="hardware"] .gear-category-tag {
    color: #c084fc;
    font-weight: 500;
}
.gear-card[data-category="hardware"] .gear-spec-pill {
    border-color: rgba(167, 139, 250, 0.25);
    color: #c084fc;
    background: rgba(167, 139, 250, 0.08);
}
.gear-card[data-category="hardware"]:hover {
    border-color: rgba(167, 139, 250, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), 0 0 16px rgba(167, 139, 250, 0.12);
}

.gear-card[data-category="software"] {
    background: linear-gradient(165deg, rgba(56, 189, 248, 0.045) 0%, rgba(13, 19, 24, 0.5) 40%, rgba(10, 10, 14, 0.85) 100%);
    border: 1px solid rgba(56, 189, 248, 0.16);
}
.gear-card[data-category="software"] .gear-category-tag {
    color: #38bdf8;
    font-weight: 500;
}
.gear-card[data-category="software"] .gear-spec-pill {
    border-color: rgba(56, 189, 248, 0.25);
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.08);
}
.gear-card[data-category="software"]:hover {
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), 0 0 16px rgba(56, 189, 248, 0.12);
}

.gear-card.is-hidden {
    display: none;
}

.gear-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 0.1rem;
}

.gear-category-tag {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.25s ease;
}

.gear-spec-pill {
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 2px 8px;
    border-radius: 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.25s ease;
}

.gear-name {
    font-size: 1.02rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.35;
}

.gear-role {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.48);
    font-weight: 300;
    line-height: 1.55;
    flex-grow: 1;
}

.gear-specs {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.gear-specs span {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: monospace;
    letter-spacing: 0.3px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    /* Navbar móvil */
    .studio-navbar {
        top: 12px;
        width: calc(100% - 24px);
        padding: 10px 18px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        background: rgba(11, 12, 16, 0.96);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        padding: 1.5rem 1.2rem;
        flex-direction: column;
        gap: 1.5rem;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95),
                    0 0 25px rgba(167, 139, 250, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
    }

    .nav-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px 16px;
        font-size: 1rem;
    }

    .nav-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
        font-size: 0.95rem;
    }

    .section-main-title {
        font-size: 1.85rem;
    }

    .services-section,
    .gear-section {
        padding: 5rem 0;
    }

    .services-grid,
    .gear-grid {
        grid-template-columns: 1fr;
    }

    .owner-container {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .modal-card,
    .vinyl-modal-card,
    .booking-modal-card {
        max-width: 100%;
        border-radius: 18px;
        padding: 1.5rem 1rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .vinyl-stage {
        width: 270px;
        height: 270px;
    }

    .vinyl-record {
        width: 260px;
        height: 260px;
    }

    .pin-sticker.pos-0 {
        top: 18px;
        left: 113px;
    }

    .pin-sticker.pos-1 {
        top: 45px;
        left: 175px;
    }

    .pin-sticker.pos-2 {
        top: 113px;
        left: 200px;
    }

    .pin-sticker.pos-3 {
        top: 182px;
        left: 175px;
    }

    .pin-sticker.pos-4 {
        top: 208px;
        left: 113px;
    }

    .pin-sticker.pos-5 {
        top: 182px;
        left: 50px;
    }

    .pin-sticker.pos-6 {
        top: 113px;
        left: 24px;
    }

    .pin-sticker.pos-7 {
        top: 45px;
        left: 50px;
    }
}

/* --- Estilos Dinámicos del Productor (Avatar, Badges y Layout) --- */
.producer-title-container {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.producer-avatar-img {
    width: 88px;
    height: 88px;
    min-width: 88px;
    min-height: 88px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 2px solid rgba(167, 139, 250, 0.5);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.4), 0 8px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    flex-shrink: 0;
}

.producer-avatar-img:hover {
    transform: scale(1.06);
    box-shadow: 0 0 35px rgba(167, 139, 250, 0.65), 0 10px 25px rgba(0, 0, 0, 0.7);
}

.producer-micro-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #a78bfa;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.producer-social-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1.5rem 0;
}

.prod-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-badge:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(167, 139, 250, 0.4);
    box-shadow: 0 8px 20px -4px rgba(124, 58, 237, 0.4);
}

.prod-badge .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a78bfa;
}

.prod-badge.spotify .badge-dot { background: #1db954; box-shadow: 0 0 8px rgba(29, 185, 84, 0.6); }
.prod-badge.instagram .badge-dot { background: #e1306c; box-shadow: 0 0 8px rgba(225, 48, 108, 0.6); }
.prod-badge.youtube .badge-dot { background: #ff0000; box-shadow: 0 0 8px rgba(255, 0, 0, 0.6); }
.prod-badge.applemusic .badge-dot { background: #fc3c44; box-shadow: 0 0 8px rgba(252, 60, 68, 0.6); }

/* --- Switcher de Medios: Segmented Glass Control --- */
.owner-image.card {
    padding: 1.2rem 1.2rem 1.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.owner-card-switcher-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 5;
    width: 100%;
}

.owner-segmented-control {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 440px;
    background: rgba(18, 18, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 999px;
    padding: 5px;
    gap: 6px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.owner-seg-btn {
    flex: 1 1 50%;
    width: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #94a3b8;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    font-family: inherit;
    text-align: center;
    white-space: nowrap;
}

.owner-seg-btn .seg-icon {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.owner-seg-btn:hover {
    color: #f1f5f9;
    background: rgba(255, 255, 255, 0.06);
}

.owner-seg-btn:hover .seg-icon {
    transform: scale(1.1);
}

.owner-seg-btn.active {
    color: #ffffff;
    font-weight: 600;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    box-shadow: 0 4px 18px rgba(139, 92, 246, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.owner-seg-btn.active .seg-icon {
    transform: scale(1.05);
}

/* --- Contenedor de Medios del Productor (Adaptación Completa sin Cortes) --- */
.owner-media-view {
    width: 100%;
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* La imagen se adapta al 100% del contenedor sin cortarse nunca */
.owner-media-view img,
.owner-image img.owner-full-photo,
.owner-full-photo {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    border-radius: 12px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.owner-image.card:hover .owner-media-view img,
.owner-image.card:hover img.owner-full-photo {
    filter: drop-shadow(0 15px 35px rgba(124, 58, 237, 0.35)) brightness(1.03);
    transform: scale(1.02);
}

/* --- Redes Sociales del Productor: Iconos de Cristal Flotantes --- */
.producer-social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 1.6rem 0 2rem 0;
}

.prod-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    outline: none;
}

.prod-icon-btn svg {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), fill 0.3s ease;
    display: block;
}

.prod-icon-btn:hover {
    transform: translateY(-5px) scale(1.12);
}

.prod-icon-btn:hover svg {
    transform: scale(1.15);
}

/* Colores específicos de hover para cada red */
.prod-icon-btn.spotify:hover {
    background: rgba(29, 185, 84, 0.18);
    border-color: rgba(29, 185, 84, 0.6);
    color: #1ed760;
    box-shadow: 0 10px 28px -4px rgba(29, 185, 84, 0.55);
}

.prod-icon-btn.instagram:hover {
    background: rgba(225, 48, 108, 0.18);
    border-color: rgba(225, 48, 108, 0.6);
    color: #ff5286;
    box-shadow: 0 10px 28px -4px rgba(225, 48, 108, 0.55);
}

.prod-icon-btn.youtube:hover {
    background: rgba(255, 0, 0, 0.18);
    border-color: rgba(255, 0, 0, 0.6);
    color: #ff3333;
    box-shadow: 0 10px 28px -4px rgba(255, 0, 0, 0.55);
}

.prod-icon-btn.applemusic:hover {
    background: rgba(252, 60, 68, 0.18);
    border-color: rgba(252, 60, 68, 0.6);
    color: #fc3c44;
    box-shadow: 0 10px 28px -4px rgba(252, 60, 68, 0.55);
}

/* ==========================================================================
   PANEL DE ADMINISTRACIÓN (PRODUCTOR & EQUIPAMIENTO)
   ========================================================================== */
.producer-admin-wrapper {
    min-height: 85vh;
    padding: 7rem 1.5rem 5rem;
    position: relative;
}

.producer-admin-container {
    max-width: 1160px;
    margin: 0 auto;
}

/* Navegación Modular entre Secciones de Administración */
.admin-nav-tabs {
    display: inline-flex;
    align-items: center;
    background: rgba(14, 14, 22, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 9999px;
    padding: 5px;
    gap: 4px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.6);
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}

.admin-nav-tabs::-webkit-scrollbar {
    display: none;
}

.admin-tab-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 0.84rem;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    background: transparent;
    border: 1.5px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    outline: none;
}

.admin-tab-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    transform: none;
}

.admin-tab-item.active {
    color: #ffffff;
    font-weight: 600;
    background: rgba(124, 58, 237, 0.18);
    border: 1.5px solid rgba(167, 139, 250, 0.65);
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.35);
    transform: none;
}

.admin-tab-item .tab-icon {
    font-size: 0.95rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.tab-text-full {
    display: inline;
}

.tab-text-short {
    display: none;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #cbd5e1;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.auth-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px #34d399;
}

.admin-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.admin-subtitle {
    color: #94a3b8;
    font-size: 0.92rem;
}

.admin-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.admin-btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    font-family: inherit;
}

.admin-btn.primary {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(167, 139, 250, 0.65);
    color: #ffffff;
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.35);
}

.admin-btn.primary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(167, 139, 250, 0.95);
    color: #ffffff;
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.6);
    transform: translateY(-1px);
}

.admin-btn.secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #cbd5e1;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}

.admin-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.admin-btn.danger {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(239, 68, 68, 0.6);
    color: #fca5a5;
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.35);
}

.admin-btn.danger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(239, 68, 68, 0.95);
    color: #ffffff;
    box-shadow: 0 0 24px rgba(239, 68, 68, 0.6);
    transform: translateY(-1px);
}

.auth-alert {
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.auth-alert.success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #a7f3d0;
}

.auth-alert.error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #fca5a5;
}

.admin-sections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 900px) {
    .admin-sections-grid {
        grid-template-columns: 1fr;
    }
}

.admin-card {
    background: rgba(18, 18, 28, 0.72);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.card-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-icon {
    font-size: 1.2rem;
}

.admin-card .form-group {
    margin-bottom: 1.5rem;
}

.admin-card label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.92rem;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.form-input:focus {
    border-color: rgba(167, 139, 250, 0.7);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

select.form-input {
    cursor: pointer;
    background-color: #12121a;
}

select.form-input option {
    background-color: #12121a;
    color: #ffffff;
}

.textarea-tall {
    resize: vertical;
    min-height: 120px;
}

.field-hint {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
    margin-top: 5px;
}

.image-upload-box {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 14px;
}

.current-image-preview {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #090910;
    display: flex;
    align-items: center;
    justify-content: center;
}

.current-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-controls {
    flex: 1;
}

.upload-hint {
    color: #94a3b8;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.file-input {
    color: #cbd5e1;
    font-size: 0.84rem;
}

.form-submit-bar {
    margin-top: 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.save-changes-btn {
    padding: 12px 28px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(167, 139, 250, 0.65);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.35);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.save-changes-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(167, 139, 250, 0.95);
    color: #ffffff;
    box-shadow: 0 0 26px rgba(124, 58, 237, 0.6);
    transform: translateY(-1px);
}

/* --- Tabla y Listado de Equipamiento --- */
.gear-table-card {
    background: rgba(18, 18, 28, 0.72);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    overflow-x: auto;
}

.gear-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.gear-table th {
    padding: 14px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gear-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    font-size: 0.9rem;
    vertical-align: middle;
}

.gear-table tr:last-child td {
    border-bottom: none;
}

.gear-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.gear-thumb-sm {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gear-thumb-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gear-thumb-sm .gear-placeholder-icon {
    font-size: 1.4rem;
    opacity: 0.6;
}

/* Badges de Categoría */
.cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.cat-badge.cat-1 {
    background: transparent;
    color: #d8b4fe;
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.cat-badge.cat-2 {
    background: transparent;
    color: #7dd3fc;
    border: 1px solid rgba(14, 165, 233, 0.4);
}

.cat-badge.cat-3 {
    background: transparent;
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.cat-badge.cat-4 {
    background: transparent;
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.action-btns-group {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    white-space: nowrap !important;
    flex-shrink: 0;
}

.action-btn-sm {
    padding: 7px 13px;
    border-radius: 9px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap !important;
    line-height: 1;
    box-sizing: border-box;
}

.action-btn-sm .vault-btn-svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.action-btn-sm.vault:hover .vault-btn-svg {
    transform: scale(1.15);
}

.action-btn-sm.edit {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(129, 140, 248, 0.55);
    color: #c7d2fe;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.3);
}

.action-btn-sm.edit:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(129, 140, 248, 0.9);
    color: #ffffff;
    box-shadow: 0 0 18px rgba(99, 102, 241, 0.55);
    transform: translateY(-1px);
}

.action-btn-sm.delete {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(239, 68, 68, 0.55);
    color: #fca5a5;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.3);
}

.action-btn-sm.delete:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(239, 68, 68, 0.9);
    color: #ffffff;
    box-shadow: 0 0 18px rgba(239, 68, 68, 0.55);
    transform: translateY(-1px);
}

/* Modal Personalizado de Confirmación de Eliminación */
.delete-modal-card {
    background: rgba(18, 18, 28, 0.92);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 20px;
    max-width: 460px;
    width: 90%;
    padding: 2.2rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 20px rgba(239, 68, 68, 0.12);
    animation: modalPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delete-modal-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.delete-modal-icon {
    font-size: 1.6rem;
}

.delete-modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.delete-modal-text {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.delete-gear-highlight {
    color: #ffffff;
    font-weight: 600;
}

.delete-modal-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.empty-state-card {
    text-align: center;
    padding: 4rem 2rem;
    color: #94a3b8;
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* --- Modal Visualizador de Foto de Equipamiento --- */
.gear-photo-modal-card {
    background: rgba(18, 18, 28, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2.2rem;
    max-width: 680px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(124, 58, 237, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.is-open .gear-photo-modal-card {
    transform: scale(1);
}

.gear-modal-header {
    margin-bottom: 1.2rem;
    padding-right: 2.5rem;
}

.gear-modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-top: 0.4rem;
}

.gear-modal-img-container {
    width: 100%;
    max-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    padding: 10px;
}

.gear-modal-img-container img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gear-modal-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Botón interactivo en la tarjeta de equipamiento */
.gear-img-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(167, 139, 250, 0.35);
    color: #c084fc;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.gear-img-pill-btn:hover {
    background: rgba(124, 58, 237, 0.35);
    border-color: rgba(167, 139, 250, 0.7);
    color: #ffffff;
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.45);
}

/* ==========================================================================
   VISTA DE ACCESO / LOGIN DEL PRODUCTOR
   ========================================================================== */
.producer-auth-wrapper {
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    position: relative;
}

.producer-auth-card {
    width: 100%;
    max-width: 440px;
    background: rgba(18, 18, 28, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2.8rem 2.4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.65), 0 0 25px rgba(124, 58, 237, 0.15);
    position: relative;
    overflow: hidden;
}

.producer-auth-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.6), rgba(56, 189, 248, 0.6), transparent);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #cbd5e1;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.auth-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}

.auth-subtitle {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.5;
}

.auth-form .form-group {
    margin-bottom: 1.6rem;
}

.auth-form label {
    display: block;
    font-size: 0.84rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 0.6rem;
}

/* ==========================================================================
   Campos de Contraseña con Botón de Revelar/Ocultar (Eye Toggle)
   ========================================================================== */
.password-input-group,
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-input-group input,
.password-input-group .form-input,
.password-input-wrapper input,
.password-input-wrapper .form-input {
    width: 100%;
    padding-right: 46px !important;
    box-sizing: border-box;
}

.password-input-wrapper input {
    padding: 13px 48px 13px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.25s ease;
}

.password-input-wrapper input:focus {
    border-color: rgba(167, 139, 250, 0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.pwd-toggle-btn,
.pwd-eye-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.15rem;
    line-height: 1;
    padding: 6px 8px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.65;
    border-radius: 8px;
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
    user-select: none;
    z-index: 5;
}

.pwd-toggle-btn:hover,
.pwd-eye-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-50%) scale(1.1);
}

.pwd-toggle-btn:active,
.pwd-eye-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.pwd-toggle-btn:focus-visible,
.pwd-eye-btn:focus-visible {
    outline: 2px solid #a78bfa;
    outline-offset: 2px;
}

/* Botón de Acceso: ultra-glassmorphic por dentro, solo borde y box-shadow tienen color */
.auth-submit-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(167, 139, 250, 0.65);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
}

.auth-submit-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(167, 139, 250, 0.95);
    color: #ffffff;
    box-shadow: 0 0 28px 2px rgba(124, 58, 237, 0.65);
    transform: translateY(-2px);
}

.auth-footer {
    text-align: center;
    margin-top: 1.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.back-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* ==========================================================================
   20. ESTILOS DE ARTISTAS & MODAL DE SPOTIFY
   ========================================================================== */

/* Subtítulo / Género en Tarjeta de Artista */
.artist-card-genre {
    font-size: 0.84rem;
    color: #cbd5e1;
    margin-top: 4px;
    line-height: 1.4;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Botón Escuchar en Spotify en Tarjeta */
.artist-spotify-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.85rem;
    padding: 0.5rem 1.15rem;
    background: rgba(10, 14, 22, 0.85);
    border: 1.5px solid rgba(29, 185, 84, 0.7);
    border-radius: 9999px;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 0 16px rgba(29, 185, 84, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    pointer-events: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.artist-spotify-btn:hover {
    background: rgba(29, 185, 84, 0.12);
    border-color: #1ed760;
    box-shadow: 0 0 24px rgba(29, 185, 84, 0.5), 0 6px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px) scale(1.03);
}

.artist-spotify-btn:active {
    transform: translateY(0) scale(0.97);
}

.artist-spotify-btn .spotify-svg-icon {
    color: #1db954;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.artist-spotify-btn:hover .spotify-svg-icon {
    transform: scale(1.15) rotate(-6deg);
}

/* Modal Glassmorphic de Spotify */
.spotify-modal-card {
    background: rgba(12, 12, 18, 0.88);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    border: 1.5px solid rgba(29, 185, 84, 0.45);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 35px rgba(29, 185, 84, 0.25);
    border-radius: 24px;
    width: 92%;
    max-width: 580px;
    padding: 1.8rem;
    position: relative;
    color: #ffffff;
    animation: modalPopIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotify-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spotify-modal-title-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.spotify-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.3);
    box-shadow: 0 0 15px rgba(29, 185, 84, 0.2);
}

.spotify-modal-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.02em;
}

.spotify-modal-subtitle {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 2px 0 0 0;
    font-weight: 400;
}

.spotify-modal-body {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000000;
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.8);
}

.spotify-player-wrapper {
    position: relative;
    width: 100%;
    min-height: 352px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotify-player-wrapper iframe {
    display: block;
    width: 100%;
    height: 352px;
    border: 0;
    border-radius: 14px;
}

/* Tabla y Componentes del Admin de Artistas */
.artist-thumb-sm {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-thumb-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-placeholder-icon {
    font-size: 1.4rem;
}

.artist-name-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.artist-desc-cell {
    color: #94a3b8;
    font-size: 0.86rem;
    line-height: 1.5;
}

.spotify-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.spotify-status-badge.has-spotify {
    background: rgba(255, 255, 255, 0.03);
    color: #4ade80;
    border-color: rgba(29, 185, 84, 0.5);
    box-shadow: 0 0 10px rgba(29, 185, 84, 0.15);
}

.spotify-status-badge.has-spotify:hover {
    background: rgba(29, 185, 84, 0.12);
    border-color: #1ed760;
    box-shadow: 0 0 16px rgba(29, 185, 84, 0.35);
    transform: translateY(-1px);
}

.spotify-status-badge.no-spotify {
    background: rgba(255, 255, 255, 0.02);
    color: #64748b;
    border-color: rgba(255, 255, 255, 0.08);
    cursor: default;
}

.spotify-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 6px #22c55e;
}

.col-w-70 { width: 70px; }
.col-w-160 { width: 160px; }
.col-w-180 { width: 180px; }
.col-w-220 { width: 220px; min-width: 220px; }
.text-right { text-align: right; }

.form-grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-grid-three-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .form-grid-two-cols,
    .form-grid-three-cols {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.textarea-short {
    min-height: 70px;
    resize: vertical;
}

.field-hint {
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 0.35rem;
    line-height: 1.4;
}

.field-validation-error-msg {
    color: #fca5a5;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.preview-img-placeholder {
    opacity: 0.35;
}

/* ==========================================================================
   21. CANDADO DE ACCESO EN TARJETAS DE ARTISTA & BÓVEDA PRIVADA DE AUDIO
   ========================================================================== */

/* Candado en esquina superior derecha de la tarjeta */
.artist-lock-btn {
    position: absolute !important;
    top: 1.25rem !important;
    right: 1.25rem !important;
    z-index: 25 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: rgba(12, 12, 18, 0.72) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1.5px solid rgba(245, 158, 11, 0.75) !important;
    color: #fbbf24 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6), 0 0 16px rgba(245, 158, 11, 0.3) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: auto !important;
    user-select: none !important;
    outline: none !important;
}

.artist-lock-btn svg {
    width: 20px !important;
    height: 20px !important;
    stroke: #fbbf24 !important;
    pointer-events: none !important;
    transition: transform 0.25s ease, stroke 0.25s ease !important;
}

.artist-lock-btn:hover {
    background: rgba(245, 158, 11, 0.2) !important;
    border-color: #f59e0b !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.7) !important;
}

.artist-lock-btn:hover svg {
    stroke: #ffffff !important;
    transform: scale(1.1) !important;
}

.artist-lock-btn:active {
    transform: scale(0.95) !important;
}

/* Modal de Acceso para Artistas */
.artist-login-card {
    max-width: 480px;
    border: 1.5px solid rgba(245, 158, 11, 0.45);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 35px rgba(245, 158, 11, 0.2);
}

.artist-login-card .delete-modal-text {
    margin-bottom: 1.4rem;
}

.artist-login-card label {
    margin-bottom: 0.6rem;
    display: inline-block;
    color: #cbd5e1;
    font-size: 0.88rem;
    font-weight: 500;
}

.artist-login-card .delete-modal-actions {
    margin-top: 1.85rem;
}

.artist-login-card #artist-login-error {
    margin-top: 0.9rem;
}

/* Clases Utilitarias de Espaciado */
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }

.vault-icon-wrap {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.text-left {
    text-align: left;
}

.artist-pwd-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.65rem;
    border-radius: 8px;
    font-size: 0.82rem;
    color: #cbd5e1;
}

.artist-pwd-badge code {
    color: #38bdf8;
    font-family: monospace;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

/* Botón de Acceso a Bóveda en Tabla Admin */
.action-btn-sm.vault {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(56, 189, 248, 0.6);
    color: #38bdf8;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.15);
}

.action-btn-sm.vault:hover {
    background: rgba(56, 189, 248, 0.12);
    border-color: #38bdf8;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
    transform: translateY(-2px);
}

/* ==========================================================================
   ESTILOS DE LA BÓVEDA PRIVADA DE COLABORACIÓN (ARCHIVO)
   ========================================================================== */
.vault-artist-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.vault-artist-avatar {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(167, 139, 250, 0.4);
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vault-artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vault-avatar-placeholder {
    font-size: 2rem;
}

.session-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.session-badge.producer {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(167, 139, 250, 0.6);
    color: #c4b5fd;
    box-shadow: 0 0 16px rgba(167, 139, 250, 0.25);
}

.session-badge.artist {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(245, 158, 11, 0.65);
    color: #fcd34d;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.25);
}

.vault-tracks-section {
    margin-top: 2rem;
}

.vault-section-header {
    margin-bottom: 1.75rem;
}

.vault-title-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vault-section-icon {
    font-size: 1.5rem;
}

.vault-section-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.03em;
}

.vault-track-count {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    color: #94a3b8;
}

.vault-section-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 0.4rem;
}

.vault-tracks-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vault-track-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vault-track-card:hover {
    border-color: rgba(167, 139, 250, 0.35);
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(167, 139, 250, 0.15);
    transform: translateY(-2px);
}

.track-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.track-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.track-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.02em;
}

.track-version-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.4);
    color: #c4b5fd;
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 10px rgba(167, 139, 250, 0.15);
}

.track-metadata {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #94a3b8;
    font-size: 0.82rem;
    margin-top: 0.45rem;
}

.track-original-name {
    color: #64748b;
}

.track-actions-top {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.vault-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.vault-action-btn.download {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(34, 197, 94, 0.65);
    color: #4ade80;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.18);
}

.vault-action-btn.download:hover {
    background: rgba(34, 197, 94, 0.12);
    border-color: #22c55e;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
}

.vault-action-btn.delete {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(239, 68, 68, 0.55);
    color: #f87171;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.15);
}

.vault-action-btn.delete:hover {
    background: rgba(239, 68, 68, 0.12);
    border-color: #ef4444;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}

.track-producer-notes {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid #a78bfa;
    padding: 0.75rem 1rem;
    border-radius: 0 10px 10px 0;
    margin-bottom: 1rem;
}

.notes-label {
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #a78bfa;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.track-producer-notes p {
    margin: 0;
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.track-player-wrap {
    margin-top: 0.85rem;
    padding: 0.6rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vault-audio-player {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    outline: none;
    filter: invert(0.9) hue-rotate(180deg);
}

.inline-form {
    display: inline;
    margin: 0;
    padding: 0;
}

/* Utilerías de Bóveda & Modales */
.is-hidden {
    display: none !important;
}

.admin-btn.is-loading {
    opacity: 0.65;
    pointer-events: none;
    cursor: wait;
}

/* ==========================================================================
   25. BARRAS DE FILTRO Y BÚSQUEDA EN TABLAS DE ADMINISTRACIÓN
   ========================================================================== */
.table-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.4rem;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.filter-inputs-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex: 1;
}

.table-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 240px;
    max-width: 420px;
}

.table-search-icon {
    position: absolute;
    left: 1rem;
    font-size: 0.95rem;
    color: #64748b;
    pointer-events: none;
}

.table-search-input {
    width: 100%;
    padding: 0.65rem 2.4rem 0.65rem 2.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: all 0.25s ease;
}

.table-search-input:focus {
    border-color: rgba(167, 139, 250, 0.6);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 16px rgba(167, 139, 250, 0.2);
}

.table-search-input::placeholder {
    color: #64748b;
}

.table-search-clear {
    position: absolute;
    right: 0.75rem;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.table-search-clear:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.table-filter-select {
    padding: 0.65rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.table-filter-select:focus {
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 0 16px rgba(167, 139, 250, 0.2);
}

.table-filter-select option {
    background-color: #0d0d15;
    color: #ffffff;
}

.table-filter-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.table-results-counter {
    font-size: 0.82rem;
    font-weight: 500;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.table-results-counter strong {
    color: #a78bfa;
}

.table-empty-filter-cell {
    text-align: center;
    padding: 3.5rem 1rem !important;
}

.empty-filter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.empty-filter-icon {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
}

.empty-filter-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0;
}

.empty-filter-text {
    font-size: 0.86rem;
    color: #94a3b8;
    margin: 0;
}

.btn-reset-filters {
    margin-top: 0.5rem;
    padding: 0.45rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(167, 139, 250, 0.6);
    color: #c4b5fd;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-reset-filters:hover {
    background: rgba(167, 139, 250, 0.15);
    border-color: #a78bfa;
    color: #ffffff;
    box-shadow: 0 0 16px rgba(167, 139, 250, 0.4);
    transform: translateY(-1px);
}

/* ==========================================================================
   26. VISTA RESPONSIVA DE TABLAS COMO TARJETAS (MOBILE CARD VIEW)
   ========================================================================== */
@media (max-width: 768px) {
    /* Píldoras de navegación en celular: 4 columnas iguales, 100% visible sin scroll */
    .admin-nav-tabs {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 5px !important;
        padding: 5px !important;
        border-radius: 18px !important;
        margin-bottom: 1.5rem !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    .admin-tab-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        padding: 10px 4px !important;
        border-radius: 14px !important;
        text-align: center !important;
        width: 100% !important;
        min-height: 54px !important;
        box-sizing: border-box !important;
    }

    .admin-tab-item .tab-icon {
        font-size: 1.15rem !important;
        line-height: 1 !important;
    }

    .tab-text-full {
        display: none !important;
    }

    .tab-text-short {
        display: block !important;
        font-size: 0.76rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.02em !important;
        white-space: nowrap !important;
    }

    .admin-tab-item.active {
        background: rgba(124, 58, 237, 0.22) !important;
        border: 1.5px solid rgba(167, 139, 250, 0.75) !important;
        box-shadow: 0 0 16px rgba(124, 58, 237, 0.4) !important;
        color: #ffffff !important;
    }

    /* Barra Superior de Control */
    .admin-topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }

    .admin-actions {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .admin-actions .admin-btn {
        flex: 1 1 calc(50% - 0.3rem);
        justify-content: center;
        text-align: center;
    }

    /* Barra de Búsqueda y Filtros en Celular */
    .table-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        padding: 1rem;
    }

    .filter-inputs-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.75rem;
    }

    .table-search-wrap {
        max-width: 100%;
        min-width: 100%;
        width: 100%;
    }

    .table-filter-select {
        width: 100%;
    }

    .table-filter-meta {
        justify-content: center;
        width: 100%;
    }

    .table-results-counter {
        width: 100%;
        text-align: center;
    }

    /* Contenedor de la Tabla en Móvil */
    .gear-table-card {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        overflow: visible !important;
    }

    .gear-table {
        display: block !important;
        width: 100% !important;
        border-collapse: separate !important;
    }

    .gear-table thead {
        display: none !important;
    }

    .gear-table tbody {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.1rem !important;
        width: 100% !important;
    }

    .gear-table td {
        display: block !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
    }

    /* --- CARDS DE EQUIPAMIENTO (MÓVIL) --- */
    .gear-table tr.gear-row {
        display: grid !important;
        grid-template-columns: 58px 1fr !important;
        grid-template-areas:
            "thumb name"
            "thumb cat"
            "desc desc"
            "actions actions" !important;
        row-gap: 0.45rem !important;
        column-gap: 0.85rem !important;
        align-items: center !important;
        background: rgba(18, 18, 28, 0.85) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 20px !important;
        padding: 1.25rem !important;
        box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.75), 0 0 20px rgba(124, 58, 237, 0.08) !important;
        transition: transform 0.25s ease, border-color 0.25s ease !important;
    }

    .gear-table tr.gear-row:hover {
        border-color: rgba(167, 139, 250, 0.35) !important;
    }

    .gear-table tr.gear-row .col-gear-thumb {
        grid-area: thumb !important;
        align-self: start !important;
    }

    .gear-table tr.gear-row .gear-thumb-sm {
        width: 58px !important;
        height: 58px !important;
        border-radius: 14px !important;
    }

    .gear-table tr.gear-row .col-gear-name {
        grid-area: name !important;
    }

    .gear-table tr.gear-row .col-gear-name strong {
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        display: block !important;
        line-height: 1.3 !important;
    }

    .gear-table tr.gear-row .col-gear-cat {
        grid-area: cat !important;
    }

    .gear-table tr.gear-row .col-gear-desc {
        grid-area: desc !important;
        padding-top: 0.65rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
        color: #cbd5e1 !important;
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
    }

    .gear-table tr.gear-row .col-gear-actions {
        grid-area: actions !important;
        padding-top: 0.75rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
        text-align: left !important;
    }

    /* --- CARDS DE ARTISTAS (MÓVIL) --- */
    .gear-table tr.artist-row {
        display: grid !important;
        grid-template-columns: 58px 1fr !important;
        grid-template-areas:
            "thumb name"
            "thumb spotify"
            "pwd pwd"
            "desc desc"
            "actions actions" !important;
        row-gap: 0.45rem !important;
        column-gap: 0.85rem !important;
        align-items: center !important;
        background: rgba(18, 18, 28, 0.85) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 20px !important;
        padding: 1.25rem !important;
        box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.75), 0 0 20px rgba(124, 58, 237, 0.08) !important;
        transition: transform 0.25s ease, border-color 0.25s ease !important;
    }

    .gear-table tr.artist-row:hover {
        border-color: rgba(167, 139, 250, 0.35) !important;
    }

    .gear-table tr.artist-row .col-artist-thumb {
        grid-area: thumb !important;
        align-self: start !important;
    }

    .gear-table tr.artist-row .artist-thumb-sm {
        width: 58px !important;
        height: 58px !important;
        border-radius: 14px !important;
    }

    .gear-table tr.artist-row .col-artist-name {
        grid-area: name !important;
    }

    .gear-table tr.artist-row .artist-name-title {
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        display: block !important;
        line-height: 1.3 !important;
    }

    .gear-table tr.artist-row .col-artist-spotify {
        grid-area: spotify !important;
    }

    .gear-table tr.artist-row .col-artist-pwd {
        grid-area: pwd !important;
        padding: 0.25rem 0 !important;
    }

    .gear-table tr.artist-row .artist-pwd-badge {
        font-size: 0.82rem !important;
        padding: 0.35rem 0.75rem !important;
    }

    .gear-table tr.artist-row .col-artist-desc {
        grid-area: desc !important;
        padding-top: 0.65rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
        color: #cbd5e1 !important;
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
    }

    .gear-table tr.artist-row .col-artist-actions {
        grid-area: actions !important;
        padding-top: 0.75rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
        text-align: left !important;
    }

    /* --- CARDS DE SERVICIOS (MÓVIL) --- */
    .gear-table tr.service-row {
        display: grid !important;
        grid-template-columns: 52px 1fr !important;
        grid-template-areas:
            "thumb name"
            "thumb price"
            "acento acento"
            "specs specs"
            "actions actions" !important;
        row-gap: 0.5rem !important;
        column-gap: 0.85rem !important;
        align-items: center !important;
        background: rgba(18, 18, 28, 0.85) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 20px !important;
        padding: 1.25rem !important;
        box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.75), 0 0 20px rgba(124, 58, 237, 0.08) !important;
        transition: transform 0.25s ease, border-color 0.25s ease !important;
    }

    .gear-table tr.service-row:hover {
        border-color: rgba(167, 139, 250, 0.35) !important;
    }

    .gear-table tr.service-row .col-artist-thumb {
        grid-area: thumb !important;
        align-self: start !important;
    }

    .gear-table tr.service-row .col-artist-name {
        grid-area: name !important;
    }

    .gear-table tr.service-row [data-label="Precio"] {
        grid-area: price !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .gear-table tr.service-row [data-label="Acento"] {
        grid-area: acento !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding-top: 0.4rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .gear-table tr.service-row [data-label="Especificaciones"] {
        grid-area: specs !important;
        padding-top: 0.5rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .gear-table tr.service-row [data-label="Acciones"] {
        grid-area: actions !important;
        padding-top: 0.75rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
        display: flex !important;
        justify-content: flex-end !important;
    }

    /* Botones de acción en tarjetas móviles */
    .gear-table .action-btns-group {
        display: flex !important;
        width: 100% !important;
        gap: 0.6rem !important;
    }

    .gear-table .action-btns-group .action-btn-sm {
        flex: 1 !important;
        justify-content: center !important;
        padding: 10px 14px !important;
        font-size: 0.84rem !important;
    }

    .gear-table .action-btns-group .action-btn-sm.vault {
        flex: 2 !important;
    }

    /* Fila de estado vacío en celular */
    .gear-table tr#gear-no-results,
    .gear-table tr#artist-no-results,
    .admin-table tr#service-no-results {
        display: block !important;
        width: 100% !important;
        background: rgba(18, 18, 28, 0.8) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 20px !important;
        padding: 1rem !important;
    }

    .gear-table tr#gear-no-results.is-hidden,
    .gear-table tr#artist-no-results.is-hidden,
    .admin-table tr#service-no-results.is-hidden {
        display: none !important;
    }
}

/* ==========================================================================
   27. ESTILOS DE SERVICIOS & MODAL DE DETALLES COMPLETOS
   ========================================================================== */

/* Barra Superior de Tarjeta de Servicio */
.service-card-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.service-card-price-pill {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
}

/* Botón Ver Más en Tarjetas Públicas cubriendo todo el ancho */
.service-more-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    font-size: 0.84rem;
    font-weight: 500;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    user-select: none;
    box-sizing: border-box;
}

.service-more-btn:hover {
    background: rgba(167, 139, 250, 0.18);
    border-color: rgba(167, 139, 250, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px -4px rgba(124, 58, 237, 0.3);
}

.service-more-icon {
    font-size: 1rem;
    line-height: 1;
}

.service-more-badge {
    display: none !important;
}

/* Footer de la tarjeta con botones a todo el ancho */
.service-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
}

/* Modal Glassmorphism de Información Completa del Servicio */
.service-modal-card {
    position: relative;
    background: rgba(15, 15, 24, 0.94);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1.5px solid rgba(167, 139, 250, 0.35);
    border-radius: 26px;
    padding: 2.2rem;
    max-width: 620px;
    width: 90%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(124, 58, 237, 0.2);
    animation: modalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.service-modal-header {
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(167, 139, 250, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.3);
    color: #c4b5fd;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
}

.service-modal-title {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0.6rem 0 0.8rem;
    letter-spacing: -0.01em;
}

.service-modal-price-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 12px;
}

.service-modal-price-label {
    font-size: 0.82rem;
    color: #94a3b8;
}

.service-modal-price-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: #38bdf8;
}

.service-modal-subtitle {
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-modal-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.service-modal-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.service-modal-specs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.92rem;
    color: #e2e8f0;
    line-height: 1.5;
}

.service-modal-specs-list li .spec-check {
    color: #a78bfa;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}

.service-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    z-index: 10;
}

.service-modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    color: #ef4444;
    transform: rotate(90deg);
}

.service-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.4rem;
}

/* Modal Media (Video e Imagen) */
.service-modal-img-wrap {
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    max-height: 280px;
    border: 1px solid rgba(167, 139, 250, 0.25);
    background: rgba(10, 10, 16, 0.85);
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.7);
}

.service-modal-img-wrap img,
.service-modal-img-wrap video,
.service-modal-media {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

/* Visual en Tabla de Servicios (Admin) */
.service-thumb-video-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(167, 139, 250, 0.25);
    border: 1px solid rgba(167, 139, 250, 0.35);
}

.service-thumb-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-thumb-video-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    font-size: 0.68rem;
    background: rgba(15, 15, 25, 0.88);
    border: 1px solid rgba(167, 139, 250, 0.4);
    border-radius: 4px;
    padding: 1px 3px;
    line-height: 1;
    pointer-events: none;
}

/* Gestor Dinámico de Especificaciones en Administración */
.specs-dynamic-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0.8rem;
}

.spec-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.spec-row-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #a78bfa;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-input-text {
    flex: 1;
}

.btn-remove-spec {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-remove-spec:hover {
    background: rgba(239, 68, 68, 0.25);
    border-color: #ef4444;
    transform: scale(1.05);
}

.specs-counter-badge {
    display: inline-block;
    background: rgba(167, 139, 250, 0.15);
    border: 1px solid rgba(167, 139, 250, 0.35);
    color: #c4b5fd;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    margin-bottom: 4px;
}

.specs-tags-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-width: 320px;
}

.spec-tag-item {
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    padding: 2px 8px;
    border-radius: 6px;
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spec-tag-item.more {
    background: rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    font-weight: 600;
}

.service-icon-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-table-desc {
    color: #94a3b8;
    font-size: 0.82rem;
    line-height: 1.4;
    margin-top: 2px;
    max-width: 340px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-price-tag {
    font-weight: 700;
    color: #38bdf8;
    font-size: 0.95rem;
}

.accent-badge-pill {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    text-transform: capitalize;
}

.accent-badge-pill.card-accent-pink {
    background: rgba(244, 114, 182, 0.15);
    border: 1px solid rgba(244, 114, 182, 0.4);
    color: #f472b6;
}

.accent-badge-pill.card-accent-purple {
    background: rgba(167, 139, 250, 0.15);
    border: 1px solid rgba(167, 139, 250, 0.4);
    color: #a78bfa;
}

.accent-badge-pill.card-accent-cyan {
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #38bdf8;
}

.accent-badge-pill.card-accent-gold {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24;
}

/* ==========================================================================
   30. ESTILOS REFINADOS PARA MÓDULO DE SERVICIOS & TARIFAS (ADMIN & FORMS)
   ========================================================================== */

/* Pastillas de precio en tabla de administración */
.service-price-pill-admin {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: 8px;
    color: #38bdf8;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.service-price-custom {
    font-size: 0.84rem;
    color: #94a3b8;
    font-style: italic;
}

/* Punto indicador de color en pastillas de acento */
.accent-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}

/* Resumen de especificaciones en tabla */
.service-specs-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.specs-counter-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.specs-counter-badge {
    font-size: 0.78rem;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
}

.specs-plus-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: #c4b5fd;
    background: rgba(167, 139, 250, 0.15);
    border: 1px solid rgba(167, 139, 250, 0.35);
    padding: 2px 7px;
    border-radius: 6px;
}

.spec-bullet {
    color: #a78bfa;
    font-size: 0.76rem;
    margin-right: 2px;
}

/* Callout informativo en formularios de Servicios */
.specs-info-callout {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(56, 189, 248, 0.06));
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-radius: 14px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.4);
}

.specs-info-callout .callout-icon {
    font-size: 1.3rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

.specs-info-callout .callout-text {
    font-size: 0.86rem;
    line-height: 1.55;
    color: #cbd5e1;
}

.specs-info-callout .callout-text strong {
    color: #ffffff;
}

.specs-info-callout .callout-text em {
    color: #a78bfa;
    font-style: normal;
    font-weight: 600;
}

/* Gestor Dinámico de Especificaciones Refinado */
.specs-dynamic-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1rem;
}

.spec-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.25s ease;
}

.spec-input-row:focus-within {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(167, 139, 250, 0.4);
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.12);
}

.spec-row-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(167, 139, 250, 0.35);
    border-radius: 10px;
    color: #c4b5fd;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', 'Consolas', monospace;
    flex-shrink: 0;
}

.spec-input-text {
    flex: 1;
    background: transparent !important;
    border: none !important;
    padding: 8px 6px !important;
    color: #ffffff !important;
    font-size: 0.9rem !important;
    box-shadow: none !important;
}

.spec-input-text:focus {
    box-shadow: none !important;
    outline: none !important;
}

.spec-input-text::placeholder {
    color: #64748b !important;
}

.btn-remove-spec {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 8px;
    color: #f87171;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-remove-spec:hover {
    background: rgba(239, 68, 68, 0.25);
    border-color: #ef4444;
    color: #ffffff;
    transform: scale(1.08);
}

.specs-actions-bar {
    margin: 0.75rem 0 1.5rem 0;
}

.btn-add-spec-stylish {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(124, 58, 237, 0.12);
    border: 1.5px dashed rgba(167, 139, 250, 0.45);
    border-radius: 12px;
    color: #c4b5fd;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-add-spec-stylish:hover {
    background: rgba(124, 58, 237, 0.22);
    border-color: #a78bfa;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.35);
}

.btn-add-icon {
    font-size: 0.95rem;
}

/* Animación de entrada para nueva fila */
.fade-in-row {
    animation: specRowFadeIn 0.25s ease forwards;
}

@keyframes specRowFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glow para avatares según acento */
.service-icon-avatar.card-accent-pink {
    border-color: rgba(244, 114, 182, 0.4);
    box-shadow: 0 0 14px rgba(244, 114, 182, 0.2);
}

.service-icon-avatar.card-accent-purple {
    border-color: rgba(167, 139, 250, 0.4);
    box-shadow: 0 0 14px rgba(167, 139, 250, 0.2);
}

.service-icon-avatar.card-accent-cyan {
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.2);
}

.service-icon-avatar.card-accent-gold {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 0 14px rgba(245, 158, 11, 0.2);
}

/* ==========================================================================
   31. BOTONES DE ACCIÓN EN TABLA ADMIN DE SERVICIOS
   ========================================================================== */

/* Contenedor de botones de acción */
.admin-table-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

/* Botón de acción genérico */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 1.05rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    outline: none;
    line-height: 1;
}

/* Botón Editar — azul/púrpura */
.action-btn.edit {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: #818cf8;
}

.action-btn.edit:hover {
    background: rgba(99, 102, 241, 0.22);
    border-color: rgba(99, 102, 241, 0.65);
    color: #ffffff;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 6px 20px -4px rgba(99, 102, 241, 0.45);
}

/* Botón Eliminar — rojo */
.action-btn.delete {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.action-btn.delete:hover {
    background: rgba(239, 68, 68, 0.22);
    border-color: rgba(239, 68, 68, 0.6);
    color: #ffffff;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 6px 20px -4px rgba(239, 68, 68, 0.4);
}

/* Foco por teclado */
.action-btn:focus-visible {
    outline: 2px solid rgba(167, 139, 250, 0.7);
    outline-offset: 2px;
}

/* Mobile: botones de acción full-width en tarjetas */
@media (max-width: 700px) {
    .admin-table-actions {
        width: 100%;
        justify-content: stretch;
        gap: 10px;
    }

    .action-btn {
        flex: 1;
        height: 42px;
        border-radius: 12px;
        font-size: 1.1rem;
        width: auto;
    }

    .action-btn.edit {
        background: rgba(99, 102, 241, 0.15);
        border-color: rgba(99, 102, 241, 0.4);
    }

    .action-btn.delete {
        background: rgba(239, 68, 68, 0.12);
        border-color: rgba(239, 68, 68, 0.35);
    }
}

/* ==========================================================================
   --- VISTA DEDICADA: VER TODOS LOS ARTISTAS EN CARDS (12CREW STUDIO) ---
   ========================================================================== */

/* Botón "Ver todos" en la sección de inicio */
.artists-header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.view-all-artists-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 9999px;
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.35);
    color: #e2e8f0;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.view-all-artists-btn:hover {
    background: rgba(167, 139, 250, 0.22);
    border-color: rgba(167, 139, 250, 0.7);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -6px rgba(167, 139, 250, 0.35);
}

.view-all-artists-btn .btn-arrow-icon {
    display: inline-block;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.view-all-artists-btn:hover .btn-arrow-icon {
    transform: translate(2px, -2px);
}

/* Contenedor principal de la vista de todos los artistas */
.artists-all-wrapper {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 90px;
    background-color: var(--bg-color, #08070d);
    overflow: hidden;
}

.artists-all-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Barra superior de retorno */
.artists-all-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateX(-3px);
}

.back-home-btn.primary {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.25), rgba(99, 102, 241, 0.3));
    border-color: rgba(167, 139, 250, 0.5);
    color: #ffffff;
}

.back-home-btn.primary:hover {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.4), rgba(99, 102, 241, 0.5));
    box-shadow: 0 10px 24px -6px rgba(167, 139, 250, 0.4);
}

.artists-all-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.22);
    color: #c4b5fd;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.artists-all-pill-badge .pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #a78bfa;
    box-shadow: 0 0 10px #a78bfa;
    animation: pulseGlow 2s infinite ease-in-out;
}

/* Encabezado */
.artists-all-header {
    margin-bottom: 2.5rem;
}

.artists-all-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.artists-all-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: #94a3b8;
    max-width: 650px;
    line-height: 1.6;
    margin: 0;
}

/* Barra de Búsqueda y Filtros */
.artists-all-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1rem 1.4rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.4);
}

.artists-search-wrap {
    position: relative;
    flex: 1;
    min-width: 260px;
    max-width: 550px;
    display: flex;
    align-items: center;
}

.artists-search-icon {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artists-search-input {
    width: 100%;
    padding: 0.75rem 2.6rem 0.75rem 2.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 10, 16, 0.7);
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.artists-search-input::placeholder {
    color: #64748b;
}

.artists-search-input:focus {
    border-color: rgba(167, 139, 250, 0.6);
    background: rgba(14, 14, 22, 0.9);
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.18);
}

.artists-search-clear {
    position: absolute;
    right: 0.8rem;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.artists-search-clear:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.artists-counter-badge {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.artists-counter-badge strong {
    color: #a78bfa;
    font-weight: 600;
}

/* Cuadrícula de Cards de Todos los Artistas */
.artists-all-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Tarjeta individual de Artista en el Catálogo */
.artist-catalog-card {
    position: relative;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(18, 18, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.45s ease,
                box-shadow 0.45s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.artist-catalog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(167, 139, 250, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 0 25px rgba(167, 139, 250, 0.22);
}

.artist-catalog-card.is-hidden {
    display: none !important;
}

/* Medio / Imagen de la tarjeta */
.artist-catalog-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.artist-catalog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.artist-catalog-card:hover .artist-catalog-media img {
    transform: scale(1.06);
}

/* Gradiente cinematográfico sobre la imagen para perfecta legibilidad */
.artist-catalog-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 7, 13, 0.25) 0%,
        rgba(8, 7, 13, 0.15) 30%,
        rgba(8, 7, 13, 0.75) 65%,
        rgba(8, 7, 13, 0.96) 100%
    );
    z-index: 2;
    transition: opacity 0.4s ease;
}

.artist-catalog-card:hover .artist-catalog-gradient {
    background: linear-gradient(
        180deg,
        rgba(8, 7, 13, 0.2) 0%,
        rgba(26, 18, 50, 0.25) 30%,
        rgba(8, 7, 13, 0.8) 65%,
        rgba(8, 7, 13, 0.98) 100%
    );
}

/* Botón de candado superior derecho */
.artist-catalog-card .artist-lock-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 4;
}

/* Bloque inferior de información */
.artist-catalog-info {
    position: relative;
    z-index: 3;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.artist-catalog-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
}

.artist-catalog-card:hover .artist-catalog-name {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

.artist-catalog-desc {
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.artist-catalog-desc-muted {
    color: #94a3b8;
    font-style: italic;
}

/* Barra de acciones dentro de la tarjeta */
.artist-catalog-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Botón de Spotify adaptado a la card */
.artist-catalog-actions .artist-spotify-btn {
    margin-top: 0;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
    border-radius: 9999px;
    background: rgba(29, 185, 84, 0.12);
    border: 1px solid rgba(29, 185, 84, 0.3);
    color: #4ade80;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.artist-catalog-actions .artist-spotify-btn:hover {
    background: #1ed760;
    border-color: #1ed760;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(30, 215, 96, 0.5);
}

/* Iconos de redes sociales del artista */
.artist-socials-group {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.artist-social-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.artist-social-icon-btn:hover {
    background: rgba(167, 139, 250, 0.2);
    border-color: rgba(167, 139, 250, 0.45);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Estado de búsqueda sin resultados */
.artists-all-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(18, 18, 26, 0.5);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    max-width: 600px;
    margin: 2rem auto;
}

.artists-all-empty .empty-icon-box {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.artists-all-empty .empty-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.artists-all-empty .empty-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.btn-reset-search {
    padding: 0.65rem 1.4rem;
    border-radius: 9999px;
    background: rgba(167, 139, 250, 0.15);
    border: 1px solid rgba(167, 139, 250, 0.35);
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset-search:hover {
    background: rgba(167, 139, 250, 0.3);
    border-color: rgba(167, 139, 250, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Adaptabilidad para pantallas móviles */
@media (max-width: 768px) {
    .artists-all-wrapper {
        padding: 90px 0 60px;
    }

    .artists-all-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .artists-search-wrap {
        max-width: 100%;
    }

    .artists-counter-badge {
        text-align: right;
    }

    .artists-all-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .artist-catalog-card {
        height: 440px;
    }
}

/* ==========================================================================
   --- MÓDULO DE GESTIÓN DE CITAS DEL PRODUCTOR (12CREW STUDIO) ---
   ========================================================================== */

/* Badge en la pestaña de citas del admin */
.admin-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 9999px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    margin-left: 6px;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
    animation: pulseBadge 2s infinite ease-in-out;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 0 14px rgba(239, 68, 68, 0.85); }
}

/* Enlace directo a WhatsApp en la alerta */
.whatsapp-direct-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.2rem;
    border-radius: 9999px;
    background: #22c55e;
    color: #000000;
    font-weight: 700;
    font-size: 0.86rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-direct-link-btn:hover {
    background: #16a34a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
}

.whatsapp-direct-link-btn.whatsapp-reject-link-btn {
    background: #ef4444;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.whatsapp-direct-link-btn.whatsapp-reject-link-btn:hover {
    background: #dc2626;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
}

/* Métricas Resumen KPI */
.citas-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.citas-kpi-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(18, 18, 26, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.citas-kpi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.7);
}

.citas-kpi-card.pending { border-color: rgba(245, 158, 11, 0.3); }
.citas-kpi-card.approved { border-color: rgba(34, 197, 94, 0.3); }
.citas-kpi-card.completed { border-color: rgba(56, 189, 248, 0.3); }
.citas-kpi-card.rejected { border-color: rgba(239, 68, 68, 0.3); }

.citas-kpi-card .kpi-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
}

.citas-kpi-card .kpi-content {
    display: flex;
    flex-direction: column;
}

.citas-kpi-card .kpi-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.citas-kpi-card .kpi-label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Selector de Sub-Pestañas */
.citas-subnav-bar {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.8rem;
}

.citas-subnav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.25rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.citas-subnav-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.citas-subnav-btn.active {
    background: rgba(167, 139, 250, 0.15);
    border-color: rgba(167, 139, 250, 0.5);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.2);
}

.citas-subnav-btn .citas-badge {
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
    color: #cbd5e1;
}

.citas-subnav-btn.active .citas-badge {
    background: #a78bfa;
    color: #0b0c10;
}

.citas-subnav-btn .citas-badge.has-alert {
    background: #ef4444;
    color: #ffffff;
}

/* Contenedor de Pestaña activa */
.citas-tab-content {
    display: none;
}

.citas-tab-content.active {
    display: block;
    animation: fadeInTab 0.35s ease;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Grid de Tarjetas de Citas */
.citas-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cita-card-item {
    background: rgba(18, 18, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6);
    transition: all 0.35s ease;
}

.cita-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.8);
}

.cita-card-item.pending-card {
    border-top: 3px solid #f59e0b;
}

.cita-card-item.approved-card {
    border-top: 3px solid #22c55e;
}

.cita-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.cita-client-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cita-client-avatar.approved {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
}

.cita-client-meta {
    flex: 1;
    min-width: 0;
}

.cita-client-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cita-date-badge {
    display: inline-block;
    font-size: 0.78rem;
    color: #cbd5e1;
    text-transform: capitalize;
}

.cita-status-pill {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.cita-status-pill.pending {
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: #fbbf24;
}

.cita-status-pill.approved {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #4ade80;
}

.cita-status-pill.rejected {
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #f87171;
}

.cita-status-pill.completed {
    background: rgba(56, 189, 248, 0.18);
    border: 1px solid rgba(56, 189, 248, 0.5);
    color: #38bdf8;
}

/* Cuerpo de la Tarjeta */
.cita-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cita-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
}

.cita-info-row .info-label {
    color: #94a3b8;
}

.cita-info-row .info-value {
    color: #e2e8f0;
    font-weight: 500;
    text-align: right;
}

.cita-info-row .info-value.time-slot {
    color: #a78bfa;
    font-weight: 600;
}

.cita-info-row .info-value.service-name {
    color: #ffffff;
    font-weight: 600;
}

.cita-info-row .contact-link {
    color: #4ade80;
    text-decoration: none;
    font-weight: 600;
}

.cita-info-row .contact-link:hover {
    text-decoration: underline;
}

.cita-notes-box {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(167, 139, 250, 0.6);
    border-radius: 6px;
}

.cita-notes-box .notes-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #c4b5fd;
    margin-bottom: 4px;
}

.cita-notes-box .notes-text {
    font-size: 0.82rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.4;
}

/* Footer con Acciones de la Tarjeta */
.cita-card-footer {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.cita-card-footer .form-inline-action {
    margin: 0;
    display: inline-block;
}

.cita-action-btn {
    padding: 0.65rem 1.15rem;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: all 0.25s ease;
    border: none;
    text-decoration: none;
}

.cita-action-btn.approve {
    flex: 2;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.35);
}

.cita-action-btn.approve:hover {
    background: linear-gradient(135deg, #15803d, #16a34a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.cita-action-btn.reject {
    flex: 1;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
}

.cita-action-btn.reject:hover {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
}

.cita-action-btn.whatsapp-link {
    flex: 2;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.45);
    color: #4ade80;
}

.cita-action-btn.whatsapp-link:hover {
    background: #22c55e;
    color: #ffffff;
    border-color: #22c55e;
    transform: translateY(-2px);
}

.cita-action-btn.complete {
    flex: 1;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #38bdf8;
}

.cita-action-btn.complete:hover {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
}

.cita-action-btn.google-cal-link {
    flex: 1.5;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

.cita-action-btn.google-cal-link:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.cita-action-btn.sync-google-btn {
    padding: 0.65rem 0.95rem;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #c084fc;
}

.cita-action-btn.sync-google-btn:hover {
    background: #9333ea;
    color: #ffffff;
    border-color: #9333ea;
    transform: translateY(-2px);
}

.cita-status-pill.google-synced {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    font-size: 0.72rem;
    padding: 3px 9px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.cita-gcal-auto-notice {
    margin-top: 0.85rem;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gcal-auto-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    flex-shrink: 0;
}

.horario-chip {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    background: rgba(167, 139, 250, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.3);
    color: #c4b5fd;
    font-size: 0.78rem;
    font-weight: 500;
}

.admin-filter-select {
    padding: 0.65rem 1.2rem;
    border-radius: 12px;
    background: rgba(14, 14, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
}

.admin-filter-select:focus {
    border-color: #a78bfa;
}

/* Responsividad para Móvil */
@media (max-width: 768px) {
    .citas-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .citas-cards-grid {
        grid-template-columns: 1fr;
    }

    .cita-card-footer {
        flex-direction: column;
    }

    .cita-card-footer .cita-action-btn {
        width: 100%;
    }

    .cita-card-footer .form-inline-action {
        width: 100%;
    }
}

/* ==========================================================================
   GESTOR DE VIDEO PRINCIPAL DE PORTADA (HERO MANAGER)
   ========================================================================== */
.video-manager-card {
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(167, 139, 250, 0.25) !important;
    background: linear-gradient(135deg, rgba(20, 20, 32, 0.85) 0%, rgba(12, 12, 20, 0.9) 100%) !important;
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.7), 0 0 30px rgba(124, 58, 237, 0.08) !important;
}

.video-manager-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-badge {
    background: rgba(124, 58, 237, 0.18);
    border: 1px solid rgba(167, 139, 250, 0.4);
    color: #c4b5fd;
    margin-bottom: 0.5rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.status-pill.default-pill {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #93c5fd;
}

.status-pill.custom-pill {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #86efac;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
}

.pill-dot.active {
    box-shadow: 0 0 10px currentColor;
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.video-manager-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 960px) {
    .video-manager-grid {
        grid-template-columns: 1fr;
    }
}

/* Reproductor de Previsualización */
.video-preview-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.video-screen-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #08080c;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.8), 0 0 20px rgba(124, 58, 237, 0.15);
}

.video-screen-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    outline: none;
}

.video-player-overlay-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    z-index: 3;
}

.video-player-overlay-tag .rec-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px #ef4444;
    animation: blinkRec 1.5s infinite;
}

@keyframes blinkRec {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.video-preview-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.82rem;
    color: #94a3b8;
}

.video-file-info {
    color: #cbd5e1;
    font-weight: 500;
    word-break: break-all;
}

.video-tip {
    color: #a78bfa;
    font-size: 0.78rem;
}

/* Dropzone de carga de archivo */
.video-controls-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.video-dropzone {
    position: relative;
    border: 2px dashed rgba(167, 139, 250, 0.35);
    border-radius: 14px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
}

.video-dropzone:hover,
.video-dropzone.drag-over {
    border-color: #a78bfa;
    background: rgba(124, 58, 237, 0.08);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
}

.video-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    pointer-events: none;
}

.dropzone-icon {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
    filter: drop-shadow(0 4px 10px rgba(124, 58, 237, 0.4));
    transition: transform 0.3s ease;
}

.video-dropzone:hover .dropzone-icon {
    transform: scale(1.12);
}

.dropzone-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.dropzone-hint {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 0;
}

.selected-file-badge {
    margin-top: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.16);
    border: 1px solid rgba(167, 139, 250, 0.4);
    color: #e2e8f0;
    font-size: 0.84rem;
}

.selected-file-badge .file-icon {
    font-size: 1rem;
}

.selected-file-badge .file-name {
    font-weight: 600;
    color: #ffffff;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.selected-file-badge .file-size {
    color: #cbd5e1;
    font-size: 0.78rem;
}

.btn-clear-file {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    margin-left: 4px;
}

.btn-clear-file:hover {
    background: #ef4444;
}

/* Caja para restablecer video oficial */
.video-restore-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.3rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.restore-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.restore-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #f1f5f9;
}

.restore-desc {
    font-size: 0.76rem;
    color: #94a3b8;
}

.btn-restore-video {
    font-size: 0.82rem !important;
    padding: 0.6rem 1.1rem !important;
    white-space: nowrap;
    border-color: rgba(255, 255, 255, 0.18) !important;
}

.btn-restore-video:hover {
    border-color: #38bdf8 !important;
    color: #38bdf8 !important;
}