        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #ffffff;
        }

        /* Header */
        header {
            background: #30302c;
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
                filter: brightness(0) invert(1);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
            font-weight: 500;
        }

        nav a:hover {
            opacity: 0.8;
        }

        /* Platform Hero Section */
        .platform-hero {
            background: linear-gradient(135deg, #30302c 0%, #5c5c56 100%);
            color: white;
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        #particles-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .platform-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 158, 5, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .platform-hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
        }

        .platform-layout {
            display: grid;
            grid-template-columns: 1fr 600px;
            gap: 3rem;
            align-items: stretch;
        }

        .platform-left {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .platform-header {
            text-align: center;
            margin-bottom: 4rem;
            order: 1;
        }

        .platform-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .platform-header p {
            font-size: 1.2rem;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.4;
        }

        .platform-layout {
            display: grid;
            grid-template-columns: 1fr 500px;
            gap: 3rem;
            align-items: start;
            order: 2;
        }

        /* Platform Features Grid */
        .features-grid {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
            flex: 1;
            justify-content: space-between;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #ee731b, #f5c542);
            transform: scaleY(0);
            transition: transform 0.3s;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .feature-card:hover::before {
            transform: scaleY(1);
        }

        .feature-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
        }

        .feature-content {
            flex: 1;
        }

        .feature-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #fff;
        }

        .feature-card p {
            font-size: 0.85rem;
            opacity: 0.9;
            line-height: 1.5;
            margin-bottom: 0.8rem;
        }

        .feature-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .highlight-tag {
            background: rgba(159, 211, 86, 0.2);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.75rem;
            border: 1px solid rgba(159, 211, 86, 0.3);
        }

        /* Stats Section */
        .stats-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            order: 3;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ee731b;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
                padding: 10px;
    border: 2px solid;
    border-radius: 10px;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Platform Hero Form */
        .platform-hero-form {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            position: sticky;
            top: 100px;
            height: fit-content;
            display: flex;
            flex-direction: column;
        }

        .platform-hero-form h2 {
            font-size: 1.6rem;
            color: #ee731b;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .platform-hero-form .subtitle {
            color: #666;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }

        .cta-section {
            text-align: center;
            margin-top: 3rem;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: #ee731b;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            background: #ee731b;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Services Section */
        .services-section {
            padding: 5rem 2rem;
            background: #f8f9fa;
        }

        .services-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-title {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .services-title h2 {
            font-size: 2rem;
            color: #ee731b;
            margin-bottom: 0.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .service-item {
            text-align: center;
            padding: 2rem 1.5rem;
            background: white;
            border-radius: 10px;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-color: #ee731b;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #f1f8ff, #a9ebc3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }

        .service-item h3 {
            font-size: 1.1rem;
            color: #ee731b;
            margin-bottom: 0.8rem;
            font-weight: 600;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-item p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact-section {
            background: #ee731b;
            padding: 5rem 2rem;
        }

        .contact-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .doubts-box {
            color: white;
            text-align: center;
            width: 100%;
        }

        .doubts-box h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .doubts-box p {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            line-height: 1.8;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-buttons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.2rem;
            padding: 2.5rem 2rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 400;
            text-align: center;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .contact-btn::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #ee731b;
            transform: scaleX(0);
            transition: transform 0.3s;
            border-radius: 0 0 15px 15px;
        }

        .contact-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .contact-btn:hover::before {
            transform: scaleX(1);
        }

        .contact-btn span {
            font-size: 3rem;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .contact-btn:hover span {
            background: rgba(159, 211, 86, 0.3);
            transform: scale(1.1);
        }

        .contact-btn-info {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .contact-btn-label {
            font-size: 0.95rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .contact-btn-value {
            font-size: 1.15rem;
            font-weight: 500;
        }

        /* Form Box */
        .form-box {
            background: white;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .form-box h2 {
            font-size: 1.8rem;
            color: #ee731b;
            margin-bottom: 0.5rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .form-box .subtitle {
            color: #666;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem;
            border: none;
            border-bottom: 2px solid #e0e0e0;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
            background: transparent;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-bottom-color: #ee731b;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            padding: 1rem;
        }

        .form-group textarea:focus {
            border-color: #ee731b;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-actions {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .btn-primary {
            flex: 1;
            background: #ee731b;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background: #145233;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .btn-secondary {
            flex: 1;
            background: transparent;
            color: #ee731b;
            padding: 1rem 2rem;
            border: 2px solid #ee731b;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: #f0f0f0;
        }

        .btn-whatsapp {
            width: 100%;
            background: #25D366;
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }

        .btn-whatsapp:hover {
            background: #20BD5C;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        /* Footer */
        footer {
            background: #30302c;
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Responsive */
        @media (min-width: 1800px) {
            .contact-content {
                max-width: 1600px;
            }
            
            .contact-buttons {
                max-width: 1400px;
            }
        }

        @media (max-width: 1200px) {
            .platform-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .platform-left {
                order: 1;
            }

            .platform-hero-form {
                position: relative;
                top: 0;
                order: 2;
            }

            .stats-section {
                grid-template-columns: repeat(2, 1fr);
                order: 3;
            }
        }

        @media (max-width: 968px) {
            .platform-header h1 {
                font-size: 2rem;
            }

            .platform-header p {
                font-size: 1.1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
            }

            .contact-buttons {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-btn {
                padding: 2rem 1.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .form-box {
                padding: 2rem 1.5rem;
            }

            .form-actions {
                flex-direction: column;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
            }

            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .doubts-box h2 {
                font-size: 2rem;
            }

            .stats-section {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
        }

        @media (max-width: 640px) {
            .platform-header h1 {
                font-size: 1.8rem;
            }

            .services-title h2 {
                font-size: 1.5rem;
            }

            .form-box h2 {
                font-size: 1.5rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .contact-btn span {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }

            .contact-btn-value {
                font-size: 0.95rem;
            }

            .doubts-box h2 {
                font-size: 1.8rem;
            }

            .doubts-box p {
                font-size: 1rem;
            }
        }
        
        
        
        
        .features-container{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:18px;
}

.feature-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:16px;
    padding:20px;
    display:flex;
    align-items:center;
    min-height:100px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,0.14);
    border-color:#ee731b;
}


.feature-icon{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:50%;
    background:#ee731b;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:18px;
}

.feature-icon i{
    font-size:24px;
    color:#fff;
}


.feature-content h3{
    font-size:17px;
    margin:0 0 8px;
    color:#fff;
}

.feature-content p{
    font-size:13px;
    color:#ddd;
    margin:0;
}

@media(max-width:768px){

.features-container{
    grid-template-columns:1fr;
}

.feature-card{
    padding:15px;
}

}

.produtos-lista {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.stat-item {
    padding: 8px 10px;
    height: 36px;
    border-radius: 8px;
}

.stat-label {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#mensagemRetorno {
    margin-top: 20px;
    text-align: center;
    font-size: 15px;
}

#mensagemRetorno .alert {
    padding: 14px 20px;
    border-radius: 10px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    font-weight: 500;
    animation: fadeIn .3s ease-in-out;
}

#mensagemRetorno .success {
    background: #e8f7ee;
    color: #198754;
    border: 1px solid #b7e4c7;
}

#mensagemRetorno .error {
    background: #fdeaea;
    color: #dc3545;
    border: 1px solid #f5b5bb;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}