:root {
            color-scheme: dark;
            --bg: #06100e;
            --bg-2: #0b1714;
            --panel: rgba(255, 255, 255, 0.055);
            --panel-strong: rgba(255, 255, 255, 0.09);
            --line: rgba(255, 255, 255, 0.12);
            --line-soft: rgba(255, 255, 255, 0.075);
            --text: #f6fbf8;
            --muted: #a7b8b1;
            --muted-2: #71847d;
            --green: #21d6a1;
            --cyan: #45c7ff;
            --amber: #ffd166;
            --violet: #9a7cff;
            --danger: #ff6b6b;
            --shadow: 0 24px 90px rgba(0, 0, 0, 0.36);
            --radius: 8px;
            --max: 1180px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            min-height: 100vh;
            background:
                linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
                linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
                radial-gradient(circle at 72% 18%, rgba(33, 214, 161, 0.12), transparent 28%),
                radial-gradient(circle at 18% 4%, rgba(69, 199, 255, 0.12), transparent 24%),
                linear-gradient(180deg, #06100e 0%, #081310 45%, #050908 100%);
            background-size: 72px 72px, 72px 72px, auto, auto, auto;
            color: var(--text);
            font-family: "Inter", sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(6, 16, 14, 0.08), rgba(6, 16, 14, 0.78));
            z-index: 0;
        }

        body::after {
            content: "";
            position: fixed;
            inset: -18%;
            pointer-events: none;
            z-index: 0;
            background:
                radial-gradient(circle at 24% 22%, rgba(33, 214, 161, 0.12), transparent 28%),
                radial-gradient(circle at 82% 18%, rgba(69, 199, 255, 0.09), transparent 26%),
                radial-gradient(circle at 62% 78%, rgba(154, 124, 255, 0.08), transparent 30%);
            opacity: 0.52;
            mix-blend-mode: screen;
            animation: ambientDrift 18s ease-in-out infinite alternate;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img, svg {
            max-width: 100%;
        }

        .page-shell {
            position: relative;
            z-index: 1;
        }

        /* ===== Fundo futurista animado ===== */
        .bg-fx {
            position: fixed;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
            contain: strict;
        }
        .bg-fx .bg-grid2 {
            position: absolute;
            inset: -2px;
            background-image:
                linear-gradient(rgba(33, 214, 161, 0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(33, 214, 161, 0.06) 1px, transparent 1px);
            background-size: 66px 66px;
            -webkit-mask-image: radial-gradient(circle at 72% 26%, #000, transparent 72%);
            mask-image: radial-gradient(circle at 72% 26%, #000, transparent 72%);
            animation: bgGridDrift 26s linear infinite;
        }
        .bg-fx .bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(64px);
            opacity: 0.5;
            will-change: transform;
        }
        .bg-fx .bg-orb.g {
            width: 520px; height: 520px; top: -12%; left: -8%;
            background: radial-gradient(circle, rgba(33, 214, 161, 0.5), transparent 70%);
            animation: bgOrbA 26s ease-in-out infinite alternate;
        }
        .bg-fx .bg-orb.c {
            width: 460px; height: 460px; top: 26%; right: -10%;
            background: radial-gradient(circle, rgba(69, 199, 255, 0.42), transparent 70%);
            animation: bgOrbB 30s ease-in-out infinite alternate;
        }
        .bg-fx .bg-orb.v {
            width: 440px; height: 440px; bottom: -14%; left: 34%;
            background: radial-gradient(circle, rgba(154, 124, 255, 0.34), transparent 70%);
            animation: bgOrbC 34s ease-in-out infinite alternate;
        }
        .bg-fx .bg-scan {
            position: absolute;
            top: -50%;
            left: 0;
            width: 42%;
            height: 200%;
            background: linear-gradient(100deg, transparent, rgba(33, 214, 161, 0.06), rgba(69, 199, 255, 0.05), transparent);
            transform: rotate(10deg) translateX(-60vw);
            animation: bgScan 12s linear infinite;
            will-change: transform;
        }
        .bg-fx .bg-node {
            position: absolute;
            width: 4px; height: 4px;
            border-radius: 50%;
            background: var(--green, #21d6a1);
            box-shadow: 0 0 8px 2px rgba(33, 214, 161, 0.55);
            opacity: 0.2;
            animation: bgTwinkle 4.5s ease-in-out infinite;
        }
        @keyframes bgGridDrift { to { background-position: 66px 66px; } }
        @keyframes bgOrbA { to { transform: translate(120px, 90px) scale(1.16); } }
        @keyframes bgOrbB { to { transform: translate(-130px, 70px) scale(1.12); } }
        @keyframes bgOrbC { to { transform: translate(90px, -90px) scale(1.2); } }
        @keyframes bgScan { to { transform: rotate(10deg) translateX(180vw); } }
        @keyframes bgTwinkle { 0%, 100% { opacity: 0.12; transform: scale(0.7); } 50% { opacity: 1; transform: scale(1.25); } }
        @media (prefers-reduced-motion: reduce) {
            .bg-fx * { animation: none !important; }
        }

        .container {
            width: min(var(--max), calc(100% - 40px));
            margin: 0 auto;
        }

        .skip-link {
            position: absolute;
            top: -48px;
            left: 20px;
            z-index: 20;
            background: var(--green);
            color: #03120d;
            padding: 10px 14px;
            border-radius: 6px;
            font-weight: 800;
            transition: top 0.2s ease;
        }

        .skip-link:focus {
            top: 16px;
        }

        .nav {
            position: sticky;
            top: 0;
            z-index: 10;
            backdrop-filter: blur(18px);
            background: rgba(6, 16, 14, 0.74);
            border-bottom: 1px solid var(--line-soft);
        }

        .nav-inner {
            height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 22px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: max-content;
        }

        .brand-mark {
            width: 58px;
            height: 44px;
            display: grid;
            place-items: center;
            border: 0;
            border-radius: 0;
            background: transparent;
            overflow: visible;
        }

        .brand-mark img {
            width: 64px;
            height: 44px;
            object-fit: contain;
            filter: drop-shadow(0 0 12px rgba(159, 255, 0, 0.2));
        }

        .brand-name {
            display: grid;
            line-height: 1.05;
        }

        .brand-name img {
            width: 138px;
            max-width: 34vw;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(159, 255, 0, 0.12));
        }

        .brand-name strong {
            font-size: 22px;
            letter-spacing: 0;
        }

        .brand-name span {
            margin-top: 4px;
            color: var(--muted-2);
            font-family: "JetBrains Mono", monospace;
            font-size: 10px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 26px;
            list-style: none;
            color: var(--muted);
            font-size: 14px;
            font-weight: 600;
        }

        .nav-links a {
            transition: color 0.2s ease;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            color: var(--text);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .menu-button {
            display: none;
            width: 42px;
            height: 42px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--panel);
            color: var(--text);
            cursor: pointer;
        }

        .menu-button span {
            display: block;
            width: 18px;
            height: 2px;
            margin: 4px auto;
            background: currentColor;
            border-radius: 99px;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 48px;
            padding: 0 18px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--panel);
            color: var(--text);
            font-weight: 800;
            cursor: pointer;
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .button svg {
            width: 19px;
            height: 19px;
            flex: 0 0 auto;
        }

        .button:hover,
        .button:focus-visible {
            transform: translateY(-2px);
            border-color: rgba(33, 214, 161, 0.52);
            background: rgba(255, 255, 255, 0.085);
        }

        .button-primary {
            background: linear-gradient(135deg, #21d6a1, #4adfc1);
            color: #04110d;
            border-color: rgba(33, 214, 161, 0.74);
            box-shadow: 0 18px 42px rgba(33, 214, 161, 0.22);
        }

        .button-primary:hover,
        .button-primary:focus-visible {
            background: linear-gradient(135deg, #2be2ae, #62e9d0);
        }

        .hero {
            padding: 86px 0 54px;
        }

        .hero > .container {
            width: min(1320px, calc(100% - 40px));
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
            gap: 40px;
            align-items: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--green);
            font-family: "JetBrains Mono", monospace;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--green);
            box-shadow: 0 0 0 6px rgba(33, 214, 161, 0.12);
        }

        h1 {
            max-width: 740px;
            margin-top: 22px;
            font-size: clamp(34px, 3.6vw, 49px);
            line-height: 1.16;
            letter-spacing: -0.01em;
            font-weight: 800;
            overflow-wrap: break-word;
        }

        .highlight {
            color: var(--green);
        }

        .hero-copy {
            max-width: 640px;
            margin-top: 24px;
            color: var(--muted);
            font-size: 19px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 34px;
        }

        .proof-row {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 34px;
            color: var(--muted);
        }

        .proof-row strong {
            color: var(--green);
            font-family: "JetBrains Mono", monospace;
            font-size: 18px;
        }

        .proof-row span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-visual {
            position: relative;
            display: grid;
            grid-template-columns: 188px minmax(0, 1fr);
            gap: 30px;
            align-items: center;
            min-width: 0;
            min-height: 540px;
            padding: 12px 0;
        }

        .dashboard-showcase {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 150px;
            gap: 16px;
            width: 100%;
            align-items: start;
        }

        .dashboard-main-column,
        .dashboard-side-column {
            display: grid;
            gap: 16px;
            min-width: 0;
            align-content: start;
        }

        .dashboard-showcase::before {
            content: "";
            position: absolute;
            inset: 22px 36px 36px 18px;
            z-index: -1;
            border-radius: 22px;
            background:
                radial-gradient(circle at 42% 18%, rgba(33, 214, 161, 0.16), transparent 36%),
                radial-gradient(circle at 82% 72%, rgba(69, 199, 255, 0.1), transparent 34%);
            filter: blur(20px);
            opacity: 0.86;
        }

        .visual-wires {
            position: absolute;
            inset: 0;
            display: none;
            z-index: 1;
            pointer-events: none;
            overflow: visible;
            opacity: 0.98;
            mix-blend-mode: screen;
        }

        .visual-wires path {
            fill: none;
            stroke: var(--green);
            stroke-width: 2.15;
            stroke-linecap: round;
            stroke-linejoin: round;
            opacity: 0.72;
            stroke-dasharray: 12 16;
            animation: wireFlow 2.9s linear infinite, wireBreathe 5.8s ease-in-out infinite;
            filter: drop-shadow(0 0 8px rgba(33, 214, 161, 0.58));
        }

        .visual-wires .wire-secondary {
            stroke: var(--violet);
            opacity: 0.58;
            animation-duration: 3.4s, 6.4s;
            filter: drop-shadow(0 0 7px rgba(154, 124, 255, 0.34));
        }

        .visual-wires .wire-muted {
            stroke: rgba(69, 199, 255, 0.88);
            opacity: 0.58;
            filter: drop-shadow(0 0 8px rgba(69, 199, 255, 0.42));
        }

        .visual-wires .data-dot {
            fill: var(--green);
            filter: drop-shadow(0 0 8px rgba(33, 214, 161, 0.85));
            opacity: 0.96;
        }

        .visual-wires .data-dot.secondary {
            fill: var(--violet);
            filter: drop-shadow(0 0 8px rgba(154, 124, 255, 0.85));
        }

        .visual-wires .data-dot.cyan {
            fill: var(--cyan);
            filter: drop-shadow(0 0 8px rgba(69, 199, 255, 0.8));
        }

        .workspace {
            position: relative;
            z-index: 2;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
            box-shadow: var(--shadow);
            overflow: visible;
        }

        .workspace-bar {
            height: 40px;
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 0 14px;
            background: rgba(255, 255, 255, 0.07);
            border-bottom: 1px solid var(--line-soft);
        }

        .dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
        }

        .dot.red { background: var(--danger); }
        .dot.yellow { background: var(--amber); }
        .dot.green { background: var(--green); }

        .workspace-body {
            position: relative;
            padding: 20px;
        }

        .preview-hero {
            min-height: 292px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 152px;
            gap: 20px;
            align-items: center;
            padding: 26px 24px 34px;
            border: 1px solid var(--line-soft);
            border-radius: 8px;
            background:
                radial-gradient(circle at 78% 68%, rgba(255, 209, 102, 0.18), transparent 20%),
                radial-gradient(circle at 79% 45%, rgba(69, 199, 255, 0.13), transparent 28%),
                linear-gradient(90deg, rgba(33, 214, 161, 0.12), transparent),
                rgba(0, 0, 0, 0.2);
            overflow: visible;
        }

        .preview-copy {
            position: relative;
            z-index: 3;
            min-width: 0;
        }

        .mini-label {
            color: var(--green);
            font-family: "JetBrains Mono", monospace;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .preview-title {
            max-width: 320px;
            margin-top: 10px;
            font-size: 26px;
            line-height: 1.08;
            font-weight: 900;
            letter-spacing: -0.045em;
        }

        .preview-lines {
            display: grid;
            gap: 7px;
            margin-top: 16px;
        }

        .preview-lines i {
            height: 8px;
            border-radius: 99px;
            background: rgba(255, 255, 255, 0.15);
        }

        .preview-lines i:nth-child(1) { width: 78%; }
        .preview-lines i:nth-child(2) { width: 54%; }

        .device {
            position: relative;
            justify-self: end;
            width: 148px;
            height: 236px;
            border: 0;
            border-radius: 8px;
            padding: 0;
            background: transparent;
            overflow: visible;
        }

        .device .mini-label {
            display: none;
        }

        .rocket-launch {
            position: absolute;
            inset: 0;
            overflow: visible;
            transform-origin: 50% 82%;
            animation: rocketLift 5.4s ease-in-out infinite;
            will-change: transform;
        }

        .launch-glow {
            position: absolute;
            left: 50%;
            bottom: 0;
            z-index: 0;
            width: 132px;
            height: 168px;
            transform: translateX(-50%);
            background:
                radial-gradient(ellipse 18% 42% at 50% 16%, rgba(255, 255, 255, 0.42) 0 12%, rgba(255, 209, 102, 0.32) 30%, transparent 74%),
                radial-gradient(ellipse 42% 60% at 50% 46%, rgba(255, 209, 102, 0.36) 0 20%, rgba(255, 168, 72, 0.2) 48%, rgba(69, 199, 255, 0.07) 66%, transparent 86%),
                radial-gradient(ellipse 44% 22% at 50% 76%, rgba(255, 255, 255, 0.08) 0 16%, transparent 76%);
            border-radius: 999px;
            filter: blur(5px);
            opacity: 0.86;
            -webkit-mask-image: radial-gradient(ellipse 46% 82% at 50% 42%, #000 0 48%, rgba(0, 0, 0, 0.58) 64%, transparent 88%);
            mask-image: radial-gradient(ellipse 46% 82% at 50% 42%, #000 0 48%, rgba(0, 0, 0, 0.58) 64%, transparent 88%);
            animation: launchGlowPulse 1.7s ease-in-out infinite alternate;
        }

        .rocket-image {
            position: absolute;
            left: 50%;
            top: 8px;
            z-index: 2;
            display: block;
            width: 112px;
            height: 112px;
            background: url("assets/rocket-launch-white.png") center / contain no-repeat;
            transform: translateX(-50%) rotate(-45deg);
            filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 14px rgba(69, 199, 255, 0.24));
        }

        .launch-flame {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 52px;
            z-index: 1;
            width: 72px;
            height: 98px;
            transform: translateX(-50%);
            transform-origin: 50% 0;
            background:
                radial-gradient(ellipse 30% 54% at 50% 8%, rgba(255, 255, 255, 0.78) 0 13%, rgba(255, 209, 102, 0.58) 32%, transparent 78%),
                radial-gradient(ellipse 48% 72% at 50% 34%, rgba(255, 209, 102, 0.46) 0 22%, rgba(255, 107, 107, 0.16) 56%, transparent 88%);
            border-radius: 999px;
            filter: blur(1.8px);
            -webkit-mask-image: radial-gradient(ellipse 48% 78% at 50% 32%, #000 0 44%, rgba(0, 0, 0, 0.52) 66%, transparent 91%);
            mask-image: radial-gradient(ellipse 48% 78% at 50% 32%, #000 0 44%, rgba(0, 0, 0, 0.52) 66%, transparent 91%);
            animation: flamePulse 1.1s ease-in-out infinite alternate;
        }

        .launch-smoke {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 4px;
            z-index: 0;
            width: 126px;
            height: 70px;
            transform: translateX(-50%);
            background:
                radial-gradient(ellipse at 34% 48%, rgba(255, 255, 255, 0.12), transparent 48%),
                radial-gradient(ellipse at 55% 42%, rgba(255, 255, 255, 0.16), transparent 52%),
                radial-gradient(ellipse at 72% 54%, rgba(255, 255, 255, 0.1), transparent 46%);
            border-radius: 999px;
            filter: blur(5px);
            -webkit-mask-image: radial-gradient(ellipse 62% 58% at 50% 44%, rgba(0, 0, 0, 0.8) 0 34%, transparent 84%);
            mask-image: radial-gradient(ellipse 62% 58% at 50% 44%, rgba(0, 0, 0, 0.8) 0 34%, transparent 84%);
            animation: launchSmokeBreathe 2.2s ease-in-out infinite alternate;
        }

        .metric-card,
        .automation-card,
        .performance-card,
        .stack-card {
            border: 1px solid var(--line-soft);
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.22);
            padding: 18px;
        }

        .metric-card,
        .automation-card,
        .performance-card,
        .deploy-card {
            position: relative;
            inset: auto;
            width: auto;
        }

        .metric-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 16px;
        }

        .metric-grid b {
            display: block;
            font-size: 25px;
            line-height: 1.1;
        }

        .metric-grid small {
            display: block;
            margin-top: 6px;
            color: var(--green);
            font-family: "JetBrains Mono", monospace;
        }

        .automation-card ol {
            display: grid;
            gap: 10px;
            margin-top: 14px;
            list-style: none;
            color: var(--muted);
            font-size: 13px;
        }

        .automation-card li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .automation-card li::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--cyan);
        }

        .connector-list {
            position: relative;
            display: grid;
            gap: 13px;
            width: 180px;
            z-index: 4;
        }

        .connector {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 58px;
            padding: 0 12px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(6, 16, 14, 0.94);
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
        }

        .connector::before {
            content: "";
            position: absolute;
            right: -7px;
            top: 50%;
            width: 9px;
            height: 9px;
            border-radius: 999px;
            transform: translateY(-50%);
            background: var(--green);
            box-shadow: 0 0 0 7px rgba(33, 214, 161, 0.12), 0 0 22px rgba(33, 214, 161, 0.9);
            opacity: 0.95;
            z-index: 2;
            animation: connectorNodePulse 2.4s ease-in-out infinite;
        }

        .connector::after {
            content: "";
            position: absolute;
            left: 100%;
            top: 50%;
            width: 34px;
            height: 3px;
            transform: translateY(-50%);
            border-radius: 999px;
            background:
                linear-gradient(90deg, rgba(33, 214, 161, 0.9), rgba(33, 214, 161, 0.14)),
                linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
            background-size: 100% 100%, 26px 100%;
            background-position: 0 0, -30px 0;
            background-repeat: no-repeat, no-repeat;
            box-shadow: 0 0 14px rgba(33, 214, 161, 0.7);
            pointer-events: none;
            animation: connectorBeam 1.5s linear infinite;
        }
        @keyframes connectorBeam {
            to { background-position: 0 0, 44px 0; }
        }

        .connector:nth-child(4)::before,
        .connector:nth-child(5)::before {
            background: var(--cyan);
            box-shadow: 0 0 0 6px rgba(69, 199, 255, 0.09), 0 0 16px rgba(69, 199, 255, 0.62);
        }

        .connector:nth-child(4)::after,
        .connector:nth-child(5)::after {
            width: 24px;
            background:
                linear-gradient(90deg, rgba(69, 199, 255, 0.78), rgba(69, 199, 255, 0.12)),
                linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
            background-size: 100% 100%, 42px 100%;
            background-position: 0 0, -42px 0;
            box-shadow: 0 0 12px rgba(69, 199, 255, 0.4);
        }

        .connector:nth-child(2)::before,
        .connector:nth-child(2)::after {
            animation-delay: 0.2s;
        }

        .connector:nth-child(3)::before,
        .connector:nth-child(3)::after {
            animation-delay: 0.4s;
        }

        .connector:nth-child(4)::before,
        .connector:nth-child(4)::after {
            animation-delay: 0.6s;
        }

        .connector:nth-child(5)::before,
        .connector:nth-child(5)::after {
            animation-delay: 0.8s;
        }

        .connector svg {
            width: 20px;
            height: 20px;
            color: var(--green);
        }

        .connector span {
            font-size: 11px;
            font-weight: 900;
            text-transform: uppercase;
        }

        .performance-card {
            display: grid;
            align-content: center;
            z-index: 5;
        }

        .score {
            width: 78px;
            height: 78px;
            display: grid;
            place-items: center;
            margin: 14px auto;
            border-radius: 50%;
            border: 7px solid rgba(33, 214, 161, 0.18);
            border-top-color: var(--green);
            border-right-color: var(--green);
            font-family: "JetBrains Mono", monospace;
            font-size: 28px;
            font-weight: 800;
        }

        .performance-card ul {
            display: grid;
            gap: 9px;
            list-style: none;
            color: var(--muted);
            font-size: 12px;
        }

        .performance-card li::before {
            content: "✓";
            margin-right: 7px;
            color: var(--green);
        }

        .deploy-card {
            justify-self: start;
            z-index: 6;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 13px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(6, 16, 14, 0.96);
            color: var(--green);
            font-family: "JetBrains Mono", monospace;
            font-size: 12px;
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
        }

        .automation-card {
            display: grid;
            align-content: start;
            z-index: 5;
        }

        .metric-card {
            display: grid;
            gap: 14px;
            box-shadow: var(--shadow);
        }

        @keyframes wireFlow {
            to { stroke-dashoffset: -38; }
        }

        @keyframes rocketLift {
            0%   { transform: translate(-9px, 6px) rotate(-10deg); }
            50%  { transform: translate(11px, -10px) rotate(11deg); }
            100% { transform: translate(-9px, 6px) rotate(-10deg); }
        }

        @keyframes flamePulse {
            from { opacity: 0.72; transform: translateX(-50%) scaleY(0.9); }
            to { opacity: 1; transform: translateX(-50%) scaleY(1.12); }
        }

        @keyframes launchGlowPulse {
            from { opacity: 0.72; transform: translateX(-50%) scale(0.94); }
            to { opacity: 1; transform: translateX(-50%) scale(1.03); }
        }

        @keyframes launchSmokeBreathe {
            from { opacity: 0.42; transform: translateX(-50%) scaleX(0.94); }
            to { opacity: 0.72; transform: translateX(-50%) scaleX(1.04); }
        }

        @keyframes ambientDrift {
            from { transform: translate3d(-1.2%, -0.8%, 0) scale(1); opacity: 0.42; }
            to { transform: translate3d(1.4%, 1%, 0) scale(1.04); opacity: 0.62; }
        }

        @keyframes wireBreathe {
            0%, 100% { opacity: 0.5; }
            45% { opacity: 0.82; }
        }

        @keyframes connectorPulse {
            0%, 100% {
                border-color: rgba(255, 255, 255, 0.13);
                box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
            }
            45% {
                border-color: rgba(33, 214, 161, 0.34);
                box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32), 0 0 24px rgba(33, 214, 161, 0.1);
            }
        }

        @keyframes connectorNodePulse {
            0%, 100% {
                opacity: 0.72;
                transform: translateY(-50%) scale(0.88);
            }
            50% {
                opacity: 1;
                transform: translateY(-50%) scale(1.12);
            }
        }

        @keyframes connectorBeam {
            to { background-position: 0 0, 42px 0; }
        }

        .section {
            padding: 92px 0;
        }

        .section[id] {
            scroll-margin-top: 104px;
        }

        #contato {
            padding: 48px 0 46px;
        }

        .section.alt {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
            border-top: 1px solid var(--line-soft);
            border-bottom: 1px solid var(--line-soft);
        }

        .section-heading {
            display: grid;
            grid-template-columns: 0.82fr 1fr;
            gap: 34px;
            align-items: end;
            margin-bottom: 36px;
        }

        .section-heading h2,
        .section-title,
        .final-cta h2 {
            font-size: clamp(32px, 4vw, 50px);
            line-height: 1.08;
            letter-spacing: 0;
            font-weight: 900;
        }

        .section-heading p {
            color: var(--muted);
            font-size: 18px;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .solution-card {
            min-height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.067), rgba(255, 255, 255, 0.032));
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .solution-card:hover {
            transform: translateY(-4px);
            border-color: rgba(33, 214, 161, 0.42);
            background: linear-gradient(180deg, rgba(33, 214, 161, 0.12), rgba(255, 255, 255, 0.035));
        }

        .solution-card svg {
            width: 30px;
            height: 30px;
            color: var(--green);
        }

        .solution-card h3 {
            margin-top: 22px;
            font-size: 21px;
            line-height: 1.22;
        }

        .solution-card p {
            margin-top: 12px;
            color: var(--muted);
            font-size: 15px;
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 18px;
        }

        .tag-list span {
            padding: 6px 9px;
            border: 1px solid var(--line-soft);
            border-radius: 6px;
            color: var(--muted);
            font-family: "JetBrains Mono", monospace;
            font-size: 11px;
        }

        .development-layout {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 42px;
            align-items: start;
        }

        .sticky-copy {
            position: sticky;
            top: 110px;
        }

        .lead-text {
            margin-top: 20px;
            color: var(--muted);
            font-size: 18px;
        }

        .deliverables {
            display: grid;
            gap: 14px;
        }

        .deliverable {
            display: grid;
            grid-template-columns: 56px 1fr;
            gap: 18px;
            padding: 20px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: rgba(255, 255, 255, 0.045);
        }

        .deliverable b {
            display: grid;
            place-items: center;
            width: 56px;
            height: 56px;
            border: 1px solid rgba(33, 214, 161, 0.35);
            border-radius: 8px;
            color: var(--green);
            font-family: "JetBrains Mono", monospace;
        }

        .deliverable h3 {
            font-size: 20px;
        }

        .deliverable p {
            margin-top: 6px;
            color: var(--muted);
        }

        .management-layout,
        .mobile-layout {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 38px;
            align-items: center;
        }

        .management-copy p,
        .mobile-copy p {
            margin-top: 20px;
            color: var(--muted);
            font-size: 18px;
        }

        .value-points {
            display: grid;
            gap: 12px;
            margin-top: 26px;
        }

        .value-points span {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            color: var(--muted);
        }

        .value-points span::before {
            content: "";
            width: 9px;
            height: 9px;
            flex: 0 0 auto;
            margin-top: 8px;
            border-radius: 50%;
            background: var(--green);
            box-shadow: 0 0 0 6px rgba(33, 214, 161, 0.1);
        }

        .management-board {
            display: grid;
            gap: 16px;
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: 18px;
            background:
                radial-gradient(circle at 88% 12%, rgba(69, 199, 255, 0.13), transparent 32%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.032));
            box-shadow: var(--shadow);
        }

        .management-panel {
            display: grid;
            gap: 16px;
            padding: 20px;
            border: 1px solid var(--line-soft);
            border-radius: 14px;
            background:
                radial-gradient(circle at 18% 0%, rgba(33, 214, 161, 0.14), transparent 34%),
                rgba(0, 0, 0, 0.2);
        }

        .management-panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .management-panel-header strong {
            display: block;
            font-size: 22px;
            line-height: 1.15;
        }

        .status-pill {
            border: 1px solid rgba(33, 214, 161, 0.28);
            border-radius: 999px;
            padding: 8px 11px;
            background: rgba(33, 214, 161, 0.08);
            color: var(--green);
            font-family: "JetBrains Mono", monospace;
            font-size: 11px;
            font-weight: 900;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .management-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .management-metrics div,
        .management-step,
        .app-feature {
            border: 1px solid var(--line-soft);
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.2);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
        }

        .management-metrics div {
            padding: 14px;
        }

        .management-metrics b {
            display: block;
            color: var(--text);
            font-size: 22px;
            line-height: 1;
        }

        .management-metrics small {
            display: block;
            margin-top: 7px;
            color: var(--green);
            font-family: "JetBrains Mono", monospace;
            font-size: 11px;
            font-weight: 800;
            text-transform: lowercase;
        }

        .management-flow {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
        }

        .management-step {
            padding: 15px;
        }

        .management-step b {
            color: var(--green);
            font-family: "JetBrains Mono", monospace;
            font-size: 12px;
        }

        .management-step strong {
            display: block;
            margin-top: 10px;
            font-size: 15px;
            line-height: 1.25;
        }

        .management-step small {
            display: block;
            margin-top: 6px;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.4;
        }

        .mobile-copy .button {
            margin-top: 28px;
        }

        .phone-lab {
            position: relative;
            display: grid;
            grid-template-columns: 260px minmax(0, 1fr);
            gap: 18px;
            align-items: center;
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: 18px;
            background:
                radial-gradient(circle at 26% 16%, rgba(33, 214, 161, 0.16), transparent 34%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .phone-lab::after {
            content: "";
            position: absolute;
            right: -80px;
            bottom: -90px;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(69, 199, 255, 0.16), transparent 68%);
            pointer-events: none;
        }

        .phone-frame,
        .app-feature-grid {
            position: relative;
            z-index: 1;
        }

        .phone-frame {
            width: 236px;
            min-height: 448px;
            padding: 14px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 34px;
            background: linear-gradient(180deg, rgba(2, 12, 10, 0.96), rgba(8, 24, 20, 0.92));
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.09);
        }

        .phone-screen {
            display: grid;
            gap: 14px;
            min-height: 420px;
            padding: 20px 14px;
            border: 1px solid var(--line-soft);
            border-radius: 24px;
            background:
                radial-gradient(circle at 70% 16%, rgba(33, 214, 161, 0.18), transparent 34%),
                linear-gradient(180deg, #0a1714, #06100e);
            overflow: hidden;
        }

        .phone-screen::before {
            content: "";
            justify-self: center;
            width: 74px;
            height: 6px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.16);
        }

        .app-title {
            margin-top: 8px;
        }

        .app-title small {
            color: var(--green);
            font-family: "JetBrains Mono", monospace;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .app-title strong {
            display: block;
            margin-top: 5px;
            font-size: 22px;
            line-height: 1.08;
        }

        .app-card {
            padding: 13px;
            border: 1px solid var(--line-soft);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.055);
        }

        .app-card b {
            display: block;
            font-size: 20px;
        }

        .app-card span {
            display: block;
            margin-top: 5px;
            color: var(--muted);
            font-size: 12px;
        }

        .app-progress {
            height: 8px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            overflow: hidden;
        }

        .app-progress span {
            display: block;
            width: 72%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--green), var(--cyan));
        }

        .app-list {
            display: grid;
            gap: 8px;
        }

        .app-list span {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--muted);
            font-size: 12px;
        }

        .app-list span::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--green);
        }

        .app-feature-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .app-feature {
            padding: 15px;
        }

        .app-feature svg {
            width: 24px;
            height: 24px;
            color: var(--green);
        }

        .app-feature strong {
            display: block;
            margin-top: 12px;
            font-size: 15px;
            line-height: 1.25;
        }

        .app-feature small {
            display: block;
            margin-top: 6px;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.4;
        }

        .seo-layout {
            display: grid;
            grid-template-columns: 1fr 0.92fr;
            gap: 36px;
            align-items: center;
        }

        .ai-video-layout {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 38px;
            align-items: center;
        }

        .ai-video-copy p {
            margin-top: 20px;
            color: var(--muted);
            font-size: 18px;
        }

        .ai-video-list {
            display: grid;
            gap: 12px;
            margin-top: 26px;
        }

        .ai-video-list span {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--muted);
        }

        .ai-video-list span::before {
            content: "";
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--green);
            box-shadow: 0 0 0 6px rgba(33, 214, 161, 0.1);
        }

        .video-studio {
            position: relative;
            display: grid;
            gap: 16px;
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: 14px;
            background:
                linear-gradient(135deg, rgba(69, 199, 255, 0.12), transparent 34%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .video-studio::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 42px 42px;
            opacity: 0.5;
            pointer-events: none;
        }

        .video-studio::after {
            content: "";
            position: absolute;
            width: 310px;
            height: 310px;
            right: -110px;
            top: 10px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(33, 214, 161, 0.18), transparent 66%);
            pointer-events: none;
        }

        .video-preview-card,
        .video-process-grid {
            position: relative;
            z-index: 1;
        }

        .video-preview-card {
            display: grid;
            gap: 16px;
            padding: 18px;
            border: 1px solid var(--line-soft);
            border-radius: 12px;
            background:
                radial-gradient(circle at 70% 36%, rgba(255, 209, 102, 0.16), transparent 25%),
                radial-gradient(circle at 20% 25%, rgba(33, 214, 161, 0.12), transparent 28%),
                rgba(0, 0, 0, 0.2);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
        }

        .video-preview-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            color: var(--muted);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .studio-dots {
            display: inline-flex;
            gap: 6px;
        }

        .studio-dots i {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--green);
            box-shadow: 14px 0 0 var(--amber), 28px 0 0 var(--cyan);
        }

        .video-preview-header strong {
            color: var(--green);
            font-size: 11px;
            letter-spacing: 0.08em;
        }

        .video-player-canvas {
            display: grid;
            grid-template-columns: 150px minmax(0, 1fr);
            gap: 18px;
            min-height: 210px;
        }

        .avatar-stage,
        .scene-board {
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            background: rgba(6, 16, 14, 0.58);
        }

        .avatar-stage {
            display: grid;
            align-content: center;
            justify-items: center;
            gap: 14px;
            padding: 18px 12px;
            overflow: hidden;
        }

        .avatar-orb {
            position: relative;
            width: 104px;
            height: 104px;
            border-radius: 50%;
            background:
                radial-gradient(circle at 50% 38%, rgba(246, 251, 248, 0.96) 0 15%, transparent 16%),
                radial-gradient(circle at 50% 68%, rgba(246, 251, 248, 0.92) 0 33%, transparent 34%),
                linear-gradient(135deg, rgba(33, 214, 161, 0.82), rgba(69, 199, 255, 0.6));
            box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32), 0 0 34px rgba(33, 214, 161, 0.16);
        }

        .avatar-orb::before,
        .avatar-orb::after {
            content: "";
            position: absolute;
            inset: -8px;
            border: 1px solid rgba(33, 214, 161, 0.18);
            border-radius: 50%;
            animation: avatarScan 5s ease-in-out infinite;
        }

        .avatar-orb::after {
            inset: 10px;
            border-color: rgba(69, 199, 255, 0.18);
            animation-delay: 1.4s;
        }

        .voice-wave {
            display: inline-flex;
            align-items: end;
            gap: 5px;
            height: 30px;
        }

        .voice-wave i {
            width: 4px;
            height: var(--h);
            border-radius: 999px;
            background: linear-gradient(180deg, var(--cyan), var(--green));
            animation: waveLift 1.4s ease-in-out infinite;
        }

        .voice-wave i:nth-child(2) { animation-delay: 0.12s; }
        .voice-wave i:nth-child(3) { animation-delay: 0.24s; }
        .voice-wave i:nth-child(4) { animation-delay: 0.36s; }
        .voice-wave i:nth-child(5) { animation-delay: 0.48s; }

        .avatar-stage small {
            color: var(--muted);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .scene-board {
            position: relative;
            display: grid;
            align-content: space-between;
            gap: 16px;
            padding: 18px;
            overflow: hidden;
        }

        .scene-board::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(115deg, transparent 0 55%, rgba(69, 199, 255, 0.1) 56% 70%, transparent 71%),
                radial-gradient(circle at 80% 26%, rgba(255, 209, 102, 0.18), transparent 22%);
            opacity: 0.9;
            pointer-events: none;
        }

        .play-chip,
        .campaign-card,
        .video-scenes,
        .edit-timeline {
            position: relative;
            z-index: 1;
        }

        .play-chip {
            width: fit-content;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 12px;
            border: 1px solid rgba(33, 214, 161, 0.32);
            border-radius: 999px;
            background: rgba(6, 16, 14, 0.82);
            color: var(--text);
            font-weight: 900;
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
        }

        .play-chip i {
            width: 28px;
            height: 28px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--green);
            color: #04110d;
            font-size: 12px;
            font-style: normal;
            animation: playPulse 2.8s ease-in-out infinite;
        }

        .campaign-card strong {
            display: block;
            max-width: 280px;
            color: var(--text);
            font-size: 28px;
            line-height: 1.03;
            letter-spacing: -0.05em;
        }

        .campaign-card span {
            display: inline-flex;
            margin-top: 12px;
            padding: 5px 9px;
            border: 1px solid rgba(69, 199, 255, 0.22);
            border-radius: 999px;
            color: var(--cyan);
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: rgba(69, 199, 255, 0.08);
        }

        .video-scenes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .scene-card {
            min-height: 54px;
            padding: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.045);
            color: var(--muted);
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
        }

        .scene-card.is-active {
            color: var(--text);
            border-color: rgba(33, 214, 161, 0.28);
            background: rgba(33, 214, 161, 0.1);
            animation: sceneGlow 8s ease-in-out infinite;
        }

        .edit-timeline {
            display: grid;
            gap: 8px;
        }

        .timeline-labels {
            display: flex;
            justify-content: space-between;
            gap: 8px;
            color: var(--muted-2);
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .timeline-track {
            height: 8px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.11);
            overflow: hidden;
        }

        .timeline-track span {
            display: block;
            width: 18%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--green), var(--cyan), var(--amber));
            animation: videoProgress 8s ease-in-out infinite;
        }

        .video-process-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
        }

        .shot-card {
            display: grid;
            gap: 9px;
            min-height: 118px;
            padding: 14px;
            border: 1px solid var(--line-soft);
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.22);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
            animation: processPulse 8s ease-in-out infinite;
        }

        .shot-card:nth-child(2) { animation-delay: 2s; }
        .shot-card:nth-child(3) { animation-delay: 4s; }
        .shot-card:nth-child(4) { animation-delay: 6s; }

        .shot-card svg {
            width: 22px;
            height: 22px;
            color: var(--green);
        }

        .shot-card strong {
            display: block;
            color: var(--text);
            font-size: 14px;
            line-height: 1.2;
        }

        .shot-card small {
            display: block;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.45;
        }

        @keyframes videoProgress {
            0%, 8% { width: 18%; }
            28%, 34% { width: 42%; }
            54%, 60% { width: 68%; }
            82%, 100% { width: 100%; }
        }

        @keyframes processPulse {
            0%, 18%, 100% {
                border-color: var(--line-soft);
                background: rgba(0, 0, 0, 0.22);
                transform: translateY(0);
            }
            8%, 13% {
                border-color: rgba(33, 214, 161, 0.42);
                background: rgba(33, 214, 161, 0.09);
                transform: translateY(-2px);
            }
        }

        @keyframes playPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(33, 214, 161, 0.26); }
            50% { box-shadow: 0 0 0 8px rgba(33, 214, 161, 0); }
        }

        @keyframes avatarScan {
            0%, 100% { opacity: 0.45; transform: scale(0.96); }
            50% { opacity: 1; transform: scale(1.04); }
        }

        @keyframes waveLift {
            0%, 100% { transform: scaleY(0.55); opacity: 0.6; }
            50% { transform: scaleY(1); opacity: 1; }
        }

        @keyframes sceneGlow {
            0%, 100% { box-shadow: inset 0 0 0 rgba(33, 214, 161, 0); }
            50% { box-shadow: inset 0 0 28px rgba(33, 214, 161, 0.14); }
        }

        .seo-list {
            display: grid;
            gap: 16px;
            margin-top: 28px;
        }

        .seo-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            color: var(--muted);
        }

        .seo-item::before {
            content: "✓";
            display: grid;
            place-items: center;
            width: 24px;
            height: 24px;
            flex: 0 0 auto;
            border-radius: 6px;
            background: rgba(33, 214, 161, 0.14);
            color: var(--green);
            font-weight: 900;
        }

        .social-preview {
            border: 1px solid var(--line);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.055);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .social-preview img {
            display: block;
            width: 100%;
            aspect-ratio: 1200 / 630;
            object-fit: cover;
            background: #07110f;
        }

        .social-body {
            padding: 18px;
            border-top: 1px solid var(--line-soft);
        }

        .social-body small {
            color: var(--muted-2);
            text-transform: uppercase;
        }

        .social-body h3 {
            margin-top: 6px;
            font-size: 18px;
        }

        .social-body p {
            margin-top: 6px;
            color: var(--muted);
            font-size: 14px;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .process-step {
            padding: 24px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: rgba(255, 255, 255, 0.045);
        }

        .process-step span {
            color: var(--green);
            font-family: "JetBrains Mono", monospace;
            font-weight: 800;
        }

        .process-step h3 {
            margin-top: 18px;
            font-size: 20px;
        }

        .process-step p {
            margin-top: 10px;
            color: var(--muted);
            font-size: 15px;
        }

        .stack-marquee {
            overflow: hidden;
            border-top: 1px solid var(--line-soft);
            border-bottom: 1px solid var(--line-soft);
            padding: 18px 0;
        }

        .stack-track {
            display: flex;
            gap: 12px;
            width: max-content;
            animation: marquee 30s linear infinite;
        }

        .stack-track span {
            padding: 10px 14px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.045);
            color: var(--muted);
            font-family: "JetBrains Mono", monospace;
            font-size: 13px;
            white-space: nowrap;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
            gap: 28px;
            align-items: stretch;
        }

        .final-cta,
        .contact-form {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 18px;
            background:
                radial-gradient(circle at 18% 12%, rgba(33, 214, 161, 0.16), transparent 32%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.035));
            box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
        }

        .final-cta {
            display: grid;
            align-content: start;
            gap: 22px;
            padding: 34px;
        }

        .final-cta::after,
        .contact-form::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
            background-size: 54px 54px;
            opacity: 0.38;
        }

        .final-cta > *,
        .contact-form > * {
            position: relative;
            z-index: 1;
        }

        .final-cta h2 {
            max-width: 18ch;
            font-size: clamp(34px, 3.4vw, 48px);
        }

        .final-cta p {
            margin-top: 16px;
            color: var(--muted);
            font-size: 17px;
        }

        .contact-benefits {
            display: grid;
            gap: 10px;
            margin-top: 16px;
        }

        .contact-benefit {
            display: grid;
            grid-template-columns: 34px 1fr;
            gap: 12px;
            align-items: start;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            background: rgba(0, 0, 0, 0.16);
        }

        .contact-benefit span {
            display: grid;
            place-items: center;
            width: 34px;
            height: 34px;
            border-radius: 12px;
            background: rgba(33, 214, 161, 0.12);
            color: var(--green);
            font-family: "JetBrains Mono", monospace;
            font-size: 13px;
            font-weight: 900;
        }

        .contact-benefit strong {
            display: block;
            color: var(--text);
            font-size: 15px;
        }

        .contact-benefit small {
            display: block;
            margin-top: 4px;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.45;
        }

        .contact-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }

        .contact-trust span {
            border: 1px solid rgba(33, 214, 161, 0.24);
            border-radius: 999px;
            padding: 8px 11px;
            background: rgba(33, 214, 161, 0.07);
            color: var(--muted);
            font-size: 12px;
            font-weight: 800;
        }

        .contact-form {
            display: grid;
            gap: 13px;
            padding: 24px;
            background:
                radial-gradient(circle at 90% 0%, rgba(63, 197, 255, 0.12), transparent 34%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.038));
        }

        .form-intro {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            align-items: flex-start;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .form-intro h3 {
            font-size: clamp(24px, 2.4vw, 34px);
            line-height: 1.05;
            letter-spacing: -0.02em;
        }

        .form-intro p {
            margin-top: 7px;
            max-width: 48ch;
            color: var(--muted);
            font-size: 15px;
        }

        .form-time {
            flex: 0 0 auto;
            border: 1px solid rgba(33, 214, 161, 0.25);
            border-radius: 999px;
            padding: 9px 12px;
            background: rgba(33, 214, 161, 0.08);
            color: var(--green);
            font-family: "JetBrains Mono", monospace;
            font-size: 12px;
            font-weight: 900;
            white-space: nowrap;
        }

        .form-fields {
            display: grid;
            gap: 11px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 11px;
        }

        .contact-form label {
            position: relative;
            padding: 12px;
            border: 1px solid rgba(33, 214, 161, 0.13);
            border-radius: 16px;
            background:
                linear-gradient(180deg, rgba(6, 22, 18, 0.78), rgba(3, 11, 10, 0.68));
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 28px rgba(0, 0, 0, 0.12);
            transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
        }

        .contact-form label:focus-within {
            border-color: rgba(33, 214, 161, 0.58);
            background:
                radial-gradient(circle at 8% 0%, rgba(33, 214, 161, 0.13), transparent 42%),
                linear-gradient(180deg, rgba(8, 31, 25, 0.88), rgba(3, 12, 10, 0.74));
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 34px rgba(0, 0, 0, 0.18), 0 0 0 3px rgba(33, 214, 161, 0.08);
            transform: translateY(-1px);
        }

        .field-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            color: rgba(245, 250, 247, 0.9);
            font-size: 13px;
            font-weight: 900;
        }

        .field-label em {
            color: var(--green);
            font-family: "JetBrains Mono", monospace;
            font-size: 11px;
            font-style: normal;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .field-hint {
            margin-top: -2px;
            color: rgba(173, 190, 181, 0.8);
            font-size: 12px;
            line-height: 1.45;
        }

        .form-assurance {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            color: var(--muted);
            font-size: 13px;
        }

        .form-assurance span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .form-assurance span::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: var(--green);
            box-shadow: 0 0 14px rgba(33, 214, 161, 0.8);
        }

        label {
            display: grid;
            gap: 8px;
            color: var(--muted);
            font-size: 14px;
            font-weight: 700;
        }

        input,
        textarea,
        select {
            width: 100%;
            border: 1px solid rgba(33, 214, 161, 0.14);
            border-radius: 13px;
            background:
                linear-gradient(180deg, rgba(2, 12, 10, 0.94), rgba(5, 18, 15, 0.86));
            color: var(--text);
            font: inherit;
            padding: 13px 15px;
            outline: none;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
        }

        input::placeholder,
        textarea::placeholder {
            color: rgba(173, 190, 181, 0.58);
        }

        select {
            appearance: none;
            -webkit-appearance: none;
            padding-right: 46px;
            cursor: pointer;
            background-image:
                linear-gradient(180deg, rgba(2, 12, 10, 0.94), rgba(5, 18, 15, 0.86)),
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2321d6a1' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat, no-repeat;
            background-position: 0 0, right 15px center;
            background-size: 100% 100%, 18px 18px;
        }

        select option {
            background: #06100e;
            color: var(--text);
        }

        textarea {
            min-height: 102px;
            resize: vertical;
        }

        input:focus,
        textarea:focus,
        select:focus {
            border-color: rgba(33, 214, 161, 0.68);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 0 0 4px rgba(33, 214, 161, 0.11);
            transform: translateY(-1px);
        }

        .form-status {
            min-height: 20px;
            color: var(--muted);
            font-size: 13px;
            margin: 0;
        }

        .form-status.success {
            color: var(--green);
        }

        .form-status.error {
            color: #ff9f9f;
        }

        .lead-honeypot {
            position: absolute;
            left: -10000px;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }

        body.modal-open {
            overflow: hidden;
        }

        .lead-modal[hidden] {
            display: none;
        }

        .lead-modal {
            position: fixed;
            inset: 0;
            z-index: 60;
            display: grid;
            place-items: center;
            padding: 20px;
        }

        .lead-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(2, 8, 7, 0.74);
            backdrop-filter: blur(10px);
        }

        .lead-modal-card {
            position: relative;
            z-index: 1;
            width: min(520px, 100%);
            border: 1px solid rgba(33, 214, 161, 0.24);
            border-radius: 16px;
            background:
                radial-gradient(circle at 82% 12%, rgba(33, 214, 161, 0.17), transparent 30%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)),
                #07120f;
            padding: 28px;
            box-shadow: 0 30px 120px rgba(0, 0, 0, 0.55);
        }

        .lead-modal-card h2 {
            margin-top: 10px;
            font-size: clamp(28px, 4vw, 38px);
            line-height: 1.05;
            letter-spacing: -0.04em;
        }

        .lead-modal-card p {
            margin-top: 12px;
            color: var(--muted);
        }

        .lead-modal-form {
            display: grid;
            gap: 12px;
            margin-top: 20px;
        }

        .lead-modal-close {
            position: absolute;
            right: 14px;
            top: 14px;
            width: 38px;
            height: 38px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.06);
            color: var(--text);
            font-size: 22px;
            cursor: pointer;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 16px;
        }

        .faq-card {
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: rgba(255, 255, 255, 0.04);
        }

        .faq-card h3 {
            font-size: 18px;
        }

        .faq-card p {
            margin-top: 10px;
            color: var(--muted);
            font-size: 15px;
        }

        .whatsapp-float {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 12;
            width: 58px;
            height: 58px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: #25d366;
            color: white;
            box-shadow: 0 18px 42px rgba(37, 211, 102, 0.32);
            transition: transform 0.2s ease;
        }

        .whatsapp-float:hover,
        .whatsapp-float:focus-visible {
            transform: translateY(-3px) scale(1.04);
        }

        .whatsapp-float svg {
            width: 30px;
            height: 30px;
        }

        footer {
            border-top: 1px solid var(--line-soft);
            padding: 34px 0 clamp(52px, 8vh, 86px);
            color: var(--muted-2);
            font-size: 14px;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }

        .reveal {
            transition: opacity 0.7s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .js .reveal {
            opacity: 0;
            transform: translateY(38px) scale(0.985);
        }
        .js .reveal.visible {
            opacity: 1;
            transform: none;
        }
        @media (prefers-reduced-motion: reduce) {
            .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }
        }

        @media (max-width: 1020px) {
            .nav-links {
                position: fixed;
                inset: 78px 0 auto 0;
                display: none;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 10px 20px 22px;
                background: rgba(6, 16, 14, 0.96);
                border-bottom: 1px solid var(--line);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                display: block;
                padding: 14px 0;
                border-bottom: 1px solid var(--line-soft);
            }

            .menu-button {
                display: block;
            }

            .nav-actions .button {
                display: none;
            }

            .hero-grid,
            .development-layout,
            .management-layout,
            .mobile-layout,
            .ai-video-layout,
            .seo-layout,
            .contact-grid,
            .section-heading {
                grid-template-columns: 1fr;
            }

            .contact-form {
                order: -1;
            }

            .hero-copy-block,
            .hero-visual,
            .workspace {
                min-width: 0;
            }

            .hero-visual {
                min-height: 560px;
            }

            .workspace {
                inset: auto;
            }

            .connector-list {
                width: 178px;
            }

            .performance-card {
                right: 0;
            }

            .solutions-grid,
            .process-grid,
            .management-flow {
                grid-template-columns: repeat(2, 1fr);
            }

            .faq-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .phone-lab {
                grid-template-columns: 1fr;
            }

            .phone-frame {
                margin: 0 auto;
            }

            .video-studio {
                width: min(100%, 760px);
                margin: 0 auto;
            }

            .sticky-copy {
                position: static;
            }
        }

        @media (min-width: 861px) and (max-width: 1020px) {
            .hero-visual {
                width: min(100%, 860px);
                grid-template-columns: 220px minmax(0, 1fr);
                gap: 14px;
                min-height: auto;
                margin: 0 auto;
                padding: 18px 0;
            }

            .visual-wires {
                display: none;
            }

            .dashboard-showcase {
                grid-template-columns: minmax(0, 1fr) 148px;
                gap: 12px;
            }

            .dashboard-main-column,
            .dashboard-side-column {
                gap: 12px;
            }

            .connector-list {
                width: 220px;
            }

            .workspace {
                inset: auto;
                width: auto;
                height: auto;
            }

            .connector {
                position: relative;
                min-height: 58px;
            }

            .connector::after {
                content: "";
                position: absolute;
                left: 100%;
                top: 50%;
                width: 14px;
                height: 2px;
                transform: translateY(-50%);
                border-radius: 999px;
                background: linear-gradient(90deg, rgba(33, 214, 161, 0.12), rgba(33, 214, 161, 0.92));
                box-shadow: none;
            }

            .connector:nth-child(4)::after,
            .connector:nth-child(5)::after {
                width: 14px;
                background: linear-gradient(90deg, rgba(69, 199, 255, 0.08), rgba(69, 199, 255, 0.72));
            }

            .connector span {
                font-size: 11.5px;
            }

            .preview-hero {
                grid-template-columns: minmax(0, 1fr) 142px;
                gap: 18px;
                min-height: 284px;
                padding: 24px 20px 34px;
            }

            .preview-title {
                max-width: 285px;
                font-size: 27px;
                line-height: 1.04;
            }

            .device {
                width: 136px;
                height: 224px;
                transform: none;
            }

            .rocket-image {
                width: 104px;
                height: 104px;
            }

            .performance-card {
                padding: 14px;
            }

            .performance-card .score {
                width: 66px;
                height: 66px;
                border-width: 6px;
                font-size: 24px;
            }

            .performance-card ul {
                font-size: 11px;
                gap: 7px;
            }
        }

        @media (min-width: 641px) and (max-width: 860px) {
            .hero-visual {
                display: grid;
                grid-template-columns: 1fr;
                gap: 14px;
                width: 100%;
                min-height: auto;
                margin: 0;
                padding-top: 18px;
            }

            .visual-wires {
                display: none;
            }

            .dashboard-showcase {
                order: 1;
                grid-template-columns: minmax(0, 1fr) 150px;
                gap: 12px;
            }

            .dashboard-main-column,
            .dashboard-side-column {
                gap: 12px;
            }

            .workspace,
            .connector-list,
            .performance-card,
            .deploy-card,
            .automation-card {
                position: static;
                inset: auto;
                width: auto;
                height: auto;
            }

            .workspace {
                order: initial;
            }

            .connector-list {
                order: 2;
                grid-template-columns: repeat(2, 1fr);
                width: auto;
            }

            .connector::before,
            .connector::after {
                display: none;
            }

            .performance-card,
            .deploy-card {
                order: initial;
            }

            .workspace-body,
            .preview-hero,
            .metric-card,
            .automation-card {
                padding: 18px;
            }

            .preview-hero {
                grid-template-columns: minmax(0, 1fr) 128px;
                min-height: 276px;
                padding-bottom: 34px;
            }

            .device {
                width: 132px;
                height: 218px;
            }

            .preview-title {
                max-width: 360px;
                font-size: 30px;
                line-height: 1.04;
            }

            .automation-card {
                margin-top: 14px;
            }

            .automation-card {
                margin-top: 0;
            }

            .video-process-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .video-player-canvas {
                grid-template-columns: 132px minmax(0, 1fr);
            }

            .campaign-card strong {
                font-size: 24px;
            }
        }

        @media (max-width: 640px) {
            .container {
                width: min(100% - 28px, var(--max));
            }

            .hero > .container {
                width: min(100% - 28px, var(--max));
            }

            .nav-inner {
                height: 70px;
            }

            .brand {
                gap: 8px;
            }

            .brand-mark {
                width: 48px;
                height: 36px;
            }

            .brand-mark img {
                width: 54px;
                height: 36px;
            }

            .brand-name img {
                width: 112px;
            }

            .brand-name span {
                display: none;
            }

            .hero {
                padding: 48px 0 32px;
            }

            h1 {
                font-size: 36px;
                line-height: 1.08;
                max-width: 340px;
            }

            .hero-copy,
            .section-heading p,
            .lead-text,
            .final-cta p {
                font-size: 16px;
                overflow-wrap: anywhere;
            }

            .hero-copy-block,
            .hero-actions,
            .proof-row,
            .hero-copy {
                width: 340px;
                max-width: 100%;
            }

            .button {
                width: 100%;
            }

            .proof-row {
                display: grid;
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .hero-visual {
                min-height: auto;
                padding-top: 18px;
            }

            .workspace,
            .connector-list,
            .performance-card,
            .deploy-card,
            .automation-card {
                position: static;
                inset: auto;
                width: auto;
                height: auto;
            }

            .visual-wires {
                display: none;
            }

            .hero-visual {
                display: grid;
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .dashboard-showcase {
                order: 1;
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .dashboard-main-column,
            .dashboard-side-column {
                gap: 12px;
            }

            .connector-list {
                width: auto;
                grid-template-columns: 1fr 1fr;
                order: 2;
            }

            .connector::before,
            .connector::after {
                display: none;
            }

            .workspace {
                order: initial;
            }

            .performance-card,
            .deploy-card {
                order: initial;
                width: auto;
            }

            .workspace-body,
            .preview-hero,
            .metric-card,
            .automation-card,
            .final-cta,
            .contact-form {
                padding: 18px;
            }

            .final-cta {
                gap: 20px;
            }

            .final-cta h2 {
                max-width: none;
            }

            .form-intro {
                display: grid;
                gap: 12px;
            }

            .form-time {
                width: fit-content;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .preview-hero,
            .metric-grid,
            .video-process-grid,
            .app-feature-grid,
            .management-metrics,
            .management-flow,
            .solutions-grid,
            .process-grid,
            .faq-grid {
                grid-template-columns: 1fr;
            }

            .management-board,
            .phone-lab {
                padding: 16px;
            }

            .phone-frame {
                width: min(100%, 236px);
                min-height: 418px;
            }

            .phone-screen {
                min-height: 390px;
            }

            .video-studio {
                padding: 16px;
            }

            .video-preview-card {
                padding: 16px;
            }

            .video-player-canvas {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .avatar-stage {
                min-height: 168px;
            }

            .scene-board {
                min-height: 220px;
            }

            .campaign-card strong {
                max-width: none;
                font-size: 24px;
            }

            .video-scenes {
                grid-template-columns: 1fr;
            }

            .timeline-labels {
                font-size: 9px;
            }

            .device {
                display: none;
            }

            .section {
                padding: 64px 0;
            }

            .deliverable {
                grid-template-columns: 1fr;
            }

            .footer-inner {
                display: grid;
            }
        }

        /* =================== AI VIDEO STUDIO — redesign v2 =================== */
        .video-studio { border-radius: 22px; padding: 26px; gap: 22px; border-color: rgba(33, 214, 161, 0.16); }
        .video-preview-card {
            border-radius: 18px; padding: 22px; gap: 20px; position: relative; overflow: hidden;
            background: linear-gradient(150deg, #0c1a17, #081210);
            border: 1px solid rgba(33, 214, 161, 0.14);
            box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }
        .video-preview-card::after {
            content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
            background:
                radial-gradient(600px 280px at 72% -10%, rgba(69, 199, 255, 0.12), transparent 60%),
                radial-gradient(420px 240px at 0% 110%, rgba(33, 214, 161, 0.1), transparent 60%);
        }
        .video-preview-card > * { position: relative; z-index: 1; }
        .video-preview-header { border-bottom: 1px solid rgba(255, 255, 255, 0.06); padding-bottom: 12px; }
        .studio-dots i { background: #ff7ab8; box-shadow: 14px 0 0 #ffd166, 28px 0 0 #21d6a1; }
        .video-preview-header strong { display: inline-flex; align-items: center; gap: 7px; }
        .video-preview-header strong::before {
            content: ""; width: 7px; height: 7px; border-radius: 50%; background: #ff7ab8;
            box-shadow: 0 0 8px #ff7ab8; animation: vsRec 1.4s ease-in-out infinite;
        }
        .video-player-canvas { grid-template-columns: 132px minmax(0, 1fr); gap: 18px; }
        .avatar-stage, .scene-board { background: #0f221d; border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04); }
        .avatar-orb {
            width: 92px; height: 92px; position: relative;
            background: radial-gradient(circle at 35% 30%, #7fe0ff 0, #45c7ff 24%, #21d6a1 54%, #0a2c25 100%) !important;
            box-shadow: 0 0 0 6px rgba(33, 214, 161, 0.08), 0 14px 40px -8px rgba(33, 214, 161, 0.55),
                inset -8px -10px 24px rgba(0, 0, 0, 0.5), inset 7px 9px 18px rgba(255, 255, 255, 0.35);
        }
        .avatar-orb::after {
            content: ""; position: absolute; inset: -6px; border-radius: 50%;
            border: 1px solid rgba(69, 199, 255, 0.45); animation: vsOrb 3s ease-in-out infinite;
        }
        .voice-wave i {
            background: linear-gradient(180deg, #45c7ff, #21d6a1) !important; border-radius: 99px;
            transform-origin: bottom; will-change: transform; animation: vsBar 0.9s ease-in-out infinite;
        }
        .voice-wave i:nth-child(1) { animation-duration: .7s; animation-delay: -.2s; }
        .voice-wave i:nth-child(2) { animation-duration: 1.1s; animation-delay: -.5s; }
        .voice-wave i:nth-child(3) { animation-duration: .8s; animation-delay: -.1s; }
        .voice-wave i:nth-child(4) { animation-duration: 1s; animation-delay: -.35s; }
        .voice-wave i:nth-child(5) { animation-duration: .75s; animation-delay: -.6s; }
        .campaign-card strong .grad { background: linear-gradient(90deg, #21d6a1, #45c7ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
        .campaign-card span {
            display: inline-flex; align-items: center; gap: 7px; font-family: "JetBrains Mono", monospace;
            font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green);
        }
        .campaign-card span::before {
            content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green);
            box-shadow: 0 0 8px var(--green); animation: vsRec 1.6s ease-in-out infinite;
        }
        .video-scenes .scene-card { border: 1px solid rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.6); background: transparent; animation: vsChip 4.5s ease-in-out infinite; }
        .video-scenes .scene-card:nth-child(1) { animation-delay: 0s; }
        .video-scenes .scene-card:nth-child(2) { animation-delay: 1.5s; }
        .video-scenes .scene-card:nth-child(3) { animation-delay: 3s; }
        .timeline-track { height: 8px; background: rgba(255, 255, 255, 0.06); position: relative; overflow: visible; border-radius: 99px; }
        .timeline-track span {
            display: block; height: 100%; width: 30%; border-radius: 99px; position: relative;
            background: linear-gradient(90deg, #21d6a1, #45c7ff, #ffd166); box-shadow: 0 0 12px rgba(69, 199, 255, 0.5);
            animation: vsFill 6s ease-in-out infinite;
        }
        .timeline-track span::after { content: ""; position: absolute; top: -3px; right: -1px; width: 2px; height: 14px; background: #fff; box-shadow: 0 0 8px #fff; border-radius: 2px; }
        .video-process-grid { gap: 16px; margin-top: 6px; }
        .shot-card {
            position: relative; overflow: hidden; border-radius: 16px; padding: 22px 18px 18px;
            background: linear-gradient(160deg, #0e1f1b, #0a1613); border: 1px solid rgba(255, 255, 255, 0.06);
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }
        .shot-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--c, #21d6a1); }
        .shot-card::after { position: absolute; top: 14px; right: 16px; font-family: "JetBrains Mono", monospace; font-size: 11px; color: rgba(255, 255, 255, 0.32); }
        .shot-card:nth-child(1) { --c: #ffd166; } .shot-card:nth-child(1)::after { content: "01"; }
        .shot-card:nth-child(2) { --c: #21d6a1; } .shot-card:nth-child(2)::after { content: "02"; }
        .shot-card:nth-child(3) { --c: #45c7ff; } .shot-card:nth-child(3)::after { content: "03"; }
        .shot-card:nth-child(4) { --c: #ff7ab8; } .shot-card:nth-child(4)::after { content: "04"; }
        .shot-card svg { width: 22px; height: 22px; padding: 9px; box-sizing: content-box; border-radius: 10px; background: color-mix(in srgb, var(--c) 14%, transparent); color: var(--c); }
        .shot-card strong { display: block; margin-top: 12px; }
        .shot-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--c) 45%, transparent); box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.6); }
        @keyframes vsRec { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(1.3); } }
        @keyframes vsOrb { 0%, 100% { transform: scale(1); opacity: .5; } 50% { transform: scale(1.12); opacity: .9; } }
        @keyframes vsBar { 0%, 100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }
        @keyframes vsChip { 0%, 22% { background: var(--green); color: #06100e; border-color: transparent; } 33%, 100% { background: transparent; color: rgba(255, 255, 255, 0.6); border-color: rgba(255, 255, 255, 0.14); } }
        @keyframes vsFill { 0% { width: 8%; } 70% { width: 96%; } 100% { width: 8%; } }
        @media (prefers-reduced-motion: reduce) {
            .video-preview-header strong::before, .avatar-orb::after, .voice-wave i,
            .video-scenes .scene-card, .timeline-track span, .campaign-card span::before { animation: none !important; }
            .timeline-track span { width: 70%; }
        }

        /* =================== WhatsApp em destaque (intenso) =================== */
        .whatsapp-float {
            overflow: visible;
            animation: waBob 2s ease-in-out infinite, waShake 3.4s ease-in-out infinite;
        }
        .whatsapp-float::before, .whatsapp-float::after {
            content: ""; position: absolute; inset: 0; border-radius: 50%;
            background: #25d366; z-index: -1; opacity: 0;
            animation: waRing 2s ease-out infinite;
        }
        .whatsapp-float::after { animation-delay: 1s; }
        .whatsapp-float:hover { animation-play-state: paused; }
        @keyframes waRing { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(2.35); opacity: 0; } }
        @keyframes waBob { 0%, 100% { translate: 0 0; scale: 1; } 50% { translate: 0 -7px; scale: 1.06; } }
        @keyframes waShake { 0%, 66%, 100% { rotate: 0deg; } 71% { rotate: -16deg; } 76% { rotate: 14deg; } 81% { rotate: -11deg; } 86% { rotate: 8deg; } 92% { rotate: -4deg; } }
        .nav-actions .button { white-space: nowrap; }
        .nav-actions .button-primary { animation: waGlow 2.4s ease-in-out infinite; }
        @keyframes waGlow {
            0%, 100% { box-shadow: 0 18px 42px rgba(33, 214, 161, 0.22); }
            50% { box-shadow: 0 18px 42px rgba(33, 214, 161, 0.3), 0 0 0 7px rgba(37, 211, 102, 0.2); }
        }
        @media (prefers-reduced-motion: reduce) {
            .whatsapp-float, .whatsapp-float::before, .whatsapp-float::after, .nav-actions .button-primary { animation: none !important; }
        }

        /* =================== AJUSTE MOBILE COMPLETO =================== */
        @media (max-width: 768px) {
            /* 1. Esconder os mocks decorativos pesados (o texto/valor permanece) */
            .hero-visual, .video-studio, .phone-lab, .management-board { display: none !important; }
            /* 2. Ritmo vertical enxuto */
            .section { padding: clamp(40px, 9vw, 54px) 0 !important; }
            .hero { padding: 26px 0 18px !important; }
            #contato { padding: 34px 0 30px !important; }
            .section-heading { margin-bottom: 24px; gap: 16px; }
            /* 3. Hero ocupa largura cheia */
            .hero-copy-block, .hero-actions, .proof-row, .hero-copy { width: 100% !important; max-width: 100% !important; }
            /* 4. Proof inline e compacto (em vez de 1 por linha) */
            .proof-row { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 26px; }
            /* 5. H1 fluido e respirável */
            h1 { font-size: clamp(28px, 8.4vw, 40px) !important; line-height: 1.16 !important; max-width: 100% !important; }
            .hero-copy { font-size: 16px; }
            /* 6. Gutters laterais mais confortáveis */
            .container, .hero > .container { width: min(100% - 36px, var(--max)); }
            /* 7. Botões cheios e com bom toque */
            .hero-actions { gap: 10px; margin-top: 24px; }
            .hero-actions .button { width: 100%; min-height: 52px; }
            /* 8. Fundo mais leve no mobile (menos jank no scroll) */
            .bg-fx .bg-node, .bg-fx .bg-grid2 { display: none; }
        }

        /* =================== POLISH VISUAL (painel de design) =================== */
        :root { --radius: 10px; --radius-lg: 16px; --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.18); }
        /* respiro eyebrow -> título + escala de título harmônica */
        .eyebrow + h2, .eyebrow + .section-title { margin-top: 14px; display: block; }
        .section-heading h2, .section-title, .final-cta h2 { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.1; letter-spacing: -0.015em; }
        .section-heading { align-items: start; gap: 40px; margin-bottom: 44px; }
        .section-heading p { max-width: 46ch; padding-top: 6px; line-height: 1.6; }
        /* PROCESSO — cards com vida */
        .process-step { min-height: 228px; display: flex; flex-direction: column; padding: 24px 22px; border-radius: var(--radius); background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)); box-shadow: var(--shadow-card); transition: transform 0.2s ease, border-color 0.2s ease; }
        .process-step:hover { transform: translateY(-4px); border-color: rgba(33, 214, 161, 0.35); }
        .process-step span { display: inline-grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(33, 214, 161, 0.3); border-radius: 10px; background: rgba(33, 214, 161, 0.1); color: var(--green); font-size: 14px; font-weight: 700; }
        .process-step h3 { margin-top: 16px; font-size: 19px; line-height: 1.25; }
        .process-step p { margin-top: 8px; line-height: 1.55; }
        /* SOLUÇÕES — preenchimento interno regular */
        .solutions-grid { gap: 20px; }
        .solution-card { min-height: 236px; justify-content: flex-start; gap: 16px; padding: 24px 22px; }
        .solution-card h3 { font-size: 19px; line-height: 1.25; }
        .solution-card .tag-list { margin-top: auto; padding-top: 18px; }
        /* TECNOLOGIAS — marquee contido + chips com vida + menos vazio */
        #tecnologias { padding: 64px 0; }
        .stack-marquee { width: min(var(--max), calc(100% - 40px)); margin: 22px auto 0; border-radius: var(--radius-lg); -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
        .stack-track span { background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)); border-radius: 999px; transition: border-color 0.2s ease; }
        .stack-track span:hover { border-color: rgba(33, 214, 161, 0.4); }
        /* hover comum nos cards escaneáveis */
        .faq-card, .deliverable { transition: transform 0.2s ease, border-color 0.2s ease; }
        .faq-card:hover, .deliverable:hover { transform: translateY(-3px); border-color: rgba(33, 214, 161, 0.3); }
        .social-preview { transition: transform 0.25s ease, border-color 0.25s ease; }
        .social-preview:hover { transform: translateY(-3px); border-color: rgba(33, 214, 161, 0.3); }
        /* SEO — lista mais legível */
        .seo-list { gap: 14px; margin-top: 24px; }
        .seo-item { line-height: 1.5; align-items: flex-start; }
        /* CONTATO — cor on-token + bordas neutras em repouso (verde só no foco) */
        .contact-form { background: radial-gradient(circle at 90% 0%, rgba(69, 199, 255, 0.12), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.038)); }
        .contact-form input, .contact-form textarea, .contact-form select, .contact-form label { border-color: var(--line); }
        /* raio consistente nos painéis grandes */
        .final-cta, .contact-form, .video-studio, .app-card, .management-panel, .contact-benefit { border-radius: var(--radius-lg); }

        /* =================== POLISH 2 — Soluções & Contato + foco acessível =================== */
        /* foco visível por teclado (acessibilidade — todo o site) */
        .button:focus-visible, .button-primary:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
        .contact-form input:focus-visible, .contact-form select:focus-visible, .contact-form textarea:focus-visible { box-shadow: 0 0 0 3px rgba(69, 199, 255, 0.5); border-color: var(--cyan); }
        /* SOLUÇÕES — ícone em chip, sombra, hover reativo, tags legíveis */
        .solution-card { box-shadow: var(--shadow-card); background-image: radial-gradient(120% 60% at 0% 0%, rgba(33, 214, 161, 0.06), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, 0.067), rgba(255, 255, 255, 0.032)); }
        .solution-card svg { width: 22px; height: 22px; box-sizing: content-box; padding: 9px; border: 1px solid rgba(33, 214, 161, 0.28); border-radius: 12px; background: rgba(33, 214, 161, 0.1); transition: border-color 0.2s ease, background 0.2s ease; }
        .solution-card:hover { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(33, 214, 161, 0.18); }
        .solution-card:hover svg { border-color: rgba(33, 214, 161, 0.5); background: rgba(33, 214, 161, 0.16); }
        .solution-card h3 { margin-top: 16px; } .solution-card p { margin-top: 10px; line-height: 1.55; }
        .solution-card .tag-list span { padding: 6px 11px; border-radius: 999px; border-color: var(--line); color: #c4d4cd; font-size: 11.5px; background: rgba(255, 255, 255, 0.03); }
        /* CONTATO — equilíbrio das colunas, CTA forte, labels, densidade, benefícios */
        .contact-grid .final-cta { align-content: space-between; gap: 26px; padding: 34px 32px; }
        .contact-form .button-primary { width: 100%; min-height: 56px; margin-top: 4px; font-size: 16px; border-radius: var(--radius-lg); box-shadow: 0 16px 38px rgba(33, 214, 161, 0.26); }
        .contact-form .button-primary:hover, .contact-form .button-primary:focus-visible { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(33, 214, 161, 0.34); }
        .contact-form .field-label { font-weight: 700; font-size: 13px; color: rgba(246, 251, 248, 0.94); }
        .contact-form .field-hint { color: rgba(186, 201, 193, 0.92); }
        .contact-form input, .contact-form textarea, .contact-form select { border-radius: 12px; }
        .contact-form::after { opacity: 0.22; -webkit-mask-image: linear-gradient(180deg, #000, transparent 42%); mask-image: linear-gradient(180deg, #000, transparent 42%); }
        .contact-benefit strong { font-size: 15.5px; font-weight: 800; }
        .contact-benefit small { font-size: 12.5px; color: var(--muted); }
        .contact-benefit span { width: 32px; height: 32px; border: 1px solid rgba(33, 214, 161, 0.22); background: rgba(33, 214, 161, 0.1); font-size: 12px; }
        .contact-trust span { transition: border-color 0.2s ease, color 0.2s ease; }
        .contact-trust span:hover { border-color: rgba(33, 214, 161, 0.4); color: var(--text); }

        /* =================== Depoimentos =================== */
        .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
        .testimonial-card { display: flex; flex-direction: column; gap: 14px; padding: 26px 24px; border: 1px solid var(--line); border-radius: var(--radius-lg, 16px); background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)); box-shadow: var(--shadow-card, 0 12px 40px rgba(0, 0, 0, 0.18)); transition: transform 0.2s ease, border-color 0.2s ease; }
        .testimonial-card:hover { transform: translateY(-4px); border-color: rgba(33, 214, 161, 0.35); }
        .t-stars { color: #ffc24d; letter-spacing: 2px; font-size: 15px; }
        .testimonial-card blockquote { margin: 0; color: var(--text); font-size: 1.02rem; line-height: 1.6; flex: 1; }
        .testimonial-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
        .t-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 15px; color: #06100e; background: var(--a, #21d6a1); flex: 0 0 auto; }
        .t-who { display: flex; flex-direction: column; }
        .t-who strong { font-size: 0.98rem; } .t-who small { color: var(--muted); font-size: 0.85rem; }
        @media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

        /* =================== Por que GoisTec: garantias + comparativo =================== */
        .guarantee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
        .guarantee { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius, 10px); background: rgba(255, 255, 255, 0.03); }
        .guarantee .g-ico { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: rgba(33, 214, 161, 0.14); color: var(--green); font-weight: 800; border: 1px solid rgba(33, 214, 161, 0.3); }
        .guarantee strong { display: block; font-size: 0.98rem; } .guarantee span { color: var(--muted); font-size: 0.9rem; }
        .compare { border: 1px solid var(--line); border-radius: var(--radius-lg, 16px); overflow: hidden; }
        .compare-row { display: grid; grid-template-columns: 1.6fr 0.7fr 1fr; align-items: center; gap: 8px; padding: 14px 18px; border-top: 1px solid var(--line); }
        .compare-row:first-child { border-top: none; }
        .compare-head { background: rgba(255, 255, 255, 0.04); font-weight: 700; font-size: 0.92rem; }
        .compare-head .c-gois { color: var(--green); }
        .compare-row span:nth-child(2), .compare-row span:nth-child(3) { text-align: center; font-weight: 700; }
        .compare .c-yes { color: var(--green); } .compare .c-no { color: #6b7a74; }
        .compare-row span:first-child { color: var(--text); font-weight: 500; font-size: 0.95rem; }
        @media (max-width: 780px) { .guarantee-grid { grid-template-columns: 1fr; } .compare-row { grid-template-columns: 1.4fr 0.6fr 0.8fr; padding: 12px 14px; font-size: 0.88rem; } }

        /* =================== Barra CTA fixa (mobile) =================== */
        .mobile-cta { display: none; transition: transform 0.3s ease; }
        @media (max-width: 768px) {
            .mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: flex; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(6, 16, 14, 0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
            .mobile-cta a { flex: 1; text-align: center; padding: 13px 10px; border-radius: 12px; font-weight: 700; font-size: 14px; text-decoration: none; }
            .mobile-cta .mc-wa { background: #25d366; color: #06100e; }
            .mobile-cta .mc-an { background: rgba(33, 214, 161, 0.14); color: var(--green); border: 1px solid rgba(33, 214, 161, 0.4); }
            .mobile-cta.hide { transform: translateY(130%); }
            .whatsapp-float { display: none; }
        }

/* ===================== Páginas novas (blog / serviços) ===================== */
/* rede de segurança global: nenhuma imagem estoura a largura do container */
img { max-width:100%; }
.crumbs { display:flex; flex-wrap:wrap; gap:8px; align-items:center; font-size:.88rem; color:var(--muted); margin-bottom:22px; }
.crumbs a { color:var(--muted); } .crumbs a:hover { color:var(--green); } .crumbs .sep { opacity:.5; }
.article { width:min(860px, 100%); margin-inline:auto; }
.article-title { font-size:clamp(30px,4.4vw,46px); line-height:1.12; font-weight:800; letter-spacing:-.01em; margin:14px 0 14px; }
.pill-tag { display:inline-flex; align-items:center; padding:6px 12px; border-radius:999px; background:rgba(33,214,161,.12); border:1px solid rgba(33,214,161,.3); color:var(--green); font-size:.8rem; font-weight:700; text-decoration:none; transition:background .2s ease, border-color .2s ease; }
a.pill-tag:hover { background:rgba(33,214,161,.2); border-color:rgba(33,214,161,.55); }
.post-meta { display:flex; flex-wrap:wrap; align-items:center; gap:10px; color:var(--muted); font-size:.9rem; }
.lead-text { font-size:1.2rem; color:var(--text); opacity:.92; }
.article-body { font-size:1.08rem; line-height:1.78; color:var(--muted); }
.article-body h2 { font-size:clamp(1.5rem,3vw,2rem); color:var(--text); margin:36px 0 14px; letter-spacing:-.01em; }
.article-body h3 { font-size:1.25rem; color:var(--text); margin:26px 0 10px; }
.article-body p { margin-bottom:18px; }
.article-body ul { margin:0 0 18px; padding-left:22px; display:grid; gap:9px; }
.article-body li::marker { color:var(--green); }
.article-body strong { color:var(--text); }
.article-body em { color:var(--cyan); font-style:italic; }
.article-body blockquote { margin:24px 0; padding:16px 22px; border-left:3px solid var(--green); background:rgba(33,214,161,.07); border-radius:0 10px 10px 0; color:var(--text); font-size:1.12rem; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.post-card { display:flex; flex-direction:column; overflow:hidden; }
.post-cover { aspect-ratio:16/9; display:grid; place-items:center; border-bottom:1px solid var(--line-soft, rgba(255,255,255,.07)); position:relative; }
.post-cover span { font-family:"JetBrains Mono",monospace; font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; color:#06100e; background:var(--green); padding:6px 12px; border-radius:999px; font-weight:700; }
.post-cover--0 { background:radial-gradient(circle at 30% 30%,rgba(33,214,161,.28),transparent 60%),#0c1a17; }
.post-cover--1 { background:radial-gradient(circle at 70% 30%,rgba(69,199,255,.28),transparent 60%),#0c1a17; }
.post-cover--2 { background:radial-gradient(circle at 50% 40%,rgba(154,124,255,.28),transparent 60%),#0c1a17; }
.post-cover--3 { background:radial-gradient(circle at 40% 40%,rgba(255,209,102,.26),transparent 60%),#0c1a17; }
.post-body { display:flex; flex-direction:column; flex:1; padding:20px 22px; gap:10px; }
.post-card h3 { font-size:1.16rem; line-height:1.25; }
.post-card p { color:var(--muted); font-size:.95rem; flex:1; }
.post-readmore { color:var(--green); font-weight:700; font-size:.92rem; }
.rel-box { margin-top:40px; padding-top:26px; border-top:1px solid var(--line); display:grid; gap:12px; }
.rel-box h3 { font-size:1.1rem; }
.rel-link { display:block; color:var(--text); padding:12px 16px; border:1px solid var(--line); border-radius:10px; background:var(--panel, rgba(255,255,255,.05)); transition:border-color .2s, background .2s; }
.rel-link:hover { border-color:rgba(33,214,161,.4); background:rgba(33,214,161,.08); color:var(--green); }
.faq-list { display:grid; gap:12px; }
.faq-acc { border:1px solid var(--line); border-radius:12px; background:var(--panel, rgba(255,255,255,.05)); overflow:hidden; }
.faq-acc[open] { border-color:rgba(33,214,161,.35); }
.faq-acc summary { display:flex; justify-content:space-between; align-items:center; gap:16px; padding:18px 20px; cursor:pointer; font-weight:700; color:var(--text); list-style:none; }
.faq-acc summary::-webkit-details-marker { display:none; }
.faq-acc summary span { color:var(--green); font-size:1.4rem; transition:transform .25s; }
.faq-acc[open] summary span { transform:rotate(45deg); }
.faq-acc p { padding:0 20px 20px; color:var(--muted); }
.cta-pageband { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:24px; padding:clamp(28px,4vw,44px); border-radius:18px; background:radial-gradient(circle at 88% 20%,rgba(33,214,161,.18),transparent 45%),linear-gradient(150deg,#0c1a17,#081310); border:1px solid rgba(33,214,161,.18); box-shadow:var(--shadow); }
.cta-pageband h2 { font-size:clamp(1.5rem,3vw,2.1rem); } .cta-pageband p { color:var(--muted); margin-top:8px; }
@media (max-width:900px){ .blog-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .blog-grid { grid-template-columns:1fr; } }

/* capas das postagens (imagens geradas) */
.post-cover { display:block; overflow:hidden; }
.post-cover img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s ease; }
.post-card:hover .post-cover img { transform:scale(1.04); }
.article-cover { width:100%; height:auto; display:block; border-radius:var(--radius-lg,16px); margin:6px 0 30px; box-shadow:var(--shadow-card,0 12px 40px rgba(0,0,0,.18)); border:1px solid var(--line); }

/* mini-formulário de lead (páginas de serviço) + consentimento LGPD */
.mini-lead { margin-top:36px; padding:clamp(22px,3vw,32px); border:1px solid rgba(33,214,161,.25); border-radius:var(--radius-lg,16px); background:radial-gradient(circle at 90% 0%,rgba(33,214,161,.10),transparent 40%),linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02)); box-shadow:var(--shadow,0 24px 90px rgba(0,0,0,.35)); }
.mini-lead h3 { font-size:1.3rem; }
.mini-lead > p { color:var(--muted); margin:6px 0 18px; }
.mini-fields { display:grid; gap:12px; }
.mini-fields input, .mini-fields textarea { width:100%; padding:13px 14px; border-radius:12px; border:1px solid var(--line); background:rgba(0,0,0,.18); color:var(--text); font:inherit; font-size:15px; box-sizing:border-box; }
.mini-fields textarea { min-height:96px; resize:vertical; }
.mini-fields input:focus, .mini-fields textarea:focus { outline:none; border-color:var(--green); box-shadow:0 0 0 3px rgba(33,214,161,.18); }
.lgpd-consent { display:flex; gap:10px; align-items:flex-start; font-size:13px; line-height:1.5; color:var(--muted); margin:14px 0; }
.lgpd-consent input { margin-top:3px; width:18px; height:18px; accent-color:#21d6a1; flex:0 0 auto; }
.lgpd-consent a { color:var(--green); }
.mini-lead button { width:100%; }
.mini-status { margin-top:12px; color:var(--green); font-weight:600; }

/* artigo turbinado: progresso de leitura, TOC, compartilhar, autor */
.read-progress { position:fixed; top:0; left:0; right:0; height:3px; z-index:100; background:transparent; pointer-events:none; }
.read-progress span { display:block; height:100%; width:0; background:linear-gradient(90deg,var(--green),var(--cyan)); }
.toc { margin:24px 0 8px; padding:18px 20px; border:1px solid var(--line); border-radius:var(--radius,10px); background:rgba(255,255,255,.03); }
.toc-title { font-weight:700; color:var(--text); margin-bottom:10px; font-size:.82rem; text-transform:uppercase; letter-spacing:.06em; }
.toc ol { margin:0; padding-left:20px; display:grid; gap:7px; }
.toc a { color:var(--muted); } .toc a:hover { color:var(--green); } .toc li::marker { color:var(--green); }
.article-body h2[id] { scroll-margin-top:84px; }
.share-row { display:flex; align-items:center; flex-wrap:wrap; gap:10px; margin:18px 0 4px; font-size:.9rem; color:var(--muted); }
.share-row a { padding:7px 14px; border:1px solid var(--line); border-radius:999px; color:var(--text); font-weight:600; font-size:.85rem; transition:border-color .2s,background .2s; }
.share-row a:hover { border-color:rgba(33,214,161,.4); background:rgba(33,214,161,.08); color:var(--green); }
.author-box { display:flex; gap:16px; align-items:flex-start; margin:36px 0 8px; padding:22px; border:1px solid var(--line); border-radius:var(--radius-lg,16px); background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02)); }
.author-box .ab-mark { flex:0 0 auto; width:52px; height:52px; border-radius:14px; display:grid; place-items:center; font-weight:800; color:#06100e; background:linear-gradient(135deg,var(--green),var(--cyan)); }
.author-box strong { display:block; } .author-box p { color:var(--muted); margin-top:6px; font-size:.95rem; }
.author-box .ab-links a { color:var(--green); font-weight:600; }

/* diagnóstico interativo (quiz) */
.quiz { max-width:720px; }
.quiz-form { display:grid; gap:18px; }
.quiz .q { border:1px solid var(--line); border-radius:var(--radius,10px); padding:18px 20px; margin:0; background:rgba(255,255,255,.03); }
.quiz .q legend { font-weight:700; padding:0 6px; color:var(--text); }
.quiz .q label { display:flex; gap:10px; align-items:center; padding:9px 0; color:var(--muted); cursor:pointer; }
.quiz .q input { width:18px; height:18px; accent-color:#21d6a1; }
.quiz-form > .button { width:100%; }
.quiz-result { margin-top:20px; padding:28px; border:1px solid rgba(33,214,161,.3); border-radius:var(--radius-lg,16px); background:radial-gradient(circle at 90% 0%,rgba(33,214,161,.12),transparent 45%),linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02)); text-align:center; }
.qr-score { font-size:64px; font-weight:900; color:var(--green); line-height:1; } .qr-score small { font-size:24px; color:var(--muted); }
.qr-bar { height:10px; border-radius:999px; background:rgba(255,255,255,.08); overflow:hidden; margin:16px 0 20px; }
.qr-bar span { display:block; height:100%; width:0; background:linear-gradient(90deg,var(--green),var(--cyan)); transition:width .8s cubic-bezier(.16,1,.3,1); }
.quiz-result h2 { font-size:1.5rem; } .quiz-result p { color:var(--muted); margin:10px auto 22px; max-width:46ch; }
.qr-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* blog: busca + chips de categoria */
.blog-tools { display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between; margin-bottom:26px; }
#blogSearch { flex:1; min-width:220px; padding:12px 16px; border-radius:999px; border:1px solid var(--line); background:rgba(0,0,0,.18); color:var(--text); font:inherit; font-size:15px; }
#blogSearch:focus { outline:none; border-color:var(--green); box-shadow:0 0 0 3px rgba(33,214,161,.18); }
.blog-chips { display:flex; flex-wrap:wrap; gap:8px; }
.blog-chips .chip { padding:7px 14px; border-radius:999px; border:1px solid var(--line); background:transparent; color:var(--muted); font:inherit; font-size:.85rem; font-weight:600; cursor:pointer; transition:all .2s; }
.blog-chips .chip:hover { border-color:rgba(33,214,161,.4); color:var(--text); }
.blog-chips .chip.active { background:var(--green); color:#06100e; border-color:var(--green); }
.blog-empty { text-align:center; color:var(--muted); padding:30px 0; }

/* índice de serviços (hub) */
.hub-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.hub-grid--sm { grid-template-columns:repeat(3,1fr); }
.hub-card { display:flex; flex-direction:column; gap:10px; padding:24px; text-decoration:none; color:var(--text); border:1px solid var(--line); border-radius:var(--radius-lg,16px); background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03)); box-shadow:var(--shadow-card,0 12px 40px rgba(0,0,0,.18)); transition:transform .2s,border-color .2s; }
.hub-card:hover { transform:translateY(-4px); border-color:rgba(33,214,161,.4); }
.hub-card h3 { font-size:1.15rem; } .hub-card p { color:var(--muted); font-size:.95rem; flex:1; }
.hub-card--sm h3 { font-size:1.02rem; }
.hub-go { color:var(--green); font-weight:700; font-size:.9rem; }
@media (max-width:780px){ .hub-grid,.hub-grid--sm { grid-template-columns:1fr; } }

/* Página de Serviços (hub) — redesenho rico */
.svc-hero { max-width:760px; }
.svc-hero h1 { margin:14px 0 12px; }
.svc-hero p { color:var(--muted); font-size:1.12rem; margin-bottom:22px; }
.svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:38px; }
.svc-card { display:flex; flex-direction:column; padding:0; overflow:hidden; text-decoration:none; color:var(--text); border:1px solid var(--line); border-radius:var(--radius-lg,16px); background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03)); box-shadow:var(--shadow-card,0 12px 40px rgba(0,0,0,.18)); transition:transform .2s,border-color .2s; }
.svc-card:hover { transform:translateY(-5px); border-color:rgba(33,214,161,.4); }
.svc-card-img { width:100%; height:auto; aspect-ratio:16/9; object-fit:cover; display:block; border-bottom:1px solid var(--line); }
.svc-card-body { display:flex; flex-direction:column; gap:12px; padding:22px 22px 24px; flex:1; }
.svc-ico { width:50px; height:50px; border-radius:14px; display:grid; place-items:center; color:var(--green); background:rgba(33,214,161,.12); border:1px solid rgba(33,214,161,.28); }
.svc-card h3 { font-size:1.18rem; line-height:1.25; }
.svc-card-body > p { color:var(--muted); font-size:.95rem; }
.svc-feats { list-style:none; margin:2px 0 6px; padding:0; display:grid; gap:7px; flex:1; }
.svc-feats li { position:relative; padding-left:22px; color:var(--muted); font-size:.92rem; }
.svc-feats li::before { content:"✓"; position:absolute; left:0; color:var(--green); font-weight:700; }
.svc-guarantees { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.svc-guar { display:inline-flex; align-items:center; gap:8px; padding:10px 16px; border:1px solid var(--line); border-radius:999px; color:var(--muted); font-size:.9rem; background:rgba(255,255,255,.03); }
.svc-guar span { color:var(--green); font-weight:800; }
.svc-steps { display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }
.svc-step { padding:18px; border:1px solid var(--line); border-radius:var(--radius,10px); background:rgba(255,255,255,.03); text-align:center; }
.svc-step span { display:inline-grid; place-items:center; width:34px; height:34px; border-radius:10px; background:rgba(33,214,161,.1); border:1px solid rgba(33,214,161,.3); color:var(--green); font-weight:700; margin-bottom:10px; }
.svc-step strong { display:block; font-size:.95rem; }
.svc-local-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.svc-local { display:flex; align-items:center; gap:14px; padding:16px 18px; text-decoration:none; color:var(--text); border:1px solid var(--line); border-radius:var(--radius,10px); background:rgba(255,255,255,.03); transition:transform .2s,border-color .2s; }
.svc-local:hover { transform:translateY(-3px); border-color:rgba(33,214,161,.4); }
.svc-pin { flex:0 0 auto; color:var(--green); display:grid; place-items:center; width:42px; height:42px; border-radius:12px; background:rgba(33,214,161,.1); border:1px solid rgba(33,214,161,.28); }
.svc-local strong { display:block; } .svc-local small { color:var(--green); font-size:.85rem; }
@media (max-width:920px){ .svc-grid{grid-template-columns:repeat(2,1fr);} .svc-steps{grid-template-columns:repeat(3,1fr);} .svc-local-grid{grid-template-columns:1fr;} }
@media (max-width:600px){ .svc-grid{grid-template-columns:1fr;} .svc-steps{grid-template-columns:1fr;} }

/* Landing page paga /analise-digital/ */
.lp-hero { padding:clamp(48px,8vw,90px) 0 clamp(30px,5vw,50px); text-align:center; }
.lp-hero h1 { font-size:clamp(30px,5vw,52px); line-height:1.12; max-width:18ch; margin:14px auto 16px; }
.lp-sub { color:var(--muted); font-size:clamp(1rem,2.2vw,1.2rem); line-height:1.6; max-width:60ch; margin:0 auto 26px; }
.lp-hero .hero-actions { justify-content:center; }
.lp-provas { display:flex; flex-wrap:wrap; justify-content:center; gap:30px; margin:0 auto 26px; }
.lp-prova strong { display:block; font-size:clamp(1.6rem,4vw,2.2rem); color:var(--green); line-height:1; }
.lp-prova span { color:var(--muted); font-size:.9rem; }
.lp-dor-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.lp-dor-card { padding:24px; border:1px solid var(--line); border-radius:var(--radius-lg,16px); background:linear-gradient(180deg,rgba(255,90,90,.06),rgba(255,255,255,.02)); box-shadow:var(--shadow-card,0 12px 40px rgba(0,0,0,.18)); }
.lp-dor-card h3 { font-size:1.12rem; color:var(--text); } .lp-dor-card p { color:var(--muted); font-size:.95rem; margin-top:8px; }
.lp-cta-mid { text-align:center; margin-top:34px; }
.lp-promessa { color:var(--muted); font-size:1.08rem; line-height:1.75; margin:14px 0 20px; }
.lp-sol { list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.lp-sol li { position:relative; padding-left:30px; color:var(--text); line-height:1.5; }
.lp-sol li::before { content:"✓"; position:absolute; left:0; top:0; width:20px; height:20px; display:grid; place-items:center; color:var(--green); font-weight:800; }
.lp-pub-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.lp-pub { padding:24px; border:1px solid var(--line); border-radius:var(--radius-lg,16px); background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03)); }
.lp-pub strong { display:block; color:var(--green); font-size:1.1rem; margin-bottom:8px; } .lp-pub p { color:var(--muted); font-size:.95rem; }
@media (max-width:820px){ .lp-dor-grid,.lp-pub-grid,.lp-sol{ grid-template-columns:1fr; } }
.lp-badge { display:inline-block; padding:8px 16px; border-radius:999px; background:rgba(33,214,161,.12); border:1px solid rgba(33,214,161,.3); color:var(--green); font-size:.85rem; font-weight:600; margin-bottom:18px; }
.lp-trust { color:var(--muted); font-size:.85rem; margin-top:18px; }
.lp-dor-ico { display:inline-grid; place-items:center; width:46px; height:46px; border-radius:12px; color:#ff7a7a; background:rgba(255,122,122,.12); border:1px solid rgba(255,122,122,.28); margin-bottom:6px; }
.lp-pub { text-align:left; }
.lp-pub-ico { display:inline-grid; place-items:center; width:46px; height:46px; border-radius:12px; color:var(--green); background:rgba(33,214,161,.12); border:1px solid rgba(33,214,161,.28); margin-bottom:12px; }
.lp-step-d { color:var(--muted); font-size:.9rem; margin-top:6px; }
.lp-steps3 { grid-template-columns:repeat(3,1fr) !important; }
@media (max-width:820px){ .lp-steps3 { grid-template-columns:1fr !important; } }
.glo-index { display:flex; flex-wrap:wrap; gap:8px; margin:22px 0 30px; }
.glo-index a { font-size:.85rem; padding:5px 11px; border-radius:999px; background:rgba(255,255,255,.05); border:1px solid var(--line); color:var(--muted); text-decoration:none; transition:background .2s,border-color .2s,color .2s; }
.glo-index a:hover { background:rgba(33,214,161,.14); border-color:rgba(33,214,161,.4); color:var(--green); }
.glo-list { display:grid; gap:14px; }
.glo-item { padding:20px 22px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.03); scroll-margin-top:90px; }
.glo-item h2 { font-size:1.15rem; margin:0 0 6px; color:var(--text); }
.glo-item p { margin:0; color:var(--muted); line-height:1.6; }
/* form de captura no resultado do quiz */
.qr-form { margin:18px auto 6px; max-width:430px; text-align:left; }
.qr-form-label { font-weight:700; color:var(--text); margin-bottom:10px; text-align:center; }
.qr-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:12px; }
