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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
        }

        .gradient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at 20% 50%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.15) 0%, transparent 50%);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff4500, #007bff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            cursor: pointer;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: #d0d0d0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .nav-link:hover {
            color: #ff4500;
        }

        .nav-btn {
            padding: 0.75rem 1.8rem;
            background: linear-gradient(135deg, #ff4500, #ff6b35);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 5% 4rem;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .gradient-text {
            background: linear-gradient(135deg, #ff4500, #007bff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.3rem;
            color: #a0a0a0;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-primary {
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, #ff4500, #ff6b35);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 10px 40px rgba(255, 69, 0, 0.3);
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(255, 69, 0, 0.5);
        }

        .features {
            padding: 6rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            color: #a0a0a0;
            font-size: 1.1rem;
            margin-bottom: 4rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 69, 0, 0.5);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .feature-card p {
            color: #a0a0a0;
            line-height: 1.6;
        }

        .automation {
            padding: 6rem 5%;
            background: linear-gradient(135deg, rgba(255, 69, 0, 0.05), rgba(0, 123, 255, 0.05));
            margin: 4rem 0;
        }

        .automation-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .automation-text h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .automation-text p {
            color: #a0a0a0;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .automation-features {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .auto-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .auto-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff4500, #ff6b35);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .segments {
            padding: 6rem 5%;
            text-align: center;
        }

        .segments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 4rem auto 0;
        }

        .segment-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .segment-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
        }

        .segment-card .icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .segment-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
        }

        /* NOVA SEÇÃO DE PLANOS */
        .plans-section {
            padding: 6rem 5%;
            text-align: center;
            background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(255, 69, 0, 0.05));
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 4rem auto 0;
        }

        .plan-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .plan-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
        }

        .plan-card.featured {
            border: 2px solid #ff4500;
            background: rgba(255, 69, 0, 0.05);
            transform: scale(1.05);
        }

        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .plan-badge {
            font-size: 0.9rem;
            font-weight: 700;
            color: #a0a0a0;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .coming-soon-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            padding: 0.4rem 1.2rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .price {
            margin: 1rem 0 1.5rem;
            display: flex;
            align-items: baseline;
            justify-content: center;
        }

        .currency {
            font-size: 1.5rem;
            font-weight: 600;
            margin-right: 0.3rem;
        }

        .amount {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff4500, #007bff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .period {
            font-size: 1.2rem;
            color: #a0a0a0;
            margin-left: 0.3rem;
        }

        .plan-description {
            color: #a0a0a0;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .plan-features {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .plan-features li {
            padding: 0.75rem 0;
            color: #d0d0d0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.95rem;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-btn {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: transparent;
            color: white;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .plan-btn:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .plan-btn.primary {
            background: linear-gradient(135deg, #ff4500, #ff6b35);
            border: none;
        }

        .plan-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
        }

        .plan-btn.coming-soon {
            background: linear-gradient(135deg, #007bff, #0056b3);
            border: none;
            cursor: not-allowed;
            opacity: 0.7;
        }

        .plan-btn.coming-soon:hover {
            transform: none;
            box-shadow: none;
        }

        .conecta-section {
            padding: 6rem 5%;
            background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(255, 69, 0, 0.05));
            position: relative;
            overflow: hidden;
        }

        .conecta-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .conecta-badge {
            display: inline-block;
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            padding: 0.4rem 1.2rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .conecta-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .conecta-info h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .conecta-info > p {
            color: #a0a0a0;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .conecta-benefits {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .benefit-item {
            display: flex;
            gap: 1.5rem;
            align-items: start;
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 123, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .benefit-item strong {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .benefit-item p {
            color: #a0a0a0;
            line-height: 1.6;
        }

        .conecta-pricing {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .price-label {
            color: #a0a0a0;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .conecta-price-tag .price-value {
            display: flex;
            align-items: baseline;
            justify-content: center;
        }

        .conecta-price-tag .currency {
            font-size: 1.2rem;
            font-weight: 600;
            margin-right: 0.3rem;
        }

        .conecta-price-tag .amount {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #007bff, #0056b3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .conecta-price-tag .period {
            font-size: 1rem;
            color: #a0a0a0;
            margin-left: 0.3rem;
        }

        .conecta-features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .conecta-feature {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .conecta-feature:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(0, 123, 255, 0.5);
        }

        .conecta-feature .feature-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .conecta-feature h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .conecta-feature p {
            color: #a0a0a0;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .cta-section {
            padding: 8rem 5%;
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(0, 123, 255, 0.1));
        }

        .cta-section h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: #a0a0a0;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        footer {
            padding: 2rem 5%;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #666;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .automation-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            nav {
                padding: 1rem 5%;
            }

            .logo {
                font-size: 1.5rem;
            }

            .nav-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding: 1rem 5%;
                gap: 1rem;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .plans-grid {
                grid-template-columns: 1fr;
            }

            .plan-card.featured {
                transform: none;
            }

            .plan-card.featured:hover {
                transform: translateY(-5px);
            }
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }