        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
            color: #1e293b;
            overflow-x: hidden;
        }

        :root {
            --primary: #0066cc;
            --primary-dark: #004999;
            --primary-light: #3b82f6;
            --secondary: #00a3ff;
            --accent: #00d4ff;
            --orange: #f97316;
            --green: #10b981;
            --purple: #8b5cf6;
            --gray-light: #f8fafc;
            --gray: #e2e8f0;
            --gray-dark: #64748b;
            --dark: #0f172a;
            --white: #ffffff;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 0.8rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 800;
            text-decoration: none;
        }

        .logo img {
            width: 140px;
            filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(2000%) hue-rotate(200deg);
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-menu a {
            text-decoration: none;
            color: #1e293b;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        .btn-back {
            background: var(--primary);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-back:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #1e293b;
            z-index: 1002;
            background: none;
            border: none;
        }

        /* Hero Section con imagen a la derecha */
        .hero-contpaqi {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            padding: 8rem 0 5rem;
            position: relative;
            overflow: hidden;
        }

        .hero-contpaqi::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(0,102,204,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(0,163,255,0.1)"/><circle cx="50" cy="80" r="4" fill="rgba(0,102,204,0.1)"/></svg>') repeat;
            opacity: 0.3;
            pointer-events: none;
        }

        .hero-contpaqi .container {
            position: relative;
            z-index: 2;
        }

        /* Grid para texto e imagen */
        .hero-grid-contpaqi {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content-contpaqi {
            text-align: left;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(0, 102, 204, 0.2);
            color: var(--primary-light);
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .hero-content-contpaqi h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
        }

        .hero-content-contpaqi h1 span {
            background: linear-gradient(135deg, var(--primary-light), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content-contpaqi p {
            font-size: 1.2rem;
            color: #cbd5e1;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Estilos para la imagen */
        .hero-image-contpaqi {
            text-align: center;
            animation: floatContpaqi 4s ease-in-out infinite;
        }

        .hero-image-contpaqi img {
            max-width: 100%;
            width: 100%;
            max-height: 400px;
            object-fit: contain;
            filter: drop-shadow(0 10px 25px rgba(0, 102, 204, 0.3));
            transition: all 0.3s ease;
        }

        .hero-image-contpaqi img:hover {
            transform: scale(1.02);
            filter: drop-shadow(0 15px 35px rgba(0, 102, 204, 0.5));
        }

        @keyframes floatContpaqi {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* Section Styles */
        section {
            padding: 5rem 0;
        }
       
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray-dark);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        /* Products Grid */
        .products-grid-full {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .product-card-full {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--gray);
        }

        .product-card-full:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 40px rgba(0, 102, 204, 0.15);
        }

        .product-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            padding: 2rem;
            text-align: center;
            position: relative;
        }

        .product-header i {
            font-size: 3.5rem;
            color: white;
        }

        .product-header .product-tag {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.7rem;
            color: white;
        }

        .product-body {
            padding: 1.5rem;
        }

        .product-body h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .product-body p {
            color: var(--gray-dark);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .product-features {
            list-style: none;
            margin: 1rem 0;
        }

        .product-features li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--gray-dark);
        }

        .product-features li i {
            color: var(--green);
            font-size: 0.8rem;
        }

        .btn-product {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            margin-top: 1rem;
            transition: all 0.3s;
            text-align: center;
            width: 100%;
        }

        .btn-product:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* Benefits Section */
        .benefits {
            background: linear-gradient(135deg, #f8fafc, #ffffff);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .benefit-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 16px;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .benefit-icon i {
            font-size: 2rem;
            color: white;
        }

        .benefit-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .benefit-card p {
            color: var(--gray-dark);
            font-size: 0.9rem;
        }

        /* Why Choose Us */
        .why-us {
            background: linear-gradient(135deg, var(--dark), #1e293b);
            color: white;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .why-us-content h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .why-us-list {
            list-style: none;
            margin-top: 2rem;
        }

        .why-us-list li {
            padding: 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .why-us-list li i {
            width: 30px;
            height: 30px;
            background: rgba(59, 130, 246, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-light);
        }

        .why-us-image img {
            width: 100%;
            border-radius: 20px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            text-align: center;
            padding: 4rem 0;
        }

        .cta-section h2 {
            color: white;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        .btn-cta {
            background: white;
            color: var(--primary);
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-col h4 {
            margin-bottom: 1rem;
        }

        .footer-col p,
        .footer-col a {
            color: var(--gray);
            text-decoration: none;
            line-height: 1.8;
            font-size: 0.9rem;
        }

        .footer-col a:hover {
            color: var(--primary-light);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.8rem;
            color: var(--gray);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid-contpaqi {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            
            .hero-content-contpaqi {
                text-align: center;
            }
            
            .hero-content-contpaqi h1 {
                font-size: 2.5rem;
            }
            
            .hero-content-contpaqi p {
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .why-us-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .why-us-list li {
                justify-content: center;
            }
            
            .hero-image-contpaqi img {
                max-height: 300px;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 6rem 2rem;
                gap: 1.5rem;
                transition: right 0.3s;
                z-index: 1001;
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu a {
                color: var(--dark) !important;
            }
            
            .hero-content-contpaqi h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .products-grid-full {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 0 1.5rem;
            }
            
            .hero-image-contpaqi img {
                max-height: 250px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content-contpaqi h1 {
                font-size: 1.8rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .hero-buttons a {
                width: 100%;
                justify-content: center;
            }
        }