        .bg-white { background-color: #ffffff; }
        .bg-slate-50\/60 { background-color: rgba(248, 250, 252, 0.6); }
        .bg-slate-900 { background-color: #0f172a; }
        .bg-slate-950 { background-color: #020617; }
        .bg-rose-50 { background-color: #fff1f2; }
        .bg-amber-50 { background-color: #fffbeb; }
        .bg-emerald-50 { background-color: #ecfdf5; }
        .text-slate-900 { color: #0f172a; }
        .text-slate-800 { color: #1e293b; }
        .text-slate-700 { color: #334155; }
        .text-slate-600 { color: #475569; }
        .text-slate-500 { color: #64748b; }
        .text-slate-400 { color: #94a3b8; }
        .text-slate-300 { color: #cbd5e1; }
        .text-white { color: #ffffff; }
        .text-emerald-600 { color: #059669; }
        .text-rose-600 { color: #e11d48; }
        .text-rose-500 { color: #f43f5e; }
        .text-amber-600 { color: #d97706; }
        .text-blue-300 { color: #93c5fd; }
        .text-blue-400 { color: #60a5fa; }
        .text-\[\#00b1f0\] { color: #00b1f0; }
        .border-slate-200 { border-color: #e2e8f0; }
        .border-slate-100 { border-color: #f1f5f9; }
        .border-slate-900 { border-color: #0f172a; }
        .border-slate-800 { border-color: #1e293b; }
        .border-transparent { border-color: transparent; }
        .border-emerald-600 { border-color: #059669; }
        .border-\[\#0044FF\]\/15 { border-color: rgba(0, 68, 255, 0.15); }
        .bg-\[\#0044FF\] { background-color: #0044ff; }
        .bg-\[\#0044FF\]\/5 { background-color: rgba(0, 68, 255, 0.05); }
        .bg-\[\#0044FF\]\/8 { background-color: rgba(0, 68, 255, 0.08); }
        .bg-\[\#0044FF\]\/30 { background-color: rgba(0, 68, 255, 0.3); }
        .bg-\[\#0044FF\]\/15 { background-color: rgba(0, 68, 255, 0.15); }
        .bg-emerald-500 { background-color: #10b981; }
        .bg-red-400 { background-color: #f87171; }
        .bg-yellow-400 { background-color: #facc15; }
        .bg-green-400 { background-color: #4ade80; }
        .bg-\[\#25D366\] { background-color: #25d366; }

        /* Layout & containers */
        .max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
        [id="hero-eyebrow"] .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
        .px-4 { padding-left: 1rem; padding-right: 1rem; }
        .px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
        .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
        .px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
        .px-8 { padding-left: 2rem; padding-right: 2rem; }
        .py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
        .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
        .py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
        .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
        .py-8 { padding-top: 2rem; padding-bottom: 2rem; }
        .py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
        .py-16 { padding-top: 4rem; padding-bottom: 4rem; }
        .py-20 { padding-top: 5rem; padding-bottom: 5rem; }
        .pt-16 { padding-top: 4rem; }
        .pb-20 { padding-bottom: 5rem; }
        .mt-1 { margin-top: 0.25rem; }
        .mt-2 { margin-top: 0.5rem; }
        .mt-3 { margin-top: 0.75rem; }
        .mt-4 { margin-top: 1rem; }
        .mt-5 { margin-top: 1.25rem; }
        .mt-6 { margin-top: 1.5rem; }
        .mt-7 { margin-top: 1.75rem; }
        .mt-8 { margin-top: 2rem; }
        .mt-10 { margin-top: 2.5rem; }
        .mt-14 { margin-top: 3.5rem; }
        .mt-16 { margin-top: 4rem; }
        .mb-4 { margin-bottom: 1rem; }
        .ml-1 { margin-left: 0.25rem; }
        .ml-3 { margin-left: 0.75rem; }
        .gap-1 { gap: 0.25rem; }
        .gap-1\.5 { gap: 0.375rem; }
        .gap-2 { gap: 0.5rem; }
        .gap-2\.5 { gap: 0.625rem; }
        .gap-3 { gap: 0.75rem; }
        .gap-4 { gap: 1rem; }
        .gap-5 { gap: 1.25rem; }
        .gap-6 { gap: 1.5rem; }
        .gap-8 { gap: 2rem; }
        .gap-9 { gap: 2.25rem; }
        .gap-10 { gap: 2.5rem; }
        .gap-12 { gap: 3rem; }
        .grid {
        display: block;   /* ou flex, dependendo do layout desejado */
        }

        /* A partir de um breakpoint (ex: lg = 1024px) volta a ser grid */
        @media (min-width: 1024px) {
        .grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 2.5rem; /* gap-10 */
        }
        .lg\:col-span-7 {
        grid-column: span 7 / span 7;
        }
        .lg\:col-span-5 {
        grid-column: span 5 / span 5;
        }
        }
        .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
        .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .flex { display: flex; }
        .inline-flex { display: inline-flex; }
        .flex-col { flex-direction: column; }
        .flex-row { flex-direction: row; }
        .items-start { align-items: flex-start; }
        .items-center { align-items: center; }
        .items-baseline { align-items: baseline; }
        .justify-center { justify-content: center; }
        .justify-between { justify-content: space-between; }
        .flex-1 { flex: 1 1 0%; }
        .h-2 { height: 0.5rem; }
        .h-2\.5 { height: 0.625rem; }
        .h-3 { height: 0.75rem; }
        .h-4 { height: 1rem; }
        .h-5 { height: 1.25rem; }
        .h-6 { height: 1.5rem; }
        .h-7 { height: 1.75rem; }
        .h-8 { height: 2rem; }
        .h-9 { height: 2.25rem; }
        .h-10 { height: 2.5rem; }
        .h-11 { height: 2.75rem; }
        .h-12 { height: 3rem; }
        .h-16 { height: 4rem; }
        .h-\[84px\] { height: 84px; }
        .h-\[400px\] { height: 400px; }
        .h-\[420px\] { height: 420px; }
        .w-2 { width: 0.5rem; }
        .w-2\.5 { width: 0.625rem; }
        .w-3 { width: 0.75rem; }
        .w-4 { width: 1rem; }
        .w-5 { width: 1.25rem; }
        .w-6 { width: 1.5rem; }
        .w-7 { width: 1.75rem; }
        .w-8 { width: 2rem; }
        .w-9 { width: 2.25rem; }
        .w-10 { width: 2.5rem; }
        .w-11 { width: 2.75rem; }
        .w-12 { width: 3rem; }
        .w-\[84px\] { width: 84px; }
        .w-full { width: 100%; }
        .max-w-xl { max-width: 36rem; }
        .max-w-2xl { max-width: 42rem; }
        .max-w-6xl { max-width: 72rem; }
        .max-w-md { max-width: 28rem; }
        .max-w-sm { max-width: 24rem; }
        .min-h-screen { min-height: 100vh; }
        .rounded-md { border-radius: 0.375rem; }
        .rounded-lg { border-radius: 0.5rem; }
        .rounded-xl { border-radius: 0.75rem; }
        .rounded-2xl { border-radius: 1rem; }
        .rounded-3xl { border-radius: 1.5rem; }
        .rounded-full { border-radius: 9999px; }
        .border { border-width: 1px; border-style: solid; }
        .border-t { border-top-width: 1px; border-top-style: solid; }
        .border-b { border-bottom-width: 1px; border-bottom-style: solid; }
        .border-y { border-top-width: 1px; border-bottom-width: 1px; border-top-style: solid; border-bottom-style: solid; }
        .border-dashed { border-style: dashed; }
        .shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
        .shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
        .shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
        .shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
        .blur-3xl { filter: blur(64px); }
        .opacity-70 { opacity: 0.7; }
        .pointer-events-none { pointer-events: none; }
        .sticky { position: sticky; }
        .fixed { position: fixed; }
        .absolute { position: absolute; }
        .relative { position: relative; }
        .top-0 { top: 0; }
        .-top-3 { top: -0.75rem; }
        .-top-24 { top: -6rem; }
        .-top-32 { top: -8rem; }
        .bottom-1 { bottom: 0.25rem; }
        .-bottom-32 { bottom: -8rem; }
        .left-0 { left: 0; }
        .left-1\/2 { left: 50%; }
        .-left-32 { left: -8rem; }
        .right-3 { right: 0.75rem; }
        .-right-3 { right: -0.75rem; }
        .-right-24 { right: -6rem; }
        .-right-32 { right: -8rem; }
        .z-10 { z-index: 10; }
        .z-50 { z-index: 50; }
        .-z-0 { z-index: 0; }
        .overflow-hidden { overflow: hidden; }
        .transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 200ms; }
        .duration-200 { transition-duration: 200ms; }
        .duration-300 { transition-duration: 300ms; }
        .hover\:translate-x-0\.5:hover { transform: translateX(0.125rem); }
        .hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
        .group:hover .group-hover\:translate-x-0\.5 { transform: translateX(0.125rem); }
        .font-display { font-family: inherit; }
        .tracking-tight { letter-spacing: -0.0125em; }
        .tracking-tighter { letter-spacing: -0.02em; }
        .tracking-widest { letter-spacing: 0.1em; }
        .uppercase { text-transform: uppercase; }
        .font-mono { font-family: monospace; }
        .text-left { text-align: left; }
        .text-center { text-align: center; }
        .text-\[11px\] { font-size: 11px; }
        .text-\[12px\] { font-size: 12px; }
        .text-\[12\.5px\] { font-size: 12.5px; }
        .text-\[13px\] { font-size: 13px; }
        .text-\[14px\] { font-size: 14px; }
        .text-\[14\.5px\] { font-size: 14.5px; }
        .text-\[15px\] { font-size: 15px; }
        .text-\[16px\] { font-size: 16px; }
        .text-\[17px\] { font-size: 17px; }
        .text-\[18px\] { font-size: 18px; }
        .text-\[20px\] { font-size: 20px; }
        .text-2xl { font-size: 1.5rem; line-height: 2rem; }
        .text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
        .text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
        .text-5xl { font-size: 3rem; line-height: 1; }
        .text-\[40px\] { font-size: 40px; }
        .font-semibold { font-weight: 600; }
        .font-bold { font-weight: 700; }
        .font-extrabold { font-weight: 800; }
        .leading-\[1\.02\] { line-height: 1.02; }
        .leading-\[1\.05\] { line-height: 1.05; }
        .leading-relaxed { line-height: 1.625; }
        .list-none { list-style: none; }
        .cursor-pointer { cursor: pointer; }
        .hover\:bg-slate-800:hover { background-color: #1e293b; }
        .hover\:bg-slate-100:hover { background-color: #f1f5f9; }
        .hover\:bg-slate-50:hover { background-color: #f8fafc; }
        .hover\:bg-\[\#0033CC\]:hover { background-color: #0033cc; }
        .hover\:bg-\[\#1FB257\]:hover { background-color: #1fb257; }
        .hover\:text-white:hover { color: #ffffff; }
        .hover\:text-slate-900:hover { color: #0f172a; }
        .hover\:border-slate-300:hover { border-color: #cbd5e1; }
        .hover\:border-slate-700:hover { border-color: #334155; }
        .hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
        .hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
        .hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
        .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
        .sm\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
        .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
        .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
        .sm\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
        .sm\:pt-24 { padding-top: 6rem; }
        .sm\:pb-28 { padding-bottom: 7rem; }
        .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
        .sm\:text-5xl { font-size: 3rem; line-height: 1; }
        .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
        .sm\:text-\[18px\] { font-size: 18px; }
        .text-\[40px\] { font-size: 40px; }
        @media (min-width: 640px) { .sm\:text-\[56px\] { font-size: 56px; } }
        @media (min-width: 1024px) { .lg\:text-\[62px\] { font-size: 62px; } }
        .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
        .lg\:pt-32 { padding-top: 8rem; }
        .lg\:text-5xl { font-size: 3rem; line-height: 1; }
        .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
        .hidden { display: none; }
        @media (min-width: 768px) { .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .md\:col-span-5 { grid-column: span 5 / span 5; } .md\:col-span-7 { grid-column: span 7 / span 7; } .md\:block { display: block; } .md\:-translate-y-3 { transform: translateY(-0.75rem); } }
        @media (min-width: 1024px) { .lg\:flex { display: flex; } .lg\:hidden { display: none; } .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); } .lg\:col-span-4 { grid-column: span 4 / span 4; } .lg\:col-span-5 { grid-column: span 5 / span 5; } .lg\:col-span-7 { grid-column: span 7 / span 7; } .lg\:col-span-8 { grid-column: span 8 / span 8; } }

        .animate-accordion-down { animation: accordion-down 0.2s ease-out; }
        .animate-accordion-up { animation: accordion-up 0.2s ease-out; }
        @keyframes accordion-down { from { height: 0; } to { height: var(--radix-accordion-content-height); } }
        @keyframes accordion-up { from { height: var(--radix-accordion-content-height); } to { height: 0; } }

        .dotted-bg { background-image: radial-gradient(#cbd5e1 1px, transparent 1px); background-size: 24px 24px; }
        .live-dot { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

        button, a { cursor: pointer; text-decoration: none; }
        details summary::-webkit-details-marker { display: none; }
        details > summary { list-style: none; }
        details[open] > summary svg.chevron { transform: rotate(180deg); }
        .chevron { transition: transform 0.2s ease; }