* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-orange: #e4682e;
    --primary-pink: #071ab8;
    --primary-purple: #249703;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 50px rgba(255, 107, 53, 0.2);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* Smooth scroll for the entire page */
html {
    scroll-behavior: smooth;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    transition: background-color var(--transition-medium);
}
/* Modern scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    border-radius: 4px;
    transition: background var(--transition-medium);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
}

/* ==============================================
   CONECTORES VISUALES ENTRE SECCIONES
   ============================================== */
.section-connector {
    position: relative;
    overflow: visible;
}

.section-connector::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, 
        var(--primary-orange) 0%, 
        transparent 50%, 
        var(--primary-pink) 100%);
    z-index: 10;
}

.section-connector::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, var(--primary-orange) 0%, var(--primary-pink) 100%);
    border-radius: 50%;
    z-index: 11;
    animation: pulse 2s ease-in-out infinite;
}

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

/* ==============================================
   MOBILE PREVIEW SECTION INTEGRADA
   ============================================== */
.mobile-preview {
    padding: var(--section-spacing) 2rem;
    margin-top: var(--section-overlap);
    background: linear-gradient(135deg, 
        #0a0a0a 0%, 
        #1a1a2e 30%, 
        #16213e  70%, 
        #0f0f23 100%);
    position: relative;
    overflow: hidden;
    border-radius: 60px 60px 0 0;
    z-index: 2;
    box-shadow: 
        0 -20px 40px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

/* Partículas conectoras */
.mobile-preview::before {
    content: '';
    position: absolute;
    inset: 0; /* equivale a top:0; right:0; bottom:0; left:0 */
    background: 
        radial-gradient(circle at 25% 25%, rgba(194, 228, 46, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(7, 26, 184, 0.3) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="20" cy="20" r="1"/></g></svg>');
    background-repeat: repeat;
    z-index: 1;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { background-position: 0 -200px, 0 -300px, 0 -400px; }
}

.mobile-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Líneas conectoras entre elementos */
.mobile-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-medium);
    position: relative;
    margin-bottom: 1rem;
}

.mobile-feature::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 40px;
    height: 2px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all var(--transition-medium);
}

.mobile-feature:hover::before {
    opacity: 1;
    left: -30px;
}

/* Header with enhanced animations */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 800px; /* Cambiado de 600px a 1200px */
    transition: none;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
    position: relative;
    /* ✅ REMOVIDO: overflow: hidden; para evitar el efecto shimmer */
}
        /*nav::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }
        nav:hover {
            box-shadow: var(--shadow-xl), var(--shadow-glow);
            transform: translateY(-3px);
            border-color: rgba(255, 107, 53, 0.2);
        }
        nav:hover::before {
            left: 100%;
        }*/
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 700;
            z-index: 1001;
        }

        .logo-img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
        }
.logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
}
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
            margin: 0;
            padding: 0;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--text-gray);
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: var(--transition);
            position: relative;
        }
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    transition: all var(--transition-medium);
    transform: translateX(-50%);
}

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--text-dark);
            background: rgba(228, 104, 46, 0.1);
        }
        
.nav-links a:hover::before {
    width: 80%;
}

.nav-links a.active::before {
    width: 80%;
}

.sales-btn {
    display: inline-block;
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--text-dark) 0%, #333 100%);
    color: #fff;
    text-decoration: none;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.sales-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    transition: left var(--transition-slow);
    z-index: -1;
}

.sales-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--transition-medium);
}

.sales-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.sales-btn:hover::before {
    left: 0;
}

.sales-btn:hover::after {
    opacity: 1;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Botón hamburguesa - oculto por defecto */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    transition: all var(--transition-medium);
    border-radius: 8px;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all var(--transition-medium);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--primary-orange);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary-orange);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section with enhanced animations */
.hero {
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.announcement {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 1s ease-out 0.2s both;
    transition: all var(--transition-medium);
}

.announcement:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.new-badge {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    color: rgb(255, 255, 255);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

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

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

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-dark);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero .gradient-text {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-pink) 50%, var(--primary-purple) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--text-dark) 0%, #333 100%);
    color: white;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    transition: left var(--transition-slow);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--text-dark) 0%, #333 100%);
    color: white;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    transition: left var(--transition-slow);
    z-index: -1;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn-secondary:hover::before {
    left: 0;
}

/* Mobile Preview Section with enhanced animations */
.mobile-preview {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #0a0a0a 50%, #2c0e96 100%);
    position: relative;
    overflow: hidden;
}

.mobile-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><circle cx="30" cy="30" r="2"/></g></svg>');
    animation: float 10s ease-in-out infinite;
}

.mobile-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mobile-preview-text {
    color: white;
}

.mobile-preview-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-preview-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.mobile-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.mobile-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease-out both;
}

.mobile-feature:nth-child(1) { animation-delay: 0.6s; }
.mobile-feature:nth-child(2) { animation-delay: 0.8s; }
.mobile-feature:nth-child(3) { animation-delay: 1s; }

.mobile-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.mobile-feature-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all var(--transition-medium);
}

.mobile-feature:hover .mobile-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.mobile-preview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.mobile-mockup {
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.5s both, float 6s ease-in-out 1.5s infinite;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 30px;
    padding: 8px;
    box-shadow: 
        0 0 0 2px #333,
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(255, 255, 255, 0.1);
    transition: all var(--transition-slow);
}

.phone-frame:hover {
    transform: scale(1.05) rotateY(10deg);
    box-shadow: 
        0 0 0 2px var(--primary-orange),
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(255, 107, 53, 0.2);
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    transition: transform var(--transition-medium);
}

.phone-frame:hover .phone-screen img {
    transform: scale(1.02);
}

/* Features Section with enhanced carousel */
.features {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out both;
}

.section-title h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-pink) 50%, var(--primary-purple) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.section-title p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Pricing Carousel */
        .pricing-carousel {
            position: relative;
            max-width: 1400px;
            margin: 4rem auto 0;
            perspective: 1200px;
        }

        .carousel-container {
            position: relative;
            height: 550px;
            overflow: visible;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 2.5rem;
        }

        .carousel-track {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Base styling for pricing cards */
        .pricing-card {
            width: 320px;
            background: var(--bg-white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transform-origin: center center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            visibility: hidden;
        }

        /* Badge popular */
        .popular-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--primary-orange);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .price {
            font-size: 2.0rem;
            font-weight: 800;
            margin: 1rem 0 0.5rem;
            line-height: 1;
            color: var(--text-dark);
        }

        .price span {
            font-size: 1rem;
            font-weight: 500;
            opacity: 0.8;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .plan-type {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-purple);
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .payment-details {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
        }

        .features-list {
            list-style: none;
            margin: 2rem 0;
            padding: 0;
            text-align: left;
        }

        .features-list li {
            padding: 0.7rem 0;
            color: var(--text-gray);
            position: relative;
            padding-left: 1.5rem;
        }

        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-orange);
            font-weight: bold;
        }

        .get-started-btn {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        .get-started-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        /* Estados de las tarjetas - posiciones absolutas que rotan */
        .pricing-card.show-left {
            opacity: 0.8;
            visibility: visible;
            transform: translate(-50%, -50%) translateX(-350px) scale(0.9) rotateY(15deg);
            z-index: 2;
            pointer-events: auto;
            user-select: auto;
        }

        /* Tarjeta central (destacada) */
        .pricing-card.show-center {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) translateX(0px) scale(1.05) rotateY(0deg);
            background: linear-gradient(135deg, #2c0e96, #121312);
            color: white;
            box-shadow: 0 30px 60px rgba(110, 69, 226, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.3);
            z-index: 10;
            pointer-events: auto;
            user-select: auto;
        }

        .pricing-card.show-center .popular-badge {
            opacity: 1;
        }

        .pricing-card.show-center .price,
        .pricing-card.show-center .plan-name,
        .pricing-card.show-center .plan-type,
        .pricing-card.show-center .payment-details,
        .pricing-card.show-center .features-list li {
            color: white;
        }

        .pricing-card.show-center .plan-type {
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        .pricing-card.show-center .get-started-btn {
            background: white;
            color: #6e45e2;
            font-weight: 700;
        }

        .pricing-card.show-center .get-started-btn:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
        }

        /* Tarjeta derecha */
        .pricing-card.show-right {
            opacity: 0.8;
            visibility: visible;
            transform: translate(-50%, -50%) translateX(350px) scale(0.9) rotateY(-15deg);
            z-index: 2;
            pointer-events: auto;
            user-select: auto;
        }

        /* Controles del carrusel */
        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .carousel-prev,
        .carousel-next {
            background: var(--bg-white);
            margin-top: 50px;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--primary-purple);
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        .carousel-prev:hover,
        .carousel-next:hover {
            background: var(--primary-purple);
            color: white;
            transform: translateY(-2px);
        }

/* Enhanced Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-prev,
.carousel-next {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-purple);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.carousel-prev::before,
.carousel-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    transition: left var(--transition-slow);
    z-index: -1;
    border-radius: 50%;
}

.carousel-prev:hover,
.carousel-next:hover {
    color: white;
    transform: translateY(-3px) scale(1.1);
    border-color: transparent;
    box-shadow: var(--shadow-xl);
}

.carousel-prev:hover::before,
.carousel-next:hover::before {
    left: 0;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    transform: scale(0);
    transition: transform var(--transition-medium);
    border-radius: 50%;
}

.carousel-dot:hover {
    transform: scale(1.2);
}

.carousel-dot.active {
    transform: scale(1.2);
}

.carousel-dot.active::before {
    transform: scale(1);
}

/* Enhanced Features Showcase */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    padding: 6rem 2rem;
    background: #f8fafc;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    min-height: 480px;
    background: linear-gradient(135deg, #c3fae8, #a5d8ff, #d0f4de);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #a7f3d0, #7dd3fc, #bbf7d0);
}

.feature-box:hover::before {
    left: 100%;
}

.feature-image {
    display: block;
    max-width: 75%;
    height: auto;
    border-radius: 1rem;
    margin-bottom: 2rem;
    transition: all var(--transition-medium);
    position: relative;
    z-index: 2;
}

.feature-box:hover .feature-image {
    transform: scale(1.05) rotate(2deg);
}

.feature-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    transition: color var(--transition-medium);
}

.feature-box:hover h2 {
    color: #0d4f3c;
}

.feature-box p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: color var(--transition-medium);
}

.feature-box:hover p {
    color: #2d5016;
}

/* Enhanced Integrated Feature */
.integrated-feature {
    background: linear-gradient(135deg, #071ab8 0%, #071ab8 50%, #0a0a0a 100%);
    border-radius: 25px;
    margin: 50px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    overflow: hidden;
    position: relative;
    transition: all var(--transition-slow);
}

.integrated-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="40" cy="40" r="3"/></g></svg>');
    animation: float 8s ease-in-out infinite;
}

.integrated-feature:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.content-section {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
    animation: bounce 3s ease-in-out infinite;
}

.integrated-feature:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: #ff6b35;
    transition: all var(--transition-medium);
}

.integrated-feature:hover .feature-icon svg {
    color: #e55a2b;
}

.integrated-feature h2 {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.1;
    transition: all var(--transition-medium);
}

.integrated-feature:hover h2 {
    transform: translateX(10px);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.integrated-feature p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
    transition: all var(--transition-medium);
}

.integrated-feature:hover p {
    opacity: 1;
    transform: translateX(5px);
}

.phone-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

.person-image {
    max-width: 50%;
    height: auto;
    border-radius: 20px;
    transition: all var(--transition-slow);
}

.integrated-feature:hover .person-image {
    transform: scale(1.05) rotate(-2deg);
}

/* Enhanced FAQ Section */
.faq {
    padding: 6rem 2rem;
    background: #edf6f7;
}

.header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease-out both;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.1;
}

.highlight-orange {
    color: #071ab8;
    position: relative;
    display: inline-block;
}

.highlight-orange::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #071ab8, #0f21f3);
    border-radius: 2px;
    animation: expandWidth 2s ease-out 0.5s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

.highlight-pink {
    color: #249703;
    position: relative;
    display: inline-block;
}

.highlight-pink::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #ff6b9d, #9c27b0);
    border-radius: 2px;
    animation: expandWidth 2s ease-out 1s both;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.jobs-list {
    max-width: 900px;
    margin: 0 auto;
}

.job-item {
    background: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out both;
}

.job-item:nth-child(1) { animation-delay: 0.1s; }
.job-item:nth-child(2) { animation-delay: 0.2s; }
.job-item:nth-child(3) { animation-delay: 0.3s; }

.job-item:hover {
    background-color: #ffffff;
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.job-header {
    padding: 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.job-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.6s ease;
}

.job-header:hover::before {
    left: 100%;
}

.job-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    transition: color var(--transition-medium);
}

.job-header:hover .job-info h3 {
    color: var(--primary-orange);
}

.job-location {
    color: #666;
    font-size: 0.95rem;
    transition: color var(--transition-medium);
}

.job-header:hover .job-location {
    color: var(--primary-pink);
}

.arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #071ab8, #1b1b1b);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    color: white;
    position: relative;
    overflow: hidden;
}

.arrow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333, #555);
    transform: scale(0);
    transition: transform var(--transition-medium);
    border-radius: 50%;
}

.arrow-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.arrow-btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-medium);
    position: relative;
    z-index: 2;
}

.job-item.expanded .arrow-btn {
    background: #333;
    transform: rotate(90deg);
}

.job-item.expanded .arrow-btn::before {
    transform: scale(1);
}

.job-details {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-slow);
    background: linear-gradient(135deg, #fff, #fafbfc);
}

.job-details.expanded {
    max-height: 500px;
    padding: 0 32px 32px 32px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.detail-section {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-medium);
}

.job-details.expanded .detail-section {
    opacity: 1;
    transform: translateY(0);
}

.detail-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 1rem;
    position: relative;
    display: inline-block;
}

.detail-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    border-radius: 1px;
}

.detail-text {
    color: #555;
    line-height: 1.6;
}

/* Enhanced About Section */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 110px 50px;
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
}

.content-wrapper {
    text-align: center;
    max-width: 900px;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.section-tag {
    color: #9d7ec7;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out both;
}

.main-heading {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #1a202c;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.subtitle {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.rating-card {
    background: linear-gradient(135deg, #3b65da 0%, #03144b 100%);
    border-radius: 60px;
    padding: 18px 36px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(45, 55, 72, 0.15);
    transition: all var(--transition-medium);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color:#c3fae8
}

.rating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
    text-decoration:none;
}

.rating-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(45, 55, 72, 0.25);
}

.rating-card:hover::before {
    left: 100%;
}

.user-avatars {
    display: flex;
    margin-right: 8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
    transition: all var(--transition-medium);
    animation: bounceIn 1s ease-out both;
}

.avatar:nth-child(1) {
    margin-left: 0;
    background: linear-gradient(45deg, #ff9a56, #ff6b6b);
    animation-delay: 0.8s;
}

.avatar:nth-child(2) {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    animation-delay: 1s;
}

.avatar:nth-child(3) {
    background: linear-gradient(45deg, #a8edea, #fed6e3);
    color: #333;
    animation-delay: 1.2s;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% { transform: scale(0.9); }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.rating-card:hover .avatar {
    transform: scale(1.1);
}

.floating-emoji {
    position: absolute;
    font-size: 32px;
    opacity: 0.7;
    animation: floatEmoji 8s ease-in-out infinite;
    z-index: 1;
    transition: all var(--transition-medium);
}

.floating-emoji:hover {
    transform: scale(1.2) rotate(10deg) !important;
    opacity: 1;
}

@keyframes floatEmoji {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.9;
    }
}

.emoji-1 {
    top: 6%;
    left: -5%;
    animation-delay: 0s;
}

.emoji-2 {
    top: 8%;
    right: -8%;
    animation-delay: 3s;
}

.emoji-3 {
    bottom: 12%;
    left: 5%;
    animation-delay: 6s;
}

.emoji-4 {
    bottom: 12%;
    right: 6%;
    animation-delay: 2s;
}

.emoji-5 {
    top: 45%;
    left: -4%;
    animation-delay: 4s;
}

.emoji-6 {
    top: 50%;
    right: -4%;
    animation-delay: 7s;
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #7ED321 0%, #4DD0E1 25%, #E91E63 75%, #FF9800 100%);
    border-radius: 40px;
    margin: 20px;
    padding: 80px 60px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-slow);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="50" cy="50" r="4"/></g></svg>');
    animation: float 12s ease-in-out infinite;
}

.hero-section:hover {
    transform: scale(1.01);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.hero-content {
    flex: 1;
    max-width: 500px;
    z-index: 2;
    animation: slideInLeft 1s ease-out both;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
    margin-bottom: 20px;
    transition: all var(--transition-medium);
}

.hero-section:hover .hero-content h1 {
    transform: translateX(10px);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
    transition: all var(--transition-medium);
}

.hero-section:hover .hero-content p {
    transform: translateX(5px);
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-medium);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    transition: left var(--transition-slow);
    z-index: -1;
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.download-btn:hover::before {
    left: 0;
}

.phone-containerv2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.phonev2 {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 30px;
    padding: 8px;
    box-shadow: 
        0 0 0 2px #333,
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(255, 255, 255, 0.1);
    animation: floatPhone 6s ease-in-out infinite;
    overflow: hidden;
    transition: all var(--transition-slow);
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.hero-section:hover .phonev2 {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 
        0 0 0 2px var(--primary-orange),
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(255, 107, 53, 0.3);
}

.phone-imagev2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    transition: transform var(--transition-medium);
}

.hero-section:hover .phone-imagev2 {
    transform: scale(1.02);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 0 0;
    border-top: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><circle cx="30" cy="30" r="2"/></g></svg>');
    animation: float 15s ease-in-out infinite;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: all var(--transition-medium);
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.footer-logo-text h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, var(--primary-orange) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.footer-logo-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    border-radius: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-medium);
    position: relative;
    padding-left: 0;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--transition-medium);
}

.footer-column ul li a:hover {
    color: white;
    transform: translateX(10px);
}

.footer-column ul li a:hover::before {
    opacity: 1;
}

.footer-cta {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-medium);
}

.footer-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-btn {
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    color: white;
    border: 2px solid transparent;
}

.cta-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left var(--transition-slow);
    z-index: -1;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-secondary:hover::after {
    left: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    transform: scale(0);
    transition: transform var(--transition-medium);
    border-radius: 50%;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.social-links a:hover::before {
    transform: scale(1);
}

.social-links a svg {
    position: relative;
    z-index: 2;
    transition: all var(--transition-medium);
}

.social-links a:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom > div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
}

.credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 400;
}

.credits a {
    color: white;
    text-decoration: none;
    transition: all var(--transition-medium);
    font-weight: 500;
    position: relative;
}

.credits a:hover {
    color: var(--primary-orange);
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-medium);
}

.footer-bottom-right a:hover {
    color: white;
}

/* ==============================================
   BUY TEMPLATE BUTTON COMPLETO
   ============================================== */

.buy-template {
    position: fixed;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-pink) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 
        0 10px 25px rgba(194, 228, 46, 0.4),
        0 0 40px rgba(194, 228, 46, 0.2);
    z-index: 1001;
    transition: all var(--transition-medium);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: floatButton 4s ease-in-out infinite;
    
    /* Posicionamiento por defecto - Desktop */
    bottom: 30px;
    right: 30px;
    left: auto;
    width: auto;
    min-width: auto;
    max-width: none;
    transform: none;
}

@keyframes floatButton {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
}

.buy-template::before {
    content: '🔥';
    animation: fireAnimation 2s ease-in-out infinite;
    margin-right: 0.3rem;
}

@keyframes fireAnimation {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.buy-template:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(194, 228, 46, 0.5),
        0 0 60px rgba(194, 228, 46, 0.3);
    animation: none;
}

.buy-template:active {
    transform: translateY(-2px) scale(1.02);
}

/* ==============================================
   RESPONSIVE DESIGN PRESERVANDO DESKTOP
   ============================================== */

/* Solo agregamos optimizaciones móviles */
@media (max-width: 1200px) {
    header {
        width: calc(100% - 30px);
        max-width: 1000px;
    }
    
    nav {
        padding: 0.7rem 1.3rem;
    }
    
    .nav-links {
        gap: 1.3rem;
    }
    
    .buy-template {
        bottom: 25px;
        right: 25px;
        padding: 0.9rem 1.3rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    header {
        width: calc(100% - 20px);
        max-width: 800px;
    }
    
    nav {
        padding: 0.65rem 1.2rem;
    }
    
    .nav-links {
        gap: 1.2rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .sales-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.3rem;
    }

    .mobile-preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .carousel-container {
        min-height: 700px;
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        position: relative;
    }

    .pricing-card {
        width: 90%;
        max-width: 320px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.8s ease;
    }

    .pricing-card.show-left,
    .pricing-card.show-right {
        transform: translateX(-50%) translateY(-50%) scale(0.9);
        opacity: 0.7;
        visibility: visible;
        z-index: 1;
    }

    .pricing-card.show-center {
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: 1;
        visibility: visible;
        z-index: 10;
    }

    .integrated-feature {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .features-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .buy-template {
        bottom: 20px;
        right: 20px;
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    header {
        top: 15px;
        left: 15px;
        right: 15px;
        transform: none;
        width: calc(100% - 30px);
        max-width: none;
    }

    nav {
        padding: 0.75rem 1rem;
        border-radius: 20px;
        justify-content: space-between;
        gap: 1rem;
    }

    /* Mostrar hamburguesa */
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    /* Reorganizar elementos */
    .logo {
        order: 1;
        flex: none;
    }

    .sales-btn {
        order: 3;
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        margin-left: 0.5rem;
        flex-shrink: 0;
    }

    /* Ocultar navegación desktop */
    .nav-links {
        display: none;
    }

    /* Mostrar navegación móvil cuando esté activa */
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 999;
        padding: 2rem;
        margin: 0;
        list-style: none;
        animation: slideIn 0.3s ease;
    }

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

    .nav-links.active li {
        opacity: 1;
        transform: scale(1);
        animation: fadeInUp 0.5s ease forwards;
        list-style: none;
    }

    .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.4s; }

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

    .nav-links.active a {
        font-size: 1.3rem;
        font-weight: 600;
        padding: 1.2rem 2.5rem;
        border-radius: 15px;
        width: 250px;
        text-align: center;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        white-space: nowrap;
        display: block;
        color: var(--text-dark);
        transition: var(--transition-medium);
    }

    .nav-links.active a::before {
        display: none;
    }

    .nav-links.active a:hover,
    .nav-links.active a.active {
        background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
        color: white;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        border-color: transparent;
    }

    .hero {
        padding: 4rem 1rem 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .phone-containerv2 {
        margin-top: 40px;
    }

    .phonev2 {
        width: 240px;
        height: 480px;
    }

    .about-section {
        padding: 60px 20px;
    }
    
    .floating-emoji {
        display: none;
    }
    
    .rating-card {
        padding: 14px 24px;
        border-radius: 40px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .feature-box {
        padding: 2rem;
        min-height: 350px;
    }

    .feature-box h2 {
        font-size: 1.8rem;
    }

    .content-section {
        padding: 40px 30px;
    }

    .integrated-feature h2 {
        font-size: 2.2rem;
    }
    
    .buy-template {
        bottom: 15px;
        right: 15px;
        left: 15px;
        width: calc(100% - 30px);
        min-width: auto;
        max-width: none;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        text-align: center;
        justify-content: center;
        white-space: normal;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 40px;
        height: 40px;
    }

    .sales-btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
        border-radius: 20px;
    }

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

    .nav-links.active a {
        width: 220px;
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
    
    .buy-template {
        bottom: 12px;
        right: 12px;
        left: 12px;
        width: calc(100% - 24px);
        padding: 0.7rem 0.8rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 360px) {
    .buy-template {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: calc(100% - 20px);
        padding: 0.6rem 0.7rem;
        font-size: 0.65rem;
    }
}

/* Evitar overflow horizontal */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }
}

/* ==============================================
   UTILIDADES Y ACCESSIBILITY
   ============================================== */

/* Performance optimizations */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* Enhanced text selection */
::selection {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    color: white;
}

::-moz-selection {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
    color: white;
}

/* Custom focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-emoji {
        animation: none;
    }
    
    .mobile-mockup,
    .phonev2 {
        animation: none;
    }
}
