/* ===== TALLER LABORATORY SCIENTIFIC THEME ===== */

/* Fuentes científicas y futuristas */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Share+Tech+Mono&family=Exo+2:wght@300;400;500;600;700&family=Audiowide&display=swap');

/* Variables de colores científicos */
:root {
    --lab-primary: #00ffff;
    --lab-secondary: #0080ff;
    --lab-accent: #00ff80;
    --lab-warning: #ffaa00;
    --lab-danger: #ff4444;
    --lab-success: #44ff44;
    --lab-dark: #0a0a0a;
    --lab-light: #ffffff;
    --lab-glass: rgba(0, 255, 255, 0.1);
    --lab-glow: 0 0 20px currentColor;
    --lab-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    --lab-gradient: linear-gradient(135deg, #001122 0%, #003366 50%, #004488 100%);
    --lab-hologram: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    --lab-circuit: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 255, 255, 0.1) 2px, rgba(0, 255, 255, 0.1) 4px);
}

/* Animaciones científicas */
@keyframes hologramFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
    75% { opacity: 0.9; }
}

@keyframes dataFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100vw); }
}

@keyframes experimentBubble {
    0% {
        transform: translateY(100px) scale(0);
        opacity: 0;
    }
    50% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

@keyframes scanLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes circuitPulse {
    0%, 100% {
        box-shadow: 0 0 5px var(--lab-primary);
    }
    50% {
        box-shadow: 0 0 20px var(--lab-primary), 0 0 30px var(--lab-primary);
    }
}

@keyframes hologramScan {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@keyframes labRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes energyPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

@keyframes moleculeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes laserBeam {
    0% {
        width: 0;
        opacity: 1;
    }
    50% {
        width: 100%;
        opacity: 0.8;
    }
    100% {
        width: 100%;
        opacity: 0;
    }
}

@keyframes processStep {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    50% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(50px);
        opacity: 0;
    }
}

/* Estilos base del taller */
.workshop-page {
    background: var(--lab-gradient);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-family: 'Rajdhani', sans-serif;
    color: var(--lab-light);
}

.workshop-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lab-circuit);
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
    animation: dataFlow 20s linear infinite;
}

.workshop-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--lab-primary), transparent);
    animation: scanLine 3s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

/* Efectos de laboratorio flotantes */
.lab-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.molecule {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--lab-accent) 0%, transparent 70%);
    border-radius: 50%;
    animation: moleculeFloat 8s ease-in-out infinite;
    opacity: 0.6;
}

.molecule:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.molecule:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
.molecule:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
.molecule:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 6s; }

/* Hero Section científico */
.workshop-hero {
    padding: 120px 0 80px;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 128, 255, 0.1) 100%);
    border-bottom: 2px solid var(--lab-primary);
}

.workshop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lab-hologram);
    background-size: 200% 100%;
    animation: hologramScan 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-text h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--lab-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: var(--lab-glow);
    position: relative;
    animation: hologramFlicker 3s ease-in-out infinite;
}

.hero-text h1::before {
    content: '🧪';
    position: absolute;
    top: -20px;
    left: -60px;
    font-size: 2rem;
    animation: energyPulse 2s ease-in-out infinite;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--lab-primary), var(--lab-accent), var(--lab-primary));
    animation: laserBeam 2s ease-in-out infinite;
}

.hero-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--lab-light);
    margin-bottom: 40px;
    background: var(--lab-glass);
    padding: 25px;
    border: 1px solid var(--lab-primary);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: var(--lab-shadow);
    position: relative;
}

.hero-text p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lab-hologram);
    background-size: 200% 100%;
    animation: hologramScan 6s ease-in-out infinite;
    border-radius: 10px;
    pointer-events: none;
}

/* Estadísticas científicas */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    background: var(--lab-glass);
    border: 1px solid var(--lab-accent);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: circuitPulse 3s ease-in-out infinite;
}

.stat-item:nth-child(2) { animation-delay: 1s; }
.stat-item:nth-child(3) { animation-delay: 2s; }

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
    border-color: var(--lab-primary);
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lab-primary);
    text-shadow: var(--lab-glow);
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: var(--lab-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Imagen del hero con efectos holográficos */
.hero-image {
    position: relative;
    perspective: 1000px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 2px solid var(--lab-primary);
    box-shadow: var(--lab-shadow);
    transition: all 0.3s ease;
    animation: hologramFlicker 4s ease-in-out infinite;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--lab-hologram);
    background-size: 200% 100%;
    animation: hologramScan 3s ease-in-out infinite;
    border-radius: 25px;
    z-index: -1;
}

.hero-image::after {
    content: 'LABORATORIO ACTIVO';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--lab-success);
    color: var(--lab-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: energyPulse 2s ease-in-out infinite;
}

/* Proceso de creación científico */
.creation-process {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 255, 0.05) 50%, transparent 100%);
}

.creation-process h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--lab-primary);
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: var(--lab-glow);
    position: relative;
}

.creation-process h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lab-primary));
    transform: translateY(-50%);
}

.creation-process h2::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--lab-primary), transparent);
    transform: translateY(-50%);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--lab-light);
    max-width: 800px;
    margin: 0 auto 60px;
    background: var(--lab-glass);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--lab-accent);
    backdrop-filter: blur(10px);
    box-shadow: var(--lab-shadow);
}

/* Pasos del proceso científico */
.process-steps {
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 300px;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    padding: 40px;
    background: var(--lab-glass);
    border: 1px solid var(--lab-primary);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: processStep 8s ease-in-out infinite;
}

.process-step:nth-child(2) { animation-delay: 2s; }
.process-step:nth-child(3) { animation-delay: 4s; }
.process-step:nth-child(4) { animation-delay: 6s; }

.process-step.reverse {
    grid-template-columns: 300px 1fr 80px;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: var(--lab-accent);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lab-hologram);
    background-size: 200% 100%;
    animation: hologramScan 5s ease-in-out infinite;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0.3;
}

/* Números de paso científicos */
.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--lab-primary), var(--lab-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--lab-dark);
    position: relative;
    box-shadow: var(--lab-shadow);
    animation: labRotate 10s linear infinite;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--lab-primary);
    border-radius: 50%;
    animation: circuitPulse 2s ease-in-out infinite;
}

/* Contenido de pasos */
.step-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--lab-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px currentColor;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--lab-light);
    margin-bottom: 25px;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--lab-light);
    background: rgba(0, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid var(--lab-accent);
    transition: all 0.3s ease;
}

.step-features span:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateX(10px);
}

.step-features i {
    color: var(--lab-success);
    text-shadow: 0 0 5px currentColor;
}

/* Imágenes de pasos con efectos */
.step-image {
    position: relative;
    perspective: 1000px;
}

.step-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid var(--lab-accent);
    box-shadow: var(--lab-shadow);
    transition: all 0.3s ease;
    animation: hologramFlicker 6s ease-in-out infinite;
}

.step-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--lab-hologram);
    background-size: 200% 100%;
    animation: hologramScan 4s ease-in-out infinite;
    border-radius: 20px;
    z-index: -1;
}

.step-image:hover img {
    transform: rotateY(10deg) scale(1.05);
}

/* Tecnología del laboratorio */
.lab-technology {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 255, 128, 0.1) 100%);
    position: relative;
    z-index: 10;
}

.lab-technology h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--lab-secondary);
    text-transform: uppercase;
    margin-bottom: 60px;
    text-shadow: var(--lab-glow);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-item {
    background: var(--lab-glass);
    border: 1px solid var(--lab-secondary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: energyPulse 4s ease-in-out infinite;
}

.tech-item:nth-child(2) { animation-delay: 1s; }
.tech-item:nth-child(3) { animation-delay: 2s; }
.tech-item:nth-child(4) { animation-delay: 3s; }

.tech-item:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 128, 255, 0.3);
    border-color: var(--lab-primary);
}

.tech-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--lab-secondary), var(--lab-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--lab-dark);
    box-shadow: var(--lab-shadow);
    animation: labRotate 15s linear infinite;
    position: relative;
}

.tech-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--lab-secondary);
    border-radius: 50%;
    animation: circuitPulse 3s ease-in-out infinite;
}

.tech-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lab-secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-item p {
    color: var(--lab-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Efectos de experimento */
.experiment-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.bubble {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--lab-accent) 0%, transparent 70%);
    border-radius: 50%;
    animation: experimentBubble 6s ease-in-out infinite;
    opacity: 0.7;
}

.bubble:nth-child(1) { left: 10%; animation-delay: 0s; }
.bubble:nth-child(2) { left: 30%; animation-delay: 1s; }
.bubble:nth-child(3) { left: 50%; animation-delay: 2s; }
.bubble:nth-child(4) { left: 70%; animation-delay: 3s; }
.bubble:nth-child(5) { left: 90%; animation-delay: 4s; }

/* === Equipo de Artesanos === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.team-member {
    background: var(--lab-glass);
    border: 1.5px solid var(--lab-primary);
    border-radius: 20px;
    box-shadow: var(--lab-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 25px 25px 25px;
    position: relative;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    animation: circuitPulse 4s ease-in-out infinite;
}
.team-member:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--lab-accent);
    box-shadow: 0 10px 40px rgba(0,255,255,0.25);
}
.member-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 18px;
    border: 3px solid var(--lab-accent);
    box-shadow: 0 0 20px var(--lab-primary);
    background: var(--lab-hologram);
    display: flex;
    align-items: center;
    justify-content: center;
}
.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: brightness(1.08) contrast(1.1);
    animation: hologramFlicker 3s ease-in-out infinite;
}
.member-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    color: var(--lab-primary);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.member-role {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: var(--lab-accent);
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
    letter-spacing: 1px;
}
.member-bio {
    color: var(--lab-light);
    font-size: 1rem;
    margin-bottom: 14px;
    text-align: center;
    min-height: 60px;
}
.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.skill-badge {
    background: var(--lab-primary);
    color: var(--lab-dark);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.95rem;
    border-radius: 15px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 0 8px var(--lab-primary);
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.skill-badge i {
    color: var(--lab-dark);
    font-size: 1.1em;
}

/* === Visita Virtual Taller === */
.tour-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}
.tour-gallery {
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.main-image {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 20px var(--lab-primary);
    background: var(--lab-hologram);
    border: 2px solid var(--lab-accent);
}
.main-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    animation: hologramFlicker 4s ease-in-out infinite;
}
.gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.gallery-thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--lab-primary);
    cursor: pointer;
    opacity: 0.7;
    transition: border 0.2s, opacity 0.2s;
}
.gallery-thumbnails img.active,
.gallery-thumbnails img:hover {
    border: 2.5px solid var(--lab-accent);
    opacity: 1;
}
.tour-info {
    flex: 2 1 320px;
    min-width: 260px;
    background: var(--lab-glass);
    border: 1.5px solid var(--lab-primary);
    border-radius: 18px;
    box-shadow: var(--lab-shadow);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: circuitPulse 5s ease-in-out infinite;
}
.tour-info h3 {
    color: var(--lab-accent);
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.tour-features {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tour-features li {
    background: var(--lab-primary);
    color: var(--lab-dark);
    border-radius: 14px;
    padding: 7px 15px;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-weight: 600;
    box-shadow: 0 0 8px var(--lab-primary);
}
.tour-features i {
    color: var(--lab-accent);
    font-size: 1.1em;
}
.tour-description {
    color: var(--lab-light);
    font-size: 1.05rem;
    margin-top: 8px;
}

/* === Servicios Personalizados === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.service-card {
    background: var(--lab-glass);
    border: 1.5px solid var(--lab-primary);
    border-radius: 20px;
    box-shadow: var(--lab-shadow);
    padding: 38px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    animation: energyPulse 5s ease-in-out infinite;
}
.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--lab-accent);
    box-shadow: 0 10px 40px rgba(0,255,255,0.25);
}
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lab-primary), var(--lab-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--lab-dark);
    box-shadow: 0 0 12px var(--lab-primary);
    margin-bottom: 18px;
    animation: labRotate 10s linear infinite;
}
.service-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--lab-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.service-card p {
    color: var(--lab-light);
    font-size: 1rem;
    margin-bottom: 14px;
    min-height: 48px;
}
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.service-features li {
    background: var(--lab-primary);
    color: var(--lab-dark);
    border-radius: 12px;
    padding: 6px 13px;
    font-size: 0.97rem;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Share Tech Mono', monospace;
    font-weight: 600;
    box-shadow: 0 0 6px var(--lab-primary);
}
.service-features i {
    color: var(--lab-accent);
    font-size: 1em;
}
.service-price {
    margin-top: 10px;
    font-size: 1.1rem;
    color: var(--lab-accent);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    background: var(--lab-primary);
    border-radius: 12px;
    padding: 7px 18px;
    box-shadow: 0 0 8px var(--lab-primary);
    display: inline-block;
}
.service-price span {
    color: var(--lab-dark);
    font-size: 1.15em;
    font-weight: 900;
}

/* Responsive mejoras para nuevas secciones */
@media (max-width: 900px) {
    .tour-content {
        flex-direction: column;
        gap: 30px;
    }
    .tour-gallery, .tour-info {
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .team-grid, .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tour-gallery {
        min-width: 0;
    }
    .main-image img {
        height: 160px;
    }
    .tour-info {
        padding: 18px 10px;
    }
}

/* ===== HEADER TEMA LABORATORIO ===== */
.workshop-page .header {
    background: linear-gradient(135deg, rgba(0, 17, 34, 0.95), rgba(0, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--lab-primary);
    box-shadow: var(--lab-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.workshop-page .header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lab-circuit);
    opacity: 0.2;
    animation: dataFlow 15s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.workshop-page .header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lab-hologram);
    background-size: 200% 100%;
    animation: hologramScan 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.workshop-page .header-content {
    position: relative;
    z-index: 1;
}

.workshop-page .logo a {
    color: var(--lab-primary) !important;
    text-shadow: var(--lab-glow);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.workshop-page .logo a::before {
    content: '🧪';
    position: absolute;
    top: -10px;
    left: -30px;
    font-size: 1.2rem;
    animation: energyPulse 2s ease-in-out infinite;
}

.workshop-page .logo a:hover {
    color: var(--lab-accent) !important;
    transform: scale(1.05);
    animation: hologramFlicker 1s ease-in-out;
}

.workshop-page .logo img {
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    transition: all 0.3s ease;
}

.workshop-page .logo a:hover img {
    filter: drop-shadow(0 0 15px rgba(0, 255, 128, 0.8));
    transform: rotateX(10deg);
}

.workshop-page .nav-menu a {
    color: var(--lab-light) !important;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 15px;
    border: 1px solid transparent;
    border-radius: 8px;
}

.workshop-page .nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lab-glass);
    border: 1px solid var(--lab-primary);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.workshop-page .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lab-primary), var(--lab-accent));
    transition: width 0.3s ease;
}

.workshop-page .nav-menu a:hover {
    color: var(--lab-accent) !important;
    text-shadow: var(--lab-glow);
    transform: translateY(-2px);
}

.workshop-page .nav-menu a:hover::before {
    opacity: 1;
}

.workshop-page .nav-menu a:hover::after {
    width: 100%;
}

.workshop-page .nav-menu a.active {
    color: var(--lab-accent) !important;
    background: var(--lab-glass);
    border-color: var(--lab-primary);
    text-shadow: var(--lab-glow);
    animation: circuitPulse 3s ease-in-out infinite;
}

.workshop-page .dropdown-menu {
    background: rgba(0, 17, 34, 0.95);
    border: 2px solid var(--lab-primary);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    box-shadow: var(--lab-shadow);
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1001;
}

.workshop-page .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lab-hologram);
    background-size: 200% 100%;
    animation: hologramScan 4s ease-in-out infinite;
    opacity: 0.3;
    pointer-events: none;
}

.workshop-page .dropdown-menu a {
    color: var(--lab-light) !important;
    font-family: 'Share Tech Mono', monospace;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.workshop-page .dropdown-menu a:hover {
    background: var(--lab-glass);
    color: var(--lab-accent) !important;
    transform: translateX(8px);
    text-shadow: var(--lab-glow);
    border-color: var(--lab-primary);
}

.workshop-page .header-actions button,
.workshop-page .header-actions a {
    color: var(--lab-primary) !important;
    background: var(--lab-glass);
    border: 2px solid var(--lab-primary);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.workshop-page .header-actions button::before,
.workshop-page .header-actions a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lab-hologram);
    background-size: 200% 100%;
    animation: hologramScan 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workshop-page .header-actions button:hover,
.workshop-page .header-actions a:hover {
    background: var(--lab-primary);
    color: var(--lab-dark) !important;
    transform: scale(1.1);
    box-shadow: var(--lab-glow);
    border-color: var(--lab-accent);
}

.workshop-page .header-actions button:hover::before,
.workshop-page .header-actions a:hover::before {
    opacity: 0.5;
}

.workshop-page .cart-count {
    background: var(--lab-warning) !important;
    color: var(--lab-dark) !important;
    border: 2px solid var(--lab-primary);
    font-family: 'Share Tech Mono', monospace;
    font-weight: 700;
    animation: energyPulse 2s ease-in-out infinite;
}

.workshop-page .menu-toggle span {
    background: var(--lab-primary) !important;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--lab-primary);
}

.workshop-page .menu-toggle:hover span {
    background: var(--lab-accent) !important;
    box-shadow: 0 0 10px var(--lab-accent);
    animation: energyPulse 0.5s ease-in-out;
}

/* Breadcrumb tema laboratorio */
.workshop-page .breadcrumb {
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.05), rgba(0, 128, 255, 0.05));
    border-bottom: 1px solid var(--lab-primary);
    position: relative;
}

.workshop-page .breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lab-circuit);
    opacity: 0.1;
    pointer-events: none;
}

.workshop-page .breadcrumb a {
    color: var(--lab-primary) !important;
    font-family: 'Share Tech Mono', monospace;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.workshop-page .breadcrumb a:hover {
    color: var(--lab-accent) !important;
    text-shadow: var(--lab-glow);
    transform: translateX(3px);
}

/* Animaciones específicas del header laboratorio */
@keyframes hologramFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
    75% { opacity: 0.9; }
}

@keyframes dataFlow {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

@keyframes hologramScan {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

@keyframes circuitPulse {
    0%, 100% { box-shadow: 0 0 5px var(--lab-primary); }
    50% { box-shadow: 0 0 20px var(--lab-primary), 0 0 30px var(--lab-primary); }
}

@keyframes energyPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.2); }
}