        @import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@700&family=Inter:wght@300;400;700;900&display=swap');

        :root {
            --primary: #FFD700;
            --primary-glow: rgba(255, 215, 0, 0.4);
            --bg: #050505;
            --surface: #0f0f0f;
            --text: #ffffff;
            --text-dim: #a0a0a0;
            --accent: #25D366;
            --danger: #ff4d4d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* --- HYPER-UI DECOR & ANIMATIONS --- */
        @keyframes mesh-drift {
            0% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(5%, 10%) scale(1.1);
            }

            66% {
                transform: translate(-5%, 5%) scale(0.9);
            }

            100% {
                transform: translate(0, 0) scale(1);
            }
        }

        @keyframes grid-drift {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 100px 100px;
            }
        }

        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: -2;
            pointer-events: none;
            animation: grid-drift 20s linear infinite;
        }

        .gradient-sphere {
            position: fixed;
            width: 80vw;
            height: 80vw;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
            filter: blur(100px);
            pointer-events: none;
            animation: mesh-drift 15s ease-in-out infinite alternate;
        }

        .gradient-sphere-2 {
            position: fixed;
            bottom: -20%;
            left: -10%;
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
            filter: blur(100px);
            pointer-events: none;
            animation: mesh-drift 20s ease-in-out infinite alternate-reverse;
        }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 5%;
            background: rgba(5, 5, 5, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .brand {
            font-family: 'Syncopate', sans-serif;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -1px;
        }

        .brand span {
            color: var(--primary);
        }

        /* --- DESKTOP NAV --- */
        .desktop-nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-item {
            position: relative;
            display: inline-block;
        }

        .nav-link {
            color: var(--text);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: color 0.3s;
            cursor: pointer;
        }

        .nav-link:hover,
        .nav-link:focus,
        .nav-item.has-dropdown:hover>.nav-link {
            color: var(--primary);
        }

        .nav-item.has-dropdown .nav-arrow {
            font-size: 0.6rem;
            vertical-align: middle;
            margin-left: 5px;
            display: inline-block;
            transition: transform 0.3s;
        }

        .nav-item.has-dropdown:hover .nav-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: #ffffff;
            color: #111;
            min-width: 240px;
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            padding: 15px 0;
        }

        .nav-item.has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(10px);
        }

        .dropdown-menu a {
            color: #333;
            text-decoration: none;
            padding: 12px 25px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
        }

        .dropdown-menu a:hover {
            background: var(--surface);
            color: var(--primary);
        }

        .btn-call-top {
            background: var(--primary);
            color: #000;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 900;
            text-decoration: none;
            box-shadow: 0 0 20px var(--primary-glow);
            transition: 0.3s;
            font-size: 0.85rem;
            text-transform: uppercase;
            display: inline-block;
            position: relative;
            z-index: 2;
        }

        /* --- MOBILE SIDEBAR --- */
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -300px;
            /* Hidden by default */
            width: 280px;
            height: 100vh;
            background: #0a0a0a;
            z-index: 10000;
            padding: 30px;
            transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
            display: flex;
            flex-direction: column;
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            display: none;
            backdrop-filter: blur(5px);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .mobile-overlay.active {
            display: block;
            opacity: 1;
        }

        .mobile-link {
            color: var(--text);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 700;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: color 0.3s;
        }

        .mobile-link:hover {
            color: var(--primary);
        }

        /* --- HERO --- */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 78px 5% 0 5%;
            /* Applied 78px top padding to all sizes */
            position: relative;
        }

        .live-status {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent);
            animation: pulse 1.5s infinite;
        }

        h1 {
            font-size: clamp(3rem, 10vw, 6rem);
            font-weight: 900;
            line-height: 0.9;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: -3px;
        }

        h1 mark {
            background: transparent;
            color: var(--primary);
        }

        .hero p {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            color: var(--text-dim);
            max-width: 800px;
            margin-bottom: 50px;
            font-weight: 300;
        }

        .hero-ctas {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 100%;
            max-width: 500px;
        }

        .cta-btn {
            flex: 1;
            min-width: 250px;
            padding: 25px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            font-weight: 900;
            transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .cta-btn span {
            font-size: 0.7rem;
            opacity: 0.7;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .cta-btn b {
            font-size: 1.6rem;
            line-height: 1.2;
            white-space: nowrap;
        }

        .cta-phone {
            background: var(--primary);
            color: #000;
            box-shadow: 0 10px 40px var(--primary-glow);
        }

        .cta-whats {
            background: var(--surface);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cta-btn:hover {
            transform: translateY(-10px) scale(1.02);
        }

        /* EFFECTS */
        .cta-phone {
            animation: pulse-glow 2s infinite;
        }

        .cta-phone::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes pulse-glow {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
            }

            70% {
                box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
            }
        }

        @keyframes shine {
            0% {
                left: -100%;
                top: -100%;
            }

            20% {
                left: 100%;
                top: 100%;
            }

            100% {
                left: 100%;
                top: 100%;
            }
        }

        /* --- TRUST TICKER --- */
        .ticker {
            background: var(--primary);
            color: #000;
            padding: 15px 0;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 0.8rem;
            display: flex;
            overflow: hidden;
            white-space: nowrap;
        }

        .ticker-content {
            display: flex;
            animation: scroll 20s linear infinite;
        }

        .ticker-item {
            margin: 0 30px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* --- SERVICES DENSITY --- */
        section {
            padding: 120px 5%;
        }

        .section-tag {
            color: var(--primary);
            font-weight: 900;
            font-size: 0.8rem;
            display: block;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 60px;
            text-transform: uppercase;
        }

        .blueprint-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .step-card {
            background: var(--surface);
            padding: 50px 30px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.03);
            transition: 0.3s;
            position: relative;
        }

        .step-card:hover {
            border-color: var(--primary);
            background: #141414;
        }

        .step-num {
            font-size: 5rem;
            font-weight: 900;
            color: rgba(255, 215, 0, 0.15);
            position: absolute;
            top: 10px;
            right: 20px;
        }

        .step-icon {
            font-size: 2.5rem;
            margin-bottom: 25px;
            display: block;
            filter: drop-shadow(0 0 10px var(--primary-glow));
        }

        .step-card h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .step-card p {
            color: var(--text-dim);
        }

        /* --- THE WOW SECTION (PRICE/PROMO) --- */
        .promo-box {
            background: linear-gradient(135deg, #111 0%, #000 100%);
            border: 2px solid var(--primary);
            border-radius: 30px;
            padding: 80px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .promo-box::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
            z-index: 0;
            pointer-events: none;
        }

        .price-tag {
            font-size: 4rem;
            font-weight: 900;
            color: var(--primary);
            display: block;
        }

        /* --- REVIEWS --- */
        .reviews-container {
            display: flex;
            /* display: flex; */
            /* Removed as reviews-inner will be the flex container */
            /* gap: 20px; */
            /* Removed as reviews-inner will handle gap */
            overflow: hidden;
            /* Changed from overflow-x: auto */
            padding: 20px 0;
            margin-top: 40px;
            /* scrollbar-width: none; */
            /* Removed */
            /* Firefox */
            /* -ms-overflow-style: none; */
            /* Removed */
            /* IE and Edge */
            /* scroll-snap-type: x mandatory; */
            /* Removed */
            padding: 10px;
            position: relative;
        }

        .reviews-inner {
            display: flex;
            gap: 20px;
            animation: carousel-smooth 40s linear infinite;
        }

        .reviews-container:hover .reviews-inner {
            animation-play-state: paused;
        }

        @keyframes carousel-smooth {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .reviews-container::-webkit-scrollbar {
            display: none;
            /* Chrome, Safari, Opera */
        }

        .google-card {
            flex: 0 0 350px;
            /* Ancho fijo para las tarjetas en el carrusel */
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 15px;
            /* scroll-snap-align: start; */
            /* Removed */
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .google-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
        }

        .google-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .g-avatar {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .g-stars {
            color: #fb8c00;
            font-size: 1.1rem;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.7rem;
            color: #4285F4;
            background: rgba(66, 133, 244, 0.1);
            padding: 4px 8px;
            border-radius: 20px;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .google-logo-small {
            height: 18px;
            opacity: 0.8;
            margin-bottom: 20px;
        }

        /* --- FOOTER --- */
        footer {
            background: #000;
            padding: 100px 5% 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .f-brand {
            font-family: 'Syncopate', sans-serif;
            font-size: 2rem;
            margin-bottom: 25px;
        }

        .loc-item {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-dim);
        }

        .f-phone-btn {
            background: var(--primary);
            color: #000 !important;
            padding: 20px 30px;
            border-radius: 12px;
            font-size: 1.8rem;
            font-weight: 900;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
            transition: 0.3s;
        }

        .f-phone-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
        }

        .loc-item a {
            color: var(--text-dim);
            text-decoration: none;
            transition: 0.3s;
        }

        .loc-item a:hover {
            color: var(--primary);
        }

        /* --- DESKTOP WHATSAPP --- */
        .desktop-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s;
        }

        .desktop-whatsapp svg {
            width: 35px;
            height: 35px;
        }

        .desktop-whatsapp:hover {
            transform: scale(1.1);
            background-color: #1EBE5D;
        }

        @media (max-width: 768px) {
            .desktop-whatsapp {
                display: none;
            }
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.5);
                opacity: 0.5;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .mobile-dock {
            display: none;
        }

        @keyframes slide-up {
            from {
                transform: translateY(100px) translateX(0);
                opacity: 0;
            }

            to {
                transform: translateY(0) translateX(0);
                opacity: 1;
            }
        }

        /* --- RESPONSIVE DESIGN --- */

        /* TABLET & LANDSCAPE MOBILE */
        @media (max-width: 850px) {
            .desktop-nav {
                display: none;
            }

            header {
                justify-content: space-between;
                padding: 10px 5%;
                background: rgba(5, 5, 5, 0.98);
            }

            .brand {
                font-size: 1rem;
            }

            .mobile-menu-btn {
                display: block !important;
                padding: 0;
            }

            header .btn-call-top {
                display: none;
            }
        }

        /* MAIN MOBILE STYLES */
        @media (max-width: 768px) {
            .desktop-whatsapp {
                display: none;
            }

            section {
                padding: 40px 5%;
            }

            h2 {
                margin-bottom: 30px;
            }

            .promo-box {
                padding: 40px 20px;
            }

            .step-card {
                padding: 30px 20px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            h1 {
                font-size: 2.1rem;
                line-height: 1.1;
                margin-bottom: 20px;
            }

            .hero {
                height: auto;
                min-height: 90vh;
                padding-top: 78px !important;
                padding-bottom: 60px;
                text-align: left;
                align-items: flex-start;
                justify-content: flex-start;
                margin-top: 0 !important;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 30px;
            }

            .brand {
                font-size: 1rem;
            }

            .btn-call-top {
                padding: 10px 15px;
                font-size: 0.8rem;
            }

            .hero-ctas {
                flex-direction: column;
                gap: 12px;
            }

            .cta-btn {
                padding: 20px;
            }

            .cta-btn b {
                font-size: 1.3rem;
            }

            .f-phone-btn {
                font-size: 1.4rem;
                padding: 15px 25px;
                width: 100%;
                text-align: center;
                box-sizing: border-box;
            }

            .f-phone {
                font-size: 2.5rem;
            }

            .ticker {
                margin-top: 60px;
            }

            .google-card {
                flex: 0 0 80vw;
                max-width: 320px;
            }

            /* APP DOCK */
            .mobile-dock {
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(25px);
                -webkit-backdrop-filter: blur(25px);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                padding: 8px 20px;
                z-index: 9999;
                align-items: center;
                justify-items: center;
                animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            }

            body {
                padding-bottom: 100px;
            }

            .dock-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                color: var(--text-dim);
                text-decoration: none;
                font-size: 0.55rem;
                font-weight: 800;
                gap: 4px;
            }

            .dock-item.main {
                background: var(--primary);
                color: #000;
                width: 45px;
                height: 45px;
                border-radius: 50%;
                justify-content: center;
                box-shadow: 0 0 20px var(--primary-glow);
                animation: pulse-glow-mini 2s infinite;
            }

            @keyframes pulse-glow-mini {
                0% {
                    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
                }

                70% {
                    box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
                }

                100% {
                    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
                }
            }

            .svg-icon {
                width: 20px;
                height: 20px;
                fill: currentColor;
            }

            .dock-item.main .svg-icon {
                width: 24px;
                height: 24px;
            }
        }

        /* IPHONE SE / SMALL SCREENS */
        @media (max-width: 380px) {
            .brand {
                font-size: 0.9rem;
            }

            header .btn-call-top {
                display: none;
            }

            /* Ocultamos botón superior en pantallas mini si hay dock */
            header {
                padding: 15px;
            }

            .hero {
                padding-top: 180px;
            }
        }

        @keyframes slide-up {
            from {
                transform: translateY(100px) translateX(0);
                opacity: 0;
            }

            to {
                transform: translateY(0) translateX(0);
                opacity: 1;
            }
        }