
                /* Variables de color */
        :root {
            --color01: #25468b;
            --color01rgba: 37, 70, 139;
            --color02: #999999;
            --color03: #1b242d;
            --colorPie3: #14375f;
            --FontGral: 'Raleway', sans-serif;
            --FontTit: 'Raleway', sans-serif;
        }

        /* Paleta de colores para destinos */
        --color-ciudad-sede: #ff4444;
        --color-destino-turistico: #ff9800;
        --color-terminal-clave: #4caf50;

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Estilos del mapa */
        #map {
            height: calc(100vh - 180px);
            width: 100%;
            background: #f8f9fa;
        }

        /* Ruletas */
        .wheel-picker-container {
            background: white;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .wheel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 15px;
            background: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
            cursor: pointer;
        }

        .wheel-header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .wheel-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: white;
        }

        .wheel-icon.ciudad-sede { background: #00a2ff; }
        .wheel-icon.destino-turistico { background: #ff9800; }
        .wheel-icon.terminal-clave { background: #4caf50; }

        .wheel-title {
            font-weight: 600;
            font-size: 1.5rem;
            color: #333;
        }

        .wheel-count {
            background: #e9ecef;
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 1.1rem;
            color: #666;
        }

        .wheel-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .eye-toggle {
            cursor: pointer;
            font-size: 1.6rem;
            color: #6c757d;
            transition: color 0.2s;
        }

        .eye-toggle:hover,
        .eye-toggle.active {
            color: var(--color01);
        }

        .chevron-icon {
            cursor: pointer;
            font-size: 1.4rem;
            color: #6c757d;
            transition: transform 0.3s ease;
        }

        .wheel-picker {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: white;
        }

        .wheel-picker.expanded {
            max-height: 250px;
            overflow-y: auto;
        }

        .wheel-items {
            padding: 10px 0;
        }

        .wheel-item {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            cursor: pointer;
            transition: background 0.2s;
            border-bottom: 1px solid #f0f0f0;
        }

        .wheel-item:hover {
            background: #f5f5f5;
        }

        .wheel-item.active {
            background: #e3f2fd;
            border-left: 3px solid var(--color01);
        }

        .wheel-item-marker {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 12px;
        }

        .wheel-item-marker.ciudad-sede { background: #00a2ff; }
        .wheel-item-marker.destino-turistico { background: #ff9800; }
        .wheel-item-marker.terminal-clave { background: #4caf50; }

        .wheel-item-name {
            flex: 1;
            font-size: 1.3rem;
            color: #333;
        }

        .wheel-item-city {
            font-size: 1.1rem;
            color: #888;
        }

        /* Leyenda Fresnel */
        .legend-custom {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(10px);
            padding: 12px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            border-right: 3px solid var(--color01);
            transition: all 0.3s ease;
            min-width: 180px;
        }

        .legend-custom.minimized {
            min-width: 40px;
            padding: 12px 8px;
            cursor: pointer;
        }

        .legend-custom.minimized .legend-content {
            display: none;
        }

        .legend-custom.minimized .legend-toggle {
            justify-content: center;
        }

        .legend-toggle {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            cursor: pointer;
            margin-bottom: 8px;
            padding-bottom: 5px;
            border-bottom: 1px solid #eee;
        }

        .legend-toggle i {
            font-size: 1.2rem;
            color: var(--color01);
            transition: transform 0.3s ease;
        }

        .legend-content h5 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--color01);
        }

        .legend-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 1.2rem;
        }

        .legend-color {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .legend-color.ciudad-sede { background: #00a2ff; }
        .legend-color.destino-turistico { background: #ff9800; }
        .legend-color.terminal-clave { background: #4caf50; }
        .legend-color.with-border { background: gold; border: 2px solid gold; }

        /* Botones */
        .btn-01 {
            background: var(--color01);
            color: #FFF;
            border: none;
            border-radius: 5px;
            padding: 8px 20px;
            transition: 0.3s;
        }

        .btn-01:hover {
            background: var(--colorPie3);
            color: #FFF;
        }

        /* Scrollbar */
        .wheel-picker::-webkit-scrollbar {
            width: 6px;
        }

        .wheel-picker::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .wheel-picker::-webkit-scrollbar-thumb {
            background: var(--color01);
            border-radius: 3px;
        }

        /* Marcadores personalizados */
        .custom-marker-icon {
            background: transparent;
            border: none;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .custom-marker-icon:hover {
            transform: scale(1.1);
            z-index: 1000 !important;
        }

        @keyframes markerAppear {
            from { opacity: 0; transform: scale(0.5); }
            to { opacity: 1; transform: scale(1); }
        }

        .custom-marker-icon {
            animation: markerAppear 0.2s ease-out;
        }

        @keyframes markerPulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,215,0,0.7); }
            70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255,215,0,0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,215,0,0); }
        }

        /* Tooltip personalizado */
        .leaflet-tooltip {
            background: rgba(0, 0, 0, 0.8);
            border: none;
            border-radius: 4px;
            color: white;
            font-size: 11px;
            padding: 4px 8px;
            white-space: nowrap;
        }

        /* Popup Fresnel */
        .leaflet-popup-content-wrapper,
        .leaflet-popup-tip {
            background: rgba(255, 255, 255, 0.4) !important;
            backdrop-filter: blur(15px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
            color: #1a1a1a;
        }

        .leaflet-popup-content-wrapper {
            padding: 1px;
            text-align: left;
            border-radius: 12px;
        }

        /* Controles de zoom Fresnel */
        .leaflet-control-zoom a {
            background: rgba(255, 255, 255, 0.4) !important;
            backdrop-filter: blur(15px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
            color: #007aff !important;
            border: none !important;
            transition: all 0.2s ease !important;
        }

        .leaflet-control-zoom {
            border-radius: 12px !important;
            overflow: hidden !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
        }

        .leaflet-control-zoom a:hover {
            background: rgba(255, 255, 255, 0.7) !important;
        }

        .leaflet-control-zoom a:active {
            transform: scale(0.96) !important;
        }

        /* Control de ubicación personalizado */
        .leaflet-bar.leaflet-control.leaflet-control-custom {
            background: rgba(255, 255, 255, 0.4) !important;
            backdrop-filter: blur(15px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
            color: #007aff !important;
            border: none !important;
            border-radius: 8px !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
            transition: all 0.2s ease !important;
            cursor: pointer !important;
            width: 30px !important;
            height: 30px !important;
            line-height: 30px !important;
            text-align: center !important;
        }

        .leaflet-bar.leaflet-control.leaflet-control-custom:hover {
            background: rgba(255, 255, 255, 0.95) !important;
            transform: scale(1.05) !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .wheel-title { font-size: 1.2rem; }
            .wheel-item-name { font-size: 1.1rem; }
            #map { height: calc(100vh - 250px); }
        }
        
        /* Tarjetas y contenedores */
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
        }

        .card-header {
            background: var(--color01);
            border: none;
            padding: 15px 20px;
        }

        .card-header h4 {
            margin: 0;
            font-size: 1.8rem;
        }

        .card-body {
            padding: 0;
        }