/* ==========================================
   MUBITT TECHNOLOGY - Main Stylesheet
   ========================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Electric Blue Palette */
    --primary-50: #e6f0ff;
    --primary-100: #b3d1ff;
    --primary-200: #80b3ff;
    --primary-300: #4d94ff;
    --primary-400: #1a75ff;
    --primary-500: #0066FF;
    --primary-600: #0052cc;
    --primary-700: #003d99;
    --primary-800: #002966;
    --primary-900: #001433;

    /* Accent - Deep Blue */
    --accent-400: #0066FF;
    --accent-500: #0055DD;
    --accent-600: #0044CC;

    /* Neutrals - Pure Black Base */
    --gray-50: #f8fafc;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --gray-300: #94a3b8;
    --gray-400: #64748b;
    --gray-500: #475569;
    --gray-600: #334155;
    --gray-700: #1e293b;
    --gray-800: #0f172a;
    --gray-900: #050810;
    --gray-950: #000000;

    /* Semantic */
    --success: #00E676;
    --warning: #FFAB00;
    --error: #FF1744;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #0044CC 100%);
    --gradient-hero: linear-gradient(180deg, #000000 0%, #050810 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.4);
    --shadow-glow-lg: 0 0 80px rgba(0, 102, 255, 0.5);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-sans);
    background-color: var(--gray-950);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevenir desbordamiento horizontal global */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Global Particles */
.global-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
}

/* Ambient Light - Hidden */
.ambient-light {
    display: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    overflow-x: hidden;
}

/* Typography */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.5);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0066FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--gray-50);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-align: center;
    min-width: fit-content;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gray-100);
    border: 1px solid var(--gray-600);
}

.btn-outline:hover {
    border-color: var(--primary-500);
    color: var(--primary-400);
    background: rgba(0, 102, 255, 0.05);
}

.btn-white {
    background: white;
    color: var(--gray-900);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

/* Ocultar scrollbars en navbar */
.navbar, .navbar *, .nav-container, .nav-menu {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.navbar::-webkit-scrollbar,
.navbar *::-webkit-scrollbar,
.nav-container::-webkit-scrollbar,
.nav-menu::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.navbar.scrolled {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 102, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible !important;
    max-width: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.logo-accent {
    font-weight: 400;
    color: var(--gray-400);
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.logo:hover .logo-img {
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: visible;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a:not(.btn-nav) {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-menu a:not(.btn-nav):hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 60%;
}

/* Active link state */
.nav-menu a:not(.btn-nav).active {
    color: white;
    background: rgba(0, 102, 255, 0.1);
}

.nav-menu a:not(.btn-nav).active::after {
    width: 60%;
    background: var(--primary-400);
}

/* Language Selector */
.lang-selector {
    position: relative;
    margin-left: auto;
    margin-right: 1rem;
    z-index: 1001;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-300);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-400);
    color: white;
}

.lang-current {
    font-weight: 600;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 140px;
    padding: 0.5rem 0;
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    list-style: none;
    margin: 0;
}

.lang-selector:hover .lang-dropdown,
.lang-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    list-style: none;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    padding: 0.625rem 1rem;
    color: var(--gray-400);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.15s ease;
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.lang-dropdown a.active {
    color: var(--primary-400);
    font-weight: 500;
    background: rgba(0, 102, 255, 0.1);
}

/* CTA Button in Navbar */
.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.btn-nav:hover::before {
    opacity: 1;
}

.btn-nav:active {
    transform: translateY(0);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-100);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 102, 255, 0.08) 0%, transparent 50%);
}

.hero-grid {
    display: none; /* Cuadrícula desactivada */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.5);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0066FF;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hero-scroll {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-500), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 60px; }
}

/* ==========================================
   READY PROJECTS CTA (Hero)
   ========================================== */
.ready-projects-cta {
    display: inline-flex;
    position: relative;
    margin-top: 32px;
    padding: 16px 28px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 102, 255, 0.15) 100%);
    border: 2px solid rgba(0, 212, 170, 0.4);
    border-radius: 60px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: ctaGlow 3s ease-in-out infinite;
}

.ready-projects-cta:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: #00D4AA;
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.3), 0 0 60px rgba(0, 212, 170, 0.2);
}

@keyframes ctaGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 170, 0.2), 0 0 40px rgba(0, 212, 170, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 170, 0.35), 0 0 60px rgba(0, 212, 170, 0.2);
    }
}

.rp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 60px;
    animation: rpPulse 2s ease-out infinite;
}

@keyframes rpPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.rp-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.rp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00D4AA 0%, #0066FF 100%);
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
}

.rp-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.rp-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rp-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.rp-subtitle {
    font-size: 0.8125rem;
    color: #00D4AA;
}

.rp-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

.rp-arrow svg {
    width: 18px;
    height: 18px;
    stroke: #00D4AA;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ==========================================
   TECH MARQUEE (Integraciones)
   ========================================== */
.tech-marquee {
    position: relative;
    z-index: 2;
    padding: 40px 0 60px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marquee 60s linear infinite;
    width: max-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    opacity: 0.6;
    filter: grayscale(100%) brightness(1.5);
    transition: all var(--transition-base);
    cursor: default;
    flex-shrink: 0;
}

.marquee-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.08);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all var(--transition-base);
}

.marquee-label {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin-top: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) 0;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, rgba(0, 102, 255, 0.1) 40%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    animation: glowMoveRight 18s ease-in-out infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.service-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-card.featured {
    border-color: rgba(0, 102, 255, 0.3);
    background: linear-gradient(145deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 102, 255, 0.03) 100%);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(0, 102, 255, 0.6);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0066FF;
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-400);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.service-card > p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--gray-300);
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary-500);
    border-radius: 50%;
}

/* ==========================================
   WEB TYPES SECTION
   ========================================== */
.web-types {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(5, 8, 16, 0.4) 100%);
    overflow: hidden;
}

.web-types::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.22) 0%, rgba(0, 102, 255, 0.08) 45%, transparent 65%);
    filter: blur(55px);
    pointer-events: none;
    animation: glowMoveDiagonal 20s ease-in-out infinite;
}

.types-comparison {
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.type-card {
    flex: 1;
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
}

.type-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.type-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.type-icon.static {
    background: rgba(0, 230, 118, 0.1);
}

.type-icon.static svg {
    stroke: var(--success);
}

.type-icon.dynamic {
    background: rgba(0, 102, 255, 0.1);
}

.type-icon.dynamic svg {
    stroke: var(--primary-400);
}

.type-icon svg {
    width: 32px;
    height: 32px;
}

.type-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.type-badge {
    padding: 4px 12px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.4);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #0066FF;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.15);
}

.type-desc {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 24px;
    line-height: 1.6;
}

.type-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.type-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--gray-200);
}

.type-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--success);
    flex-shrink: 0;
}

.type-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.type-tech span {
    padding: 6px 12px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary-300);
}

.type-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    flex-shrink: 0;
}

.type-divider span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

/* ==========================================
   PLATFORMS SECTION
   ========================================== */
.platforms {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) 0;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.platforms::before {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.28) 0%, rgba(0, 102, 255, 0.1) 40%, transparent 60%);
    filter: blur(65px);
    pointer-events: none;
    animation: glowMoveLeft 22s ease-in-out infinite;
}

.platforms-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.platform-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.platform-card.reverse {
    direction: rtl;
}

.platform-card.reverse > * {
    direction: ltr;
}

.platform-preview {
    position: relative;
}

.preview-mockup {
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-800);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-600);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:last-child { background: #28ca42; }

.mockup-header > span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.mockup-content {
    padding: 32px;
}

/* Turnero Mockup */
.ticket-display {
    text-align: center;
    padding: 40px;
    background: linear-gradient(145deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.ticket-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.ticket-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.queue-info {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.queue-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.queue-item span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.queue-item strong {
    font-size: 1.25rem;
    color: white;
}

/* TurnoLink Screenshot Preview */
.turnolink-screenshot {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.turnolink-screenshot:hover img {
    transform: scale(1.02);
}

.turnolink-screenshot img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

/* Tienda Mockup */
.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-card-mini {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
}

.product-img {
    width: 100%;
    height: 80px;
    background: linear-gradient(145deg, var(--gray-700) 0%, var(--gray-800) 100%);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.product-name {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-300);
    margin-bottom: 4px;
}

.product-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-400);
}

/* Platform Info */
.platform-info {
    max-width: 480px;
}

.platform-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.platform-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-400);
}

.platform-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.platform-info > p {
    font-size: 1.0625rem;
    color: var(--gray-400);
    margin-bottom: 24px;
    line-height: 1.7;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.platform-features li {
    font-size: 0.9375rem;
    color: var(--gray-200);
    padding-left: 24px;
    position: relative;
}

.platform-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

/* Project CTA with Investor Badge */
.project-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.investor-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 102, 255, 0.15) 100%);
    border: 1px solid rgba(0, 212, 170, 0.4);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00D4AA;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Professional Project CTA */
.project-cta-pro {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.btn-explore-pro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid #00D4AA;
    border-radius: 8px;
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-explore-pro:hover {
    background: #00D4AA;
    color: #050810;
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.btn-explore-pro svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.btn-explore-pro:hover svg {
    transform: translateX(4px);
}

.status-badge-pro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #00D4AA;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00D4AA;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(0, 212, 170, 0);
    }
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) 0;
    background: transparent;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.22) 0%, rgba(0, 102, 255, 0.08) 40%, transparent 65%);
    filter: blur(50px);
    pointer-events: none;
    animation: glowMoveCenter 16s ease-in-out infinite;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066FF, #0044CC);
    opacity: 0.4;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gray-900);
    border: 2px solid var(--primary-500);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-400);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--gray-400);
    max-width: 180px;
    margin: 0 auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) 0;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, rgba(0, 102, 255, 0.1) 40%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    animation: glowMoveRight 19s ease-in-out infinite reverse;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-text strong {
    color: var(--primary-400);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value {
    display: flex;
    gap: 16px;
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-400);
}

.value h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.value p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Tech Stack Visual */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-stack {
    position: relative;
    width: 400px;
    height: 400px;
}

.tech-orbit {
    position: relative;
    width: 100%;
    height: 100%;
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 50%;
    background: radial-gradient(circle, transparent 60%, rgba(0, 102, 255, 0.03) 100%);
}

.orbit-ring.ring-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.orbit-ring.ring-2 {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 30s linear infinite reverse;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.tech-item {
    position: absolute;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-radius: 50%;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: rgba(0, 102, 255, 0.6);
    box-shadow:
        0 0 25px rgba(0, 102, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.ring-1 .tech-item {
    --angle: calc(var(--i) * 120deg);
    top: calc(50% - 28px + cos(var(--angle)) * 100px);
    left: calc(50% - 28px + sin(var(--angle)) * 100px);
}

.ring-2 .tech-item {
    --angle: calc(var(--i) * 90deg);
    top: calc(50% - 28px + cos(var(--angle)) * 160px);
    left: calc(50% - 28px + sin(var(--angle)) * 160px);
}

.tech-item span {
    font-size: 0.625rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    animation: counterRotate 20s linear infinite;
}

.ring-2 .tech-item span {
    animation: counterRotate 30s linear infinite reverse;
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

.orbit-center::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 102, 255, 0.3);
    animation: rotate-slow 15s linear infinite;
}

.orbit-center::after {
    content: '';
    position: absolute;
    inset: -25px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 102, 255, 0.15);
    animation: rotate-slow 20s linear infinite reverse;
}

.center-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
    animation: float-rotate 8s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.4));
}

@keyframes float-rotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(2deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(5px) rotate(-2deg);
    }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 102, 255, 0.4);
    }
}

@keyframes sectionGlow {
    0% {
        opacity: 0.7;
        transform: translateX(0) translateY(0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(50px) translateY(30px) scale(1.2);
    }
    100% {
        opacity: 0.7;
        transform: translateX(0) translateY(0) scale(1);
    }
}

/* Animaciones de luz por sección - recorren toda la sección */
@keyframes glowMoveRight {
    0% { left: -20%; top: 20%; }
    25% { left: 30%; top: 60%; }
    50% { left: 70%; top: 10%; }
    75% { left: 40%; top: 70%; }
    100% { left: -20%; top: 20%; }
}

@keyframes glowMoveLeft {
    0% { right: -20%; top: 30%; }
    25% { right: 40%; top: 70%; }
    50% { right: 80%; top: 20%; }
    75% { right: 30%; top: 50%; }
    100% { right: -20%; top: 30%; }
}

@keyframes glowMoveDiagonal {
    0% { left: -10%; top: -10%; }
    33% { left: 70%; top: 50%; }
    66% { left: 20%; top: 80%; }
    100% { left: -10%; top: -10%; }
}

@keyframes glowMoveCenter {
    0% { left: 50%; top: 0%; transform: translateX(-50%); }
    25% { left: 20%; top: 50%; transform: translateX(0); }
    50% { left: 80%; top: 30%; transform: translateX(-100%); }
    75% { left: 40%; top: 70%; transform: translateX(-50%); }
    100% { left: 50%; top: 0%; transform: translateX(-50%); }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.cta::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.28) 0%, rgba(0, 102, 255, 0.12) 35%, transparent 55%);
    filter: blur(55px);
    pointer-events: none;
    z-index: 0;
    animation: glowMoveDiagonal 14s ease-in-out infinite reverse;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.5) 50%, transparent 100%);
}

.cta-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.5) 50%, transparent 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-content .btn-primary {
    padding: 16px 40px;
    font-size: 1rem;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
}

.cta-content .btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.4);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) 0;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, rgba(0, 102, 255, 0.08) 45%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    animation: glowMoveLeft 17s ease-in-out infinite reverse;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 1.0625rem;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.contact-method:hover {
    border-color: rgba(0, 102, 255, 0.4);
    background: rgba(0, 102, 255, 0.08);
    transform: translateY(-2px);
}


.method-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.method-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-400);
}

.method-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* Contact Form */
.contact-form {
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-200);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: white;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.form-group select option {
    background: var(--gray-800);
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    position: relative;
    z-index: 2;
    padding: 60px 0 30px;
    background: rgba(5, 8, 16, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    max-width: 280px;
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--primary-400);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ==========================================
   RESPONSIVE - TABLET (1024px)
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 70px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
    }

    .platform-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .platform-card.reverse {
        direction: ltr;
    }

    .platform-preview {
        order: -1;
    }

    /* Services 2 columnas en tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE LARGE (768px)
   ========================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Tipografia optimizada para movil */
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1.0625rem;
        line-height: 1.6;
    }

    /* Logo responsive */
    .logo-img {
        height: 32px;
        max-width: 150px;
    }

    /* Navegacion movil */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, rgba(5, 8, 16, 0.98) 0%, rgba(3, 5, 10, 0.99) 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding: 60px 32px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(0, 102, 255, 0.2);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }

    .nav-menu a:not(.btn-nav) {
        font-size: 1.2rem;
        padding: 14px 20px;
        display: block;
        border-radius: 12px;
    }

    .nav-menu a:not(.btn-nav)::after {
        display: none;
    }

    .nav-menu a:not(.btn-nav):hover,
    .nav-menu a:not(.btn-nav).active {
        background: rgba(0, 102, 255, 0.15);
        color: white;
    }

    .nav-menu .btn-nav {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle span {
        width: 22px;
        height: 2px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Hero optimizado */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 6px 14px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

    .stat {
        min-width: calc(50% - 10px);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    .hero-scroll {
        display: none;
    }

    /* Ready Projects CTA mobile */
    .ready-projects-cta {
        margin-top: 24px;
        padding: 14px 20px;
        border-radius: 16px;
    }

    .rp-content {
        gap: 12px;
    }

    .rp-icon {
        width: 38px;
        height: 38px;
    }

    .rp-icon svg {
        width: 18px;
        height: 18px;
    }

    .rp-title {
        font-size: 0.875rem;
    }

    .rp-subtitle {
        font-size: 0.7rem;
    }

    .rp-arrow {
        width: 28px;
        height: 28px;
    }

    .rp-arrow svg {
        width: 14px;
        height: 14px;
    }

    /* Professional Project CTA mobile */
    .project-cta-pro {
        gap: 10px;
        align-items: stretch;
    }

    .btn-explore-pro {
        padding: 12px 20px;
        justify-content: center;
        font-size: 0.875rem;
    }

    .btn-explore-pro svg {
        width: 16px;
        height: 16px;
    }

    .status-badge-pro {
        justify-content: center;
        font-size: 0.6875rem;
        padding: 5px 10px;
    }

    .status-dot {
        width: 6px;
        height: 6px;
    }

    /* Servicios - 2 COLUMNAS en movil */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .service-icon svg {
        width: 22px;
        height: 22px;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .service-card > p {
        font-size: 0.8125rem;
        margin-bottom: 14px;
        line-height: 1.5;
    }

    .service-features li {
        font-size: 0.75rem;
        padding-left: 14px;
    }

    .service-features li::before {
        width: 4px;
        height: 4px;
        top: 6px;
    }

    .card-badge {
        font-size: 0.625rem;
        padding: 3px 8px;
        top: 10px;
        right: 10px;
    }

    /* Web Types */
    .types-comparison {
        flex-direction: column;
        gap: 20px;
    }

    .type-card {
        padding: 24px;
    }

    .type-card h3 {
        font-size: 1.25rem;
    }

    .type-desc {
        font-size: 0.9375rem;
    }

    .type-divider {
        width: 100%;
        height: 50px;
    }

    .type-divider span {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    /* Type features en 2 columnas */
    .type-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .type-features li {
        font-size: 0.875rem;
    }

    /* Process timeline horizontal en movil */
    .process-timeline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.125rem;
        margin: 0 auto 16px;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.8125rem;
        max-width: none;
        margin: 0;
    }

    /* Platforms */
    .platforms-grid {
        gap: 50px;
    }

    .platform-info h3 {
        font-size: 1.5rem;
    }

    .platform-info > p {
        font-size: 0.9375rem;
    }

    /* Platform features en 2 columnas */
    .platform-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .platform-features li {
        font-size: 0.875rem;
    }

    /* Investor Badge mobile */
    .project-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .project-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .investor-badge {
        align-self: center;
        font-size: 0.6875rem;
        padding: 5px 10px;
    }

    .mockup-content {
        padding: 20px;
    }

    .ticket-display {
        padding: 24px;
    }

    .ticket-number {
        font-size: 2.5rem;
    }

    /* About */
    .about-text {
        font-size: 0.9375rem;
    }

    .value {
        gap: 12px;
    }

    .value-icon {
        width: 40px;
        height: 40px;
    }

    .value-icon svg {
        width: 20px;
        height: 20px;
    }

    .value h4 {
        font-size: 0.9375rem;
    }

    .value p {
        font-size: 0.8125rem;
    }

    .tech-stack {
        width: 280px;
        height: 280px;
    }

    .orbit-ring.ring-2 {
        width: 220px;
        height: 220px;
    }

    .orbit-center {
        width: 90px;
        height: 90px;
    }

    .center-logo {
        width: 70px;
    }

    .orbit-center::before {
        inset: -8px;
    }

    .orbit-center::after {
        inset: -18px;
    }

    .tech-item {
        width: 44px;
        height: 44px;
    }

    .tech-item span {
        font-size: 0.5rem;
    }

    .ring-1 .tech-item {
        top: calc(50% - 22px + cos(var(--angle)) * 70px);
        left: calc(50% - 22px + sin(var(--angle)) * 70px);
    }

    .ring-2 .tech-item {
        top: calc(50% - 22px + cos(var(--angle)) * 110px);
        left: calc(50% - 22px + sin(var(--angle)) * 110px);
    }

    /* Contact */
    .contact-methods {
        flex-direction: row;
        gap: 12px;
    }

    .contact-method {
        padding: 14px 16px;
        flex: 1;
        gap: 10px;
    }

    .method-icon {
        width: 36px;
        height: 36px;
    }

    .method-icon svg {
        width: 18px;
        height: 18px;
    }

    .method-label {
        font-size: 0.875rem;
    }

    .contact-form {
        padding: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Previene zoom en iOS */
    }

    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-links-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-links h4 {
        font-size: 0.8125rem;
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 0.8125rem;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    /* Botones tactiles optimizados */
    .btn {
        padding: 14px 24px;
        font-size: 0.9375rem;
        min-height: 48px;
    }

    .btn-lg {
        padding: 16px 28px;
    }

    /* Hero Mobile */
    .hero-content {
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px 32px;
    }

    .stat {
        flex: 1 1 auto;
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* CTA Section */
    .cta {
        padding: 60px 0;
    }

    .cta-content {
        padding: 0 16px;
    }

    .cta-content h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .cta-content .btn-primary {
        padding: 14px 32px;
        width: 100%;
        max-width: 280px;
    }

    /* Marquee */
    .tech-marquee {
        padding: 30px 0 40px;
    }

    .marquee-item {
        width: 100px;
        height: 50px;
    }

    .marquee-content {
        gap: 30px;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE SMALL (480px)
   ========================================== */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }

    .container {
        padding: 0 16px;
    }

    /* Hero CTAs - flexibles para multi-idioma */
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.875rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Textos flexibles para diferentes idiomas */
    .section-tag,
    .hero-badge,
    .card-badge,
    .type-badge {
        white-space: nowrap;
        font-size: 0.75rem;
    }

    /* Títulos de servicios flexibles */
    .service-card h3 {
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Form select adaptable */
    .form-group select {
        font-size: 14px;
    }

    .form-group select option {
        font-size: 14px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

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

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .stat {
        min-width: calc(50% - 8px);
    }

    .stat-number {
        font-size: 1.25rem;
    }

    /* CTA 480px */
    .cta {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.375rem;
    }

    .cta-content p {
        font-size: 0.9375rem;
    }

    .cta-content .btn-primary {
        width: 100%;
        max-width: 100%;
    }

    /* Servicios siguen en 2 columnas pero mas compactos */
    .services-grid {
        gap: 10px;
    }

    .service-card {
        padding: 16px;
    }

    .service-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 12px;
    }

    .service-icon svg {
        width: 18px;
        height: 18px;
    }

    .service-card h3 {
        font-size: 0.9375rem;
        line-height: 1.3;
    }

    .service-card > p {
        font-size: 0.75rem;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-features {
        gap: 6px;
    }

    .service-features li {
        font-size: 0.6875rem;
    }

    /* Process 2x2 grid */
    .process-timeline {
        gap: 16px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .step-content h3 {
        font-size: 0.9375rem;
    }

    .step-content p {
        font-size: 0.75rem;
    }

    /* Types cards mas compactas */
    .type-card {
        padding: 20px;
    }

    .type-icon {
        width: 48px;
        height: 48px;
    }

    .type-icon svg {
        width: 24px;
        height: 24px;
    }

    .type-features li {
        font-size: 0.8125rem;
    }

    .type-tech span {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    /* Platforms */
    .platform-info h3 {
        font-size: 1.25rem;
    }

    .platform-features li {
        font-size: 0.8125rem;
    }

    /* About tech stack mas pequeno */
    .tech-stack {
        width: 240px;
        height: 240px;
    }

    .orbit-ring.ring-1 {
        width: 140px;
        height: 140px;
    }

    .orbit-ring.ring-2 {
        width: 200px;
        height: 200px;
    }

    .ring-1 .tech-item {
        top: calc(50% - 17px + cos(var(--angle)) * 55px);
        left: calc(50% - 17px + sin(var(--angle)) * 55px);
    }

    .ring-2 .tech-item {
        top: calc(50% - 17px + cos(var(--angle)) * 85px);
        left: calc(50% - 17px + sin(var(--angle)) * 85px);
    }

    .tech-item {
        width: 34px;
        height: 34px;
    }

    .tech-item span {
        font-size: 0.4rem;
    }

    .orbit-center {
        width: 70px;
        height: 70px;
    }

    .center-logo {
        width: 55px;
    }

    .orbit-center::before {
        inset: -5px;
    }

    .orbit-center::after {
        inset: -12px;
    }

    /* Contact - botones en fila compactos */
    .contact-methods {
        flex-direction: row;
        gap: 10px;
    }

    .contact-method {
        padding: 12px 14px;
        gap: 8px;
    }

    .method-icon {
        width: 32px;
        height: 32px;
    }

    .method-icon svg {
        width: 16px;
        height: 16px;
    }

    .method-label {
        font-size: 0.8125rem;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    /* Type y Platform features mantienen 2 columnas pero más compactas */
    .type-features,
    .platform-features {
        gap: 8px;
    }

    .type-features li,
    .platform-features li {
        font-size: 0.75rem;
    }

    /* Footer compacto y horizontal en 3 columnas */
    .footer {
        padding: 24px 0 16px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
        padding-bottom: 16px;
    }

    .footer-brand {
        display: none; /* Ocultar en móvil para ahorrar espacio */
    }

    /* Links en 3 columnas lado a lado */
    .footer-links-container {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        width: 100%;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links h4 {
        font-size: 0.625rem;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        color: var(--primary-400);
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .footer-links a {
        font-size: 0.625rem;
        line-height: 1.3;
    }

    .footer-bottom {
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-bottom p {
        font-size: 0.625rem;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE EXTRA SMALL (360px)
   ========================================== */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

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

    /* Servicios aun mas compactos */
    .services-grid {
        gap: 8px;
    }

    .service-card {
        padding: 14px;
    }

    .service-card h3 {
        font-size: 0.875rem;
    }

    .service-card > p {
        -webkit-line-clamp: 2;
    }

    .service-features li {
        font-size: 0.625rem;
    }

    /* Ocultar features en pantallas muy pequenas para mantener limpio */
    .service-features {
        display: none;
    }

    .service-card > p {
        margin-bottom: 0;
    }
}

/* ==========================================
   PROGRESSIVE DISCLOSURE - Path Selector
   ========================================== */

/* Hero Minimal */
.hero.hero-minimal {
    min-height: 100vh;
    padding-bottom: 60px;
}

.hero.hero-minimal .hero-title {
    margin-bottom: 16px;
}

.hero.hero-minimal .hero-subtitle {
    max-width: 500px;
    margin: 0 auto 48px;
    font-size: 1.125rem;
}

/* Path Selector - Rediseñado */
.path-selector {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.path-question {
    font-size: 1.25rem;
    color: var(--gray-200);
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: 0;
}

.path-question::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--primary-500);
    margin-right: 16px;
    vertical-align: middle;
}

.path-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.path-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: none; /* SIN BORDES */
    border-radius: var(--radius-xl);
    padding: 32px 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: var(--font-sans);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Sin efecto de luz */
.path-card::before {
    display: none;
}

.path-card:hover {
    background: rgba(0, 102, 255, 0.08);
    transform: translateY(-2px);
}

.path-card.featured {
    background: rgba(0, 102, 255, 0.1);
}

.path-card.featured:hover {
    background: rgba(0, 102, 255, 0.12);
}

.path-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
}

.path-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    background: rgba(0, 102, 255, 0.12);
    border: none; /* SIN BORDE */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.path-card:hover .path-icon {
    background: rgba(0, 102, 255, 0.2);
    transform: scale(1.02);
}

.path-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-400);
    transition: all 0.3s ease;
}

.path-card:hover .path-icon svg {
    stroke: var(--primary-300);
}

/* Rocket Icon Animation */
.rocket-icon svg {
    animation: rocketFloat 2s ease-in-out infinite;
}

.path-card:hover .rocket-icon svg {
    animation: rocketLaunch 0.6s ease-out forwards;
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes rocketLaunch {
    0% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-8px) rotate(-15deg) scale(1.1);
    }
    100% {
        transform: translateY(-4px) rotate(-10deg) scale(1.05);
    }
}

.path-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-50);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.path-card:hover h3 {
    color: white;
}

.path-card p {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Flecha indicadora */
.path-card::after {
    content: '→';
    display: block;
    font-size: 1.25rem;
    color: var(--primary-500);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.path-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Path Selector */
@media (max-width: 900px) {
    .path-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .path-card {
        padding: 28px 20px 24px;
    }
}

/* ==========================================
   SERVICE CATEGORIES - Collapsible
   ========================================== */

/* Hint para categorías */
.categories-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.categories-hint svg {
    stroke: var(--primary-400);
    flex-shrink: 0;
}

.service-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-category:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.service-category.active {
    border-color: rgba(0, 102, 255, 0.5);
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.06) 0%, rgba(0, 102, 255, 0.02) 100%);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.category-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.category-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.category-header::after {
    content: 'Clic para expandir';
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--gray-500);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-category:not(.active) .category-header:hover::after {
    opacity: 1;
}

.service-category.active .category-header::after {
    content: 'Clic para contraer';
}

.category-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.18) 0%, rgba(0, 102, 255, 0.08) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-category:hover .category-icon,
.service-category.active .category-icon {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, rgba(0, 102, 255, 0.12) 100%);
    border-color: rgba(0, 102, 255, 0.35);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
}

.category-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-400);
    transition: all 0.3s ease;
}

.service-category:hover .category-icon svg,
.service-category.active .category-icon svg {
    stroke: var(--primary-300);
}

.category-text {
    text-align: left;
}

.category-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-100);
    margin-bottom: 4px;
}

.category-text p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.category-toggle {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.category-header:hover .category-toggle {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0.05) 100%);
    border-color: rgba(0, 102, 255, 0.3);
}

.category-toggle svg {
    width: 22px;
    height: 22px;
    stroke: var(--gray-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-header:hover .category-toggle svg {
    stroke: var(--primary-400);
}

.service-category.active .category-toggle {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, rgba(0, 102, 255, 0.1) 100%);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
}

.service-category.active .category-toggle svg {
    stroke: var(--primary-400);
    transform: rotate(180deg);
}

/* Category Content - Collapsible */
.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    padding: 0 32px;
    opacity: 0;
}

.service-category.active .category-content {
    max-height: 2000px;
    padding: 8px 32px 32px;
    opacity: 1;
}

/* Services Grid Compact */
.services-grid.compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 800px) {
    .services-grid.compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-hint {
        font-size: 0.85rem;
        padding: 12px 18px;
    }

    .category-header::after {
        display: none; /* Ocultar hint "click para expandir" en móvil */
    }
}

@media (max-width: 500px) {
    .services-grid.compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .categories-hint {
        font-size: 0.8rem;
        padding: 10px 16px;
        margin-bottom: 24px;
    }

    .category-header {
        padding: 20px;
    }

    .category-info {
        gap: 14px;
    }

    .category-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .category-icon svg {
        width: 24px;
        height: 24px;
    }

    .category-text h3 {
        font-size: 1.05rem;
    }

    .category-text p {
        font-size: 0.8rem;
    }

    .category-toggle {
        width: 38px;
        height: 38px;
    }

    .category-content {
        padding: 0 20px;
    }

    .service-category.active .category-content {
        max-height: 4000px; /* Más altura para contenido móvil que ocupa más espacio vertical */
        padding: 0 20px 24px;
        transition: max-height 0.4s ease-out, padding 0.3s ease, opacity 0.3s ease;
    }
}

/* ==========================================
   SERVICE CARDS - Full Info Display
   ========================================== */

.service-card-mini {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: none; /* SIN BORDES EN TODOS LOS TAMAÑOS */
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-mini:hover {
    background: rgba(0, 102, 255, 0.06);
    transform: translateY(-2px);
}

.service-card-mini.featured {
    background: rgba(0, 102, 255, 0.08);
}

.service-card-mini.featured::before {
    display: none; /* Sin línea superior */
}

.mini-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.service-icon-mini {
    width: 52px;
    height: 52px;
    background: rgba(0, 102, 255, 0.12);
    border: none; /* SIN BORDE */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card-mini:hover .service-icon-mini {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3) 0%, rgba(0, 102, 255, 0.12) 100%);
    transform: scale(1.05);
}

.service-icon-mini svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-400);
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-50);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-info p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
    /* Sin recorte - mostrar todo */
}

/* Ocultar botón de detalles - ya no necesario */
.btn-details {
    display: none;
}

/* Service Details - Siempre visible */
.service-details {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-details .service-features {
    margin-bottom: 16px;
}

.service-details .service-features li {
    font-size: 0.85rem;
    color: var(--gray-300);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.service-details .service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-500);
    border-radius: 50%;
}

.btn.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    width: 100%;
    justify-content: center;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: var(--primary-400);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn.btn-sm:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

/* Services Hint - Oculto ya que todo es visible */
.services-hint {
    display: none;
}

/* Grid de servicios mejorado */
.services-grid.compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .services-grid.compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ========== REDISEÑO MÓVIL - SIN DESPLEGABLES ========== */
@media (max-width: 768px) {

    /* MOSTRAR TÍTULO DE CATEGORÍA SIMPLE */
    .category-header {
        display: flex !important;
        padding: 16px 0 12px !important;
        cursor: default !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid rgba(0, 102, 255, 0.2) !important;
        margin-bottom: 16px;
    }

    .category-header::after {
        display: none !important;
    }

    /* Ocultar el botón toggle */
    .category-toggle {
        display: none !important;
    }

    /* Ocultar el hint */
    .categories-hint {
        display: none !important;
    }

    /* Icono de categoría más pequeño */
    .category-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 10px !important;
    }

    .category-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    /* Texto de categoría */
    .category-text h3 {
        font-size: 1rem !important;
        margin-bottom: 2px !important;
    }

    .category-text p {
        font-size: 0.75rem !important;
        color: var(--gray-400) !important;
    }

    /* Mostrar contenido SIEMPRE visible en móvil - sin depender de .active */
    .category-content,
    .service-category .category-content,
    .service-category:not(.active) .category-content {
        max-height: 9999px !important;
        overflow: visible !important;
        opacity: 1 !important;
        padding: 0 !important;
        display: block !important;
        visibility: visible !important;
        height: auto !important;
    }

    /* Asegurar que el grid también sea visible */
    .services-grid.compact {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .service-category {
        background: transparent !important;
        border: none !important;
        margin-bottom: 32px;
        padding: 0 !important;
        border-radius: 16px;
    }

    .service-category:hover {
        background: transparent !important;
        border: none !important;
    }

    /* MARCO DE LUZ en la sección seleccionada */
    .service-category.active {
        background: rgba(0, 102, 255, 0.04) !important;
        border: 1px solid rgba(0, 102, 255, 0.3) !important;
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.15),
                    0 0 40px rgba(0, 102, 255, 0.08) !important;
        padding: 16px !important;
    }

    .service-category.active .category-header {
        border-bottom-color: rgba(0, 102, 255, 0.4) !important;
    }

    /* Grid de 1 columna - una debajo de otra */
    .services-grid.compact {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* Cards con marco azul y texto completo */
    .service-card-mini,
    .service-card-mini:hover,
    .service-card-mini:active,
    .service-card-mini.featured {
        padding: 18px 16px;
        background: rgba(0, 102, 255, 0.03) !important;
        border: 1px solid rgba(0, 102, 255, 0.2) !important;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
        transform: none !important;
        box-shadow: none !important;
        height: auto;
    }

    .service-card-mini.featured {
        border-color: rgba(0, 102, 255, 0.35) !important;
        background: rgba(0, 102, 255, 0.06) !important;
    }

    .service-card-mini.featured::before {
        display: none !important;
    }

    /* Icono */
    .service-icon-mini {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        border-radius: 10px;
        background: rgba(0, 102, 255, 0.12) !important;
        border: none !important;
    }

    .service-icon-mini svg {
        width: 20px;
        height: 20px;
    }

    /* Título */
    .service-info h4 {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 6px;
        font-weight: 600;
        color: var(--gray-100);
    }

    /* Descripción COMPLETA */
    .service-info > p {
        display: block !important;
        -webkit-line-clamp: unset !important;
        overflow: visible !important;
        font-size: 0.78rem;
        line-height: 1.5;
        color: var(--gray-400);
        margin-bottom: 0;
    }

    /* Mostrar solo el botón de consulta en móvil */
    .service-details {
        display: block !important;
        margin-top: 12px;
        padding-top: 0;
        border-top: none;
    }

    .service-details .service-features {
        display: none !important;
    }

    .service-details .btn.btn-sm {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    /* Ocultar botón de flecha en móvil */
    .btn-details {
        display: none !important;
    }

    /* Asegurar que las tarjetas sean visibles sin animación */
    .service-card-mini,
    .service-category .service-card-mini,
    .service-category:not(.active) .service-card-mini {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        visibility: visible !important;
        display: flex !important;
    }

    /* Badge */
    .mini-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: 0.6rem;
        padding: 4px 10px;
        background: var(--primary-500);
        border-radius: 6px;
    }
}

/* ========== MÓVIL PEQUEÑO ========== */
@media (max-width: 480px) {
    .services-grid.compact {
        gap: 10px;
    }

    .service-card-mini,
    .service-card-mini:hover,
    .service-card-mini:active,
    .service-card-mini.featured {
        padding: 16px 14px;
        gap: 10px;
    }

    .service-icon-mini {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .service-icon-mini svg {
        width: 18px;
        height: 18px;
    }

    .service-info h4 {
        font-size: 0.88rem;
    }

    .service-info > p {
        font-size: 0.75rem;
    }

}

/* ==========================================
   ANIMATIONS FOR PROGRESSIVE DISCLOSURE
   ========================================== */

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

.path-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.path-card:nth-child(1) { animation-delay: 0.1s; }
.path-card:nth-child(2) { animation-delay: 0.2s; }
.path-card:nth-child(3) { animation-delay: 0.3s; }
.path-card:nth-child(4) { animation-delay: 0.4s; }

/* Active state highlight for selected path */
.path-card.active {
    background: rgba(0, 102, 255, 0.12);
}

.path-card.active .path-icon {
    background: rgba(0, 102, 255, 0.25);
}

/* Service Cards Stagger Animation */
.service-category.active .service-card-mini {
    animation: cardSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.service-category.active .service-card-mini:nth-child(1) { animation-delay: 0.05s; }
.service-category.active .service-card-mini:nth-child(2) { animation-delay: 0.1s; }
.service-category.active .service-card-mini:nth-child(3) { animation-delay: 0.15s; }
.service-category.active .service-card-mini:nth-child(4) { animation-delay: 0.2s; }

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.path-card.active .path-icon svg {
    stroke: white;
}

/* ==========================================
   COLLAPSIBLE SECTIONS - Secciones Desplegables
   ========================================== */

.collapsible-section {
    padding: var(--section-padding) 0;
}

.section-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all var(--transition-base);
    text-align: left;
}

.section-toggle:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.collapsible-section.active .section-toggle {
    border-color: rgba(0, 102, 255, 0.4);
    background: rgba(0, 102, 255, 0.03);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.section-header-collapsible {
    flex: 1;
}

.section-header-collapsible .section-tag {
    margin-bottom: 12px;
}

.section-header-collapsible .section-title {
    margin-bottom: 8px;
}

.section-header-collapsible .section-subtitle {
    margin: 0;
    text-align: left;
}

.toggle-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.toggle-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gray-400);
    transition: transform var(--transition-base);
}

.collapsible-section.active .toggle-icon {
    background: rgba(0, 102, 255, 0.2);
}

.collapsible-section.active .toggle-icon svg {
    stroke: var(--primary-500);
    transform: rotate(180deg);
}

/* Collapsible Content */
.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.collapsible-section.active .collapsible-content {
    max-height: 1000px;
    border-color: rgba(0, 102, 255, 0.4);
    padding: 32px;
}

/* Responsive collapsible */
@media (max-width: 768px) {
    .section-toggle {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .section-header-collapsible .section-subtitle {
        text-align: center;
    }

    .toggle-icon {
        width: 40px;
        height: 40px;
    }
}

/* Path selector ajuste para hero */
.path-selector {
    margin-top: 48px;
    margin-bottom: 48px;
}

/* ==========================================
   WEB TYPES - Explicaciones mejoradas
   ========================================== */

.type-explanation {
    background: rgba(0, 102, 255, 0.08);
    border-left: 3px solid var(--primary-500);
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: var(--gray-200);
    line-height: 1.5;
}

.type-explanation strong {
    color: var(--primary-400);
    display: block;
    margin-bottom: 4px;
}

.types-help-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 48px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    color: var(--gray-300);
}

.types-help-text svg {
    stroke: var(--primary-500);
    flex-shrink: 0;
}

.types-help-text a {
    color: var(--primary-400);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.types-help-text a:hover {
    color: var(--primary-300);
}

@media (max-width: 600px) {
    .types-help-text {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* ==========================================
   UX IMPROVEMENTS - Smooth Transitions
   ========================================== */

/* Smooth scroll behavior mejorado */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Espacio para navbar fijo */
}

/* Transiciones suaves en hover para todas las cards */
.service-card-mini,
.service-category,
.path-card,
.type-card,
.platform-card,
.process-step {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efecto de entrada suave para secciones */
section {
    opacity: 1;
}

/* Mejora visual en focus para accesibilidad */
.path-card:focus,
.category-header:focus,
.btn-details:focus,
.btn:focus {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

/* Cursor pointer en elementos interactivos */
.category-header,
.path-card,
.btn-details {
    cursor: pointer;
}

/* Mejoras para interactividad táctil en móvil */
@media (max-width: 768px) {
    .path-card,
    .category-header,
    .btn-details,
    .service-card-mini {
        -webkit-tap-highlight-color: rgba(0, 102, 255, 0.2);
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
    }

    /* Feedback visual al tocar */
    .path-card:active,
    .category-header:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
}

/* Hover suave en links del footer */
.footer a {
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--primary-400);
}

/* Animación sutil en el logo al hover */
.logo:hover .logo-img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.logo .logo-img {
    transition: transform 0.3s ease;
}

/* Mejora en las estadísticas del hero */
.hero-stats .stat {
    transition: transform 0.3s ease;
}

.hero-stats .stat:hover {
    transform: translateY(-2px);
}
