        .header {
            background: #0056b3;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        
        /* Logo sin fondo, más grande */
        .logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }
        
        .logo img {
            height: 60px;
            width: auto;
        }
        
        /* Botón EN VIVO */
        .live-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #dc3545;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
            text-decoration: none;
            box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
        }
        
        .live-button:hover {
            background: #c82333;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(220, 53, 69, 0.5);
            color: white;
        }
        
        .live-button .live-dot {
            width: 10px;
            height: 10px;
            background: white;
            border-radius: 50%;
            animation: pulse-live 1.5s infinite;
        }
        
        @keyframes pulse-live {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.2); }
        }
        
        /* Logo y botón en vivo juntos */
        .logo-group {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        /* Navigation Desktop */
        .nav-desktop {
            display: none;
            flex: 1;
            justify-content: center;
        }
        
        @media (min-width: 1024px) {
            .nav-desktop {
                display: flex;
            }
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .nav-menu > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            font-size: 1.05rem;
            border-radius: 8px;
            transition: all 0.2s ease;
            text-decoration: none;
        }
        
        .nav-menu > li > a svg {
            opacity: 0.8;
            flex-shrink: 0;
        }
        
        .nav-menu > li > a:hover svg {
            opacity: 1;
        }
        
        .nav-menu > li > a:hover,
        .nav-menu > li > a.active {
            background: rgba(255, 255, 255, 0.15);
            color: white;
        }
        
        .nav-menu .arrow {
            font-size: 0.65em;
            opacity: 0.7;
        }
        
        /* Dropdown */
        .has-dropdown {
            position: relative;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.25s ease;
            z-index: 100;
            list-style: none;
            margin: 0;
        }
        
        .has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
        }
        
        .dropdown-menu li a {
            display: block;
            padding: 10px 20px;
            color: #333;
            font-size: 0.9rem;
            transition: all 0.15s ease;
            text-decoration: none;
        }
        
        .dropdown-menu li a:hover {
            background: #e6f0fa;
            color: #0056b3;
        }
        
        /* Menu highlight winter - Cobertura especial */
        .menu-highlight-winter a {
            background: linear-gradient(90deg, #dc2626, #b91c1c) !important;
            color: white !important;
            font-weight: 700 !important;
            margin: 4px 8px;
            border-radius: 8px !important;
            padding: 12px 16px !important;
        }
        .menu-highlight-winter a:hover {
            background: linear-gradient(90deg, #b91c1c, #991b1b) !important;
            color: white !important;
        }
        .menu-divider {
            height: 1px;
            background: #e5e7eb;
            margin: 8px 12px;
        }
        
        /* Menu color markers */
        .menu-marker {
            position: relative;
        }
        
        .menu-marker a {
            padding-left: 28px !important;
        }
        
        .menu-marker::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            border-radius: 2px;
        }
        
        .menu-marker-red::before {
            background: #dc3545;
        }
        
        .menu-marker-yellow::before {
            background: #ffc107;
        }
        
        .menu-marker-blue::before {
            background: #17a2b8;
        }
        
        /* Submenu (nested dropdown) */
        .has-submenu {
            position: relative;
        }
        
        .submenu-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .submenu {
            position: absolute;
            left: 100%;
            top: 0;
            min-width: 220px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-10px);
            transition: all 0.25s ease;
            z-index: 101;
            list-style: none;
            margin: 0;
        }
        
        .has-submenu:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateX(5px);
        }
        
        .submenu li a {
            display: block;
            padding: 10px 20px;
            color: #333;
            font-size: 0.875rem;
            transition: all 0.15s ease;
            text-decoration: none;
        }
        
        .submenu li a:hover {
            background: #e6f0fa;
            color: #0056b3;
        }
        
        /* Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        /* Search */
        .search-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .search-toggle {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            border-radius: 50%;
            transition: all 0.2s ease;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .search-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        
        .search-expandable {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            width: 0;
            overflow: hidden;
            transition: width 0.3s ease;
        }
        
        .search-wrapper.active .search-expandable {
            width: 280px;
        }
        
        .search-wrapper.active .search-toggle {
            opacity: 0;
            pointer-events: none;
        }
        
        .search-form {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 25px;
            padding: 4px 4px 4px 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        
        .search-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 0.9rem;
            color: #333;
            background: transparent;
            min-width: 0;
        }
        
        .search-input::placeholder {
            color: #999;
        }
        
        .search-submit {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0056b3;
            color: white;
            border-radius: 50%;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
        }
        
        .search-submit:hover {
            background: #004494;
        }
        
        /* Language Selector */
        .lang-selector {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .lang-flag {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 6px;
            opacity: 0.6;
            transition: all 0.2s ease;
            overflow: hidden;
        }
        
        .lang-flag:hover,
        .lang-flag.active {
            opacity: 1;
            transform: scale(1.1);
        }
        
        .lang-flag img {
            width: 24px;
            height: auto;
            border-radius: 3px;
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        @media (min-width: 1024px) {
            .mobile-menu-toggle {
                display: none;
            }
        }
        
        .hamburger {
            width: 24px;
            height: 18px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        /* Mobile Navigation */
        .nav-mobile {
            display: none;
            background: white;
            border-top: 1px solid #e0e0e0;
            max-height: calc(100vh - 80px);
            overflow-y: auto;
        }
        
        .nav-mobile.active {
            display: block;
        }
        
        @media (min-width: 1024px) {
            .nav-mobile {
                display: none !important;
            }
        }
        
        .mobile-menu {
            padding: 16px;
            list-style: none;
            margin: 0;
        }
        
        .mobile-menu > li > a,
        .mobile-dropdown-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
            color: #333;
            font-weight: 500;
            border-radius: 10px;
            transition: all 0.2s ease;
            text-decoration: none;
            background: none;
            border: none;
            width: 100%;
            cursor: pointer;
            font-size: 1rem;
            font-family: inherit;
        }
        
        .mobile-menu > li > a:hover,
        .mobile-dropdown-toggle:hover {
            background: #f5f5f5;
        }
        
        .mobile-dropdown-menu {
            display: none;
            padding-left: 16px;
            list-style: none;
            margin: 0;
        }
        
        .mobile-dropdown.active .mobile-dropdown-menu {
            display: block;
        }
        
        .mobile-dropdown.active .arrow {
            transform: rotate(180deg);
            display: inline-block;
        }
        
        .mobile-dropdown-menu li a {
            display: block;
            padding: 12px 16px;
            color: #666;
            font-size: 0.9rem;
            text-decoration: none;
        }
        
        /* Mobile menu highlight winter */
        .mobile-dropdown-menu .menu-highlight-winter a {
            background: linear-gradient(90deg, #dc2626, #b91c1c) !important;
            color: white !important;
            font-weight: 700 !important;
            margin: 4px 0;
            border-radius: 8px !important;
            padding: 12px 16px !important;
        }
        .mobile-dropdown-menu .menu-divider {
            height: 1px;
            background: rgba(0,0,0,0.1);
            margin: 8px 0;
        }
        
        /* Mobile submenu (nested) */
        .mobile-submenu {
            margin-top: 4px;
        }
        
        .mobile-submenu-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 16px;
            color: #666;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.2s ease;
            background: none;
            border: none;
            width: 100%;
            cursor: pointer;
            font-size: 0.9rem;
            font-family: inherit;
            text-align: left;
        }
        
        .mobile-submenu-toggle:hover {
            background: #f5f5f5;
        }
        
        .mobile-submenu-menu {
            display: none;
            padding-left: 16px;
            list-style: none;
            margin: 4px 0 0 0;
        }
        
        .mobile-submenu.active .mobile-submenu-menu {
            display: block;
        }
        
        .mobile-submenu.active .arrow {
            transform: rotate(90deg);
            display: inline-block;
        }
        
        .mobile-submenu-menu li a {
            display: block;
            padding: 10px 12px;
            color: #888;
            font-size: 0.85rem;
            text-decoration: none;
            border-radius: 6px;
        }
        
        .mobile-submenu-menu li a:hover {
            background: #f5f5f5;
            color: #0056b3;
        }
        
        /* Mobile menu markers */
        .mobile-dropdown-menu .menu-marker {
            position: relative;
        }
        
        .mobile-dropdown-menu .menu-marker a {
            padding-left: 28px;
        }
        
        .mobile-dropdown-menu .menu-marker::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 18px;
            border-radius: 2px;
        }
        
        .mobile-dropdown-menu .menu-marker-red::before {
            background: #dc3545;
        }
        
        .mobile-dropdown-menu .menu-marker-yellow::before {
            background: #ffc107;
        }
        
        .mobile-dropdown-menu .menu-marker-blue::before {
            background: #17a2b8;
        }
        
        .mobile-lang {
            display: flex;
            gap: 16px;
            padding: 16px;
            border-top: 1px solid #e0e0e0;
            margin-top: 8px;
        }
        
        .mobile-lang a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            color: #666;
            border-radius: 10px;
            font-size: 0.9rem;
            text-decoration: none;
        }
        
        .mobile-lang a.active {
            background: #e6f0fa;
            color: #0056b3;
        }
        
        /* Mobile live button */
        .mobile-live-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 16px;
            padding: 14px 24px;
            background: #dc3545;
            color: white;
            border-radius: 25px;
            font-weight: 700;
            text-decoration: none;
            font-size: 0.95rem;
        }
        
        .mobile-live-button .live-dot {
            width: 10px;
            height: 10px;
            background: white;
            border-radius: 50%;
            animation: pulse-live 1.5s infinite;
        }
        
        @media (max-width: 480px) {
            .live-button .live-text {
                display: none;
            }
            
            .live-button {
                padding: 10px 14px;
            }
        }
