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

        body {
            font-family: 'Montserrat', sans-serif;
            background: #ffffff;
            color: #003554;
            line-height: 1.8;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
            box-shadow: 0 0 50px rgba(14, 202, 238, 0.3);
            position: relative;
        }

        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(14, 202, 238, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(14, 202, 238, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        header {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(14, 202, 238, 0.3);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
        }

        .content-wrapper {
            padding-top: 80px;
        }

        .btn-header {
            background: linear-gradient(135deg, #0ECAEE 0%, #00B4CC 100%);
            border: none;
            padding: 12px 24px;
            border-radius: 30px;
            color: #ffffff;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(14, 202, 238, 0.3);
        }

        .btn-header:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(14, 202, 238, 0.5);
        }

        .spa-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 3px;
            background: linear-gradient(135deg, #0ECAEE 0%, #00D4FF 50%, #0ECAEE 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            padding-left: 20px;
        }

        .audio-control {
            position: fixed;
            top: 180px;
            right: 20px;
            z-index: 1000;
            background: rgba(14, 202, 238, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(14, 202, 238, 0.3);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .audio-control:hover {
            background: rgba(14, 202, 238, 0.3);
            transform: scale(1.1);
        }

        .audio-control.playing::before {
            content: '🔊';
            font-size: 24px;
        }

        .audio-control.paused::before {
            content: '🔇';
            font-size: 24px;
        }

        .hero {
            padding: 40px 20px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.4;
            color: #003554;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, #0ECAEE 0%, #00D4FF 50%, #0ECAEE 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .hero-subtitle {
            font-size: 14px;
            color: #666666;
            margin-bottom: 30px;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .banner-placeholder {
            width: 100%;
            max-width: 1200px;
            height: 500px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px auto;
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(14, 202, 238, 0.3);
            box-shadow: 0 10px 40px rgba(14, 202, 238, 0.2);
        }

        .banner-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 20px;
        }

        .banner-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(14, 202, 238, 0.2), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .banner-text-overlay {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 700;
            color: #0ECAEE;
            text-transform: uppercase;
            letter-spacing: 3px;
            z-index: 1;
        }

        .banner-text {
            font-size: 11px;
            color: #666666;
            margin-top: 15px;
            font-style: italic;
            font-weight: 300;
        }

        .info-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 30px 25px;
            margin: 30px 20px;
            border-radius: 20px;
            border: 1px solid rgba(14, 202, 238, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .info-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #0ECAEE 0%, #00D4FF 50%, #0ECAEE 100%);
            border-radius: 20px 0 0 20px;
        }

        .info-section h3 {
            font-size: 13px;
            margin-bottom: 20px;
            color: #003554;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 400;
            line-height: 1.6;
        }

        .map-container {
            background: #ffffff;
            border: 2px solid rgba(14, 202, 238, 0.3);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-top: 20px;
        }

        .map-placeholder {
            color: #0ECAEE;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .location-icon {
            font-size: 32px;
            margin-top: 15px;
            filter: drop-shadow(0 0 10px rgba(14, 202, 238, 0.5));
        }

        .schedule {
            text-align: center;
            font-style: italic;
            color: #0ECAEE;
            margin-top: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            padding: 30px 20px;
        }

        .btn {
            flex: 1;
            padding: 18px;
            border: none;
            border-radius: 15px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-secondary {
            background: transparent;
            color: #0ECAEE;
            border: 2px solid #0ECAEE;
        }

        .btn-secondary:hover {
            background: rgba(14, 202, 238, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(14, 202, 238, 0.3);
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #0ECAEE 0%, #00D4FF 100%);
            color: #ffffff;
            font-weight: 700;
            box-shadow: 0 8px 25px rgba(14, 202, 238, 0.4);
        }

        .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(14, 202, 238, 0.6);
        }

        .location-section {
            padding: 50px 20px;
            text-align: center;
        }

        .location-section h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #0ECAEE;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .image-gallery {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding: 15px 0;
            margin: 0 auto 30px;
            max-width: 1200px;
            justify-content: flex-start;
            scrollbar-width: thin;
            scrollbar-color: #0ECAEE #f8f9fa;
        }

        .image-gallery::-webkit-scrollbar {
            height: 8px;
        }

        .image-gallery::-webkit-scrollbar-track {
            background: #f8f9fa;
            border-radius: 10px;
        }

        .image-gallery::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, #0ECAEE, #00D4FF);
            border-radius: 10px;
        }

        .gallery-item {
            flex: 0 0 auto;
            width: 230px;
            aspect-ratio: 9 / 16;
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid rgba(14, 202, 238, 0.3);
            transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            border-color: #0ECAEE;
            box-shadow: 0 8px 25px rgba(14, 202, 238, 0.35);
        }

        .services-section {
            padding: 50px 20px;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        }

        .services-section h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            color: #0ECAEE;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 40px;
            border-bottom: 2px solid rgba(14, 202, 238, 0.2);
            padding-bottom: 5px;
            flex-wrap: wrap;
        }

        .tab {
            flex: 1;
            min-width: 100px;
            padding: 15px 10px;
            background: transparent;
            border: none;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            color: #666666;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tab.active {
            color: #0ECAEE;
            border-bottom-color: #0ECAEE;
        }

        .tab:hover {
            color: #00D4FF;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(14, 202, 238, 0.2);
            transition: all 0.4s ease;
        }

        .service-card:hover {
            border-color: #0ECAEE;
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(14, 202, 238, 0.3);
        }

        .service-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(14, 202, 238, 0.3);
            box-shadow: 0 10px 25px rgba(14, 202, 238, 0.2);
        }

        .service-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 15px;
        }

        .service-image:hover img {
            transform: scale(1.05);
            transition: transform 0.4s ease;
        }

        .service-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #0ECAEE;
            letter-spacing: 1px;
        }

        .service-description {
            font-size: 13px;
            color: #666666;
            line-height: 1.8;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .service-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .service-features li {
            padding: 8px 0;
            font-size: 12px;
            color: #003554;
            font-weight: 400;
        }

        .service-features li::before {
            content: '✨';
            margin-right: 10px;
        }

        .service-price {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #0ECAEE 0%, #00D4FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 20px 0;
            font-family: 'Cormorant Garamond', serif;
        }

        .price-options {
            font-size: 14px;
            color: #003554;
            margin: 10px 0;
            font-weight: 400;
        }

        .price-options strong {
            color: #0ECAEE;
            font-weight: 600;
        }

        .btn-availability {
            width: 100%;
            background: linear-gradient(135deg, #0ECAEE 0%, #00D4FF 100%);
            color: #ffffff;
            padding: 16px;
            border: none;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(14, 202, 238, 0.4);
        }

        .btn-availability:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(14, 202, 238, 0.6);
        }

        .floating-whatsapp {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #0ECAEE 0%, #00D4FF 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 30px rgba(14, 202, 238, 0.6);
            cursor: pointer;
            z-index: 1000;
            animation: pulse 2s infinite, float 3s ease-in-out infinite;
            border: 3px solid #ffffff;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 8px 30px rgba(14, 202, 238, 0.6);
            }
            50% {
                box-shadow: 0 8px 40px rgba(14, 202, 238, 0.9);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .floating-whatsapp::before {
            content: '';
            display: inline-block;
            width: 32px;
            height: 32px;
            background-image: url('/pngimg.com\ -\ whatsapp_PNG21.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        footer {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            color: #666666;
            text-align: center;
            padding: 40px 20px;
            font-size: 11px;
            border-top: 1px solid rgba(14, 202, 238, 0.2);
        }

        footer p {
            margin: 5px 0;
        }

        footer .gold-text {
            color: #0ECAEE;
            font-weight: 600;
        }

        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #0ECAEE, transparent);
            margin: 50px 20px;
            opacity: 0.3;
        }

        @media (max-width: 768px) {
            .banner-placeholder {
                height: 300px;
            }
            .gallery-item { 
                width: 180px; 
            }
            .location-section { 
                padding: 40px 16px; 
            }
            .location-section h2 { 
                font-size: 28px; 
            }
        }

        @media (min-width: 768px) {
            .container {
                max-width: 100%;
            }

            header {
                padding: 25px 50px;
            }

            .spa-name {
                font-size: 28px;
            }

            .btn-header {
                padding: 14px 30px;
                font-size: 14px;
            }

            .hero {
                padding: 60px 50px;
            }

            .hero h1 {
                font-size: 48px;
                max-width: 900px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-subtitle {
                font-size: 18px;
                max-width: 700px;
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 40px;
            }

            .banner-placeholder {
                height: 400px;
                max-width: 1000px;
                margin-left: auto;
                margin-right: auto;
            }

            .banner-text-overlay {
                font-size: 42px;
            }

            .info-section {
                max-width: 900px;
                margin-left: auto;
                margin-right: auto;
                padding: 40px 35px;
            }

            .info-section h3 {
                font-size: 16px;
            }

            .cta-buttons {
                max-width: 600px;
                margin: 0 auto;
                padding: 40px 20px;
            }

            .btn {
                padding: 20px;
                font-size: 16px;
            }

            .location-section {
                padding: 70px 50px;
            }

            .location-section h2 {
                font-size: 42px;
            }

            .image-gallery {
                max-width: 1000px;
                margin: 0 auto;
                justify-content: center;
            }

            .gallery-item {
                min-width: 200px;
                height: 300px;
                font-size: 14px;
            }

            .services-section {
                padding: 70px 50px;
            }

            .services-section h2 {
                font-size: 42px;
            }

            .tabs {
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 50px;
            }

            .tab {
                font-size: 16px;
                padding: 18px 15px;
            }

            .tab-content {
                max-width: 1200px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 30px;
            }

            .tab-content.active {
                display: grid;
            }

            #sauna.tab-content,
            #masajes.tab-content {
                grid-template-columns: 1fr;
                max-width: 800px;
            }

            .service-card {
                padding: 35px;
                margin-bottom: 0;
            }

            .service-image {
                height: 250px;
            }

            .service-title {
                font-size: 28px;
            }

            .service-description {
                font-size: 15px;
            }

            .service-features li {
                font-size: 14px;
                padding: 10px 0;
            }

            .price-options {
                font-size: 16px;
            }

            .service-price {
                font-size: 32px;
            }

            .btn-availability {
                padding: 18px;
                font-size: 16px;
            }

            .divider {
                max-width: 1200px;
                margin: 60px auto;
            }

            footer {
                padding: 50px;
                font-size: 13px;
            }

            .floating-whatsapp {
                width: 70px;
                height: 70px;
                bottom: 30px;
                right: 30px;
            }

            .floating-whatsapp::before {
                font-size: 36px;
            }

            .audio-control {
                top: 90px;
                right: 50px;
                width: 55px;
                height: 55px;
            }
        }

        @media (min-width: 1200px) {
            .hero h1 {
                font-size: 56px;
                max-width: 1100px;
            }

            .hero-subtitle {
                font-size: 20px;
            }

            .banner-placeholder {
                height: 500px;
                max-width: 1200px;
            }

            .banner-text-overlay {
                font-size: 52px;
            }

            .info-section {
                max-width: 1100px;
            }

            .cta-buttons {
                max-width: 700px;
            }

            .image-gallery {
                max-width: 1200px;
            }

            .gallery-item {
                min-width: 250px;
                height: 350px;
            }

            .tabs {
                max-width: 900px;
            }

            .tab-content {
                max-width: 1400px;
            }

            #sauna.tab-content,
            #masajes.tab-content {
                max-width: 900px;
            }
        }


        /* Galería: aplica igual a imágenes y videos */
        .gallery-item img,
        .gallery-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 15px;
        }

        /* Servicios: aplica igual a imagen o video */
        .service-img,
        .service-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 15px;
        }

        /* Efecto hover: compatible con ambos */
        .service-image:hover img,
        .service-image:hover video {
            transform: scale(1.05);
            transition: transform 0.4s ease;
        }



        .language-switcher {
            display: flex;
            flex-direction: column;
            gap: 3px;
            align-items: center;
        }

        .lang-btn {
            background: transparent;
            border: 2px solid #0ECAEE;
            padding: 6px 10px;
            border-radius: 15px;
            color: #0ECAEE;
            font-size: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            min-width: 60px;
        }

        .lang-btn.active {
            background: linear-gradient(135deg, #0ECAEE 0%, #00B4CC 100%);
            color: #ffffff;
        }

        .lang-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(14, 202, 238, 0.3);
        }



