

        /* BOTÓN FLOTANTE PARA VOLVER AL INICIO */
        .btn-back-home {
            position: fixed;
            bottom: 25px;
            left: 25px;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
            border: 2px solid var(--neon-cyan);
            cursor: pointer;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0a0f1f;
            font-size: 1.5rem;
            transition: all 0.3s;
            box-shadow: 0 0 20px rgba(0,247,255,0.4);
            text-decoration: none;
        }
        .btn-back-home:hover {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(0,247,255,0.7);
        }
        @media (max-width: 600px) {
            .btn-back-home { width: 45px; height: 45px; font-size: 1.2rem; bottom: 90px; left: 15px; }
        }

        /* HERO específico para trabajos */
        .hero {
            min-height: 50vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 8rem 2rem 4rem;
            background: radial-gradient(circle at 30% 20%, rgba(0,247,255,0.08), transparent 60%);
        }
        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid var(--neon-cyan);
            border-radius: 50px;
            color: var(--neon-cyan);
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
        }
        .hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 1rem; }
        .hero h1 span { color: var(--neon-cyan); text-shadow: 0 0 12px cyan; }
        .hero p { font-size: 1rem; color: var(--text-secondary); max-width: 600px; }

        /* SECCIÓN GTC */
        .gtc-section {
            position: relative;
            padding: 6rem 2rem;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0a1a 0%, #05050a 100%);
        }
        .gtc-bg-particles {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image: radial-gradient(circle at 20% 40%, rgba(255,68,238,0.08) 0%, transparent 50%),
                              radial-gradient(circle at 80% 70%, rgba(0,247,255,0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        .gtc-container { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
        .gtc-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(255,68,238,0.2), rgba(157,0,255,0.2));
            border: 1px solid rgba(255,68,238,0.5);
            border-radius: 50px;
            padding: 6px 16px;
            color: #ff44ee;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 2rem;
            backdrop-filter: blur(5px);
        }
        .gtc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .gtc-title-line {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            font-family: 'Orbitron', monospace;
            background: linear-gradient(135deg, #ff44ee, #9d00ff, #00f7ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .gtc-title-sub { font-size: 1.2rem; color: var(--text-secondary); letter-spacing: 2px; }
        .gtc-description { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; }
        .gtc-highlight { color: #ff44ee; text-shadow: 0 0 10px rgba(255,68,238,0.5); }
        .gtc-stats { display: flex; gap: 2rem; margin-bottom: 2rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,68,238,0.2); border-bottom: 1px solid rgba(255,68,238,0.2); }
        .gtc-stat { text-align: center; }
        .gtc-stat-number { display: block; font-size: 2rem; font-weight: 800; color: #ff44ee; font-family: 'Orbitron', monospace; }
        .gtc-stat-label { font-size: 0.8rem; color: var(--text-secondary); }
        .gtc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
        .gtc-feature { display: flex; align-items: center; gap: 12px; padding: 12px; background: rgba(255,68,238,0.05); border: 1px solid rgba(255,68,238,0.15); border-radius: 12px; }
        .gtc-feature i { font-size: 1.5rem; color: #ff44ee; }
        .gtc-feature h4 { font-size: 0.9rem; color: white; }
        .gtc-feature p { font-size: 0.75rem; color: var(--text-secondary); }
        .gtc-buttons { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
        .gtc-btn-primary {
            background: linear-gradient(135deg, #ff44ee, #9d00ff);
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .gtc-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 35px rgba(255,68,238,0.6); }
        .gtc-btn-secondary {
            background: transparent;
            border: 2px solid #ff44ee;
            color: #ff44ee;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .gtc-mockup-window {
            background: rgba(10,15,25,0.95);
            border: 1px solid rgba(255,68,238,0.3);
            border-radius: 16px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            padding: 20px;
        }
        @media (max-width: 900px) { .gtc-grid { grid-template-columns: 1fr; } }

        /* SECCIÓN MB CARTELERÍA */
        .mb-carteleria-section {
            position: relative;
            padding: 6rem 2rem;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0a0f 0%, #050508 100%);
        }
        .mb-carteleria-bg {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(255,170,0,0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(255,102,0,0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        .mb-carteleria-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
            z-index: 1;
        }
        .mb-carteleria-container { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; }
        .mb-carteleria-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,170,0,0.15);
            border: 1px solid #ffaa00;
            border-radius: 50px;
            padding: 6px 18px;
            color: #ffaa00;
            margin-bottom: 2rem;
        }
        .mb-carteleria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .mb-carteleria-title span:first-child {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            font-family: 'Orbitron', monospace;
            background: linear-gradient(135deg, #ffaa00, #ff6600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .mb-subtitle { font-size: 1.2rem; color: var(--text-secondary); letter-spacing: 2px; }
        .mb-description { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; }
        .mb-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
        .mb-feature { display: flex; align-items: center; gap: 12px; padding: 12px; background: rgba(255,170,0,0.05); border: 1px solid rgba(255,170,0,0.15); border-radius: 12px; }
        .mb-feature i { font-size: 1.5rem; color: #ffaa00; }
        .mb-feature h4 { font-size: 0.9rem; color: white; }
        .mb-feature p { font-size: 0.75rem; color: var(--text-secondary); }
        .mb-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
        .mb-btn-primary {
            background: linear-gradient(135deg, #ffaa00, #ff6600);
            color: #0a0a0f;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .mb-btn-secondary {
            background: transparent;
            border: 2px solid #ffaa00;
            color: #ffaa00;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .mb-mockup-window {
            background: rgba(10,15,25,0.95);
            border: 1px solid rgba(255,170,0,0.3);
            border-radius: 16px;
            padding: 20px;
        }
        @media (max-width: 900px) { .mb-carteleria-grid { grid-template-columns: 1fr; } }

        /* CATEGORÍAS Y TARJETAS */
        .category-section { padding: 4rem 2rem; position: relative; }
        .category-header { text-align: center; margin-bottom: 3rem; }
        .category-icon { font-size: 3rem; margin-bottom: 1rem; display: inline-block; animation: floatIcon 3s ease-in-out infinite; }
        @keyframes floatIcon { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
        .category-title { font-size: 2rem; font-weight: 800; background: linear-gradient(135deg, #fff, #00f7ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
        
        .cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; max-width: 1400px; margin: 0 auto; }
        .portfolio-card {
            background: var(--bg-card);
            border-radius: 24px;
            border: 1px solid rgba(0,247,255,0.2);
            overflow: hidden;
            transition: all 0.4s;
            backdrop-filter: blur(12px);
        }
        .portfolio-card:hover { transform: translateY(-8px); border-color: var(--neon-cyan); box-shadow: 0 25px 40px -12px rgba(0,247,255,0.4); }
        .card-image { height: 180px; background-size: cover; background-position: center; position: relative; }
        .image-overlay {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(8px);
            border-radius: 30px;
            padding: 6px 14px;
            font-size: 1.3rem;
        }
        .card-body { padding: 1.5rem; }
        .card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
        .card-body p { font-size: 0.85rem; color: var(--text-secondary); }
        .card-footer { display: flex; justify-content: space-between; margin-top: 1rem; align-items: center; }
        .card-tag { font-size: 0.7rem; padding: 4px 12px; border-radius: 50px; background: rgba(0,247,255,0.2); color: var(--neon-cyan); }
        .card-btn { padding: 6px 16px; border-radius: 50px; background: rgba(0,247,255,0.1); color: var(--neon-cyan); border: 1px solid rgba(0,247,255,0.4); cursor: pointer; }

        
        /* FORMULARIO CONTACTO */
        .contact-form-metal {
            background: rgba(0, 10, 20, 0.75);
            backdrop-filter: blur(15px);
            border-radius: 40px;
            padding: 2rem;
            margin: 3rem auto;
            max-width: 600px;
            border: 1px solid rgba(0, 255, 255, 0.5);
        }
        input, textarea {
            width: 100%;
            padding: 14px 20px;
            background: #0e1a24;
            border: 1px solid #2c5f6e;
            border-radius: 60px;
            color: white;
            margin-bottom: 1rem;
        }
        textarea { border-radius: 30px; resize: vertical; }
        input:focus, textarea:focus { outline: none; border-color: cyan; box-shadow: 0 0 12px cyan; }
        .btn-submit-neon {
            background: linear-gradient(95deg, #00a6c4, #6a11cb);
            border: none;
            padding: 12px 30px;
            border-radius: 40px;
            font-weight: bold;
            color: white;
            cursor: pointer;
            width: 100%;
        }
        .error-msg { color: #ff6a6a; font-size: 0.8rem; margin-top: -0.5rem; margin-bottom: 0.5rem; }

        /* MODALES */
        .modal-generic {
            display: none;
            position: fixed;
            z-index: 10001;
            left: 0; top: 0;
            width: 100%; height: 100%;
            background-color: rgba(0,0,0,0.85);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
        }
        .modal-generic-content {
            background: rgba(10, 15, 25, 0.95);
            backdrop-filter: blur(15px);
            padding: 2rem;
            border: 2px solid var(--neon-cyan);
            border-radius: 30px;
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            overflow-y: auto;
        }
        .close-modal { float: right; font-size: 28px; color: cyan; cursor: pointer; }

        /* FOOTER */
        footer {
            background: var(--bg-dark);
            border-top: 1px solid rgba(0,247,255,0.3);
            padding: 3rem 2rem 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-links a { display: block; color: var(--text-secondary); text-decoration: none; margin-bottom: 0.75rem; cursor: pointer; }
        .footer-links a:hover { color: var(--neon-cyan); }
        .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 2rem; font-size: 0.85rem; }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .glass-nav { padding: 1rem; }
        }

        

        footer {
            background: var(--bg-dark);
            border-top: 1px solid rgba(0,247,255,0.3);
            padding: 4rem 2rem 2rem;
        }
        .footer-links a {
            display: block;
            color: var(--text-secondary);
            text-decoration: none;
            margin-bottom: 0.75rem;
            cursor: pointer;
        }
        .footer-links a:hover { color: var(--neon-cyan); }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .glass-nav { padding: 1rem; }
        }
    /* ============================================
   SOCIAL MEDIA & BRANDING SECTION
   ============================================ */

.social-branding-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #050510 100%);
}

.social-branding-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0,247,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,68,238,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.social-branding-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.social-branding-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.social-branding-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,247,255,0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 50px;
    padding: 6px 18px;
    color: var(--neon-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.pulse-dot-social {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 2s infinite;
}

.social-branding-header {
    text-align: center;
    margin-bottom: 3rem;
}

.social-branding-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    font-family: 'Orbitron', monospace;
}

.social-branding-title span {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0,247,255,0.5);
}

.social-branding-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Grid de servicios */
.social-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.social-service-card {
    background: rgba(15, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,247,255,0.2);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s;
}

.social-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0,247,255,0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0,247,255,0.2), rgba(255,68,238,0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,247,255,0.3);
}

.social-service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: white;
}

.social-service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.service-features li i {
    color: #00ff88;
    margin-right: 8px;
    font-size: 0.8rem;
}

.service-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.service-btn:hover {
    background: var(--neon-cyan);
    color: black;
    box-shadow: 0 0 15px var(--neon-cyan);
}

/* Mockup */
.social-mockup-container {
    background: rgba(0,0,0,0.4);
    border-radius: 30px;
    padding: 2rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(0,247,255,0.2);
}

.social-mockup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mockup-badge {
    display: inline-block;
    background: rgba(255,68,238,0.2);
    border: 1px solid #ff44ee;
    border-radius: 50px;
    padding: 4px 16px;
    font-size: 0.75rem;
    color: #ff44ee;
    margin-bottom: 1rem;
}

.social-mockup-header h3 {
    font-size: 1.5rem;
    color: white;
}

.social-mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mockup-card {
    background: rgba(10, 15, 25, 0.9);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.mockup-label {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mockup-card.before .mockup-label { color: #ff6b6b; }
.mockup-card.after .mockup-label { color: #00ff88; }

.mockup-profile {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mockup-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.mockup-avatar.blur {
    background: #333;
    filter: blur(4px);
}

.mockup-info {
    flex: 1;
}

.mockup-name {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.mockup-name.blur {
    width: 80%;
    height: 16px;
    background: #333;
    filter: blur(3px);
}

.mockup-bio {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.mockup-bio.blur {
    width: 100%;
    height: 12px;
    background: #333;
    filter: blur(2px);
}

.mockup-posts {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mockup-post {
    flex: 1;
    height: 80px;
    background: #1a1f2e;
    border-radius: 12px;
}

.mockup-post.blur {
    background: #333;
    filter: blur(3px);
}

.neon-post {
    background: linear-gradient(135deg, rgba(0,247,255,0.2), rgba(255,68,238,0.2));
    border: 1px solid rgba(0,247,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--neon-cyan);
}

.mockup-text {
    margin-top: 1rem;
    font-size: 0.8rem;
    text-align: center;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Paquetes de precios */
.social-pricing {
    text-align: center;
    margin-bottom: 4rem;
}

.social-pricing h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
}

.pricing-grid-social {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card-social {
    background: rgba(15, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(0,247,255,0.2);
    transition: all 0.3s;
}

.pricing-card-social.featured {
    border: 2px solid #ff44ee;
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255,68,238,0.2);
}

.pricing-card-social:hover {
    transform: translateY(-5px);
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-card-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.price span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.pricing-card-social ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card-social li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-card-social button {
    width: 100%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-card-social.featured button {
    background: linear-gradient(135deg, #ff44ee, #9d00ff);
    color: white;
}

.pricing-card-social button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0,247,255,0.4);
}

/* CTA */
.social-cta {
    background: linear-gradient(135deg, rgba(0,247,255,0.1), rgba(255,68,238,0.1));
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0,247,255,0.3);
}

.social-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.social-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.social-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-social {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(37,211,102,0.4);
}

.btn-secondary-social {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary-social:hover {
    background: var(--neon-cyan);
    color: black;
    box-shadow: 0 0 20px var(--neon-cyan);
}

@media (max-width: 768px) {
    .social-mockup-grid {
        grid-template-columns: 1fr;
    }
    
    .social-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Estilos para versión "Coming Soon" */
.social-service-card.coming-soon {
    opacity: 0.85;
    position: relative;
    overflow: hidden;
}

.social-service-card.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,247,255,0.05), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { left: 100%; }
}

.coming-badge {
    position: absolute;
    top: -2px;
    right: -1px;
    background: rgba(255,68,238,0.9);
    color: white;
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    font-weight: 600;
}

.service-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(0.2);
}

.service-btn.disabled:hover {
    transform: none;
    background: transparent;
    color: var(--neon-cyan);
}

/* Pre-registro */
.social-preregistro {
    background: linear-gradient(135deg, rgba(0,247,255,0.08), rgba(255,68,238,0.08));
    border-radius: 30px;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(0,247,255,0.3);
}

.preregistro-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.preregistro-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.preregistro-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-row input, .form-row select {
    flex: 1;
    min-width: 180px;
}

.prereg-btn {
    background: linear-gradient(135deg, #ff44ee, #9d00ff);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.prereg-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255,68,238,0.5);
}

.prereg-status {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    text-align: center;
}

/* Roadmap */
.social-roadmap {
    background: rgba(0,0,0,0.4);
    border-radius: 30px;
    padding: 2rem;
    margin: 3rem 0;
}

.social-roadmap h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.roadmap-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.roadmap-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.roadmap-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 40px;
    width: 2px;
    height: calc(100% - 10px);
    background: linear-gradient(180deg, var(--neon-cyan), transparent);
}

.roadmap-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--neon-cyan);
    flex-shrink: 0;
    z-index: 1;
    background: #0a0f1f;
}

.roadmap-dot.done {
    background: #00ff88;
    border-color: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.roadmap-dot.current {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 5px var(--neon-cyan); }
    50% { box-shadow: 0 0 20px var(--neon-cyan); }
}

.roadmap-content {
    flex: 1;
}

.roadmap-content h4 {
    margin-bottom: 0.3rem;
    color: white;
}

.roadmap-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.progress-bar {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    height: 8px;
    margin: 0.5rem 0 0.3rem;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, var(--neon-cyan), #ff44ee);
    border-radius: 10px;
    height: 100%;
}

.progress-text {
    font-size: 0.7rem;
    color: var(--neon-cyan);
}

/* CTA Realista */
.social-cta-real {
    background: linear-gradient(135deg, rgba(0,247,255,0.1), rgba(0,0,0,0.5));
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0,247,255,0.3);
    margin-top: 2rem;
}

.social-cta-real h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.social-cta-real p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .prereg-btn {
        width: 100%;
    }
    
    .social-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
