
.pay-now-btn {
    background: linear-gradient(45deg, #ff4444, #ff8800);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 136, 0, 0.4);
    animation: bounce 1.5s ease-in-out infinite;
}

.pay-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 136, 0, 0.6);
    color: white;
    text-decoration: none;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #01579b 100%);
            color: white;
            overflow-x: hidden;
        }

        /* Estrellas animadas */
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: twinkle 2s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* Header */
        header {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            height: 60px;
            width: auto;
            transition: transform 0.3s ease;
        }

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

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #ff8800;
        }

        .whatsapp-btn {
            background: linear-gradient(45deg, #25d366, #128c7e);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        /* Mobile menu */
        .mobile-menu {
            display: none;
            background: white;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #1a237e;
            padding: 5px;
            border-radius: 5px;
        }

        /* Hero Slider */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 35, 126, 0.6);
            z-index: 1;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            width: 90%;
            max-width: 800px;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            line-height: 1.1;
        }

        .hero-content .highlight {
            color: #ff8800;
            font-size: 5rem;
            display: block;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-amenities {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .amenity {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .amenity-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            backdrop-filter: blur(10px);
        }

        .cta-section {
            margin: 3rem 0;
        }

        .cta-button {
            background: linear-gradient(45deg, #ff4444, #ff8800);
            color: white;
            padding: 20px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 8px 25px rgba(255, 136, 0, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 136, 0, 0.6);
        }

        /* Hero navigation dots */
        .hero-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .hero-dot.active {
            background: #ff8800;
        }

        /* Sections */
        section {
            padding: 6rem 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .section-title .highlight {
            color: #ff8800;
        }

        /* Options Comparison */
        .options-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .option-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .option-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ff8800;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .option-features {
            list-style: none;
            font-size: 1.2rem;
            line-height: 1.8;
            font-weight: 400;
        }

        .option-features li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .option-features li:before {
            content: "•";
            color: #ff8800;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
        }

        .price-note {
            text-align: center;
            font-style: italic;
            margin-top: 2rem;
            opacity: 0.8;
            font-weight: 300;
        }

        .reserve-button-section {
            text-align: center;
            margin-top: 4rem;
        }

        /* Services Section - NUEVO 4-3 LAYOUT */
        .services-container {
            margin-top: 3rem;
        }

        .services-row {
            display: grid;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        /* Primera fila - 4 elementos */
        .services-row-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        /* Segunda fila - 3 elementos centrados */
        .services-row-3 {
            grid-template-columns: repeat(3, 1fr);
            max-width: 75%;
            margin: 0 auto;
        }

        .service-item {
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding: 2rem 1rem;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(255, 136, 0, 0.2);
            background: rgba(255, 255, 255, 0.1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 136, 0, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .service-item:hover .service-icon {
            background: rgba(255, 136, 0, 0.2);
            transform: scale(1.1);
        }

        .service-icon img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }

        .service-item:hover .service-icon img {
            filter: brightness(0) saturate(100%) invert(66%) sepia(89%) saturate(1000%) hue-rotate(359deg) brightness(102%) contrast(101%);
        }

        .service-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin: 0;
            line-height: 1.3;
        }

        /* Location iframe */
        .full-width-map {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }

        .location-iframe {
            width: 100%;
            height: 85vh;
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 15px;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(255, 136, 0, 0.1);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            padding: 0 1.5rem;
            line-height: 1.6;
            font-weight: 400;
        }

        .faq-answer.active {
            max-height: 300px;
            padding: 0 1.5rem 1.5rem;
        }

        .faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            color: #ff8800;
            font-weight: bold;
        }

        .faq-toggle.active {
            transform: rotate(45deg);
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.5);
            padding: 3rem 0;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-content p {
            font-weight: 400;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .services-row-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-row-3 {
                grid-template-columns: repeat(3, 1fr);
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
            }

            .nav-links.active {
                display: flex;
            }

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

            .hero-content .highlight {
                font-size: 3rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .hero-amenities {
                gap: 1.5rem;
            }

            .options-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .location-iframe {
                height: 80vh;

            /* Services responsive */
            .services-row-4,
            .services-row-3 {
                grid-template-columns: repeat(2, 1fr);
                max-width: 100%;
            }
            
            .services-row {
                gap: 2rem;
                margin-bottom: 2rem;
            }
            
            .service-item {
                padding: 1.5rem 1rem;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
            }
            
            .service-icon img {
                width: 35px;
                height: 35px;
            }
            
            .service-title {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content .highlight {
                font-size: 2.5rem;
            }

            .cta-button {
                padding: 15px 30px;
                font-size: 1.2rem;
            }

            .services-row-4,
            .services-row-3 {
                grid-template-columns: 1fr;
            }
            
            .services-row {
                gap: 1.5rem;
            }
        }
        /* YouTube Hero Styles */
.hero-youtube-slide {
    position: relative;
}

.hero-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Evita clicks en el video */
    z-index: 0;
}

.hero-youtube-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 126, 0.2);
    z-index: 1;
}

/* Asegurar que el contenido esté por encima del video */
.hero-content {
    z-index: 3;
}

.hero-dots {
    z-index: 4;
}

/* Ocultar YouTube cuando no está activo */
.hero-slide:not(.active) .hero-youtube {
    opacity: 0;
    visibility: hidden;
}

.hero-slide.active .hero-youtube {
    opacity: 1;
    visibility: visible;
}

/* Responsive para YouTube */
@media (max-width: 768px) {
    .hero-youtube {
        /* YouTube se adapta automáticamente en responsive */
    }
}
.hero-youtube[autoplay] {
    object-fit: cover;
}
