
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --dark-slate: #4a5568;
            --medium-slate: #718096;
            --light-slate: #a0aec0;
            --very-light-slate: #e2e8f0;
            --light-blue: #90cdf4;
            --bright-blue: #63b3ed;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--dark-slate);
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header y Navegación */
        header {
            background: linear-gradient(135deg, var(--medium-slate), var(--light-blue));
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            height: 50px;
            width: auto;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-main {
            font-size: 1.6rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            color: white;
        }

        .logo-sub {
            font-size: 1rem;
            font-weight: 300;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            color: rgba(255,255,255,0.9);
            margin-top: -2px;
        }

        /* Hamburger Menu */
        .hamburger {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            z-index: 2001;
            position: relative;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Animación del hamburger */
        .hamburger.open span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Navigation Menu */
        .nav-links {
            position: fixed;
            top: 0;
            right: -350px;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, var(--dark-slate), var(--medium-slate));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            list-style: none;
            gap: 2rem;
            transition: right 0.5s ease;
            z-index: 2000;
            box-shadow: -5px 0 15px rgba(0,0,0,0.3);
            padding: 0;
            margin: 0;
        }

        .nav-links.open {
            right: 0;
        }

        .nav-links li {
            width: 80%;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            display: block;
            text-align: center;
            border: 2px solid transparent;
        }

        .nav-links a:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--light-blue);
            transform: translateX(-5px);
        }

        /* Overlay */
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1999;
        }

        .nav-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(74, 85, 104, 0.8), rgba(144, 205, 244, 0.3)), 
                        url('./imagenes/ayacucho_frente.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease 0.3s both;
        }

        .cta-button {
            display: inline-block;
            background: var(--light-slate);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            animation: fadeInUp 1s ease 0.6s both;
        }

        .cta-button:hover {
            background: var(--medium-slate);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        /* Secciones */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--medium-slate);
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, var(--medium-slate), var(--light-blue));
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--light-slate);
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background: var(--very-light-slate);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-image {
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(113, 128, 150, 0.3);
        }

        /* Habitaciones */
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .room-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .room-image {
            height: 200px;
            overflow: hidden;
            border-radius: 15px 15px 0 0;
        }

        .room-content {
            padding: 1.5rem;
        }

        .room-content h3 {
            color: var(--medium-slate);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Servicios */
        .services {
            background: var(--very-light-slate);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--medium-slate), var(--light-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.5rem;
        }

        /* Ubicación */
        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .location-info h3 {
            color: var(--medium-slate);
            margin-bottom: 1rem;
        }

        .location-map {
            height: 600px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(160, 174, 192, 0.3);
        }

        /* Galería */
        .gallery {
            background: var(--very-light-slate);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }

        .gallery-item {
            height: 200px;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(113, 128, 150, 0.3);
        }

        .gallery-item img {
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Contacto */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark-slate);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--very-light-slate);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--medium-slate);
            box-shadow: 0 0 0 3px rgba(113, 128, 150, 0.1);
        }

        .form-group textarea {
            height: 100px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--medium-slate), var(--light-blue));
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(113, 128, 150, 0.3);
        }

        .contact-info {
            background: var(--dark-slate);
            color: white;
            padding: 2rem;
            border-radius: 15px;
        }

        .contact-info h3 {
            color: var(--light-blue);
            margin-bottom: 1.5rem;
        }

        .contact-item {
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--medium-slate);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Footer */
        footer {
            background: var(--dark-slate);
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .about-content,
            .location-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .container {
                padding: 0 15px;
            }

            .nav-links {
                width: 250px;
            }

            .logo-img {
                height: 40px;
            }

            .logo-main {
                font-size: 1.3rem;
            }

            .logo-sub {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .nav-links {
                width: 100%;
                right: -100%;
            }

            .nav-links.open {
                right: 0;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .logo-img {
                height: 35px;
            }

            .logo-main {
                font-size: 1.1rem;
            }

            .logo-sub {
                font-size: 0.8rem;
            }
        }

        /* Botón flotante de WhatsApp */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 4px 4px 8px #999;
        }


/* Variables rápidas para mantener coherencia */
:root{
  --nav-text:#fff;
  --nav-muted:#cfd8dc;
  --submenu-bg: rgba(0,0,0,.35);
  --submenu-bd: rgba(255,255,255,.25);
}

.nav-links,
.nav-links .submenu { list-style: none; margin: 0; padding: 0; }

.nav-links.vertical li { position: relative; }

.nav-links.vertical a{
  display:block;
  padding:12px 16px;
  color:var(--nav-text);
  text-decoration:none;
  border-radius:14px;
}

/* ---------- Dropdown (vertical, inline) ---------- */
.dropdown .dropdown-toggle{
  display:flex;
  align-items:center;
  justify-content:center;  /* centrado como en tu captura */
  gap:8px;
  border:1px solid rgba(173,216,230,.6);   /* tono celeste suave */
  border-radius:16px;
  backdrop-filter: blur(2px);
}

.dropdown .caret{
  display:inline-block;
  width: 8px; height: 8px;
  border-right: 2px solid var(--nav-text);
  border-bottom:2px solid var(--nav-text);
  transform: rotate(45deg);
  transition: transform .2s ease;
}

/* Caja del submenú (aparece debajo y empuja el contenido) */
.dropdown .submenu{
  display:none;               /* se muestra con la clase .open */
  position: static;           /* clave para sidebar vertical */
  margin:8px 0 0;
  padding:6px;
  background: var(--submenu-bg);
  border:1px solid var(--submenu-bd);
  border-radius:14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  animation: submenuIn .18s ease;
}

.dropdown .submenu li a{
  padding:10px 12px;
  color: var(--nav-muted);
  border-radius:10px;
}

.dropdown .submenu li a:hover{
  background: rgba(255,255,255,.08);
  color:#fff;
}

/* Estado abierto */
.dropdown.open > .dropdown-toggle .caret{ transform: rotate(-135deg); }
.dropdown.open > .submenu{ display:block; }

/* Pequeña animación */
@keyframes submenuIn{
  from{ opacity:0; transform:translateY(-4px); }
  to{   opacity:1; transform:translateY(0); }
}

/* Accesible con teclado */
.dropdown:focus-within > .submenu { display:block; }
