 /* --- 1. Variables de Diseño (Estilo Moderno y con más color) --- */
        :root {
            --color-primario: #0D9488;   /* Turquesa Moderno */
            --color-secundario: #F0F9FF; /* Azul muy claro */
            --color-acento: #F59E0B;     /* Ámbar / Dorado */
            --color-texto: #1F2937;       /* Gris oscuro */
            --color-texto-claro: #4B5563; /* Gris medio */
            --color-fondo: #FFFFFF;
            --color-borde: #D1D5DB;
            --sombra-tarjeta: 0 4px 12px rgba(0,0,0,0.05);
            --radio-borde: 12px;
        }

        /* --- 2. Estilos Globales y Accesibilidad --- */
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--color-fondo);
            color: var(--color-texto);
            line-height: 1.7;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        h1, h2, h3 {
            font-weight: 700;
            color: var(--color-texto);
            margin-top: 0;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.25rem; text-align: center; margin-bottom: 3rem; }
        h3 { font-size: 1.25rem; }

        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radio-borde);
        }
        
        section {
            padding: 5rem 0;
        }

        /* --- 3. Barra Superior (FIJA Y FUENTE MÁS GRANDE) --- */
        .top-bar {
            background-color: #111;
            color: #FFFFFF;
            padding: 0.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1rem;
            flex-wrap: wrap;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 110;
        }
        
        .top-bar div {
            padding: 0.25rem 0.5rem;
        }
		
		.top-bar-brand {
            display: flex;
            align-items: center;
        }

        .top-bar-logo {
            height: 1.75rem; /* Ajusta este tamaño si lo necesitas */
            width: auto;
            margin-right: 0.5rem; /* Espacio entre el logo y el texto */
        }

        /* --- 4. Cabecera y Navegación (FIJA Y CON EFECTO SCROLL) --- */
        .header {
            background-color: var(--color-fondo);
            border-bottom: 1px solid var(--color-borde);
               padding: 0,5rem 0;
            position: sticky;
            z-index: 100;
            transition: top 0.3s ease-in-out;
        }

        .header .container {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .nav {
            display: flex;
        }
        
        .nav a {
            margin-left: 2rem;
            text-decoration: none;
            color: var(--color-texto-claro);
            font-weight: 600;
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }

        .nav a:hover, .nav a:focus {
            color: var(--color-primario);
        }
        
        .nav a.btn {
            margin-left: 2rem;
            font-size: 1rem;
        }
        
        .mobile-menu {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--color-primario);
        }

        /* --- 5. Botones (CTA) --- */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.75rem;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--color-primario);
            color: #FFFFFF;
        }

        .btn-primary:hover, .btn-primary:focus {
            background-color: var(--color-acento);
            transform: translateY(-2px);
            color: #FFFFFF;
        }
        
        /* Formulario (reutilizado de la home) */
        .form-row {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        
        .form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 200px;
        }
        
        .form-group label {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            border: 1px solid var(--color-borde);
            border-radius: 8px;
            box-sizing: border-box;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-primario);
            box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
        }
        
        /* --- 18. ESTILOS PANEL ADMIN --- */
        #admin-panel {
            background-color: #f8f9fa;
            border-top: 2px solid var(--color-primario);
            min-height: 70vh; /* Para que no quede tan vacío */
        }
        #admin-panel h2, #admin-panel h3 {
            text-align: left;
        }
        #admin-panel h3 {
             margin-top: 3rem;
             border-top: 1px solid var(--color-borde);
             padding-top: 2rem;
        }
        
        .admin-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 2rem;
            box-shadow: var(--sombra-tarjeta);
            font-size: 0.9rem;
        }
        .admin-table thead tr {
            background-color: var(--color-texto);
            color: #FFFFFF;
        }
        .admin-table th, .admin-table td {
            padding: 0.75rem 1rem;
            border: 1px solid var(--color-borde);
            text-align: left;
            vertical-align: middle;
        }
        .admin-table tbody tr:nth-child(even) {
            background-color: #FFFFFF;
        }
        
        .admin-table img.room-preview {
            width: 100px;
            height: auto;
            border-radius: 8px;
        }
        
        .btn-edit, .btn-delete {
            padding: 0.5rem 0.75rem;
            font-size: 0.9rem;
            border-radius: 6px;
            cursor: pointer;
            border: 1px solid transparent;
        }
        
        .btn-edit {
            background-color: var(--color-acento);
            color: white;
        }
        
        .btn-delete {
            background-color: #DC2626; /* Rojo */
            color: white;
            margin-left: 0.5rem;
        }
        
        #add-room-form {
            background: var(--color-fondo);
            padding: 2rem;
            border-radius: var(--radio-borde);
            box-shadow: var(--sombra-tarjeta);
            margin-top: 2rem;
        }
        
        #add-room-form .form-group {
             margin-bottom: 1.5rem;
        }
        
        #add-room-form .btn {
            width: 100%;
        }
        
        /* Pie de página */
        .footer {
            background-color: #111;
            color: #A0A0A0;
            padding: 5rem 2rem 2rem 2rem;
            margin-top: 0;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 3rem auto;
            text-align: left;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
       .footer-section h3 {
            color: var(--color-fondo);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .footer-logo {
            height: 2rem;
            width: auto;
            margin-right: 0.75rem;
        }
        
        .footer-section p {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }
        
        .footer-section a {
            color: #A0A0A0;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: var(--color-acento); 
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
        }

        /* Responsividad (simplificada) */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.8rem; }
            
            .top-bar { justify-content: center; }

            .nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px; 
                left: 0;
                width: 100%;
                background-color: var(--color-fondo);
                box-shadow: 0 10px 10px rgba(0,0,0,0.05);
                padding: 1rem 0;
            }
            .nav.show { display: flex; }
            .nav a { margin: 0; padding: 1rem 2rem; font-size: 1rem; }
            .nav a.btn { margin: 1rem 2rem 0 2rem; text-align: center; }
            .mobile-menu { display: block; position: absolute; right: 2rem; }
            .header .container { justify-content: center; }
            .form-row { flex-direction: column; gap: 0; margin-bottom: 0; }
            .form-group { margin-bottom: 1.5rem; }
            .footer-content { flex-direction: column; text-align: center; }
        }