 :root {
            --primary-color: #7c3aed;
            --primary-light: #8b5cf6;
            --primary-dark: #5b21b6;
            --primary-gradient: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
            --secondary-color: #10b981;
            --secondary-light: #34d399;
            --secondary-dark: #059669;
            --accent-color: #f59e0b;
            --gray-light: #f8fafc;
            --gray-medium: #e2e8f0;
            --gray-dark: #64748b;
            --white: #ffffff;
            --black: #0f172a;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            text-decoration: none !important;
        }

        body {
            background-color: var(--white);
            color: var(--black);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow-sm);
            position: fixed;
            width: 100%;
            height: 80px;
            max-height: 80px;
            align-content: center;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.95);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
        }

        .logo-icon {
            height: 35px;
        }

        .logo-name {
            height: 25px;
        }

        .nav-menu {
            display: flex;
            gap: 19px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--black);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
            padding: 0.5rem 0;
            display: inline-block;
            font-size: 0.95rem;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

        .nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .wave-border {
            position: absolute;
            width: 100%;
            height: 78px;
            z-index: 7;
            overflow: hidden;
            background: #00000000;
            margin-top: -78px;
        }

        .wave-border svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .f-b {
            font-weight:600 !important;
        }

        .btn {
            padding: 0.625rem 1.5rem;
            border-radius: 10px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            font-size: 0.95rem;
            display: inline-block;
            text-decoration: none;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary-gradient);
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-light);
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background-color: rgba(124, 58, 237, 0.1);
            transform: translateY(-2px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--black);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .recerve-font {
            font-family: "Roboto", sans-serif;
            font-size: 21px;
            letter-spacing: 1px;
            color: #53475e;
            font-weight: 800;
            font-style: italic;
        }

        .cl-w {
            color: white !important;
        }

        /* Hero Section Compacta */
        .hero {
            margin-top: 80px;
            padding: 3rem 0 4rem;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(91, 33, 182, 0.02) 100%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            z-index: 1;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            padding-right: 1rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #ff6b6b, #ff8e53);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .hero-badge i {
            font-size: 1rem;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
            font-weight: 800;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.125rem;
            color: var(--gray-dark);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
        }

        .stat {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--gray-dark);
            margin-top: 0.25rem;
        }

        .hero-visual {
            position: relative;
        }

        .hero-image {
            width: 100%;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(124, 58, 237, 0.1);
        }

        .floating-element {
            position: absolute;
            background: white;
            border-radius: 12px;
            padding: 1rem;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 3;
            animation: float 3s ease-in-out infinite;
        }

        .floating-element:nth-child(2) {
            top: -15px;
            right: -15px;
            animation-delay: 0.5s;
        }

        .floating-element:nth-child(3) {
            bottom: -15px;
            left: -15px;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }

        /* Pricing Section */
        .pricing {
            padding: 3rem 0;
            background: var(--white);
            max-width: 900px;
            margin: auto;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .pricing-title {
            font-size: 2.25rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .pricing-subtitle {
            color: var(--gray-dark);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.125rem;
        }

        .plans-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .plan-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            border: 2px solid var(--gray-medium);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .plan-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .plan-card.popular {
            border-color: var(--primary-color);
            box-shadow: 0 20px 25px -5px rgba(124, 58, 237, 0.1), 0 10px 10px -5px rgba(124, 58, 237, 0.04);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-gradient);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .plan-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .plan-name {
            font-size: 1.5rem;
            color: var(--black);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .plan-price {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .plan-period {
            color: var(--gray-dark);
            font-size: 0.875rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .plan-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--gray-light);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .feature-check {
            color: var(--secondary-color);
            font-size: 1rem;
        }

        .plan-button {
            margin-top: auto;
        }

        /* Features Section */
        .features {
            padding: 3rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.25rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-subtitle {
            color: var(--gray-dark);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.125rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid var(--gray-medium);
            display: flex;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            align-items: center;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .feature-title {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--black);
            font-weight: 600;
        }

        .feature-desc {
            color: var(--gray-dark);
            line-height: 1.7;
        }

        /* How It Works - Rediseñado */
        .how-it-works {
            padding: 3rem 0;
            background: var(--white);
        }

        .steps-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            position: relative;
        }

        .step-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            position: relative;
            border: 1px solid var(--gray-medium);
            transition: all 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-color);
        }

        .step-number {
            width: 50px;
            height: 50px;
            margin: 0 auto 1.5rem;
            background: var(--primary-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .step-title {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
            font-weight: 600;
        }

        .step-desc {
            color: var(--gray-dark);
            line-height: 1.6;
        }

        svg.logo-recervera path {
            fill: #7510ff !important;
        }


        /* Testimonials Section - COMPLETAMENTE REHECHA */
        .testimonials {
            padding: 3rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .testimonials-title {
            font-size: 2.25rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .testimonials-subtitle {
            color: var(--gray-dark);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.125rem;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        /* Carrusel simplificado - SOLO VISUALIZA UNO A LA VEZ */
        .carousel-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            min-height: 400px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .carousel-slide {
            flex: 0 0 100%;
            width: 100%;
            padding: 0 10px;
            display: flex;
            justify-content: center;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-medium);
            max-width: 800px;
            width: 100%;
            margin: 0 auto;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-text {
            font-size: 1.25rem;
            line-height: 1.7;
            color: var(--gray-dark);
            margin-bottom: 2rem;
            position: relative;
            padding-left: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .author-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0.25rem;
            font-size: 1.125rem;
        }

        .author-title {
            color: var(--gray-dark);
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }

        .testimonial-rating {
            display: flex;
            gap: 0.25rem;
        }

        .star {
            color: var(--accent-color);
            font-size: 1.125rem;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 2rem;
            margin-bottom: 0.5rem;
        }

        .carousel-dots {
            display: flex;
            gap: 0.75rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--gray-medium);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }

        .dot.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }

        .dot:hover {
            background: var(--primary-light);
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.25rem;
        }

        .carousel-btn:hover {
            background: var(--primary-gradient);
            color: white;
            transform: translateY(-2px);
        }

        .carousel-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .carousel-btn:disabled:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: none;
        }


        /* CTA Section */
        .cta {
            padding: 3rem 0;
            background: var(--primary-gradient);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 2.25rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .cta-text {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .cta-actions {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-light {
            background: var(--white);
            color: var(--primary-color);
            box-shadow: var(--shadow-md);
        }

        .btn-light:hover {
            background: var(--gray-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline-light {
            background: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 4rem 0 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .footer-logo-icon {
            height: 40px;
        }

        .footer-logo-name {
            height: 30px;
        }

        .footer-description {
            color: var(--gray-medium);
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.2s;
        }

        .social-icon:hover {
            background: var(--primary-gradient);
            transform: translateY(-2px);
        }

        .footer-column h4 {
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-link {
            color: var(--gray-medium);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray-medium);
            font-size: 0.875rem;
        }

        .trial-contain {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .trial-badge {
            background: linear-gradient(135deg, #ff6b6b, #ff8e53);
            color: white;
            padding: 6px 27px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
            z-index: 1;
            animation: pulse-day-free 2s infinite;
            margin-bottom: 26px;
            margin-top: -14px;
        }

        .anim-pulse{
            animation: pulse-day-free 2s infinite;
        }

        @keyframes pulse-day-free {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive Styles */
        @media (max-width: 1009px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 30px);
                background: var(--white);
                flex-direction: column;
                gap: 0;
                padding: 30px;
                transition: left 0.3s ease;
                z-index: 90;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                padding: 1rem 0;
                display: block;
            }

            .nav-actions {
                flex-direction: row;
                width: 100%;
                margin-top: 1rem;
                justify-content: center;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-content {
                padding-right: 0;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .floating-element {
                display: none;
            }

            .cta-actions {
                flex-direction: column;
                align-items: center;
            }

            /* Testimonios responsive */
            .testimonial-card {
                padding: 2rem;
                margin: 0 15px;
            }

            .testimonial-text {
                font-size: 1.125rem;
                padding-left: 1.5rem;
            }

        }

        @media (max-width: 768px) {
            .testimonial-author {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .author-info {
                align-items: center;
            }

            .testimonial-text {
                font-size: 1.1rem;
                padding-left: 1.25rem;
            }
        }

        @media (max-width: 640px) {
            .hero h1 {
                font-size: 1.75rem;
            }

            .section-title, .pricing-title, .testimonials-title, .cta-title {
                font-size: 1.75rem;
            }

            .plans-container {
                grid-template-columns: 1fr;
            }

            .plan-card {
                padding: 2rem;
            }

            .step-card {
                padding: 1.5rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .testimonial-text {
                font-size: 1rem;
                padding-left: 1rem;
            }

            .carousel-controls {
                gap: 1rem;
            }

            .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .stat {
                align-items: center;
            }

            .testimonial-card {
                padding: 1.25rem;
            }

            .testimonial-text {
                font-size: 0.95rem;
            }

            .author-avatar {
                width: 60px;
                height: 60px;
                font-size: 1.25rem;
            }
        }