/* TOKEN TECMUSIC - styles optimizado */
:root {
  --transition-smooth: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --primary-neon: #00f2ff;
  --text-muted: rgba(255,255,255,0.5);
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
}
@import 'styles_agents.css';

:root {

    --bg-base: #020210;
    --bg-surface: #0a0a20;

    --primary-neon: #0088ff;
    --secondary-neon: #9d00ff;
    --accent-neon: #ff00ff;
    --warn-neon: #00f0ff;

    --text-pure: #ffffff;
    --text-primary: #f0f4ff;
    --text-muted: #a0a6cc;

    --glass-bg: rgba(15, 10, 40, 0.45);
    --glass-border: rgba(157, 0, 255, 0.2);
    --glass-border-hover: rgba(0, 136, 255, 0.5);

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-ui: 'Inter', sans-serif;

    --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: all 0.2s ease-out;

    --letter-spacing-pro: 0.05em;
    --line-height-pro: 1.6;


    --mouse-x: 50%;
    --mouse-y: 50%;
}

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

body {

    background: var(--bg-base) url('fondo.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

.bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: -3;
    object-fit: cover;
    object-position: 25% center;
    opacity: 0.75;
    filter: brightness(0.85);
    pointer-events: none;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image:
        linear-gradient(rgba(0, 136, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 136, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -2;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.bg-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x-global) var(--mouse-y-global), rgba(0, 136, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.3;
    mix-blend-mode: screen;
}

.orb-1 {
    top: -10%; left: 0%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--accent-neon), transparent 70%);
    animation: pulseOrb 12s ease-in-out infinite alternate;
}
.orb-2 {
    bottom: -15%; right: 5%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, var(--primary-neon), transparent 70%);
    animation: pulseOrb 15s ease-in-out infinite alternate-reverse;
}

@keyframes pulseOrb {
    0% { transform: scale(0.9) translate(0, 0); opacity: 0.25; }
    50% { opacity: 0.4; }
    100% { transform: scale(1.1) translate(40px, -20px); opacity: 0.5; }
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 50px;
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(2, 2, 8, 0.4);
    backdrop-filter: blur(3px);
    border-bottom: 1px solid rgba(0, 136, 255, 0.03);
}

body:not(.index-page) .main-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
}

body:not(.index-page) .main-header .logo-container,
body:not(.index-page) .main-header .header-center,
body:not(.index-page) .main-header .logo-stack {
    grid-column: 2;
}

body:not(.index-page) .main-header > *:first-child {
    justify-self: start;
}

body:not(.index-page) .main-header > *:last-child {
    justify-self: end;
}

.header-token-logo, .token-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 136, 255, 0.4));
    transition: var(--transition-smooth);
    margin-right: 20px;
    margin-left: auto;
    transform: translateX(45%);
}

.header-token-logo:hover, .token-logo-img:hover {
    filter: drop-shadow(0 0 25px var(--primary-neon));
    transform: scale(1.05);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
}

body.index-page .logo-container {
    justify-content: flex-start;
    margin-left: 0;
}

.logo-stack {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.header-news-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(157, 0, 255, 0.5));
    transition: var(--transition-smooth);
    margin-top: 0;
    animation: newsGlow 3s ease-in-out infinite alternate;
}

@keyframes newsGlow {
    from { filter: drop-shadow(0 0 8px rgba(157, 0, 255, 0.4)); }
    to { filter: drop-shadow(0 0 20px rgba(157, 0, 255, 0.8)); }
}

.header-news-logo:hover {
    filter: drop-shadow(0 0 25px var(--accent-neon));
    transform: scale(1.1);
}

.social-dock {
    display: flex;
    gap: 15px;
}

.glass-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 14px;
    color: var(--text-primary);
    text-decoration: none;
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255,255,255,0.05);
}

.glass-icon:hover {
    transform: translateY(-5px);
    background: rgba(157, 0, 255, 0.15);
    border-color: var(--warn-neon);
    color: var(--warn-neon);
    box-shadow: 0 8px 25px rgba(0, 136, 255, 0.4), inset 0 0 10px rgba(157, 0, 255, 0.3);
}

.custom-3d-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    transition: var(--transition-smooth);
}

.custom-3d-icon-small {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6));
    transition: var(--transition-smooth);
}

.glass-icon:hover .custom-3d-icon, .contact-item:hover .custom-3d-icon-small {
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 8px 15px rgba(0, 136, 255, 0.6));
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 340px 1fr 340px;
    gap: 40px;
    padding: 20px 50px 40px 50px;
    max-width: 1800px;
    margin: 0 auto;
    min-height: calc(100vh - 120px);
}

.column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    z-index: 10;
}

.right-col {
    transform: none;
}

.left-col {
    justify-content: flex-start;
    padding-top: 20px;
}

.premium-glass {
    background: linear-gradient(145deg, rgba(20, 15, 45, 0.7) 0%, rgba(10, 5, 20, 0.5) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(157, 0, 255, 0.3);
    border-left: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(157, 0, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
    perspective: 2000px;
}

.premium-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.premium-glass:hover::before {
    opacity: 1;
}

.glass-btn {
    background: linear-gradient(145deg, rgba(25, 20, 50, 0.6) 0%, rgba(10, 8, 25, 0.4) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(0, 136, 255, 0.3);
    border-radius: 14px;
    color: var(--text-pure);
    padding: 10px 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.glass-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-neon), transparent 40%, transparent 60%, var(--accent-neon));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-btn:hover {
    transform: translateY(-3px) scale(1.01);
    background: linear-gradient(145deg, rgba(35, 25, 75, 0.8) 0%, rgba(20, 10, 35, 0.6) 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 136, 255, 0.3);
}

.glass-btn:hover::after {
    opacity: 1;
}

.glass-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.glass-btn:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 136, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 136, 255, 0.3);
    box-shadow: inset 0 0 15px rgba(0, 136, 255, 0.2);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.task-icon {
    font-size: 1.5rem;
    color: var(--primary-neon);
    filter: drop-shadow(0 0 8px rgba(0, 136, 255, 0.6));
    transition: var(--transition-smooth);
}

.glass-btn:hover .icon-wrapper {
    background: rgba(157, 0, 255, 0.2);
    border-color: var(--secondary-neon);
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.4), inset 0 0 20px rgba(157, 0, 255, 0.3);
}

.glass-btn:hover .task-icon {
    color: var(--text-pure);
    filter: drop-shadow(0 0 15px var(--warn-neon));
    transform: scale(1.1);
}

.slogan-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: -10px;
}

.slogan-accent-line {
    width: 4px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary-neon), var(--secondary-neon));
    border-radius: 4px;
    box-shadow: 0 0 15px var(--warn-neon);
}

.slogan-card h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-pure);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

@keyframes genesisPulse {
    0%, 100% {
        text-shadow: 0 0 15px rgba(255, 69, 0, 0.3), 0 0 30px rgba(255, 69, 0, 0.1);
        color: #ffccaa;
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 100, 0, 0.8), 0 0 60px rgba(255, 69, 0, 0.4), 0 0 100px rgba(255, 0, 0, 0.2);
        color: #fff;
    }
}

@keyframes genesisSweep {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.slogan-card .genesis-text {
    animation: genesisPulse 4s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

.slogan-card .genesis-highlight {
    background: linear-gradient(90deg,
        rgba(255, 69, 0, 0) 0%,
        rgba(255, 69, 0, 0.8) 45%,
        #fff 50%,
        rgba(255, 215, 0, 0.8) 55%,
        rgba(255, 215, 0, 0) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    animation: genesisSweep 6s linear infinite;
    position: relative;
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.4));
}

.slogan-card .genesis-highlight::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-text-fill-color: #fff;
    opacity: 0.1;
    filter: blur(2px);
}

@keyframes rebirthFloat {
    0%, 100% { transform: translateY(0) scale(1); filter: brightness(1); }
    50% { transform: translateY(-5px) scale(1.01); filter: brightness(1.2); }
}

.slogan-card.stagger-item.appear {
    animation: rebirthFloat 8s ease-in-out infinite;
}

.hidden { display: none !important; }

.contact-header {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--primary-neon);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 136, 255, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    font-family: var(--font-ui);
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
}

.contact-item:hover {
    background: rgba(0, 136, 255, 0.1);
    transform: translateX(5px);
    color: var(--text-pure);
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.2);
}

.contact-item i {
    color: var(--secondary-neon);
    font-size: 1.2rem;
    text-align: center;
    filter: drop-shadow(0 0 5px rgba(157, 0, 255, 0.4));
}

.center-col {
    align-items: center;
    position: relative;
    padding-top: 20px;
}

.phoenix-container {
    width: 100%;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
    margin-bottom: -40px;
}

.cyber-circles {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(950px);
    pointer-events: none;
}

.circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 136, 255, 0.1);
    opacity: 0.4;
}

.circle-1 {
    width: 700px; height: 700px;
    border-top-color: rgba(0, 136, 255, 0.3);
    border-width: 1px;
    animation: rotateCircle 60s linear infinite;
}

.circle-3 {
    width: 400px; height: 400px;
    border-right-color: rgba(157, 0, 255, 0.2);
    border-width: 1px;
    animation: rotateCircle 40s linear infinite;
}

.circle-2 {
    width: 550px; height: 550px;
    border-bottom-color: rgba(0, 240, 255, 0.2);
    border-width: 1px;
    border-style: dashed;
    animation: rotateCircle 50s linear infinite reverse;
}

@keyframes rotateCircle {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.phoenix-placeholder {
    width: 750px;
    height: 750px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    opacity: 1;
    transition: var(--transition-smooth);
    pointer-events: none;
    transform: translateX(950px);
}

.phoenix-placeholder:hover {
    opacity: 0.8;
}

#three-canvas-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 850px;
    height: 850px;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

.phoenix-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 136, 255, 0.5)) drop-shadow(0 0 20px rgba(157, 0, 255, 0.4));
    animation: floatFrame 8s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.phoenix-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.15) 0%, rgba(157, 0, 255, 0.05) 50%, transparent 80%);
    filter: blur(80px);
    z-index: 1;
    animation: pulseGlowBlue 8s ease-in-out infinite alternate;
    border-radius: 50%;
}

@keyframes floatFrame {
    0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 15px rgba(0, 136, 255, 0.4)); }
    50% { transform: translateY(-10px) scale(1.02); filter: drop-shadow(0 15px 30px rgba(157, 0, 255, 0.6)); }
}

@keyframes pulseGlowBlue {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.center-token-logo {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 50px rgba(0, 136, 255, 0.5));
    z-index: 10;
    position: relative;
    transition: var(--transition-smooth);
    animation: floatMainLogo 6s ease-in-out infinite alternate;
}

.center-token-logo:hover {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 40px rgba(157, 0, 255, 0.6));
    transform: scale(1.05);
}

@keyframes floatMainLogo {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.nav-cluster,
.nav-cluster-bottom,
.nav-cluster-right,
.nav-cluster-right-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.nav-cluster-bottom {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.nav-cluster-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.nav-cluster-right {
    flex-direction: row;
    gap: 15px;
}

.nav-cluster-right > * {
    flex: 1;
    min-width: 0;
}

.wide-btn {
    width: 100%;
}

.highlight-btn .icon-wrapper {
    background: rgba(255, 0, 255, 0.15);
    border-color: rgba(255, 0, 255, 0.4);
}
.highlight-btn .task-icon { color: var(--accent-neon); filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.6)); }
.highlight-btn:hover .icon-wrapper { background: rgba(255, 0, 255, 0.3); border-color: var(--accent-neon); }

.secondary-highlight .icon-wrapper {
    background: rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.4);
}
.secondary-highlight .task-icon { color: var(--warn-neon); filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6)); }
.secondary-highlight:hover .icon-wrapper { background: rgba(0, 240, 255, 0.3); border-color: var(--warn-neon); }

@media (max-width: 1400px) and (min-width: 1101px) {
    .phoenix-placeholder, .cyber-circles {
        transform: translateX(360px);
    }
}

@media (max-width: 1100px) {
    .phoenix-placeholder, .cyber-circles {
        transform: translateX(0);
    }
    body.index-page .logo-container {
        margin-left: 0;
    }
    .product-layout {
        padding: 20px;
        gap: 20px;
    }
}

@media (max-width: 1300px) {
    .dashboard-grid { grid-template-columns: 1fr 1fr; }
    .center-col { grid-column: 1 / -1; order: -1; }
    .center-token-logo { max-width: 250px; }
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 12px;
    }
    .main-header {
        padding: 12px 15px;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }
    .logo-stack { transform: scale(0.85); }
    .nav-cluster-bottom, .nav-cluster-right, .nav-cluster-right-bottom {
        flex-direction: column;
        gap: 10px;
    }
    .cyber-circles { display: none; }
    .phoenix-placeholder {
        transform: translateX(0);
        width: 280px;
        height: 280px;
    }
    .phoenix-container {
        height: 220px;
        margin-bottom: -20px;
    }
    .center-token-logo {
        max-width: 200px;
    }
    .slogan-card h2 { font-size: 1.6rem; }
    .glass-btn {
        padding: 8px 12px;
        gap: 12px;
    }
    .icon-wrapper {
        width: 40px;
        height: 40px;
    }
    .btn-title {
        font-size: 0.75rem;
    }
    .agent-id {
        font-size: 0.6rem;
    }


    #custom-cursor, #custom-cursor-follower {
        display: none !important;
    }


    .premium-glass, .glass-btn, .glass-icon {
        backdrop-filter: blur(8px);
    }

    .glow-orb {
        display: none;
    }


    .contact-card {
        padding: 15px;
    }
    .contact-grid {
        gap: 10px;
    }
    .contact-item {
        padding: 3px 8px;
        font-size: 0.85rem;
    }


    .mission-log-card {
        padding: 15px;
    }


    .social-dock {
        gap: 8px;
    }
    .glass-icon {
        width: 48px;
        height: 48px;
    }
    .custom-3d-icon {
        width: 32px;
        height: 32px;
    }


    .slogan-card {
        padding: 15px;
    }
    .slogan-accent-line {
        height: 70px;
    }


    .tech-clock-container {
        display: none;
    }


    .bg-video {
        object-position: center center;
    }
}

@media (max-width: 480px) {
    .product-layout { padding: 15px 10px; }
    .guitar-grid { grid-template-columns: 1fr; }
    .content-scroll { gap: 15px; }
    .price-badge { font-size: 1.2rem; }
}

.tech-clock-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 136, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 2px 10px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    width: fit-content;
}

.clock-digital {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    letter-spacing: 2px;
}

.clock-date {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badges-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.trust-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
}

.trust-tag i {
    font-size: 1.1rem;
    color: var(--primary-neon);
}

@media (max-width: 768px) {
    .tech-clock-container { display: none; }
}

.brand-marquee-container {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(0, 136, 255, 0.2);
    border-bottom: 1px solid rgba(0, 136, 255, 0.2);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.marquee-title {
    position: absolute;
    top: 50%; left: 30px;
    transform: translateY(-50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    color: var(--primary-neon);
    letter-spacing: 2px;
    z-index: 5;
    background: rgba(0,0,0,0.8);
    padding: 2px 8px;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.marquee-content span {
    margin: 0 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 5px;
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
}

.marquee-content span:hover {
    color: var(--primary-neon);
    text-shadow: 0 0 15px var(--primary-neon);
    transform: scale(1.1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.search-wrapper { position: relative; }

#search-overlay {
    position: absolute;
    top: 60px; right: 0;
    width: 350px;
    background: rgba(5, 10, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--primary-neon);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    z-index: 1000;
    transition: all 0.3s ease;
}

#search-overlay.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

#global-search {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    outline: none;
}

#global-search:focus { border-color: var(--primary-neon); }

#search-results {
    margin-top: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.search-item:hover { background: rgba(0, 136, 255, 0.1); }

.search-item img { width: 40px; height: 40px; object-fit: contain; }

.mission-log-card { margin-top: 20px; }
.testimonial-item p { font-style: italic; color: var(--text-primary); font-size: 0.9rem; }
.testimonial-item span { display: block; margin-top: 10px; color: var(--primary-neon); font-size: 0.75rem; font-weight: 700; }

.ai-bubble-prompt {
    position: absolute;
    bottom: 80px; right: 20px;
    background: rgba(5, 10, 30, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--primary-neon);
    padding: 10px 20px;
    border-radius: 12px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.4);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 1000;
}

.ai-bubble-prompt.active {
    opacity: 1;
    transform: translateY(0);
}

.ai-bubble-prompt::after {
    content: '';
    position: absolute;
    bottom: -8px; right: 25px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-neon);
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(10px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.8s ease;
}

.stagger-item.appear {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.glitch-reveal {
    animation: glitchIn 0.8s forwards;
}

@keyframes glitchIn {
    0% { clip-path: inset(50% 0 50% 0); opacity: 0; transform: skewX(-20deg); }
    20% { clip-path: inset(10% 0 80% 0); opacity: 0.5; }
    40% { clip-path: inset(40% 0 10% 0); opacity: 0.8; }
    60% { clip-path: inset(0 0 60% 0); opacity: 1; transform: skewX(10deg); }
    80% { clip-path: inset(20% 0 20% 0); transform: skewX(-5deg); }
    100% { clip-path: inset(0 0 0 0); opacity: 1; transform: skewX(0); }
}

.product-modal-detail {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    align-items: flex-start;
}

@keyframes modalItemEnter {
    from { opacity: 0; transform: translateY(20px); filter: blur(5px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.product-preview-box {
    flex: 1;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    animation: modalItemEnter 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.1s;
}

.modal-product-img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px var(--primary-neon));
}

.product-info-box {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    animation: modalItemEnter 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.2s;
}

.detail-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--warn-neon);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.detail-desc {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.detail-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.detail-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.detail-specs li i {
    color: var(--primary-neon);
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .product-modal-detail {
        flex-direction: column;
        align-items: center;
    }
    .product-preview-box {
        width: 100%;
    }
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #05020a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}
.loader-ring {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top-color: var(--primary-neon);
    border-right-color: var(--secondary-neon);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.loader-text {
    font-family: var(--font-display);
    color: var(--text-pure);
    letter-spacing: 4px;
    font-size: 1.2rem;
}

html, body, * {
    cursor: none !important;
}

#custom-cursor {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--primary-neon);
    border-radius: 50%;
    left: 0; top: 0;
    pointer-events: none !important;
    z-index: 2147483647 !important;
    transition: width 0.2s, height 0.2s, background 0.2s;
    box-shadow: 0 0 15px var(--primary-neon), 0 0 5px #fff;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    will-change: transform;
}

#custom-cursor-follower {
    position: fixed;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0, 136, 255, 0.5);
    border-radius: 50%;
    left: 0; top: 0;
    pointer-events: none !important;
    z-index: 2147483646 !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex !important;
    justify-content: center;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

#custom-cursor-follower::before,
#custom-cursor-follower::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

#custom-cursor-follower::before {
    border-top: 2px solid var(--primary-neon);
    border-bottom: 2px solid var(--primary-neon);
    animation: rotateCursor 4s linear infinite;
}

#custom-cursor-follower::after {
    border-left: 1px solid var(--secondary-neon);
    border-right: 1px solid var(--secondary-neon);
    width: 80%;
    height: 80%;
    animation: rotateCursor 2s linear infinite reverse;
    opacity: 0.5;
}

@keyframes rotateCursor {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#custom-cursor.cursor-hover {
    width: 10px;
    height: 10px;
    background: var(--accent-neon);
    box-shadow: 0 0 20px var(--accent-neon);
}

#custom-cursor-follower.follower-hover {
    width: 55px;
    height: 55px;
    border-color: var(--accent-neon);
    background: rgba(157, 0, 255, 0.05);
    backdrop-filter: blur(2px);
}

#custom-cursor-follower.follower-hover::before {
    border-top-color: var(--accent-neon);
    border-bottom-color: var(--accent-neon);
    width: 110%;
    height: 110%;
}

.cursor-ping {
    position: fixed;
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary-neon);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2147483645;
    animation: cursorPingAnim 0.6s ease-out forwards;
}

@keyframes cursorPingAnim {
    0% { width: 10px; height: 10px; opacity: 1; border-width: 4px; }
    100% { width: 80px; height: 80px; opacity: 0; border-width: 1px; }
}

.hud-scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
    box-shadow: 0 0 15px var(--primary-neon);
    z-index: 5;
    pointer-events: none;
    animation: hudScan 2s linear infinite;
}

@keyframes hudScan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

#glass-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, backdrop-filter 0.5s ease, background 0.5s ease, -webkit-backdrop-filter 0.5s ease;
}
#glass-modal.active {
    opacity: 1;
    visibility: visible;
    background: rgba(5, 2, 15, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
.modal-content {
    width: 90%;
    max-width: 600px;
    transform: translateY(50px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#glass-modal.active .modal-content {
    transform: translateY(0) scale(1);
}
#close-modal {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
    color: var(--text-pure);
    font-size: 1.5rem;
    cursor: none;
    transition: color 0.3s;
}
#close-modal:hover { color: var(--warn-neon); }
.cyber-loading-bar {
    width: 100%; height: 4px;
    background: rgba(255,255,255,0.1);
    margin-top: 20px;
    overflow: hidden;
    border-radius: 2px;
}
.loading-progress {
    width: 50%; height: 100%;
    background: var(--primary-neon);
    box-shadow: 0 0 10px var(--primary-neon);
    animation: loadBar 2s infinite ease-in-out alternate;
}
@keyframes loadBar { 0% { width: 10%; } 100% { width: 90%; } }

.mobile-only { display: none; }
@media (max-width: 900px) {
    .mobile-only { display: flex; width: 50px; justify-content: center; padding: 10px; }
    .left-col {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 85%;
        max-width: 320px;
        z-index: 2000;
        background: rgba(10, 5, 20, 0.95);
        backdrop-filter: blur(20px);
        padding: 80px 20px 20px 20px;
        transition: transform 0.4s ease;
        overflow-y: auto;
        transform: translateX(-100%);
    }
    .left-col.mobile-open { transform: translateX(0); }

    .dashboard-grid { padding-top: 100px; }
    .main-header {
        padding: 15px 20px;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 3000;
        background: rgba(5, 2, 10, 0.8);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(0, 136, 255, 0.2);
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }
    .social-dock { display: none; }
    .phoenix-placeholder {
        width: 300px;
        height: 300px;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsapp-float 3s ease-in-out infinite, whatsapp-pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #20ba5a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.5;
    z-index: -1;
    animation: whatsapp-ping 2s ease-out infinite;
}

@keyframes whatsapp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes whatsapp-ping {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

@media (max-width: 600px) {
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

#ai-assistant-container {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 1000;
}

#ai-toggle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    background: url('SONITRON.png') no-repeat center center;
    background-size: cover;
    border: 2px solid var(--primary-neon);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#ai-toggle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 136, 255, 0.2));
    pointer-events: none;
}

#ai-toggle span.ai-icon { display: none; }

#ai-toggle:hover {
    transform: scale(1.1);
    border-color: #0088ff;
    box-shadow: 0 0 30px rgba(0, 136, 255, 0.5);
}

#ai-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(145deg, rgba(20, 15, 45, 0.7) 0%, rgba(10, 5, 20, 0.5) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(157, 0, 255, 0.2);
    border-radius: 24px;
}

#ai-chat-box.hidden {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

.ai-header h4 {
    font-family: 'Orbitron', sans-serif;
    color: #0088ff;
    margin: 0;
}

.ai-content {
    font-size: 0.9rem;
    color: #f0f4ff;
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 10px;
    min-height: 50px;
}

.ai-input input {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(157, 0, 255, 0.2);
    padding: 10px;
    border-radius: 8px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
}

.ai-input input:focus {
    outline: none;
    border-color: #0088ff;
}


/* ================================================
   TOKEN TECMUSIC - MOBILE OPTIMIZADO
   Breakpoints: 900px | 768px | 480px | 380px
   ================================================ */

/* === HEADER MOVIL === */
@media (max-width: 900px) {
    .main-header {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px !important;
        gap: 8px;
        position: fixed;
        top: 0; left: 0; right: 0;
        width: 100%;
        z-index: 3000;
        background: rgba(5,2,10,0.95) !important;
        backdrop-filter: blur(20px);
        box-sizing: border-box;
    }
    .logo-container { flex-shrink: 0; }
    .header-token-logo { height: 36px !important; }
    .header-news-logo { height: 18px !important; }
    .tech-clock-container { display: none !important; }
    .social-dock {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }
    .social-icon { width: 32px !important; height: 32px !important; }
    .custom-3d-icon { width: 22px !important; height: 22px !important; }
    .search-container { display: none !important; }
    .dashboard-grid { padding-top: 75px !important; }
}

/* === GRID PRINCIPAL MOVIL === */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr !important;
        padding: 80px 12px 20px !important;
        gap: 14px !important;
    }
    .center-col { order: -1; }
    .center-token-logo {
        max-width: 180px !important;
        left: 0 !important;
        position: relative !important;
        margin: 0 auto !important;
        display: block !important;
    }
    .phoenix-container { min-height: 200px !important; }

    /* LEFT COL - menú lateral */
    .left-col {
        position: fixed !important;
        top: 0; left: -100% !important;
        height: 100vh !important;
        width: 80% !important;
        max-width: 300px !important;
        z-index: 2000 !important;
        background: rgba(5,2,10,0.98) !important;
        backdrop-filter: blur(30px) !important;
        overflow-y: auto !important;
        transition: left 0.3s ease !important;
        padding: 80px 15px 30px !important;
        border-right: 1px solid rgba(0,136,255,0.2) !important;
    }
    .left-col.mobile-open { left: 0 !important; }

    /* NAV BUTTONS */
    .nav-cluster, .nav-cluster-right {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .nav-btn {
        padding: 10px 8px !important;
        font-size: 0.65rem !important;
    }
    .btn-title { font-size: 0.6rem !important; }
    .icon-wrapper { width: 36px !important; height: 36px !important; }

    /* CONTACT CARD */
    .contact-card { padding: 16px !important; }
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    /* WIDE BUTTONS */
    .wide-btn { padding: 12px 10px !important; }
}

/* === NOVEDADES MOVIL === */
@media (max-width: 768px) {
    section[style*="max-width:1400px"] {
        padding: 0 12px !important;
        margin-bottom: 30px !important;
    }
}

/* === CONTADOR Y COMPRAR === */
@media (max-width: 768px) {
    .btn-comprar-ahora {
        padding: 8px 12px !important;
        font-size: 0.65rem !important;
    }
    .world-counter { padding: 8px 12px !important; }
    .counter-number { font-size: 0.85rem !important; }
}

/* === WHATSAPP MOVIL === */
@media (max-width: 600px) {
    .whatsapp-btn {
        padding: 10px 14px 10px 10px !important;
        bottom: 20px !important;
        right: 15px !important;
        border-radius: 50px !important;
    }
    .wa-text span:first-child { font-size: 0.55rem !important; }
    .wa-text span:last-child { display: none !important; }
}

/* === BLOG / TOKEN NEWS MOVIL === */
@media (max-width: 768px) {
    .blog-hero { height: 50vh !important; padding: 30px 20px !important; }
    .hero-content h2 { font-size: 2.2rem !important; }
    .hero-content p { font-size: 0.9rem !important; }
    .news-container {
        padding: 0 15px !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .news-card { grid-column: span 1 !important; }
    .editorial-header { padding: 15px 20px !important; }
    .editorial-brand h1 { font-size: 1.4rem !important; letter-spacing: 6px !important; }
}

/* === PRODUCTO MOVIL === */
@media (max-width: 768px) {
    .product-layout {
        flex-direction: column !important;
        padding: 15px !important;
    }
    .product-preview-box {
        width: 100% !important;
        height: 220px !important;
    }
    .guitar-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    .product-modal-detail {
        flex-direction: column !important;
    }
}

/* === ULTRA PEQUEÑO 380px === */
@media (max-width: 380px) {
    .guitar-grid { grid-template-columns: 1fr !important; }
    .nav-cluster, .nav-cluster-right { grid-template-columns: 1fr !important; }
    .editorial-brand h1 { font-size: 1.1rem !important; letter-spacing: 3px !important; }
    .hero-content h2 { font-size: 1.8rem !important; }
    .btn-comprar-ahora .buy-text span:last-child { display: none !important; }
}

/* === OVERLAY MENU MOVIL === */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1999;
    backdrop-filter: blur(3px);
}
.mobile-overlay.active { display: block; }


/* ===== PRELOADER FILL BAR ANIMATION ===== */
.preloader-bar {
    width: 280px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-top: 20px;
    overflow: hidden;
}
.preloader-fill {
    height: 100%;
    background: linear-gradient(90deg, #00f2ff, #9d00ff, #ffb800);
    border-radius: 3px;
    animation: fillBar 3.5s ease-out forwards;
}
@keyframes fillBar {
    0%   { width: 0%; }
    20%  { width: 30%; }
    50%  { width: 65%; }
    80%  { width: 88%; }
    100% { width: 100%; }
}
