* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        :root {
            --primary: #0f0f0f;
            --secondary: #e74c3c;
            --light: #ecf0f1;
            --dark:rgba(217, 120, 24, 0.974);
            --gold: #f39c12;
        }
        
        body {
            background-color: black;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header */
        header {
               background-color: var(--primary);
            color: white;
            padding: 0.3rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            height: 70px;
        }
        
        .header-container {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative; /* Para posicionar el logo */
            height: 40%;
        }
        
         /* Logo */
        .logo-container {
            position: relative;
            left: 0;
            display: flex;
            align-items: relative;
            gap: 10px;
            height: 100%;
        }
        
        .logo {
            width: 35px;
            height: 35px;
            object-fit: contain;
        }
        
        .logo-text {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        .logo-text span {
            color: var(--gold);
        }
        
        /* Navigation */
        nav {
            position: relative;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            position: relative;
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
        }
        
        nav ul li a:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        /* Submenu */
        nav ul li ul.submenu {
            position: absolute;
            background-color: var(--primary);
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            z-index: 1000;
            display: none;
            top: 100%;
            left: 0;
            border-radius: 0 0 8px 8px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }
        
        nav ul li:hover > ul.submenu {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        
        nav ul li ul.submenu li {
            margin: 0;
            padding: 0;
            width: 100%;
        }
        
        nav ul li ul.submenu li a {
            display: block;
            padding: 12px 15px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 0;
        }
        
        nav ul li ul.submenu li a:hover {
            background-color: var(--secondary);
            padding-left: 20px;
        }
        
        /* Dropdown arrow */
        nav ul li > a::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 5px;
            font-size: 0.8rem;
        }
        
        nav ul li > a:only-child::after {
            content: none;
        }
        
        /* Hero Section */
        .hero {
            background: url('../imagenes/3.jpg') center/cover no-repeat;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Sections */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Features */
        .features {
            background-color: #f1f1f1;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        /* Rooms */
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .room-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .room-image {
            height: 200px;
            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-content {
            padding: 1.5rem;
        }
        
        .room-content h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .room-price {
            font-size: 1.2rem;
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .gallery-item {
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Contact */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
        
        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .contact-info {
            background: var(--primary);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            height: fit-content;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--gold);
            margin-right: 1rem;
        }
        
        /* Map */
        .map-container {
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--gold);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                background-color: var(--primary);
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                padding: 1rem 0;
                display: none;
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 0.5rem 0;
                text-align: center;
            }
            
            nav ul li ul.submenu {
                position: static;
                display: none;
                background-color: rgba(0,0,0,0.2);
                box-shadow: none;
                width: 100%;
                opacity: 1;
                transform: none;
            }
            
            nav ul li.active > ul.submenu {
                display: block;
            }
            
            nav ul li ul.submenu li a {
                padding: 10px 15px 10px 30px;
            }
            
            .menu-toggle {
                display: block;
                font-size: 1.5rem;
                cursor: pointer;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        
        .menu-toggle {
            display: none;
        }


        .taskbar {
            display: flex;
            align-items: center;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .taskbar-item {
            padding: 8px 16px;
            color: white;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none; /* Quitar subrayado de enlaces */
            display: block; /* Para que ocupe todo el espacio */
        }
        .separator {
            width: 1px;
            height: 45px;
            background: #f4eeee;
            margin: 0 15px;
        }

           .taskbar-item:hover {
            background: #d8440e;
           }



           .hotel-info {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            background-color: #fff;
        }
        .hotel-name {
            color: #8B4513;
            font-size: 28px;
            margin-bottom: 20px;
            border-bottom: 2px solid #DAA520;
            padding-bottom: 10px;
        }
        
        .contact-info {
            margin-bottom: 25px;
        }
        
        .contact-item {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-icon {
            margin-right: 10px;
            color: #8B4513;
            width: 20px;
            text-align: center;
        }
        
        .phone {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
        
        .email {
            color: #8B4513;
            text-decoration: none;
        }
        
        .email:hover {
            text-decoration: underline;
        }
        
        .address {
            color: #666;
        }
        
        .btn {
            display: inline-block;
            background-color: #8B4513;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
            margin-top: 10px;
        }
        
        .btn:hover {
            background-color: #A0522D;
        }
        
        .social-section {
            margin-top: 30px;
        }
        
        .section-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: #8B4513;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
        }
        
        .tripadvisor {
            background-color: #00af87;
        }
        
        .despegar {
            background-color: #0074c4;
        }
        
        .payment-section {
            margin-top: 30px;
        }
        
        .payment-icons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .payment-icon {
            width: 50px;
            height: 30px;
            background-color: #f5f5f5;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            color: #666;
            border: 1px solid #ddd;
        }
        
        @media (max-width: 768px) {
            .hotel-image {
                min-height: 250px;
            }
        }





        .social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Colores específicos para cada red social */
.social-icons a:nth-child(1) { background: #1877f2; } /* Facebook */
.social-icons a:nth-child(2) { background: #1da1f2; } /* Twitter */
.social-icons a:nth-child(3) { background: #ff0000; } /* YouTube */
.social-icons a:nth-child(4) { background: #00aff0; } /* Skype */



 .separador-simple {
        border: 0;
        height: 1px;
        background: #333;
        margin: 20px 0;
    }


.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.galeria-grid img {
    width: 100%;
    height: 99px;
    object-fit: cover;
    border-radius: 8px;
}

