 

        /* --- Estructura del Header --- */
 .main-header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 999;
        }
        /* Si quieres que el header sea completamente opaco al hacer scroll */
.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.911);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.exp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 6px;
  border-radius: 50%;
  background: #111;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s;
}

.exp-icon:hover {
  transform: scale(1.1);
  background: #000000;
}


        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* --- Logo y Menú Hamburguesa --- */
        .logo-menu-container {
            display: flex;
            align-items: center;
        }

        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #2c4173;
            margin-right: 15px;
            cursor: pointer;
            padding: 5px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            color: #2c4173;
            text-decoration: none;
        }
        
        .logo-img {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text {
            line-height: 1;
        }
        
        .logo-text h1 {
            margin: 0;
            font-size: 24px;
            letter-spacing: 2px;
            font-weight: 400;
        }
        
        .logo-text span {
            font-size: 9px;
            text-transform: uppercase;
            letter-spacing: 3px;
            display: block;
        }

        /* --- Lado Derecho: Top Bar y Navegación --- */
        .header-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            position: relative;
        }

        /* Top Bar (Idioma, Reservas, Tel, Login) */
        .top-bar {
            display: flex;
            align-items: center;
            font-size: 13px;
            color: #333;
            margin-bottom: 15px;
        }
        
        .top-bar div, .top-bar a {
            margin-left: 15px;
            text-decoration: none;
            color: inherit;
        }
        
        .top-bar b {
            font-weight: 700;
        }
        
        .login-link {
            text-decoration: underline !important;
            font-weight: 600;
        }

        /* Iconos móviles */
        .mobile-icons {
            display: none;
            align-items: center;
        }
        
        .mobile-icon {
            background: none;
            border: none;
            font-size: 20px;
            color: #2c4173;
            margin-left: 20px;
            cursor: pointer;
            padding: 5px;
        }

        /* Navegación Principal */
        .nav-menu {
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .nav-item {
            margin-left: 20px;
            text-decoration: none;
            color: #000;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-item:hover {
            color: #2c4173;
        }

        /* Indicador de submenu para Hoteles y Ofertas */
        .nav-item.has-submenu:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #2c4173;
            transition: width 0.3s ease;
        }
        
        .nav-item.has-submenu:hover:after {
            width: 100%;
        }

        /* Botón Buscar */
        .btn-buscar {
            background-color: #3e5481;
            color: white;
            padding: 12px 25px;
            border: none;
            margin-left: 25px;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            border-radius: 2px;
            transition: background 0.3s;
        }
        
        .btn-buscar:hover {
            background-color: #2c4173;
        }

        /* --- Submenús --- */
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #fff;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            display: none;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            z-index: 99;
            border-top: 1px solid #eee;
        }
        
        .submenu.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        
        .submenu-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
        }

        /* Columnas del submenu */
        .submenu-column {
            flex: 1;
            padding-right: 40px;
        }
        
        .submenu-column:last-child {
            padding-right: 0;
        }
        
        .submenu-title {
            color: #2c4173;
            font-size: 18px;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .submenu-link {
            display: block;
            color: #333;
            text-decoration: none;
            padding: 8px 0;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.2s;
        }
        
        .submenu-link:hover {
            color: #2c4173;
        }
        
        .submenu-link-description {
            display: block;
            font-size: 13px;
            color: #666;
            font-weight: 400;
            margin-top: 2px;
        }

        /* Submenu especial para ofertas */
        .ofertas-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .oferta-item {
            border: 1px solid #eee;
            border-radius: 4px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .oferta-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .oferta-img {
            height: 150px;
            background-color: #f5f7fa;
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }
        
        .oferta-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .oferta-content {
            padding: 20px;
        }
        
        .oferta-title {
            color: #2c4173;
            font-size: 16px;
            font-weight: 700;
            margin: 0 0 10px 0;
        }
        
        .oferta-description {
            font-size: 14px;
            color: #666;
            margin: 0 0 15px 0;
        }
        
        .oferta-link {
            color: #3e5481;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            display: inline-block;
        }
        
        .oferta-link:after {
            content: '→';
            margin-left: 5px;
            transition: margin-left 0.2s;
        }
        
        .oferta-link:hover:after {
            margin-left: 10px;
        }

        /* --- Menú Móvil --- */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100%;
            background-color: #fff;
            z-index: 1000;
            overflow-y: auto;
            transition: left 0.3s ease;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        }
        
        .mobile-menu.active {
            left: 0;
        }
        
        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
            background-color: #2c4173;
            color: white;
        }
        
        .mobile-menu-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        .mobile-menu-items {
            padding: 20px;
        }
        
        .mobile-nav-item {
            display: block;
            padding: 15px 0;
            text-decoration: none;
            color: #333;
            font-weight: 600;
            border-bottom: 1px solid #eee;
            font-size: 16px;
        }
        
        .mobile-nav-item.has-submenu {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-nav-item.has-submenu i {
            transition: transform 0.3s;
        }
        
        .mobile-nav-item.has-submenu.active i {
            transform: rotate(180deg);
        }
        
        .mobile-submenu {
            display: none;
            padding-left: 15px;
            background-color: #f9f9f9;
            margin: 10px 0;
            border-radius: 4px;
        }
        
        .mobile-submenu.active {
            display: block;
        }
        
        .mobile-submenu-link {
            display: block;
            padding: 12px 0;
            text-decoration: none;
            color: #555;
            font-size: 14px;
            border-bottom: 1px solid #eee;
        }
        
        .mobile-submenu-link:last-child {
            border-bottom: none;
        }
        
        .mobile-submenu-title {
            color: #2c4173;
            font-weight: 700;
            margin: 20px 0 10px 0;
            font-size: 16px;
        }

        /* --- Estilos Responsivos --- */
        @media screen and (max-width: 1024px) {
            .container {
                padding: 10px 15px;
            }
            
            .submenu-content {
                padding: 30px 15px;
            }
            
            .ofertas-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media screen and (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .hamburger-btn {
                display: block;
            }
            
            .mobile-icons {
                display: flex;
            }
            
            .nav-menu {
                display: none;
            }
            
            .header-right {
                flex-direction: row;
                align-items: center;
            }
            
            .logo-text h1 {
                font-size: 20px;
            }
            
            .logo-text span {
                font-size: 8px;
                letter-spacing: 2px;
            }
            
            .submenu-content {
                flex-direction: column;
                padding: 20px 15px;
            }
            
            .submenu-column {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .submenu-column:last-child {
                margin-bottom: 0;
            }
            
            .ofertas-grid {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 480px) {
            .container {
                padding: 8px 10px;
            }
            
            .logo-img {
                height: 40px;
                margin-right: 8px;
            }
            
            .logo-text h1 {
                font-size: 18px;
                letter-spacing: 1px;
            }
            
            .logo-text span {
                font-size: 7px;
                letter-spacing: 1.5px;
            }
            
            .mobile-menu {
                width: 85%;
            }
            
            .mobile-icon {
                margin-left: 15px;
                font-size: 18px;
            }
        }
