* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #EFE4F3;
            font-family: 'Space Grotesk', sans-serif;
            color: #465240;
            overflow-x: hidden;
            line-height: 1.4;
        }

        /* CUSTOM CURSOR (optional, modern) */
        .cursor-dot {
            width: 8px;
            height: 8px;
            background: #E0B85F;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s;
        }

        .cursor-outline {
            width: 40px;
            height: 40px;
            border: 2px solid rgba(221,183,92,0.45);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.15s, width 0.2s, height 0.2s;
        }

        body.cursor-disabled .cursor-dot,
        body.cursor-disabled .cursor-outline {
            display: none !important;
        }

        /* TYPOGRAPHY */
        h1, h2, h3 {
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .glow-text {
            background: linear-gradient(135deg, #DDB75C, #AF8DBD, #592076);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: shimmer 6s linear infinite;
        }

        @keyframes shimmer {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }

        /* NAVBAR - LIQUID */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.8rem 2rem;
            mix-blend-mode: normal;
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            background: rgba(239,228,243,0.96);
            backdrop-filter: blur(20px);
            padding: 1rem 2rem;
            mix-blend-mode: normal;
            border-bottom: 1px solid rgba(221,183,92,0.25);
            box-shadow: 0 8px 30px rgba(88,31,114,0.08);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 58px;
            width: auto;
            object-fit: contain;
            filter: none;
            transition: 0.3s;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: #4A4052;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 1px;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: #DDB75C;
            transition: 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn-nav {
            background: #AF8DBD;
            border: 1.5px solid #E7C266;
            padding: 0.6rem 1.5rem;
            border-radius: 60px;
            color: #FFFFFF !important;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 0 0 1px rgba(231,194,102,0.25), 0 8px 24px rgba(175,141,189,0.35);
        }

        .btn-nav:hover {
            background: #9f79b0;
            box-shadow: 0 0 0 1px rgba(231,194,102,0.35), 0 12px 28px rgba(175,141,189,0.4);
        }

        .btn-nav::after { display: none; }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #4A4052;
            cursor: pointer;
        }

        /* HERO - SPLIT WITH LIQUID MOTION */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: radial-gradient(circle at 80% 20%, #ccb3d8, #ede2f2);
        }

        .hero-bg-blob {
            position: absolute;
            width: 70vw;
            height: 70vw;
            background: radial-gradient(circle, rgba(175,141,189,0.28), transparent 70%);
            top: -20%;
            right: -20%;
            filter: blur(80px);
            animation: float 15s infinite alternate;
        }

        .hero-bg-blob2 {
            position: absolute;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, rgba(221,183,92,0.2), transparent);
            bottom: -10%;
            left: -10%;
            filter: blur(70px);
            animation: float2 12s infinite alternate;
        }

        @keyframes float {
            0% { transform: translate(0,0) scale(1); }
            100% { transform: translate(-5%, 5%) scale(1.1); }
        }
        @keyframes float2 {
            0% { transform: translate(0,0) scale(1); }
            100% { transform: translate(8%, -8%) scale(1.2); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 7.5rem 2rem 3rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            position: relative;
            z-index: 2;
            align-items: center;
            min-height: 100vh;
        }

        .hero-content {
            backdrop-filter: blur(2px);
            padding-top: 0.8rem;
        }

        .hero-badge {
            display: inline-flex;
            gap: 0.6rem;
            background: rgba(255,255,255,0.75);
            backdrop-filter: blur(8px);
            padding: 0.4rem 1.2rem;
            border-radius: 60px;
            font-size: 0.75rem;
            letter-spacing: 2px;
            border: 1px solid rgba(221,183,92,0.4);
            margin-bottom: 2rem;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 1;
            margin-bottom: 1.5rem;
        }

        .hero-sub {
            font-size: 1.1rem;
            opacity: 1;
            max-width: 500px;
            margin-bottom: 2.5rem;
            color: #6B5F74;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            border: 1.5px solid #E7C266;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-primary {
            background: #AF8DBD;
            color: #FFFFFF;
            box-shadow: 0 0 0 1px rgba(231,194,102,0.25), 0 10px 28px rgba(88,31,114,0.2);
        }

        .btn-primary:hover {
            transform: scale(1.02);
            background: #9f79b0;
            box-shadow: 0 0 0 1px rgba(231,194,102,0.4), 0 12px 32px rgba(88,31,114,0.3);
        }

        .btn-outline {
            background: #AF8DBD;
            color: #FFFFFF;
        }

        .btn-outline:hover {
            background: #9f79b0;
            border-color: #E7C266;
        }

        .btn,
        .btn-nav,
        .service-link,
        .contact-whatsapp-btn,
        .footer-social-link {
            text-decoration: none !important;
        }

        .hero-features {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
        }

        .hero-socials {
            margin-top: 1.6rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .hero-social-link {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(175,141,189,0.2);
            border: 1px solid rgba(231,194,102,0.75);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #592076;
            transition: all 0.25s ease;
        }

        .hero-social-link svg {
            width: 20px;
            height: 20px;
            display: block;
        }

        .hero-social-link:hover {
            background: #AF8DBD;
            color: #FFFFFF;
            transform: translateY(-2px);
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.85rem;
            color: #4A4052;
        }

        /* ABOUT */
        .about {
            padding: 6rem 2rem;
            background: #E9DCEF;
        }

        .about-wrap {
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.05fr;
            gap: 3rem;
            align-items: center;
        }

        .about-media {
            width: 100%;
        }

        .about-photo {
            width: 100%;
            min-height: 460px;
            height: 100%;
            border-radius: 40px;
            object-fit: cover;
            border: 1px solid rgba(175,141,189,0.35);
            box-shadow: 0 14px 32px rgba(88,31,114,0.1);
        }

        .about-copy {
            text-align: left;
        }

        .about-copy p {
            max-width: 760px;
            margin: 0 0 1rem;
            color: #6B5F74;
            line-height: 1.7;
        }

        .about-features {
            margin-top: 1.8rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: 1rem;
        }

        .about-feature {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1rem;
            border-radius: 999px;
            background: rgba(175,141,189,0.15);
            color: #4A4052;
            border: 1px solid rgba(88,31,114,0.12);
            font-size: 0.9rem;
        }

        /* SERVICES - VIDEO + ACCORDION */
        .services {
            padding: 8rem 2rem;
            background: #F3EAF8;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }

        .section-badge {
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 4.5px;
            color: #794993;
            font-weight: 700;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .section-title {
            font-size: clamp(2.6rem, 6vw, 4.3rem);
            margin-bottom: 1rem;
            color: #4F2D63;
            line-height: 1.06;
        }

        .section-header p {
            color: #66566f;
        }

        .services-media {
            max-width: 980px;
            margin: 0 auto 2rem;
        }

        .services-video {
            width: 100%;
            max-height: 440px;
            display: block;
            object-fit: cover;
            border-radius: 34px;
            border: 1px solid rgba(175,141,189,0.35);
            box-shadow: 0 14px 30px rgba(88,31,114,0.12);
            background: #d7c3e2;
        }

        .services-accordion {
            max-width: 980px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .service-accordion-item {
            background: #FBF7FD;
            border: 1px solid rgba(175,141,189,0.35);
            border-radius: 28px;
            overflow: hidden;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .service-accordion-item.is-open {
            border-color: rgba(231,194,102,0.85);
            box-shadow: 0 14px 30px rgba(88,31,114,0.1);
        }

        .service-toggle {
            width: 100%;
            border: 0;
            background: transparent;
            color: #4A4052;
            cursor: pointer;
            padding: 1.15rem 1.4rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            text-align: left;
        }

        .service-toggle-title-wrap {
            display: flex;
            flex-direction: column;
            gap: 0.28rem;
        }

        .service-toggle-title {
            font-size: clamp(1.25rem, 2.7vw, 1.7rem);
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .service-toggle-cta {
            font-size: 0.88rem;
            color: #7b6590;
        }

        .service-toggle-cta-mobile {
            display: none;
        }

        .service-toggle-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(175,141,189,0.2);
            border: 1px solid rgba(175,141,189,0.35);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #592076;
            transition: transform 0.25s ease, background 0.25s ease;
            flex-shrink: 0;
        }

        .service-toggle-icon svg {
            width: 20px;
            height: 20px;
        }

        .service-toggle-icon-mobile {
            display: none;
        }

        .service-accordion-item.is-open .service-toggle-icon-desktop {
            transform: rotate(90deg);
            background: rgba(221,183,92,0.22);
        }

        .service-accordion-item.is-open .service-toggle-icon-mobile {
            transform: rotate(180deg);
            background: rgba(221,183,92,0.22);
        }

        .service-panel {
            border-top: 1px solid rgba(175,141,189,0.24);
            background: rgba(255,255,255,0.45);
        }

        .service-panel-inner {
            padding: 1.25rem 1.4rem 1.5rem;
        }

        .service-icon {
            width: 54px;
            height: 54px;
            background: rgba(175,141,189,0.18);
            border: 1px solid rgba(175,141,189,0.35);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.9rem;
        }

        .service-icon svg {
            width: 27px;
            height: 27px;
            color: #592076;
        }

        .service-desc {
            font-size: 1rem;
            opacity: 1;
            margin-bottom: 1rem;
            color: #6B5F74;
            line-height: 1.62;
        }

        .service-list {
            list-style: none;
            margin: 0.8rem 0 1.3rem;
        }

        .service-list li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.92rem;
            margin-bottom: 0.5rem;
        }

        .service-list svg {
            width: 16px;
            color: #DDB75C;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #592076;
            text-decoration: none;
            font-weight: 500;
        }

        /* CTA BANNER - VORTEX */
        .cta-banner {
            background: linear-gradient(120deg, #7C5B8B, #AF8DBD);
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::after {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(221,183,92,0.35), transparent);
            border-radius: 50%;
            filter: blur(50px);
            animation: pulseGlow 6s infinite;
        }

        @keyframes pulseGlow {
            0% { transform: scale(0.8); opacity: 0.3; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .cta-content h2 {
            font-size: 2.5rem;
            color: #FFFFFF;
        }

        .cta-text {
            margin: 1rem 0;
            color: rgba(255,255,255,0.96);
            font-size: 1.06rem;
        }

        .cta-btn {
            color: #FFFFFF;
        }

        /* SPACE SECTION */
        .space {
            padding: 8rem 2rem;
            background: #E9DCEF;
        }

        .space-gallery {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.4rem;
            max-width: 1120px;
            margin: 0 auto;
        }

        .space-item {
            border-radius: 34px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            aspect-ratio: 16/11;
            position: relative;
            border: 1px solid rgba(175,141,189,0.35);
        }

        .space-item:hover {
            transform: translateY(-6px) scale(1.01);
            box-shadow: 0 14px 30px rgba(88,31,114,0.14);
            z-index: 2;
        }

        .space-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* CONTACT - GLASS CARD */
        .contact {
            padding: 6rem 2rem;
            background: radial-gradient(circle at 20% 30%, #ceb6db, #eee4f3);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-card {
            background: rgba(255,255,255,0.8);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(175,141,189,0.3);
            border-radius: 48px;
            padding: 2rem;
        }

        .contact-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: rgba(221,183,92,0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-icon svg {
            color: #592076;
        }

        .contact-info h4 {
            font-size: 1rem;
            margin-bottom: 0.3rem;
        }

        .contact-info p {
            opacity: 1;
            color: #6B5F74;
        }

        .map-frame {
            border-radius: 48px;
            overflow: hidden;
            height: 400px;
            background: #D8C5E2;
            border: 1px solid rgba(175,141,189,0.4);
        }

        .map-embed {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        /* FOOTER */
        .footer {
            background: linear-gradient(180deg, #bca1c8 0%, #AF8DBD 100%);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(231,194,102,0.45);
            color: #2D2533;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .footer-logo img {
            height: 54px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(45,37,51,0.15));
        }

        .footer a {
            color: #2D2533;
            text-decoration: none;
            transition: 0.2s;
            font-weight: 500;
        }

        .footer a:hover {
            color: #E7C266;
        }

        .footer-socials {
            margin-top: 1rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.7rem;
        }

        .footer-social-link {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255,255,255,0.18);
            border: 1px solid rgba(231,194,102,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2D2533;
            transition: all 0.2s ease;
        }

        .footer-social-link svg {
            width: 20px;
            height: 20px;
            display: block;
        }

        .footer-social-link:hover {
            background: #E7C266;
            color: #2D2533;
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(45,37,51,0.15);
            font-size: 0.8rem;
        }

        /* WHATSAPP FLOAT */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            right: auto;
            background: #25D366;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(37,211,102,0.4);
            z-index: 1000;
            transition: 0.3s;
            color: #FFFFFF;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .whatsapp-float svg {
            width: 30px;
            height: 30px;
        }

        .contact-whatsapp-btn {
            margin-top: 1rem;
            display: inline-flex;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                padding-top: 7rem;
                padding-bottom: 2.5rem;
            }
            .hero-cta {
                justify-content: center;
            }
            .hero-features {
                justify-content: center;
            }
            .hero-socials {
                justify-content: center;
            }
            .about-wrap {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .about-copy {
                text-align: center;
            }
            .about-copy p {
                margin: 0 auto 1rem;
            }
            .about-features {
                justify-content: center;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .cursor-dot,
            .cursor-outline {
                display: none !important;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .section-title {
                font-size: clamp(2rem, 9vw, 2.9rem);
            }

            .hero {
                min-height: auto;
            }
            .hero-container {
                min-height: 0;
                padding-top: 6.5rem;
                gap: 1.4rem;
            }
            .hero-content {
                padding-top: 0;
            }
            .hero-title {
                margin-bottom: 1rem;
            }
            .hero-sub {
                margin-bottom: 1.4rem;
            }
            .hero-cta {
                justify-content: center;
                gap: 0.75rem;
            }
            .hero-features {
                margin-top: 1.6rem;
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            .about {
                padding-top: 4.5rem;
            }
            .about-photo {
                min-height: 320px;
            }

            .services-media {
                margin-bottom: 1.3rem;
            }

            .services-video {
                border-radius: 24px;
                max-height: 280px;
            }

            .service-toggle {
                padding: 1rem 1rem;
            }

            .service-toggle-cta-desktop,
            .service-toggle-icon-desktop {
                display: none;
            }

            .service-toggle-cta-mobile,
            .service-toggle-icon-mobile {
                display: inline-flex;
            }

            .service-panel-inner {
                padding: 1rem;
            }

            .space-gallery {
                grid-template-columns: 1fr;
            }

            .space-item {
                aspect-ratio: 16/10;
            }

            .map-frame {
                height: 320px;
                border-radius: 32px;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: #F2E8F7;
                flex-direction: column;
                justify-content: center;
                gap: 2rem;
                transition: 0.3s;
                backdrop-filter: blur(20px);
                z-index: 1001;
            }
            .nav-links.active {
                right: 0;
            }
            .menu-toggle {
                display: block;
                z-index: 1002;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-socials {
                justify-content: center;
            }
            .whatsapp-float {
                left: 1rem;
                bottom: 1rem;
            }
        }

        @media (hover: none), (pointer: coarse) {
            .cursor-dot,
            .cursor-outline {
                display: none !important;
            }
        }
