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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            min-height: 100vh;
        }

        /* Header fijo */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e2e8f0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        /* Sidebar menu */
        .sidebar {
            position: fixed;
            top: 70px;
            left: 0;
            width: 280px;
            height: calc(100vh - 70px);
            background: white;
            box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 999;
            padding: 30px 0;
            overflow-y: auto;
            transition: transform 0.3s ease;
        }

        .sidebar-header {
            padding: 0 25px 20px;
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 20px;
        }

        .sidebar-header h3 {
            font-size: 1.2em;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 5px;
        }

        .sidebar-header p {
            font-size: 0.9em;
            color: #64748b;
        }

        .city-group {
            margin-bottom: 25px;
        }

        .city-group-title {
            padding: 0 25px 10px;
            font-size: 0.85em;
            font-weight: 600;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
		

	.city-link {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: #00BFFF; /* Cambiado a azul cielo */
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
	}

		


        .city-link:hover, .city-link.active {
            background: #f8fafc;
            color: #1e40af;
            border-left-color: #f8fafc;
        }

        .city-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .city-link:hover .city-icon, .city-link.active .city-icon {
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
            color: #1e40af;
            transform: scale(1.05);
        }

        .city-info h4 {
            font-size: 1em;
            font-weight: 600;
            color: inherit;
            margin-bottom: 2px;
        }

        .city-info p {
            font-size: 0.8em;
            color: #94a3b8;
        }

        .sidebar-toggle {
            position: fixed;
            top: 85px;
            left: 290px;
            z-index: 1001;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 0 8px 8px 0;
            padding: 10px 8px;
            cursor: pointer;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .sidebar-toggle:hover {
            background: #f8fafc;
            transform: translateX(2px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: #1e40af;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #64748b;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 8px;
        }

        .nav-menu a:hover {
            color: #1e40af;
            background: #f1f5f9;
            transform: translateY(-1px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #64748b;
        }

        /* Contenido principal */
        .main-content {
            margin-top: 70px;
            margin-left: 280px;
            padding: 40px 20px;
            transition: margin-left 0.3s ease;
        }

        .main-content.sidebar-collapsed {
            margin-left: 0;
        }

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

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 0;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #1e40af, #6366f1);
        }

        .hero h1 {
            font-size: 3.5em;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2em;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            color: white;
            padding: 16px 32px;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
        }

        /* AdSense Spaces */
        .ad-space {
            background: #f8fafc;
            border: 2px dashed #cbd5e1;
            border-radius: 12px;
            padding: 40px 20px;
            text-align: center;
            color: #64748b;
            font-size: 14px;
            margin: 30px 0;
            min-height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ad-space.horizontal {
            min-height: 120px;
        }

        /* Grid de tarjetas */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #f1f5f9;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #6366f1);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .card:hover::before {
            transform: scaleX(1);
        }

		.icon.success {
    color: green;
}

.icon.danger {
    color: red;
}

.wait-times {
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
    color: #444;
}

.wait-times li {
    margin-bottom: 4px;
}


        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6, #6366f1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: white;
        }

        .card h3 {
            font-size: 1.5em;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 15px;
        }

        .card p {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .card-button {
            background: #f1f5f9;
            color: #3b82f6;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .card-button:hover {
            background: #3b82f6;
            color: white;
            transform: translateY(-1px);
        }

        /* Sección de video destacado */
        .featured-video-section {
            background: white;
            border-radius: 20px;
            padding: 50px;
            margin: 60px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .featured-video-section h2 {
            font-size: 2.5em;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 20px;
        }

        .featured-video-section p {
            font-size: 1.2em;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .video-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .video-container iframe {
            width: 100%;
            height: 450px;
            border: none;
        }

        /* Galería de videos */
        .video-gallery-section {
            background: white;
            border-radius: 20px;
            padding: 50px;
            margin: 60px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .video-gallery-section h2 {
            font-size: 2.5em;
            font-weight: 800;
            color: #1e293b;
            text-align: center;
            margin-bottom: 40px;
        }

        .video-categories {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .category-btn {
            background: #f1f5f9;
            color: #64748b;
            padding: 12px 24px;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-btn.active, .category-btn:hover {
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .video-card {
            background: #f8fafc;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .video-card iframe {
            width: 100%;
            height: 200px;
            border: none;
        }

        .video-card-content {
            padding: 20px;
        }

        .video-card h3 {
            font-size: 1.2em;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .video-card p {
            color: #64748b;
            font-size: 0.9em;
            line-height: 1.5;
        }

        .video-tag {
            display: inline-block;
            background: #dbeafe;
            color: #1e40af;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8em;
            font-weight: 600;
            margin-top: 10px;
        }

        /* Sección de información */
        .info-section {
            background: white;
            border-radius: 20px;
            padding: 50px;
            margin: 60px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .info-section h2 {
            font-size: 2.5em;
            font-weight: 800;
            color: #1e293b;
            text-align: center;
            margin-bottom: 40px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature {
            text-align: center;
            padding: 20px;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f0f9ff, #dbeafe);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: #3b82f6;
        }

        .feature h4 {
            font-size: 1.2em;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 10px;
        }

        .feature p {
            color: #64748b;
            font-size: 0.95em;
        }

        /* Footer */
        .footer {
            background: #1e293b;
            color: white;
            text-align: center;
            padding: 40px 20px;
            margin-top: 80px;
        }

        .footer p {
            color: #94a3b8;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .sidebar {
                transform: translateX(-100%);
            }

            .sidebar.active {
                transform: translateX(0);
            }

            .sidebar-toggle {
                left: 10px;
                border-radius: 8px;
            }

            .main-content {
                margin-left: 0;
            }

            .video-container iframe {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                gap: 10px;
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .sidebar {
                width: 100%;
                transform: translateX(-100%);
            }

            .sidebar-toggle {
                left: 10px;
            }

            .hero h1 {
                font-size: 2.5em;
            }

            .hero p {
                font-size: 1.1em;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .card {
                padding: 25px;
            }

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

            .info-section {
                padding: 30px 25px;
            }

            .info-section h2 {
                font-size: 2em;
            }

            .ad-space {
                min-height: 200px;
                margin: 20px 0;
            }

            .featured-video-section {
                padding: 30px 25px;
            }

            .featured-video-section h2 {
                font-size: 2em;
            }

            .video-container iframe {
                height: 250px;
            }

            .video-gallery-section {
                padding: 30px 25px;
            }

            .video-gallery-section h2 {
                font-size: 2em;
            }

            .videos-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .video-categories {
                gap: 10px;
            }

            .category-btn {
                padding: 10px 16px;
                font-size: 0.9em;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 40px 20px;
            }

            .hero h1 {
                font-size: 2em;
            }

            .card {
                padding: 20px;
            }

            .info-section {
                padding: 25px 20px;
            }
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card, .hero, .info-section {
            animation: fadeInUp 0.6s ease-out;
        }

        .card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .card:nth-child(3) {
            animation-delay: 0.2s;
        }
		.card-icon.success {
    background: #16a34a; /* verde */
    color: white;
}

.card-icon.danger {
    background: #dc2626; /* rojo */
    color: white;
}

.bridge-card {
    background: #0f172a; /* oscuro */
    padding: 20px;
    border-radius: 10px;
    color: white;
    font-family: sans-serif;
    margin: 20px 0;
}

.bridge-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

.bridge-times {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.time-box {
    flex: 1;
    min-width: 180px;
    padding: 15px;
    border-radius: 10px;
    background: #e2e8f0;
    color: #1e293b;
    text-align: left;
}

.time-box small {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: #334155;
}

.time-box strong {
    font-size: 1.5rem;
    font-weight: 800;
}

.time-box.standard {
    background: #fff7cc;
    color: #78350f;
}

.time-box.ready {
    background: #cfe8ff;
    color: #1e3a8a;
}

.time-box.pedestrian {
    background: #cfe8ff;
    color: #1e3a8a;
}
