  /* [INICIO ESTILOS - COPIAR TODOS LOS ESTILOS DE inclusivhotel.html AQUÍ] */
        :root {
            --color-primario: #0D9488;   /* Turquesa Moderno */
            --color-secundario: #F0F9FF; /* Azul muy claro */
            --color-acento: #F59E0B;     /* Ámbar / Dorado */
            --color-texto: #0D9488;       /* 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;
        }

        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;
        }

        .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; 
            width: auto;
            margin-right: 0.5rem; 
        }

        .header {
           background-color: #FFFFFF;
            border-bottom: 1px solid var(--color-borde);
            padding: 0,5rem 0;
            position: sticky;
            z-index: 50;
            transition: top 0.3s ease-in-out;
        }

        .header .container {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .nav {
               display: flex;
    align-content: stretch;
    justify-content: center;
    align-items: center;
        }
        
        .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);
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 1rem;
            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;
        }
    
        #hero {
            position: relative; 
            padding: 2rem 0; 
            text-align: center;
            color: #FFFFFF;
            overflow: hidden; 
            /* Modificado */
        }

        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 72%;
            object-fit: cover; 
            z-index: 0; 
            /* Modificado */
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); 
            z-index: 1; 
            /* Modificado */
        }
        
        #hero .container {
            position: relative;
            z-index: 2; 
        }
        
        .hero-logo {
            width: 250px;
            height: auto;
            margin-bottom: 1.5rem;
            border-radius: 0; 
            animation: pulse-glow 2.5s infinite ease-in-out alternate;
        }

        @keyframes pulse-glow {
            from {
                filter: drop-shadow(0 0 4px #00bfff) 
                        drop-shadow(0 0 8px #00bfff);
            }
            to {
                filter: drop-shadow(0 0 6px #00bfff) 
                        drop-shadow(0 0 12px #00bfff) 
                        drop-shadow(0 0 2px #ffffff);
            }
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .card {
            background-color: var(--color-fondo);
            border: 1px solid var(--color-borde);
            border-radius: var(--radio-borde);
            box-shadow: var(--sombra-tarjeta);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .card img {
            border-radius: var(--radio-borde) var(--radio-borde) 0 0;
            display: block;
        }

        .card-content {
            padding: 1.5rem;
        }

        .card-content h3 {
            margin-bottom: 0.5rem;
            color: var(--color-primario);
        }
        
        .card-content p {
            color: var(--color-texto-claro);
            font-size: 0.95rem;
        }

        #accesibilidad .container {
            display: flex;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        
        #accesibilidad .content {
            flex: 1;
            min-width: 300px;
        }
        
        #accesibilidad .image-container {
            flex: 1;
            min-width: 300px;
        }
        
        #accesibilidad ul {
            list-style: none;
            padding-left: 0;
        }
        
        #accesibilidad li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        #accesibilidad li::before {
            content: '✔';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--color-primario);
            font-weight: bold;
        }

        .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;
        }

        @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;
            }
            
            #accesibilidad .container {
                flex-direction: column;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
		
		#cookie-consent-popup {
		  position: fixed;
		  bottom: 0;
		  left: 0;
		  width: 100%;
		  background-color: #111; 
		  color: #FFFFFF;
		  padding: 1rem;
		  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.3);
		  z-index: 1000;
		  display: flex;
		  justify-content: center;
		  align-items: center;
		  gap: 1.5rem;
		  flex-wrap: wrap;
		  box-sizing: border-box;
		}

		#cookie-consent-popup p {
			margin: 0;
			font-size: 0.9rem;
		}

		#cookie-consent-popup button {
		  display: inline-block;
		  padding: 0.6rem 1.25rem; 
		  font-weight: 600;
		  font-size: 0.9rem;
		  text-decoration: none;
		  border-radius: 50px;
		  transition: all 0.3s ease;
		  border: 2px solid transparent;
		  cursor: pointer;
		  background-color: var(--color-primario);
		  color: #FFFFFF;
		}

		#cookie-consent-popup button:hover {
		  background-color: var(--color-acento);
		  color: #FFFFFF;
		}
        /* [FIN ESTILOS - COPIAR TODOS LOS ESTILOS DE inclusivhotel.html AQUÍ] */