/* Navbar */
        #navbar  {
            border-top: 1px solid #fff;
        }
        
        .navbar-container {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2%;
            background-color: #47b2d5;
            border: 1px inset white;
            /*! border-radius: 4px; */
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2c3e50;
            text-decoration: none;
        }
        
        .navbar-nav {
            display: flex;
            list-style: none;
            gap: 2rem;
            /*! text-align: center; */
        }
        
        .nav-link {
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 0.95em;
            color: white;
        }
        
        .nav-link:hover {
            color:#393534;
        }

        /* Iconos simulados (sin Font Awesome) */
        .icon-camera::before { content: "📷 "; }
        .icon-home::before { content: "🏠 "; }
        .icon-images::before { content: "🖼️ "; }
        .icon-map::before { content: "📍 "; }
        .icon-arrow-left::before { content: "← "; }
        .icon-eye::before { content: "👁️ "; }

        /* Móviles muy pequeños */
    @media (max-width: 480px) {
        .navbar {
            display: none;
        }
    }