  /* --- ESTILOS GERAIS E VARIÁVEIS DO SISTEMA --- */
        :root {
            --primary: #10b981; /* Verde Esmeralda */
            --primary-hover: #059669;
            --secondary: #0f172a; /* Azul Escuro Slate */
            --dark-gray: #1e293b;
            --light-gray: #f8fafc;
            --text-main: #334155;
            --white: #ffffff;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--light-gray);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button, input, select, textarea {
            font-family: inherit;
        }

        /* --- CONTAINER GLOBAL --- */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* --- LOGO SVG INTEGRADO --- */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* --- HEADER COM EFEITO BLUR (GLASSMORPHISM) --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(241, 245, 249, 0.8);
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-md);
            padding: 12px 0;
        }

        .header-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-link {
            font-weight: 500;
            color: var(--secondary);
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .cta-btn {
            background-color: var(--primary);
            color: var(--white);
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
        }

        .cta-btn:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }

        /* Menu Hamburguer Mobile */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--secondary);
        }

        /* --- HERO SECTION --- */
        .hero {
            padding: 160px 0 80px 0;
            background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 48px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: rgba(16, 185, 129, 0.1);
            color: var(--primary-hover);
            padding: 6px 16px;
            border-radius: 99px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 24px;
        }

        .hero-badge span {
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: var(--primary);
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.15;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .hero-title span {
            color: var(--primary);
        }

        .hero-desc {
            font-size: 1.1rem;
            color: var(--text-main);
            margin-bottom: 36px;
            max-width: 540px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
        }

        .btn-secondary {
            background-color: var(--white);
            color: var(--secondary);
            border: 2px solid #e2e8f0;
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
            background-color: rgba(16, 185, 129, 0.02);
        }

        /* --- SIMULADOR RÁPIDO NO HERO --- */
        .card-simulator {
            background-color: var(--white);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(226, 232, 240, 0.8);
        }

        .card-simulator h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 8px;
        }

        .card-simulator p {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 6px;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #cbd5e1;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            transition: var(--transition);
            background-color: #f8fafc;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background-color: var(--white);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
        }

        .sim-btn {
            width: 100%;
            padding: 14px;
            background-color: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 8px;
        }

        .sim-btn:hover {
            background-color: #0f172a;
            transform: translateY(-1px);
        }

        .sim-result {
            margin-top: 20px;
            padding: 16px;
            background-color: rgba(16, 185, 129, 0.08);
            border: 1px dashed var(--primary);
            border-radius: var(--radius-sm);
            display: none;
        }

        /* --- SEÇÃO FROTA MULTIMODAL --- */
        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 60px auto;
        }

        .section-tag {
            color: var(--primary);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            display: block;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 1.05rem;
            color: var(--text-main);
        }

        .fleet-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }

        .fleet-card {
            background-color: var(--white);
            border-radius: var(--radius-md);
            padding: 32px;
            border: 1px solid #e2e8f0;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .fleet-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background-color: var(--primary);
            opacity: 0;
            transition: var(--transition);
        }

        .fleet-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(16, 185, 129, 0.2);
        }

        .fleet-card:hover::before {
            opacity: 1;
        }

        .fleet-icon {
            width: 56px;
            height: 56px;
            background-color: rgba(16, 185, 129, 0.08);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 24px;
            transition: var(--transition);
        }

        .fleet-card:hover .fleet-icon {
            background-color: var(--primary);
            color: var(--white);
        }

        .fleet-card h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 12px;
        }

        .fleet-card p {
            font-size: 0.95rem;
            color: var(--text-main);
            margin-bottom: 20px;
        }

        .fleet-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid #f1f5f9;
            font-size: 0.85rem;
            font-weight: 600;
            color: #64748b;
        }

        /* --- MARKETING PARA MOTOBOYS (CAMPANHA/DIFERENCIAIS) --- */
        .marketing-courier {
            background-color: var(--secondary);
            color: var(--white);
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            margin: 0 24px;
            padding: 80px 48px;
        }

        .courier-bg-decorator {
            position: absolute;
            top: -20%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
            pointer-events: none;
        }

        .courier-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .courier-text h3 {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .courier-text h3 span {
            color: var(--primary);
        }

        .courier-text p {
            font-size: 1.1rem;
            color: #94a3b8;
            margin-bottom: 32px;
        }

        .comparison-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .compare-row {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 20px;
            transition: var(--transition);
        }

        .compare-row:hover {
            background-color: rgba(255, 255, 255, 0.06);
            border-color: rgba(16, 185, 129, 0.3);
        }

        .compare-icon-check {
            color: var(--primary);
            flex-shrink: 0;
            background-color: rgba(16, 185, 129, 0.15);
            padding: 4px;
            border-radius: 50%;
        }

        .compare-body h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .compare-body p {
            font-size: 0.9rem;
            color: #cbd5e1;
            margin: 0;
        }

        /* --- PLANOS PARA ENTREGADORES --- */
        .plans-section {
            background-color: var(--white);
            border-top: 1px solid #f1f5f9;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            align-items: stretch;
            margin-top: 48px;
        }

        .price-card {
            background-color: var(--white);
            border: 2px solid #e2e8f0;
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
            position: relative;
        }

        .price-card.featured {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
            transform: scale(1.03);
        }

        .badge-popular {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary);
            color: var(--white);
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 99px;
            letter-spacing: 1px;
        }

        .price-name {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .price-value {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 24px;
            display: flex;
            align-items: baseline;
        }

        .price-value span {
            font-size: 1rem;
            font-weight: 500;
            color: #64748b;
            margin-left: 4px;
        }

        .price-value small {
            font-size: 1.2rem;
            font-weight: 600;
            margin-right: 4px;
        }

        .price-benefits {
            list-style: none;
            margin-bottom: 36px;
            flex-grow: 1;
        }

        .price-benefits li {
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .price-benefits li svg {
            color: var(--primary);
            flex-shrink: 0;
        }

        .price-btn {
            width: 100%;
            padding: 14px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .price-btn.primary {
            background-color: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
        }

        .price-btn.primary:hover {
            background-color: var(--primary-hover);
        }

        .price-btn.outline {
            background-color: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }

        .price-btn.outline:hover {
            background-color: var(--secondary);
            color: var(--white);
        }

        /* --- CONTATO E CADASTRO INTEGRADO --- */
        .contact-grid {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 48px;
            background-color: var(--white);
            border-radius: var(--radius-lg);
            padding: 48px;
            box-shadow: var(--shadow-md);
            border: 1px solid #e2e8f0;
        }

        .contact-info h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 16px;
        }

        .contact-info p {
            color: var(--text-main);
            margin-bottom: 32px;
        }

        .info-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .info-icon {
            width: 44px;
            height: 44px;
            background-color: rgba(16, 185, 129, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

        .info-content h5 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--secondary);
        }

        .info-content p {
            font-size: 0.9rem;
            color: var(--text-main);
            margin: 0;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        /* --- RODAPÉ --- */
        footer {
            background-color: var(--secondary);
            color: #cbd5e1;
            padding: 80px 0 40px 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding-bottom: 48px;
            margin-bottom: 40px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-desc {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .footer-title {
            color: var(--white);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-link {
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-link:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        .footer-newsletter p {
            font-size: 0.9rem;
            margin-bottom: 16px;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
        }

        .newsletter-form input {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-radius: var(--radius-sm);
            padding: 10px 14px;
            font-size: 0.9rem;
            flex-grow: 1;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .newsletter-btn {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            padding: 10px 16px;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-btn:hover {
            background-color: var(--primary-hover);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        /* --- ANIMAÇÕES --- */
        @keyframes pulse {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
            }
            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
            }
        }

        /* --- RESPONSIVIDADE (MOBILE & TABLET) --- */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 56px;
                text-align: center;
            }

            .hero-title {
                font-size: 2.75rem;
            }

            .hero-desc {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                justify-content: center;
            }

            .courier-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

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

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

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--white);
                flex-direction: column;
                padding: 48px 24px;
                gap: 24px;
                align-items: stretch;
                transition: 0.4s ease-in-out;
                box-shadow: var(--shadow-lg);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-link {
                font-size: 1.0rem;
                text-align: center;
                padding: 12px 0;
            }

            .nav-links .cta-btn {
                text-align: center;
                margin-top: 12px;
            }

            .hero {
                padding-top: 120px;
            }

            .hero-title {
                font-size: 2.25rem;
            }

            .marketing-courier {
                margin: 0 12px;
                padding: 48px 24px;
            }

            .courier-text h3 {
                font-size: 1.8rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }