   @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Poppins:wght@300;400;500;600&display=swap');
        :root {
            --primary: #1a365d; 
            --secondary: #d4a76a;
            --accent: #e53e3e;
            --light: #f8f9fa;
            --dark: #1a202c;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, .section-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        /* Animaciones personalizadas */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Header hero con video de fondo */
      .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    background-color: black; /* Fondo negro como respaldo */
    overflow: hidden;
}
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            padding: 0 20px;
            animation: fadeInUp 1s ease-out;
        }
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.5rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        /* Navegación sticky */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            background: rgba(26, 54, 93, 0.9);
        }
        .navbar.scrolled {
            background: rgba(26, 54, 93, 0.95);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: white;
        }
        .nav-logo span {
            color: var(--secondary);
        }
        /* Botones */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .btn-primary {
            background: var(--secondary);
            color: var(--dark);
        }
        .btn-primary:hover {
            background: #c08d4d;
            transform: translateY(-3px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        }
        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        .btn-outline:hover {
            background: white;
            color: var(--dark);
            transform: translateY(-3px);
        }
        .btn-whatsapp {
            background: #25D366;
            color: white;
        }
        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-3px);
        }
        /* Secciones */
        section {
            padding: 80px 0;
        }
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: var(--primary);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary);
        }
        .section-subtitle {
            font-size: 1.2rem;
            color: #6b7280;
            max-width: 700px;
            margin: 0 auto 50px;
            text-align: center;
        }
        /* Tarjetas de habitaciones */
        .room-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
        }
        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        .room-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 1;
        }
        .room-image {
            height: 250px;
            overflow: hidden;
        }
        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .room-card:hover .room-image img {
            transform: scale(1.1);
        }
        .room-info {
            padding: 20px;
        }
        .room-price {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.3rem;
            margin: 10px 0;
        }
        .room-price span {
            color: #6b7280;
            font-size: 0.9rem;
            font-weight: 400;
        }
        .room-amenities {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 15px 0;
        }
        .amenity {
            display: flex;
            align-items: center;
            font-size: 0.8rem;
            color: #4a5568;
        }
        .amenity i {
            margin-right: 5px;
            color: var(--secondary);
        }
        /* Galería */
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        .gallery-item:hover {
            transform: scale(1.05);
        }
        /* Testimonios */
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            font-family: 'Playfair Display', serif;
            color: rgba(212, 167, 106, 0.2);
            line-height: 1;
            z-index: 0;
        }
        .testimonial-content {
            position: relative;
            z-index: 1;
        }
        /* Formularios */
        .form-control {
            border: 1px solid #e2e8f0;
            border-radius: 5px;
            padding: 12px 15px;
            width: 100%;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(212, 167, 106, 0.2);
        }
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 20px;
        }
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .footer-logo span {
            color: var(--secondary);
        }
        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-links h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary);
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            margin-right: 10px;
            transition: var(--transition);
        }
        .social-links a:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }
        /* Efectos hover especiales */
        .hover-zoom {
            transition: var(--transition);
        }
        .hover-zoom:hover {
            transform: scale(1.03);
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            section {
                padding: 60px 0;
            }
        }
        /* Animaciones al hacer scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }