    <style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: #f8fafc;
            color: #1e293b;
        }

        .delivery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* HEADER */
        .delivery-header {
            background-color: #0f172a;
            color: white;
            padding: 15px 0;
            border-bottom: 3px solid #38bdf8;
        }

        .header-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .delivery-logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .delivery-logo {
            width: 35px;
            height: 35px;
            border-radius: 4px;
        }

        .delivery-logo-area h2 {
            font-size: 1.4rem;
            color: white;
        }

        .delivery-logo-area h2 span {
            color: #38bdf8;
        }

        .btn-back-home {
            color: #94a3b8;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .btn-back-home:hover {
            color: white;
        }

        /* HERO SECTION */
        .hero-delivery {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            color: white;
            padding: 80px 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .badge {
            display: inline-block;
            background-color: rgba(56, 189, 248, 0.2);
            color: #38bdf8;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.85rem;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .hero-text h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-text p {
            color: #94a3b8;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .hero-actions {
            display: flex;
            gap: 15px;
        }

        .btn-primary {
            background-color: #38bdf8;
            color: #0f172a;
            text-decoration: none;
            padding: 15px 25px;
            border-radius: 6px;
            font-weight: bold;
            transition: background 0.2s;
        }

        .btn-primary:hover { background-color: #0284c7; color: white; }

        .btn-secondary {
            border: 2px solid #334155;
            color: white;
            text-decoration: none;
            padding: 15px 25px;
            border-radius: 6px;
            font-weight: bold;
            transition: background 0.2s;
        }

        .btn-secondary:hover { background-color: #334155; }

        /* MOCKUP CARD */
        .mockup-card {
            background-color: white;
            color: #333;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            border-top: 5px solid #10b981;
            max-width: 400px;
            margin: 0 auto;
        }

        .mockup-header {
            font-weight: bold;
            font-size: 1.1rem;
            color: #10b981;
            margin-bottom: 15px;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 10px;
        }

        .mockup-body p {
            font-size: 0.95rem;
            margin-bottom: 8px;
            color: #475569;
        }

        .mockup-status {
            display: inline-block;
            background-color: #fef3c7;
            color: #d97706;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-top: 10px;
        }

        /* RECURSOS / FEATURES */
        .delivery-features {
            padding: 80px 0;
            text-align: center;
        }

        .section-main-title {
            font-size: 2rem;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .section-subtitle {
            color: #64748b;
            margin-bottom: 50px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            text-align: left;
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .feature-card h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #0f172a;
        }

        .feature-card p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* TABELA DE PREÇOS */
        .delivery-pricing {
            background-color: #f1f5f9;
            padding: 80px 0;
            text-align: center;
        }

        .pricing-table-container {
            overflow-x: auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-top: 30px;
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        .pricing-table th, .pricing-table td {
            padding: 18px 25px;
            border-bottom: 1px solid #e2e8f0;
        }

        .pricing-table th {
            background-color: #f8fafc;
            color: #0f172a;
            font-size: 1.1rem;
        }

        .table-price {
            font-size: 1.3rem;
            color: #10b981;
            font-weight: bold;
        }

        .highlighted-th {
            background-color: #1e293b !important;
            color: white !important;
        }

        .btn-table {
            display: inline-block;
            padding: 10px 20px;
            background-color: #e2e8f0;
            color: #334155;
            text-decoration: none;
            font-weight: bold;
            border-radius: 4px;
            transition: all 0.2s;
        }

        .btn-table:hover { background-color: #cbd5e1; }

        .btn-table-highlight {
            background-color: #38bdf8;
            color: #0f172a;
        }

        .btn-table-highlight:hover { background-color: #0284c7; color: white; }

        /* FOOTER */
        .delivery-footer {
            background-color: #0f172a;
            color: white;
            padding: 40px 0;
            text-align: center;
            font-size: 0.9rem;
        }

        /* RESPONSIVIDADE */
        @media (max-width: 768px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-text h1 { font-size: 2rem; }
            .hero-actions { justify-content: center; flex-direction: column; }
            .mockup-card { margin-top: 20px; }
        }
    </style>
