      
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial,', sans-serif;
            background: linear-gradient(135deg, #4A90E2 0%, #357ABD 50%, #2E5B8A 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            overflow-x: hidden;
        }

        .container {
            max-width: 500px;
            width: 100%;
            text-align: center;
            animation: fadeInUp 0.8s ease-out;
        }

        .logo {
          font-weight: 700;
          font-size: 24px;
        }
        .testimony {
            font-family: 'Poppins', sans-serif;
            color: #fff;
        }

        /*testimonial*/  
         .testimonial-container {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            max-width: 600px;
            width: 100%;
        }
        .testimonial-container,
        .testimonial-text,
        .company-name {
            font-family: 'Inter', sans-serif;
        }
        .testimonial-card {
            background: white;
            border-radius: 24px;
            padding: 20px 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            margin-bottom: 10px;
        }

        .quote-icon {
            color: #5b8ee6;
            left: 0;
            font-size: 80px;
            font-weight: bold;
            line-height: 1;
            margin-bottom: 20px;
            font-family: Georgia, serif;
        }
        .avatar{
            position: absolute;
            top: 20px;
            right: 20px;
            background: #ff5757;
            color: white;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .avatar-icon {
            width: 30px;
            height: 30px;
            background: white;
            border-radius: 50%;
            position: relative;
        }

        .avatar-icon::before {
            content: '';
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            background: #ff5757;
            border-radius: 50%;
        }

        .avatar-icon::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 12px;
            background: #ff5757;
            border-radius: 18px 18px 0 0;
        }

        .testimonial-text {
            font-size: 30px;
            line-height: 1.2;
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 10px;
            margin-top: -10px;
        }

        .company-name {
            font-size: 20px;
            color: #2c3e50;
            font-weight: 500;
        }

        .back-button{
            background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 50%, #E53935 100%);
            color: white;
            font-size: 17px;
            font-weight: bold;
            padding: 18px 40px;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            margin-top: 30px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            animation: slideInRight 0.8s ease-out 0.4s both;
            position: relative;
            overflow: hidden;
            
            /* Nuevas propiedades para enlaces */
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .main-title {
            font-size: 58px;
            font-weight: bold;
            color: white;
            line-height: 1.1;
            margin-bottom: 50px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            animation: slideInLeft 0.8s ease-out 0.2s both;
        }
        .cta-button {
            background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 50%, #E53935 100%);
            color: white;
            font-size: 18px;
            font-weight: bold;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            margin-bottom: 60px;
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            animation: slideInRight 0.8s ease-out 0.4s both;
            position: relative;
            overflow: hidden;
            
            /* Nuevas propiedades para enlaces */
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        /* Mantén el resto de tu CSS igual */
        .cta-button::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.5s;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(255, 107, 107, 0.5);
            color: white; /* Asegura que el color se mantenga en hover */
        }
        .cta-button:hover::before {
            left: 100%;
        }
        .cta-button:active {
            transform: translateY(-1px);
        }

        .features-container {
            animation: slideInUp 0.8s ease-out 0.6s both;
            display: flex;
            justify-content: center;
            position: relative;
            margin-left: -100px;
        }
        .phone-mockup{
          background: rgba(255, 255, 255, 0.95);
            border-radius: 25px;
            padding: 35px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            transform: perspective(2000px) rotateX(35deg) rotateY(-8deg);
            transition: transform 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            height: 100%;
        }

        .features-grid::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 10px;
            background: linear-gradient(90deg, #9cabc8, #9cabc8, #9cabc8);
            transition: opacity 0.3s ease;
        }

        .feature-card {
            background: white;
            border-radius: 18px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #9cabc8, #9cabc8, #9cabc8);
            transition: opacity 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 15px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #F8F9FA, #E9ECEF);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .search-icon {
            color: #007BFF;
        }

        .settings-icon {
            color: #6C63FF;
        }

        .csv-icon {
            background: #007BFF;
            color: white;
            font-weight: bold;
            font-size: 14px;
            border-radius: 8px;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .upgrade-icon {
            background: #FF6B6B;
            color: white;
            border-radius: 50%;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .upgrade-icon::after {
            content: '+';
            position: absolute;
            top: -5px;
            right: -5px;
            width: 20px;
            height: 20px;
            background: #FF3B3B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            box-shadow: 0 2px 8px rgba(255, 59, 59, 0.4);
        }

        .feature-title {
            font-size: 14px;
            font-weight: bold;
            color: #2C3E50;
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .feature-subtitle {
            font-size: 12px;
            color: #7F8C8D;
            line-height: 1.2;
        }

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

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

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

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

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

        /* Responsive */
        @media (max-width: 768px) {
            .testimonial-card {
                padding: 40px 30px;
                border-radius: 20px;
            }

            .avatar {
                top: 30px;
                right: 30px;
                width: 50px;
                height: 50px;
            }

            .quote-icon {
                font-size: 60px;
            }

            .testimonial-text {
                font-size: 28px;
                margin-right: 20px;
            }

            .company-name {
                font-size: 22px;
            }

            .main-title {
                font-size: 48px;
            }
            .features-container{
                margin-left: 0;
            }
            .phone-mockup {
                width: 350px;
                height: 230px;
                padding: 25px;
                transform: perspective(1000px) rotateX(5deg) rotateY(-3deg);
            }
            .features-grid {
                gap: 15px;
            }
            
            .cta-button {
                font-size: 16px;
                padding: 10px 15px;
            }
            .feature-card {
                padding: 15px 8px;
            }
            
            .feature-title {
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .testimonial-card {
                padding: 30px 25px;
            }

            .testimonial-text {
                font-size: 24px;
            }

            .company-name {
                font-size: 20px;
            }

            .main-title {
                font-size: 36px;
            }
            .features-container{
                margin-left: 0;
            }
            .phone-mockup {
                width: 300px;
                height: 180px;
                padding: 20px;
                transform: perspective(1000px) rotateX(3deg) rotateY(-2deg);
            }
            .feature-text {
                font-size: 5px;
            }
            .features-grid {
                gap: 10px;
            }
            .feature-card {
                padding: 10px 0px;
            }
        }
   