/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(90deg, #f5f5f5 0%, #e7e7e7 100%);
    min-height: 100vh;
    color: #2c3e50; /* Dark grey text for readability */
    overflow-x: hidden;
}

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

/* Header */
header {
    text-align: right;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 160, 176, 0.2);
    box-shadow: 0 8px 32px rgba(0, 160, 176, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

header h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    background: linear-gradient(135deg, #006400, #00a0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 0 30px rgba(0, 160, 176, 0.3);
}

header p {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 300;
}

.header-logo {
    max-width: 200px;
    height: auto;
}

/* Viewer Container */
.viewer-container {
    background: linear-gradient(135deg, rgba(0, 100, 110, 0.95), rgba(0, 160, 176, 0.9)); /* Tech gradient background */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 160, 176, 0.3);
    margin-bottom: 30px;
    width: 100%;
    backdrop-filter: blur(20px) saturate(180%); /* Glassmorphism blur */
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 160, 176, 0.5);
    position: relative;
    overflow: hidden;
}

.viewer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 160, 176, 0.3), transparent);
    animation: lightSweep 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes lightSweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.viewer-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, #00a0b0, #00c0c0, #00a0b0) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 25px rgba(0, 160, 176, 0.4);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 40px rgba(0, 160, 176, 0.8), 0 0 60px rgba(0, 192, 192, 0.6);
    }
}

/* Efecto de destello sutil */
.viewer-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 17px;
    background: linear-gradient(90deg, transparent, rgba(0, 160, 176, 0.8), transparent);
    animation: lightSweep 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* Viewer */
.viewer {
    position: relative;
    width: 100%;
    height: 70vh;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

/* Panorama container */
.panorama {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Loading */
.loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    color: #e8f4fd;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(64, 224, 208, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(122, 162, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(64, 224, 208, 0.3);
    border-top: 3px solid #40e0d0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Map Mode */
.map-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(90deg, #f5f5f5 0%, #e7e7e7 100%);
    border-radius: 10px;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f5f5f5 0%, #e7e7e7 100%);
    pointer-events: none;
}

.map-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.map-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00a0b0, #00c0c0);
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 160, 176, 0.8), 0 0 40px rgba(0, 192, 192, 0.6);
    animation: pulse 2s infinite;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.8);
    pointer-events: auto;
    transition: all 0.3s ease;
}

/* Sistema de grilla 10x10 para posicionamiento preciso */
.map-marker.grid-1-1 { top: 10%; left: 10%; }
.map-marker.grid-1-2 { top: 10%; left: 20%; }
.map-marker.grid-1-3 { top: 10%; left: 30%; }
.map-marker.grid-1-4 { top: 10%; left: 40%; }
.map-marker.grid-1-5 { top: 10%; left: 50%; }
.map-marker.grid-1-6 { top: 10%; left: 60%; }
.map-marker.grid-1-7 { top: 10%; left: 70%; }
.map-marker.grid-1-8 { top: 10%; left: 80%; }
.map-marker.grid-1-9 { top: 10%; left: 90%; }
.map-marker.grid-1-10 { top: 10%; left: 100%; }

.map-marker.grid-2-1 { top: 20%; left: 10%; }
.map-marker.grid-2-2 { top: 20%; left: 20%; }
.map-marker.grid-2-3 { top: 20%; left: 30%; }
.map-marker.grid-2-4 { top: 20%; left: 40%; }
.map-marker.grid-2-5 { top: 20%; left: 50%; }
.map-marker.grid-2-6 { top: 20%; left: 60%; }
.map-marker.grid-2-7 { top: 20%; left: 70%; }
.map-marker.grid-2-8 { top: 20%; left: 80%; }
.map-marker.grid-2-9 { top: 20%; left: 90%; }
.map-marker.grid-2-10 { top: 20%; left: 100%; }

.map-marker.grid-3-1 { top: 30%; left: 10%; }
.map-marker.grid-3-2 { top: 30%; left: 20%; }
.map-marker.grid-3-3 { top: 30%; left: 30%; }
.map-marker.grid-3-4 { top: 30%; left: 40%; }
.map-marker.grid-3-5 { top: 30%; left: 50%; }
.map-marker.grid-3-6 { top: 30%; left: 60%; }
.map-marker.grid-3-7 { top: 30%; left: 70%; }
.map-marker.grid-3-8 { top: 30%; left: 80%; }
.map-marker.grid-3-9 { top: 30%; left: 90%; }
.map-marker.grid-3-10 { top: 30%; left: 100%; }

.map-marker.grid-4-1 { top: 40%; left: 10%; }
.map-marker.grid-4-2 { top: 40%; left: 20%; }
.map-marker.grid-4-3 { top: 40%; left: 30%; }
.map-marker.grid-4-4 { top: 40%; left: 40%; }
.map-marker.grid-4-5 { top: 40%; left: 50%; }
.map-marker.grid-4-6 { top: 40%; left: 60%; }
.map-marker.grid-4-7 { top: 40%; left: 70%; }
.map-marker.grid-4-8 { top: 40%; left: 80%; }
.map-marker.grid-4-9 { top: 40%; left: 90%; }
.map-marker.grid-4-10 { top: 40%; left: 100%; }

.map-marker.grid-5-1 { top: 50%; left: 10%; }
.map-marker.grid-5-2 { top: 50%; left: 20%; }
.map-marker.grid-5-3 { top: 50%; left: 30%; }
.map-marker.grid-5-4 { top: 50%; left: 40%; }
.map-marker.grid-5-5 { top: 50%; left: 50%; }
.map-marker.grid-5-6 { top: 50%; left: 60%; }
.map-marker.grid-5-7 { top: 50%; left: 70%; }
.map-marker.grid-5-8 { top: 50%; left: 80%; }
.map-marker.grid-5-9 { top: 50%; left: 90%; }
.map-marker.grid-5-10 { top: 50%; left: 100%; }

.map-marker.grid-6-1 { top: 60%; left: 10%; }
.map-marker.grid-6-2 { top: 60%; left: 20%; }
.map-marker.grid-6-3 { top: 60%; left: 30%; }
.map-marker.grid-6-4 { top: 60%; left: 40%; }
.map-marker.grid-6-5 { top: 60%; left: 50%; }
.map-marker.grid-6-6 { top: 60%; left: 60%; }
.map-marker.grid-6-7 { top: 60%; left: 70%; }
.map-marker.grid-6-8 { top: 60%; left: 80%; }
.map-marker.grid-6-9 { top: 60%; left: 90%; }
.map-marker.grid-6-10 { top: 60%; left: 100%; }

.map-marker.grid-7-1 { top: 70%; left: 10%; }
.map-marker.grid-7-2 { top: 70%; left: 20%; }
.map-marker.grid-7-3 { top: 70%; left: 30%; }
.map-marker.grid-7-4 { top: 70%; left: 40%; }
.map-marker.grid-7-5 { top: 70%; left: 50%; }
.map-marker.grid-7-6 { top: 70%; left: 60%; }
.map-marker.grid-7-7 { top: 70%; left: 70%; }
.map-marker.grid-7-8 { top: 70%; left: 80%; }
.map-marker.grid-7-9 { top: 70%; left: 90%; }
.map-marker.grid-7-10 { top: 70%; left: 100%; }

.map-marker.grid-8-1 { top: 80%; left: 10%; }
.map-marker.grid-8-2 { top: 80%; left: 20%; }
.map-marker.grid-8-3 { top: 80%; left: 30%; }
.map-marker.grid-8-4 { top: 80%; left: 40%; }
.map-marker.grid-8-5 { top: 80%; left: 50%; }
.map-marker.grid-8-6 { top: 80%; left: 60%; }
.map-marker.grid-8-7 { top: 80%; left: 70%; }
.map-marker.grid-8-8 { top: 80%; left: 80%; }
.map-marker.grid-8-9 { top: 80%; left: 90%; }
.map-marker.grid-8-10 { top: 80%; left: 100%; }

.map-marker.grid-9-1 { top: 90%; left: 10%; }
.map-marker.grid-9-2 { top: 90%; left: 20%; }
.map-marker.grid-9-3 { top: 90%; left: 30%; }
.map-marker.grid-9-4 { top: 90%; left: 40%; }
.map-marker.grid-9-5 { top: 90%; left: 50%; }
.map-marker.grid-9-6 { top: 90%; left: 60%; }
.map-marker.grid-9-7 { top: 90%; left: 70%; }
.map-marker.grid-9-8 { top: 90%; left: 80%; }
.map-marker.grid-9-9 { top: 90%; left: 90%; }
.map-marker.grid-9-10 { top: 90%; left: 100%; }

.map-marker.grid-10-1 { top: 100%; left: 10%; }
.map-marker.grid-10-2 { top: 100%; left: 20%; }
.map-marker.grid-10-3 { top: 100%; left: 30%; }
.map-marker.grid-10-4 { top: 100%; left: 40%; }
.map-marker.grid-10-5 { top: 100%; left: 50%; }
.map-marker.grid-10-6 { top: 100%; left: 60%; }
.map-marker.grid-10-7 { top: 100%; left: 70%; }
.map-marker.grid-10-8 { top: 100%; left: 80%; }
.map-marker.grid-10-9 { top: 100%; left: 90%; }
.map-marker.grid-10-10 { top: 100%; left: 100%; }

.map-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px rgba(0, 160, 176, 0.8), 0 0 40px rgba(0, 192, 192, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 30px rgba(0, 160, 176, 1), 0 0 60px rgba(0, 192, 192, 0.8), 0 0 80px rgba(255, 255, 255, 0.3);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px rgba(0, 160, 176, 0.8), 0 0 40px rgba(0, 192, 192, 0.6);
    }
}

/* Controls */
.controls {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 100;
}

.control-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 160, 176, 0.3);
    color: #2c3e50;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    box-shadow: 0 4px 15px rgba(0, 160, 176, 0.2);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 160, 176, 0.4);
    border-color: rgba(0, 160, 176, 0.5);
}

.control-back {
    background: linear-gradient(135deg, #00a0b0, #00c0c0);
    border: none;
    font-weight: bold;
    font-size: 20px;
    color: #ffffff;
}

.control-back:hover {
    background: linear-gradient(135deg, #00b0c0, #00d0d0);
    box-shadow: 0 8px 25px rgba(0, 160, 176, 0.5);
}

/* Hotspot Card */
.hotspot-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    max-width: 500px;
    width: 90%;
    z-index: 1000;
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    padding: 25px;
    text-align: center;
}

.hotspot-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hotspot-card .close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}

.hotspot-card .close-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.conference-details {
    text-align: left;
    margin-bottom: 20px;
    width: 100%;
}

.conference-details h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.conference-details p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.4;
    color: #34495e;
}

.conference-details strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Conference CTA Button */
.conference-cta {
    background: linear-gradient(135deg, #00a0b0, #00c0c0);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 160, 176, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.conference-cta:hover {
    background: linear-gradient(135deg, #00b0c0, #00d0d0);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 160, 176, 0.4);
}

/* Photo Sphere Viewer Hotspots */
.cta-hotspot {
    background: linear-gradient(135deg, #7aa2ff, #6ae8ff) !important;
    color: #0a1020 !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 12px 24px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    min-width: 160px !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.cta-hotspot:hover {
    background: linear-gradient(135deg, #8ab4ff, #7af0ff) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.4) !important;
}

.conference-hotspot {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #0a1020 !important;
    border: 2px solid #7aa2ff !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    transition: all 0.3s ease !important;
}

.conference-hotspot:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
}

/* Fallback CTA Button */
.cta-button-immersive {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #7aa2ff, #6ae8ff);
    color: #0a1020;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.cta-button-immersive:hover {
    background: linear-gradient(135deg, #8ab4ff, #7af0ff);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

/* Instructions Container */
.instructions-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: flex-start;
}

/* Instructions */
.instructions {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex: 1;
}

.slogan-container {
    flex-shrink: 0;
}

.inscription-link {
    margin-top: 20px;
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, #40e0d0, #7aa2ff);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: linear-gradient(135deg, #7aa2ff, #40e0d0);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(64, 224, 208, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.slogan-image {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
}

.instructions h3 {
    font-family: 'Croptech', sans-serif;
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: normal;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.instructions ul {
    list-style: none;
    padding: 0;
}

.instructions li {
    margin-bottom: 8px;
    color: #e8f4fd;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Fullscreen */
.viewer.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    border-radius: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 5px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    header h1 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    header p {
        font-size: 1rem;
    }
    
    .viewer {
        height: 50vh;
    }
    
    .controls {
        top: 10px;
        right: 10px;
        gap: 5px;
    }
    
    .control-btn {
        padding: 8px;
        font-size: 16px;
        min-width: 35px;
        height: 35px;
    }
    
    .hotspot-card {
        max-width: 90%;
        padding: 15px;
    }
    
    .conference-cta {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .cta-hotspot {
        padding: 10px 20px !important;
        font-size: 14px !important;
        min-width: 140px !important;
    }

    .conference-info {
        padding: 15px;
        margin: 10px 0;
    }
    
    .viewer-container {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .instructions-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .instructions {
        width: 100%;
    }
    
    .slogan-container {
        display: none;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .map-container img {
        transform: translate(-50%, -50%) scale(1.8) !important;
    }
    
    .map-container {
        padding: 5px;
    }
}

/* Conference Info in Description */
.conference-info {
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(64, 224, 208, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(64, 224, 208, 0.3);
    width: 90%;
    margin: 10px auto;
    position: relative;
    box-sizing: border-box;
}

/* Schedule Styles */
.schedule {
    margin: 20px 0;
}

.schedule h4 {
    color: #1a202c;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    background: linear-gradient(135deg, #40e0d0, #7aa2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-item {
    background: rgba(64, 224, 208, 0.08);
    border: 1px solid rgba(64, 224, 208, 0.2);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #40e0d0, #7aa2ff);
    border-radius: 0 2px 2px 0;
}

.schedule-item:hover {
    background: rgba(64, 224, 208, 0.12);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.2);
}

.schedule-item .time {
    color: #2d3748;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 5px;
    background: rgba(64, 224, 208, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.schedule-item .activity {
    color: #718096;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.schedule-item .speaker {
    color: #2d3748;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #40e0d0, #7aa2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.schedule-item .speaker {
    color: #718096;
    font-size: 11px;
    font-style: italic;
    font-family: 'Inter', sans-serif;
    margin-bottom: 3px;
}

.schedule-item .sub-speaker {
    color: #718096;
    font-size: 11px;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.conference-info h3 {
    font-family: 'Croptech', sans-serif;
    color: #1a202c;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: normal;
    background: linear-gradient(135deg, #40e0d0, #7aa2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    position: relative;
}

.conference-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #40e0d0, #7aa2ff);
    border-radius: 2px;
}

.conference-info p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #2d3748;
    padding: 8px 12px;
    background: rgba(64, 224, 208, 0.05);
    border-radius: 8px;
    border-left: 3px solid #40e0d0;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: normal !important;
}

.conference-info p strong {
    color: #4a5568;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.conference-info p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #2d3748;
    padding: 8px 12px;
    background: rgba(64, 224, 208, 0.05);
    border-radius: 8px;
    border-left: 3px solid #40e0d0;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: normal !important;
}

.conference-info p strong {
    color: #4a5568;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Forzar fuente Inter en toda la información de conferencia */
.conference-info p, 
.conference-info p *, 
.conference-info p strong,
.conference-info p span,
.conference-info p em,
.conference-info p i,
.conference-info p b {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: normal !important;
}

.conference-info p strong {
    font-weight: 600 !important;
}

/* Solución más agresiva para el contenido dinámico */
.psv-panel-content .conference-info p,
.psv-panel-content .conference-info p *,
.psv-panel-content .conference-info p strong,
.psv-panel-content .conference-info p span,
.psv-panel-content .conference-info p em,
.psv-panel-content .conference-info p i,
.psv-panel-content .conference-info p b,
.psv-panel-content .conference-info p::before,
.psv-panel-content .conference-info p::after {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: normal !important;
    text-align: left !important;
}

.psv-panel-content .conference-info p strong {
    font-weight: 600 !important;
}

.conference-info p:hover {
    background: rgba(64, 224, 208, 0.1);
    transform: translateX(5px);
}

.conference-info strong {
    color: #4a5568;
    font-weight: 600;
    font-size: 16px;
}

.conference-info .conference-cta {
    background: linear-gradient(135deg, #40e0d0, #7aa2ff);
    color: #0a0a0f;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(64, 224, 208, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
    margin: 16px 0 0 0;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-sizing: border-box;
}

.conference-info .conference-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.conference-info .conference-cta:hover::before {
    left: 100%;
}

.conference-info .conference-cta:hover {
    background: linear-gradient(135deg, #8ab4ff, #7af0ff);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(122, 162, 255, 0.6);
}

/* Estilos integrales para Photo Sphere Viewer con colores de IA */
.psv-container {
    border-radius: 10px !important;
    overflow: hidden !important;
}

/* Barra de navegación */
.psv-navbar {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.15), rgba(122, 162, 255, 0.1)) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(64, 224, 208, 0.3) !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 32px rgba(64, 224, 208, 0.2) !important;
    padding: 10px 20px !important;
    gap: 20px !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 900px !important;
    width: 90% !important;
    margin: 20px auto 0 auto !important;
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1000 !important;
}

/* Título */
.psv-caption {
    background: transparent !important;
    border: none !important;
    color: #e8f4fd !important;
    font-family: 'Croptech', sans-serif !important;
    font-size: 16px !important;
    font-weight: normal !important;
    padding: 8px 0 !important;
    flex: 1 !important;
    text-align: center !important;
    overflow: visible !important;
    line-height: 1.2 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-width: 0 !important;
}

.psv-caption-content {
    color: #ffffff !important;
    font-weight: 600 !important;
    letter-spacing: 0.2px !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
    display: block !important;
    visibility: visible !important;
    white-space: normal !important;
    overflow: visible !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
    word-wrap: break-word !important;
}

/* Forzar estilos más específicos */
.psv-navbar .psv-caption .psv-caption-content {
    font-size: 16px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    font-weight: 600 !important;
    text-align: center !important;
    width: 100% !important;
    font-family: 'Croptech', sans-serif !important;
    max-width: 100% !important;
    flex-shrink: 1 !important;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
    .psv-navbar .psv-caption .psv-caption-content {
        font-size: 11px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: clip !important;
        max-width: 100% !important;
    }
    
    .psv-navbar {
        max-width: 95% !important;
        padding: 8px 15px !important;
        gap: 15px !important;
    }
}

/* Botón de información */
.psv-description-button {
    background: linear-gradient(135deg, #40e0d0, #7aa2ff) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
    padding: 10px 14px !important;
    margin-left: 15px !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
}

.psv-description-button:hover {
    background: linear-gradient(135deg, #7aa2ff, #40e0d0) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(64, 224, 208, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.4) !important;
}

.psv-description-button.psv-button--active {
    background: linear-gradient(135deg, #ff6b6b, #40e0d0) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5) !important;
}

/* Botón de menú */
.psv-menu-button {
    background: rgba(64, 224, 208, 0.1) !important;
    border: 1px solid rgba(64, 224, 208, 0.3) !important;
    border-radius: 8px !important;
    color: #2d3748 !important;
    box-shadow: 0 2px 8px rgba(64, 224, 208, 0.2) !important;
    padding: 8px 12px !important;
    transition: all 0.3s ease !important;
}

.psv-menu-button:hover {
    background: rgba(64, 224, 208, 0.2) !important;
    transform: translateY(-1px) !important;
}

/* Iconos SVG */
.psv-button-svg {
    filter: none !important;
    width: 20px !important;
    height: 20px !important;
}

/* Panel de información */
.psv-panel {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.15), rgba(255, 255, 255, 0.1)) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(64, 224, 208, 0.3) !important;
    border-radius: 15px 15px 0 0 !important;
    box-shadow: 0 15px 40px rgba(64, 224, 208, 0.2) !important;
    color: #1a202c !important;
    font-family: 'Inter', sans-serif !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    height: 100% !important;
    width: 450px !important;
    z-index: 1000 !important;
}

.psv-panel-content {
    padding: 90px 20px 20px 20px !important;
    color: #1a202c !important;
    height: 100% !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
}

/* Estilo específico para el título del panel */
.psv-panel-content > p:first-child {
    color: #ffffff !important;
    font-size: 16px !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
    text-align: center !important;
    padding: 15px 20px !important;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.9), rgba(45, 55, 72, 0.9)) !important;
    border-radius: 10px !important;
    border-left: 4px solid #40e0d0 !important;
    font-family: 'Croptech', sans-serif !important;
    letter-spacing: 0.5px !important;
}

/* Estilo para los párrafos de información de la conferencia */
.psv-panel-content .conference-info p {
    color: #2d3748 !important;
    font-size: 13px !important;
    margin: 10px 0 !important;
    font-weight: normal !important;
    text-align: left !important;
    padding: 8px 12px !important;
    background: rgba(64, 224, 208, 0.05) !important;
    border-radius: 8px !important;
    border-left: 3px solid #40e0d0 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.5 !important;
}

/* Botón de cerrar panel */
.psv-panel-close-button {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.2), rgba(122, 162, 255, 0.2)) !important;
    border: 2px solid rgba(64, 224, 208, 0.4) !important;
    border-radius: 50% !important;
    color: #2d3748 !important;
    width: 35px !important;
    height: 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3) !important;
    font-weight: bold !important;
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 1001 !important;
}

.psv-panel-close-button:hover {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.3), rgba(122, 162, 255, 0.3)) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(64, 224, 208, 0.4) !important;
    border-color: rgba(64, 224, 208, 0.6) !important;
    color: #1a202c !important;
}

/* Loader */
.psv-loader {
    background: rgba(64, 224, 208, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(64, 224, 208, 0.3) !important;
    border-radius: 15px !important;
    color: #1a202c !important;
    font-family: 'Croptech', sans-serif !important;
}

.psv-loader-text {
    color: #1a202c !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.psv-loader-canvas circle {
    fill: rgba(64, 224, 208, 0.1) !important;
}

.psv-loader-canvas path {
    stroke: #40e0d0 !important;
}

/* Notificaciones */
.psv-notification {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.15), rgba(122, 162, 255, 0.1)) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(64, 224, 208, 0.3) !important;
    border-radius: 10px !important;
    color: #1a202c !important;
    font-family: 'Inter', sans-serif !important;
    box-shadow: 0 8px 32px rgba(64, 224, 208, 0.2) !important;
}

.psv-notification-content {
    color: #1a202c !important;
    font-weight: 500 !important;
}

/* ===== ANIMACIONES CHILERAS PARA EL PANEL ===== */

/* Estado inicial del panel - oculto */
.psv-panel {
    transform: translateX(100%) !important;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    opacity: 0 !important;
}

/* Panel abierto */
.psv-panel.psv-panel--open {
    transform: translateX(0) !important;
    opacity: 1 !important;
}

/* Efecto de entrada para el contenido */
.psv-panel-content {
    transform: translateY(30px) !important;
    opacity: 0 !important;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s !important;
}

.psv-panel.psv-panel--open .psv-panel-content {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* Efecto de entrada escalonada para los elementos */
.psv-panel-content > * {
    transform: translateX(-20px) !important;
    opacity: 0 !important;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

.psv-panel.psv-panel--open .psv-panel-content > * {
    transform: translateX(0) !important;
    opacity: 1 !important;
}

/* Delays escalonados para efecto cascada */
.psv-panel.psv-panel--open .psv-panel-content > *:nth-child(1) { transition-delay: 0.3s !important; }
.psv-panel.psv-panel--open .psv-panel-content > *:nth-child(2) { transition-delay: 0.4s !important; }
.psv-panel.psv-panel--open .psv-panel-content > *:nth-child(3) { transition-delay: 0.5s !important; }
.psv-panel.psv-panel--open .psv-panel-content > *:nth-child(4) { transition-delay: 0.6s !important; }
.psv-panel.psv-panel--open .psv-panel-content > *:nth-child(5) { transition-delay: 0.7s !important; }
.psv-panel.psv-panel--open .psv-panel-content > *:nth-child(6) { transition-delay: 0.8s !important; }
.psv-panel.psv-panel--open .psv-panel-content > *:nth-child(7) { transition-delay: 0.9s !important; }

/* Efecto especial para el botón de cerrar */
.psv-panel-close-button {
    transform: scale(0) rotate(180deg) !important;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s !important;
}

.psv-panel.psv-panel--open .psv-panel-close-button {
    transform: scale(1) rotate(0deg) !important;
}

/* ===== OCULTACIÓN SIMPLE DE LA BARRA ===== */

/* Transición base para la barra */
.psv-navbar {
    transition: opacity 0.3s ease !important;
}

/* Ocultar la barra cuando el panel esté abierto */
.psv-panel.psv-panel--open ~ .psv-navbar,
.psv-panel.psv-panel--open + .psv-navbar,
.psv-container:has(.psv-panel.psv-panel--open) .psv-navbar {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* Mostrar la barra cuando el panel se cierra */
.psv-navbar {
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}
