/* Estilos generales */
        :root {
            /* Paleta principal en morado corporativo */
            --primary: rgb(87 43 134 / var(--tw-bg-opacity, 1));
            --primary-dark: #45206D;

            --secondary: #10B981;
            --dark: #1F2937;
            --light: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-500: #6B7280;
            --gray-700: #374151;
            --red-500: #EF4444;
            --red-600: #DC2626;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: #fff;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Barra de contacto superior */
        .contact-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--primary);
            color: #ffffff;
            font-size: 0.875rem;
            z-index: 1001;
        }

        .contact-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.4rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-align: center;
        }

        .contact-content a {
            color: #ffffff;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid transparent;
        }

        .contact-content a:hover {
            border-color: rgba(255, 255, 255, 0.6);
        }

        /* Barra de navegación */
        .navbar {
            position: fixed;
            top: 35px; /* debajo de la barra de contacto */
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 0.5rem 0;
            height: 70px;
            display: flex;
            align-items: center;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            height: 100%;
            padding: 0 1.5rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            height: 100%;
            padding: 0;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
            height: 100%;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--gray-700);
            font-weight: 500;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            height: 100%;
            position: relative;
            padding: 0 0.5rem;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
            height: 100%;
        }

        .btn {
            padding: 0.6rem 1.25rem;
            border-radius: 0.5rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-outline {
            border: 1px solid var(--gray-200);
            color: var(--gray-700);
            background: white;
        }

        .btn-outline:hover {
            background: var(--gray-100);
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(87, 43, 134, 0.25);
        }

        /* Hero Section */
        .hero {
            padding: 10rem 0 6rem;
            background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 5%;
            width: 50%;
            height: 80%;
            transform: translateY(-50%);
            background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center/contain;
            border-radius: 1.5rem;
            background-size: contain;
            background-position: right center;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 50%;
        }

        .hero-slider {
            position: relative;
        }

        .hero-slide {
            display: none;
        }

        .hero-slide.active {
            display: block;
        }

        .hero-dots {
            display: flex;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .hero-dot {
            width: 0.6rem;
            height: 0.6rem;
            border-radius: 9999px;
            border: none;
            padding: 0;
            background: var(--gray-200);
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }

        .hero-dot.active {
            background: var(--primary);
            transform: scale(1.1);
        }

        .badge {
            display: inline-block;
            padding: 0.35rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .badge-primary {
            background: rgba(87, 43, 134, 0.08);
            color: var(--primary);
        }

        h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #111827;
        }

        .hero p {
            font-size: 1.125rem;
            color: var(--gray-500);
            margin-bottom: 2rem;
            max-width: 90%;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
        }

        .stat {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--gray-500);
        }

        /* Features Section */
        .section {
            padding: 6rem 0;
        }
        
        /* Add margin to the first section to account for fixed header */
        .hero {
            margin-top: 105px; /* Height of contact bar + navbar */
        }

        /* Espacio adicional entre el hero y la sección de características */
        #caracteristicas {
            margin-top: 2rem;
        }

        .section-title {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-title h2 {
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .section-title p {
            font-size: 1.125rem;
            color: var(--gray-500);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .feature-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
        }

        .feature-icon.blue {
            background: rgba(87, 43, 134, 0.08);
            color: var(--primary);
        }

        .feature-icon.green {
            background: rgba(16, 185, 129, 0.1);
            color: var(--secondary);
        }

        .feature-icon.purple {
            background: rgba(168, 85, 247, 0.1);
            color: #8B5CF6;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--gray-500);
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: #F9FAFB;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: #FFFFFF;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
            border: 1px solid #E5E7EB;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.75rem;
        }

        .testimonial-avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 9999px;
            background: #ECFDF5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--dark);
        }

        .testimonial-role {
            font-size: 0.875rem;
            color: var(--gray-500);
        }

        .testimonial-quote {
            font-size: 0.9375rem;
            color: var(--gray-500);
            line-height: 1.7;
            margin-top: 0.75rem;
        }

        .testimonial-rating {
            margin-top: 0.75rem;
            color: #FBBF24;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact-section {
            background-color: #FFFFFF;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2.5rem;
            align-items: flex-start;
        }

        .contact-info {
            font-size: 0.95rem;
            color: var(--gray-500);
        }

        .contact-info-list {
            margin-top: 1.5rem;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1.2rem;
        }

        .contact-info-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            background: rgba(87, 43, 134, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .contact-info-title {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.15rem;
        }

        .contact-form {
            background: #F9FAFB;
            border-radius: 1rem;
            padding: 1.75rem;
            border: 1px solid #E5E7EB;
            box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
        }

        .contact-form-row {
            display: flex;
            gap: 1rem;
        }

        .contact-form-group {
            flex: 1;
            margin-bottom: 1rem;
        }

        .contact-form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray-700);
            margin-bottom: 0.25rem;
        }

        .contact-form-group input,
        .contact-form-group textarea {
            width: 100%;
            padding: 0.65rem 0.75rem;
            border-radius: 0.5rem;
            border: 1px solid #E5E7EB;
            font-size: 0.9375rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .contact-form-group input:focus,
        .contact-form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(87, 43, 134, 0.15);
        }

        .contact-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* CTA Section */
        .cta {
            background: var(--primary);
            color: white;
            padding: 5rem 0;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjUwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ3aGl0ZSIgZmlsbC1vcGFjaXR5PSIwLjA1Ii8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
            opacity: 0.2;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .cta p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 80%;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-white {
            background: white;
            color: var(--primary);
            padding: 0.875rem 2rem;
            font-weight: 600;
            font-size: 1.125rem;
            border-radius: 0.5rem;
            transition: all 0.2s;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        /* Footer */
        .footer {
            background: #111827;
            color: #9CA3AF;
            padding: 5rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            display: block;
        }

        .footer-about p {
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-size: 0.9375rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.2s;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }

        .footer-links h3 {
            color: white;
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #9CA3AF;
            text-decoration: none;
            transition: color 0.2s;
            font-size: 0.9375rem;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-newsletter p {
            margin-bottom: 1.5rem;
            font-size: 0.9375rem;
            line-height: 1.7;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0.375rem;
            color: white;
            font-size: 0.9375rem;
        }

        .newsletter-input::placeholder {
            color: #6B7280;
        }

        .newsletter-btn {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 0.375rem;
            padding: 0 1.25rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
        }

        .newsletter-btn:hover {
            background: var(--primary-dark);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.875rem;
            color: #6B7280;
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            border: 1px solid #E5E7EB;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.02);
        }

        .popular-tag {
            position: absolute;
            top: 1rem;
            right: -2.5rem;
            background: var(--primary);
            color: white;
            padding: 0.25rem 2.5rem;
            transform: rotate(45deg);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .pricing-header {
            padding: 2rem;
            border-bottom: 1px solid #E5E7EB;
            text-align: center;
        }

        .pricing-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .price {
            margin: 1.5rem 0;
            position: relative;
        }

        .original-price {
            display: block;
            font-size: 1.25rem;
            color: var(--gray-500);
            text-decoration: line-through;
        }

        .discounted-price {
            display: block;
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }

        .discount-badge {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .validity {
            color: var(--gray-500);
            font-size: 0.875rem;
            margin: 1rem 0;
        }

        .pricing-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .pricing-features {
            padding: 1.5rem 2rem 2rem;
        }

        .pricing-features ul {
            list-style: none;
        }

        .pricing-features li {
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            color: var(--gray-700);
            font-size: 0.9375rem;
        }

        .pricing-features i {
            margin-right: 0.75rem;
            font-size: 0.75rem;
            width: 1.25rem;
            height: 1.25rem;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .pricing-features .fa-check {
            background: #D1FAE5;
            color: #10B981;
        }

        .pricing-features .fa-times {
            background: #FEE2E2;
            color: #EF4444;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero::before {
                width: 45%;
                height: 60%;
                opacity: 0.7;
                right: 2.5%;
            }

            .hero-content {
                max-width: 60%;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
        }

        /* Mobile menu styles */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }

        /* Mobile menu styles */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 105px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
            }

            .nav-links.active {
                max-height: 400px; /* Adjust based on your content */
            }

            .nav-links li {
                width: 100%;
                text-align: center;
            }

            .nav-links a {
                padding: 1rem;
                display: block;
                width: 100%;
            }

            .nav-buttons {
                margin-left: 0;
                width: 100%;
                justify-content: center;
                padding: 1rem;
                border-top: 1px solid var(--gray-200);
            }
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 105px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
            }

            .nav-links.active {
                max-height: 400px; /* Adjust based on your content */
            }

            .nav-links li {
                width: 100%;
                text-align: center;
            }

            .nav-links a {
                padding: 1rem;
                display: block;
                width: 100%;
            }

            .nav-buttons {
                margin-left: 0;
                width: 100%;
                justify-content: center;
                padding: 1rem;
                border-top: 1px solid var(--gray-200);
            }
            .nav-links {
                display: none;
            }

            .hero {
                padding: 9rem 0 4rem;
                text-align: center;
            }

            .hero::before {
                position: relative;
                width: 80%;
                height: 300px;
                margin: 2rem auto 0;
                right: auto;
                opacity: 1;
                background-position: center center;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero p {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .section {
                padding: 4rem 0;
            }

            .section-title h2 {
                font-size: 1.875rem;
            }

            .cta h2 {
                font-size: 2rem;
            }

            .cta p {
                max-width: 100%;
                font-size: 1.125rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .contact-form-row {
                flex-direction: column;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 1.25rem;
            }

            .hero {
                padding: 9rem 0 2rem;
            }

            h1 {
                font-size: 2.25rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .btn {
                width: 100%;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }

            .features-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .pricing-card.popular {
                transform: none;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-newsletter {
                grid-column: 1 / -1;
            }
        }