        :root {
            --gb-blue: #075a9c;
            --gb-blue-strong: #003f79;
            --gb-blue-soft: #eaf4ff;
            --gb-green: #00a859;
            --gb-green-strong: #07864b;
            --gb-green-soft: #e8fff4;
            --gb-yellow: #ffcc29;
            --gb-yellow-strong: #d9a900;
            --gb-yellow-soft: #fff7d1;
            --gb-dark: #07142f;
            --gb-muted: #667085;
            --gb-border: #dce5f1;
            --gb-bg: #f6f9fc;
            --gb-white: #ffffff;
            --gb-shadow-xl: 0 26px 70px rgba(7, 20, 47, .16);
            --gb-shadow-lg: 0 18px 44px rgba(7, 20, 47, .11);
            --gb-shadow-md: 0 12px 28px rgba(7, 20, 47, .08);
            --gb-radius-xl: 34px;
            --gb-radius-lg: 24px;
            --gb-radius-md: 18px;
            --container: 1240px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--gb-dark);
            background:
                radial-gradient(circle at top left, rgba(0, 168, 89, .07), transparent 30rem),
                radial-gradient(circle at top right, rgba(255, 204, 41, .12), transparent 26rem),
                linear-gradient(180deg, #ffffff 0%, var(--gb-bg) 100%);
            line-height: 1.5;
        }

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

        img {
            display: block;
            max-width: 100%;
        }

        .container {
            width: min(100% - 40px, var(--container));
            margin: 0 auto;
        }

        /* ========================= TOPO ========================= */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 80;
            background: rgba(255, 255, 255, .92);
            border-bottom: 1px solid rgba(220, 229, 241, .86);
            backdrop-filter: blur(18px);
        }

        .header-inner {
            min-height: 82px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-weight: 900;
            color: var(--gb-blue);
        }

        .brand-mark {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--gb-green) 0 34%, var(--gb-yellow) 34% 58%, var(--gb-blue) 58% 100%);
            box-shadow: 0 12px 24px rgba(7, 90, 156, .18);
        }

        .brand-mark::after {
            content: "G";
            position: absolute;
            inset: 8px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: var(--gb-blue);
            background: rgba(255, 255, 255, .94);
            font-size: 20px;
            font-weight: 950;
        }

        .brand-text strong {
            display: block;
            line-height: 1;
            font-size: 1.42rem;
            letter-spacing: -.04em;
        }

        .brand-text small {
            display: block;
            margin-top: 4px;
            color: var(--gb-muted);
            font-size: .74rem;
            font-weight: 850;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px;
            border: 1px solid var(--gb-border);
            border-radius: 999px;
            background: rgba(255, 255, 255, .78);
        }

        .main-nav a {
            padding: 10px 14px;
            border-radius: 999px;
            color: #354762;
            font-size: .92rem;
            font-weight: 850;
            transition: .2s ease;
        }

        .main-nav a:hover {
            background: var(--gb-blue-soft);
            color: var(--gb-blue);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 46px;
            padding: 0 20px;
            border: 0;
            border-radius: 999px;
            cursor: pointer;
            font-size: .94rem;
            font-weight: 900;
            white-space: nowrap;
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary {
            color: white;
            background: linear-gradient(135deg, var(--gb-green), #23c878);
            box-shadow: 0 16px 30px rgba(0, 168, 89, .24);
        }

        .btn-secondary {
            color: var(--gb-blue);
            background: var(--gb-blue-soft);
            border: 1px solid #d0e7ff;
        }

        .btn-dark {
            color: white;
            background: linear-gradient(135deg, var(--gb-blue), var(--gb-blue-strong));
            box-shadow: 0 16px 30px rgba(7, 90, 156, .22);
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid var(--gb-border);
            border-radius: 14px;
            background: white;
            font-size: 1.2rem;
            cursor: pointer;
        }

        /* ========================= HERO LIMPO ========================= */
        .hero {
            position: relative;
            overflow: hidden;
            padding: 72px 0 54px;
            background:
                linear-gradient(90deg, rgba(0, 168, 89, .10), transparent 25%),
                linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
        }

        .hero::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--gb-green) 0 34%, var(--gb-yellow) 34% 66%, var(--gb-blue) 66% 100%);
        }

        .hero-layout {
            display: grid;
            grid-template-columns: minmax(0, .95fr) minmax(340px, .55fr);
            align-items: center;
            gap: 42px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            padding: 10px 14px;
            border-radius: 999px;
            color: var(--gb-green-strong);
            background: var(--gb-green-soft);
            border: 1px solid rgba(0, 168, 89, .18);
            font-size: .78rem;
            font-weight: 950;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        .hero h1 {
            margin: 18px 0 16px;
            max-width: 820px;
            font-size: clamp(2.5rem, 5vw, 5.25rem);
            line-height: .98;
            letter-spacing: -.075em;
            color: var(--gb-dark);
        }

        .hero h1 span {
            color: var(--gb-green);
        }

        .hero-lead {
            max-width: 740px;
            margin: 0;
            color: #41516c;
            font-size: clamp(1.04rem, 1.7vw, 1.22rem);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
        }

        .hero-side {
            position: relative;
            border-radius: 30px;
            background: white;
            border: 1px solid var(--gb-border);
            box-shadow: var(--gb-shadow-lg);
            padding: 24px;
        }

        .hero-side::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 7px;
            border-radius: 30px 30px 0 0;
            background: linear-gradient(90deg, var(--gb-green), var(--gb-yellow), var(--gb-blue));
        }

        .hero-side h2 {
            margin: 0 0 12px;
            font-size: 1.25rem;
        }

        .hero-side p {
            margin: 0 0 18px;
            color: var(--gb-muted);
        }

        .hero-points {
            display: grid;
            gap: 12px;
        }

        .hero-point {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 13px;
            border-radius: 16px;
            background: #f8fbff;
            border: 1px solid #e8eef7;
        }

        .hero-point strong {
            display: block;
            font-size: .95rem;
        }

        .hero-point span {
            display: block;
            margin-top: 2px;
            color: var(--gb-muted);
            font-size: .88rem;
        }

        .point-icon {
            flex: 0 0 34px;
            width: 34px;
            height: 34px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            background: var(--gb-yellow-soft);
        }

        /* ========================= CARROSSEL DE TELAS ========================= */
        .showcase-section {
            padding: 54px 0 84px;
        }

        .showcase-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 20px;
        }

        .section-kicker {
            display: inline-flex;
            color: var(--gb-green-strong);
            text-transform: uppercase;
            letter-spacing: .08em;
            font-size: .8rem;
            font-weight: 950;
        }

        .showcase-head h2,
        .section-title h2 {
            margin: 10px 0 12px;
            font-size: clamp(2rem, 3vw, 3.15rem);
            line-height: 1.03;
            letter-spacing: -.055em;
        }

        .showcase-head p,
        .section-title p {
            margin: 0;
            color: var(--gb-muted);
            font-size: 1.03rem;
        }

        .showcase-count {
            flex: 0 0 auto;
            padding: 10px 14px;
            border-radius: 999px;
            color: var(--gb-blue);
            background: var(--gb-blue-soft);
            border: 1px solid #d0e7ff;
            font-size: .84rem;
            font-weight: 900;
        }

        .platform-carousel {
            position: relative;
            border-radius: var(--gb-radius-xl);
            background: white;
            border: 1px solid var(--gb-border);
            box-shadow: var(--gb-shadow-xl);
            padding: 16px;
        }

        .platform-stage {
            position: relative;
            min-height: 700px;
            overflow: hidden;
            border-radius: 26px;
            background: linear-gradient(180deg, #eef7ff, #ffffff);
        }

        .platform-slide {
            position: absolute;
            inset: 0;
            display: grid;
            opacity: 0;
            transform: translateX(34px) scale(.985);
            transition: opacity .52s ease, transform .52s ease;
            pointer-events: none;
        }

        .platform-slide.is-active {
            opacity: 1;
            transform: translateX(0) scale(1);
            pointer-events: auto;
            z-index: 3;
        }

        .platform-screen {
    width: 100%;
    min-height: clamp(360px, 52vw, 680px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    overflow: visible;
    background: #f7f9fc;
    border-radius: 24px;
}

        .platform-screen::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top left, rgba(0, 168, 89, .07), transparent 24rem),
                radial-gradient(circle at bottom right, rgba(7, 90, 156, .08), transparent 24rem);
            pointer-events: none;
        }

        .platform-screen img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
    object-position: center;
    display: block;
    border-radius: 18px;
}

        .platform-slide.is-phone .platform-screen {
            background: linear-gradient(135deg, #eaf6ff, #ecfff6);
        }

        .platform-slide.is-phone .platform-screen {
    max-width: 430px;
    min-height: clamp(520px, 72vw, 760px);
    margin: 0 auto;
}

        .platform-caption {
            position: absolute;
            left: 24px;
            bottom: 24px;
            width: min(540px, calc(100% - 48px));
            padding: 20px;
            border-radius: 22px;
            color: white;
            background: linear-gradient(135deg, rgba(7, 20, 47, .92), rgba(7, 90, 156, .82));
            border: 1px solid rgba(255, 255, 255, .16);
            box-shadow: 0 20px 44px rgba(7, 20, 47, .24);
            backdrop-filter: blur(13px);
            z-index: 5;
        }

        .platform-caption span {
            color: var(--gb-yellow);
            font-size: .74rem;
            font-weight: 950;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        .platform-caption h3 {
            margin: 6px 0 7px;
            font-size: 1.35rem;
            line-height: 1.1;
        }

        .platform-caption p {
            margin: 0;
            color: rgba(255, 255, 255, .82);
            font-size: .94rem;
        }

        .platform-arrow {
            position: absolute;
            top: 50%;
            z-index: 10;
            width: 54px;
            height: 54px;
            border: 0;
            border-radius: 999px;
            color: var(--gb-blue);
            background: rgba(255, 255, 255, .95);
            box-shadow: 0 14px 30px rgba(7, 20, 47, .20);
            cursor: pointer;
            transform: translateY(-50%);
            font-size: 1.55rem;
            font-weight: 950;
        }

        .platform-arrow.prev {
            left: 30px;
        }

        .platform-arrow.next {
            right: 30px;
        }

        .platform-bottom {
            position: absolute;
            left: 50%;
            bottom: 24px;
            z-index: 12;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .95);
            border: 1px solid rgba(220, 229, 241, .95);
            box-shadow: var(--gb-shadow-md);
        }

        .platform-dots {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .platform-dot {
            width: 9px;
            height: 9px;
            border-radius: 999px;
            border: 0;
            background: #c2ccdc;
            cursor: pointer;
            transition: width .2s ease, background .2s ease;
        }

        .platform-dot.is-active {
            width: 30px;
            background: linear-gradient(135deg, var(--gb-green), var(--gb-blue));
        }

        .slide-counter {
            color: #42526d;
            font-size: .84rem;
            font-weight: 900;
            white-space: nowrap;
        }

        .screen-thumbs {
            display: grid;
            grid-template-columns: repeat(7, minmax(0, 1fr));
            gap: 10px;
            margin-top: 14px;
        }

        .screen-thumb {
            min-height: 64px;
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 10px;
            border: 1px solid var(--gb-border);
            border-radius: 16px;
            background: white;
            color: var(--gb-dark);
            cursor: pointer;
            text-align: left;
            box-shadow: var(--gb-shadow-md);
            transition: transform .2s ease, border-color .2s ease;
        }

        .screen-thumb:hover {
            transform: translateY(-3px);
            border-color: rgba(0, 168, 89, .32);
        }

        .screen-thumb strong {
            display: grid;
            place-items: center;
            flex: 0 0 32px;
            width: 32px;
            height: 32px;
            border-radius: 11px;
            color: var(--gb-blue);
            background: var(--gb-blue-soft);
            font-size: .72rem;
        }

        .screen-thumb span {
            color: #42526d;
            font-size: .78rem;
            font-weight: 850;
            line-height: 1.18;
        }

        .screen-thumb.is-active {
            background: linear-gradient(135deg, var(--gb-green), var(--gb-blue));
            color: white;
            border-color: transparent;
        }

        .screen-thumb.is-active span {
            color: rgba(255, 255, 255, .92);
        }

        .screen-thumb.is-active strong {
            color: var(--gb-dark);
            background: var(--gb-yellow);
        }

        /* ========================= SEÇÃO SOLUÇÃO / CARDS ANIMADOS ========================= */
        .section {
            padding: 84px 0;
        }

        .section-title {
            max-width: 830px;
            margin-bottom: 24px;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            margin-top: 30px;
        }

        .solution-card {
            position: relative;
            min-height: 260px;
            overflow: hidden;
            border-radius: 26px;
            background: white;
            border: 1px solid var(--gb-border);
            box-shadow: var(--gb-shadow-md);
            transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
            outline: none;
        }

        .solution-card::after {
            content: "";
            position: absolute;
            right: -44px;
            bottom: -44px;
            width: 132px;
            height: 132px;
            border-radius: 50%;
            background: var(--gb-blue-soft);
            transition: transform .28s ease, opacity .28s ease;
            opacity: .9;
        }

        .solution-card:hover,
        .solution-card:focus-within,
        .solution-card:focus {
            transform: translateY(-8px);
            box-shadow: 0 24px 60px rgba(7, 20, 47, .16);
            border-color: rgba(0, 168, 89, .32);
        }

        .solution-card:hover::after,
        .solution-card:focus::after {
            transform: scale(1.4);
            opacity: .65;
        }

        .solution-main {
            position: relative;
            z-index: 2;
            padding: 24px;
        }

        .solution-icon {
            width: 54px;
            height: 54px;
            display: grid;
            place-items: center;
            border-radius: 17px;
            font-size: 1.45rem;
            margin-bottom: 18px;
            background: var(--gb-green-soft);
        }

        .accent-blue .solution-icon {
            background: var(--gb-blue-soft);
        }

        .accent-yellow .solution-icon {
            background: var(--gb-yellow-soft);
        }

        .solution-main h3 {
            margin: 0 0 9px;
            font-size: 1.12rem;
            letter-spacing: -.02em;
        }

        .solution-main p {
            margin: 0;
            color: #53637e;
            font-size: .94rem;
        }

        .solution-hover {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 4;
            transform: translateY(calc(100% - 10px));
            transition: transform .32s ease;
            background: white;
            border-top: 1px solid var(--gb-border);
            box-shadow: 0 -18px 32px rgba(7, 20, 47, .10);
        }

        .solution-card:hover .solution-hover,
        .solution-card:focus .solution-hover,
        .solution-card:focus-within .solution-hover {
            transform: translateY(0);
        }

        .solution-hover::before {
            content: "";
            display: block;
            height: 5px;
            background: linear-gradient(90deg, var(--gb-green), var(--gb-yellow), var(--gb-blue));
        }

        .solution-image {
            height: 132px;
            overflow: hidden;
            background: #f4f8fc;
        }

        .solution-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transform: scale(1.02);
            transition: transform .4s ease;
        }

        .solution-card:hover .solution-image img,
        .solution-card:focus .solution-image img {
            transform: scale(1.08);
        }

        .solution-details {
            padding: 15px 18px 18px;
        }

        .solution-details strong {
            display: block;
            color: var(--gb-blue);
            font-size: .88rem;
            margin-bottom: 8px;
        }

        .solution-details ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 6px;
        }

        .solution-details li {
            position: relative;
            padding-left: 18px;
            color: #47566f;
            font-size: .84rem;
        }

        .solution-details li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gb-green);
            font-weight: 950;
        }

        /* ========================= BENEFÍCIOS E PERFIS ========================= */
        .profile-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            margin-top: 30px;
        }

        .profile-card {
            padding: 28px;
            border-radius: 28px;
            background: white;
            border: 1px solid var(--gb-border);
            box-shadow: var(--gb-shadow-md);
            position: relative;
            overflow: hidden;
        }

        .profile-card::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 6px;
            background: linear-gradient(90deg, var(--gb-green), var(--gb-yellow), var(--gb-blue));
        }

        .profile-card h3 {
            margin: 0 0 10px;
            font-size: 1.25rem;
        }

        .profile-card p {
            margin: 0;
            color: var(--gb-muted);
        }

        .benefit-band {
            border-radius: 32px;
            padding: 34px;
            background: linear-gradient(135deg, var(--gb-blue-strong), var(--gb-blue) 58%, var(--gb-green) 100%);
            box-shadow: var(--gb-shadow-lg);
            color: white;
        }

        .benefit-band .section-title p {
            color: rgba(255, 255, 255, .78);
        }

        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            margin-top: 30px;
        }

        .benefit-card {
            padding: 19px;
            border-radius: 20px;
            background: rgba(255, 255, 255, .11);
            border: 1px solid rgba(255, 255, 255, .16);
        }

        .benefit-card strong {
            display: block;
            margin-bottom: 5px;
            font-size: 1.02rem;
        }

        .benefit-card span {
            color: rgba(255, 255, 255, .78);
            font-size: .92rem;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
            margin-top: 30px;
        }

        .step {
            background: white;
            border: 1px solid var(--gb-border);
            border-radius: 24px;
            padding: 24px;
            box-shadow: var(--gb-shadow-md);
        }

        .step strong {
            display: inline-grid;
            place-items: center;
            width: 38px;
            height: 38px;
            margin-bottom: 14px;
            border-radius: 13px;
            color: var(--gb-dark);
            background: var(--gb-yellow);
        }

        .step h3 {
            margin: 0 0 8px;
            font-size: 1.08rem;
        }

        .step p {
            margin: 0;
            color: var(--gb-muted);
            font-size: .94rem;
        }

        .cta-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 22px;
            padding: 36px;
            border-radius: 32px;
            color: white;
            background: linear-gradient(135deg, var(--gb-green), var(--gb-blue));
            box-shadow: var(--gb-shadow-lg);
        }

        .cta-box h2 {
            margin: 0 0 8px;
            font-size: clamp(1.7rem, 3vw, 2.6rem);
            letter-spacing: -.05em;
        }

        .cta-box p {
            margin: 0;
            max-width: 720px;
            color: rgba(255, 255, 255, .82);
        }

        .site-footer {
            padding: 26px 0 40px;
            color: var(--gb-muted);
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-top: 18px;
            border-top: 1px solid var(--gb-border);
        }

        @media (max-width: 1180px) {
            .hero-layout {
                grid-template-columns: 1fr;
            }

            .solution-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .screen-thumbs {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

            .platform-stage,
            .platform-screen {
                min-height: 610px;
                height: 610px;
            }

            .benefit-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .steps {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 960px) {
            .main-nav {
                display: none;
                position: absolute;
                top: 82px;
                left: 20px;
                right: 20px;
                flex-direction: column;
                align-items: stretch;
                padding: 12px;
                border-radius: 20px;
                background: white;
                border: 1px solid var(--gb-border);
                box-shadow: var(--gb-shadow-md);
            }

            .main-nav.open {
                display: flex;
            }

            .main-nav a {
                border-radius: 13px;
            }

            .menu-toggle {
                display: inline-grid;
                place-items: center;
            }

            .header-actions .btn-secondary {
                display: none;
            }

            .showcase-head {
                align-items: flex-start;
                flex-direction: column;
            }

            .platform-stage,
            .platform-screen {
                min-height: 520px;
                height: 520px;
            }

            .screen-thumbs {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .platform-arrow {
                width: 48px;
                height: 48px;
            }

            .platform-arrow.prev {
                left: 18px;
            }

            .platform-arrow.next {
                right: 18px;
            }

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

            .cta-box,
            .footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 640px) {
            .container {
                width: min(100% - 24px, var(--container));
            }

            .header-actions .btn-primary {
                display: none;
            }

            .brand-text strong {
                font-size: 1.22rem;
            }

            .hero {
                padding: 48px 0 40px;
            }

            .hero h1 {
                font-size: 2.38rem;
            }

            .solution-grid,
            .benefit-grid,
            .steps {
                grid-template-columns: 1fr;
            }

            .solution-card {
                min-height: 270px;
            }

            .solution-hover {
                position: relative;
                transform: none;
                margin-top: 4px;
            }

            .platform-carousel {
                padding: 10px;
                border-radius: 24px;
            }

            .platform-stage,
            .platform-screen {
                min-height: 390px;
                height: 390px;
                border-radius: 18px;
            }

            .platform-caption {
                left: 12px;
                right: 12px;
                bottom: 12px;
                width: auto;
                padding: 14px;
                border-radius: 18px;
            }

            .platform-caption h3 {
                font-size: 1.08rem;
            }

            .platform-caption p {
                font-size: .84rem;
            }

            .platform-bottom {
                bottom: 10px;
                gap: 9px;
                padding: 9px 10px;
            }

            .slide-counter {
                display: none;
            }

            .platform-arrow {
                display: none;
            }

            .section,
            .showcase-section {
                padding: 58px 0;
            }

            .cta-box {
                padding: 24px;
            }
        }


        /*
            ========================================================================
            AJUSTE V5 - GALERIA NO TOPO
            ------------------------------------------------------------------------
            Mantém o restante do site como estava e reforça apenas a área da galeria.
            O objetivo é que as telas reais do sistema sejam a primeira coisa vista
            pelo cliente, com imagem maior, melhor contraste e mais presença visual.
            ========================================================================
        */
        .top-showcase {
            position: relative;
            overflow: hidden;
            padding: 38px 0 78px;
            background:
                radial-gradient(circle at 0% 0%, rgba(0, 168, 89, .10), transparent 30rem),
                radial-gradient(circle at 100% 10%, rgba(255, 204, 41, .18), transparent 28rem),
                linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
            border-bottom: 1px solid rgba(220, 229, 241, .85);
        }

        .top-showcase::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 6px;
            background: linear-gradient(90deg, var(--gb-green) 0 33%, var(--gb-yellow) 33% 66%, var(--gb-blue) 66% 100%);
        }

        .top-showcase .container {
            position: relative;
            z-index: 2;
        }

        .top-showcase .showcase-head {
            align-items: center;
            margin-bottom: 22px;
        }

        .top-showcase .section-kicker {
            padding: 8px 12px;
            border-radius: 999px;
            background: var(--gb-green-soft);
            border: 1px solid rgba(0, 168, 89, .16);
        }

        .top-showcase .showcase-head h2 {
            max-width: 940px;
            font-size: clamp(2.45rem, 4.5vw, 5rem);
            line-height: .96;
            letter-spacing: -.075em;
        }

        .top-showcase .showcase-head p {
            max-width: 900px;
            font-size: 1.08rem;
        }

        .top-showcase .showcase-count {
            background: white;
            border-color: rgba(7, 90, 156, .18);
            box-shadow: var(--gb-shadow-md);
        }

        .top-showcase .platform-carousel {
            padding: 22px;
            border: 1px solid rgba(7, 90, 156, .18);
            background:
                linear-gradient(135deg, rgba(0, 168, 89, .07), rgba(255, 204, 41, .08) 42%, rgba(7, 90, 156, .08)),
                #ffffff;
            box-shadow: 0 34px 95px rgba(7, 20, 47, .18);
        }

        .top-showcase .platform-stage {
            min-height: clamp(620px, calc(100vh - 240px), 820px);
            background:
                linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
            border: 1px solid rgba(220, 229, 241, .86);
        }

        .top-showcase .platform-screen {
            height: clamp(620px, calc(100vh - 240px), 820px);
            background:
                radial-gradient(circle at 12% 8%, rgba(0, 168, 89, .08), transparent 20rem),
                radial-gradient(circle at 88% 12%, rgba(255, 204, 41, .15), transparent 20rem),
                #fbfdff;
        }

        .top-showcase .platform-screen img {
            padding: 18px;
            object-fit: contain;
        }

        .top-showcase .platform-caption {
            left: 34px;
            bottom: 34px;
            width: min(610px, calc(100% - 68px));
            background: linear-gradient(135deg, rgba(0, 63, 121, .94), rgba(7, 90, 156, .88));
        }

        .top-showcase .platform-caption h3 {
            font-size: 1.6rem;
        }

        .top-showcase .platform-arrow {
            width: 62px;
            height: 62px;
            color: white;
            background: linear-gradient(135deg, var(--gb-green), var(--gb-blue));
            box-shadow: 0 18px 38px rgba(7, 90, 156, .24);
        }

        .top-showcase .platform-arrow.prev {
            left: 36px;
        }

        .top-showcase .platform-arrow.next {
            right: 36px;
        }

        .top-showcase .platform-bottom {
            bottom: 32px;
            padding: 12px 16px;
        }

        .top-showcase .screen-thumbs {
            margin-top: 18px;
        }

        @media (max-width: 980px) {
            .top-showcase {
                padding: 28px 0 58px;
            }

            .top-showcase .showcase-head {
                align-items: flex-start;
            }

            .top-showcase .showcase-head h2 {
                font-size: clamp(2.1rem, 8vw, 3.4rem);
            }

            .top-showcase .platform-stage {
                min-height: 560px;
            }

            .top-showcase .platform-screen {
                height: 560px;
            }

            .top-showcase .platform-carousel {
                padding: 14px;
            }

            .top-showcase .platform-caption {
                left: 18px;
                right: 18px;
                bottom: 18px;
                width: auto;
            }

            .top-showcase .platform-arrow.prev {
                left: 18px;
            }

            .top-showcase .platform-arrow.next {
                right: 18px;
            }
        }

        @media (max-width: 640px) {
            .top-showcase {
                padding: 22px 0 48px;
            }

            .top-showcase .platform-stage {
                min-height: 430px;
            }

            .top-showcase .platform-screen {
                height: 430px;
            }

            .top-showcase .platform-screen img {
                padding: 8px;
            }

            .top-showcase .platform-caption {
                padding: 15px;
            }

            .top-showcase .platform-caption h3 {
                font-size: 1.18rem;
            }

            .top-showcase .platform-arrow {
                width: 46px;
                height: 46px;
            }

            .top-showcase .platform-bottom {
                bottom: 14px;
                max-width: calc(100% - 24px);
                overflow-x: auto;
            }
        }


        /*
            ========================================================================
            AJUSTE V6 - GALERIA MAIS COMERCIAL E OCUPANDO A LARGURA DA TELA
            ------------------------------------------------------------------------
            O que foi feito aqui:
            - A frase inicial deixou de falar sobre o carrossel e passou a vender o valor do sistema.
            - A galeria do topo deixou de ficar limitada ao container padrão de 1240px.
            - O carrossel agora usa praticamente toda a largura útil da tela.
            - As imagens principais usam object-fit: cover para evitar grandes sobras laterais.
            - O restante do site permanece igual ao modelo anterior.
            ========================================================================
        */
        body {
            overflow-x: hidden;
        }

        .top-showcase {
            padding: 34px 0 72px;
            background:
                radial-gradient(circle at 0% 0%, rgba(0, 168, 89, .13), transparent 32rem),
                radial-gradient(circle at 100% 4%, rgba(255, 204, 41, .22), transparent 34rem),
                linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
        }

        .top-showcase .container {
            width: 100%;
            max-width: none;
            padding-left: clamp(20px, 3vw, 58px);
            padding-right: clamp(20px, 3vw, 58px);
        }

        .top-showcase .showcase-head {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: end;
            gap: 28px;
            margin-bottom: 30px;
        }

        .top-showcase .showcase-head>div {
            max-width: 1080px;
        }

        .top-showcase .section-kicker {
            background: #ffffff;
            border-color: rgba(0, 168, 89, .26);
            box-shadow: 0 12px 26px rgba(0, 168, 89, .08);
        }

        .top-showcase .showcase-head h2 {
            max-width: 1080px;
            font-size: clamp(2.55rem, 4.6vw, 5.4rem);
            line-height: .96;
            letter-spacing: -.078em;
        }

        .top-showcase .showcase-head p {
            max-width: 980px;
            font-size: clamp(1rem, 1.25vw, 1.18rem);
            color: #455a7c;
        }

        .top-showcase .showcase-count {
            align-self: center;
            color: var(--gb-blue);
            background: var(--gb-blue-soft);
            border-color: rgba(7, 90, 156, .24);
        }

        .top-showcase .platform-carousel {
            width: 100%;
            max-width: none;
            border-radius: 32px;
            padding: clamp(14px, 1.4vw, 24px);
            border: 1px solid rgba(7, 90, 156, .20);
            background:
                linear-gradient(135deg, rgba(0, 168, 89, .08), rgba(255, 204, 41, .08) 46%, rgba(7, 90, 156, .08)),
                #ffffff;
            box-shadow: 0 34px 100px rgba(7, 20, 47, .17);
        }

        .top-showcase .platform-stage {
            min-height: clamp(650px, calc(100vh - 220px), 880px);
            border-radius: 28px;
        }

        .top-showcase .platform-screen {
            height: clamp(650px, calc(100vh - 220px), 880px);
            background:
                radial-gradient(circle at 12% 8%, rgba(0, 168, 89, .08), transparent 20rem),
                radial-gradient(circle at 88% 12%, rgba(255, 204, 41, .14), transparent 20rem),
                #fbfdff;
        }

        .top-showcase .platform-screen img {
            width: 100%;
            height: 100%;
            padding: 0;
            object-fit: cover;
            object-position: top center;
        }

        .top-showcase .platform-slide.is-phone .platform-screen img {
            width: auto;
            max-width: min(86%, 460px);
            height: 94%;
            padding: 0;
            object-fit: contain;
            object-position: center;
        }

        .top-showcase .platform-caption {
            left: clamp(22px, 2vw, 42px);
            bottom: clamp(22px, 2vw, 42px);
            width: min(660px, calc(100% - 84px));
        }

        .top-showcase .platform-arrow.prev {
            left: clamp(22px, 2vw, 42px);
        }

        .top-showcase .platform-arrow.next {
            right: clamp(22px, 2vw, 42px);
        }

        .top-showcase .screen-thumbs {
            width: 100%;
            grid-template-columns: repeat(7, minmax(130px, 1fr));
        }

        @media (max-width: 980px) {
            .top-showcase .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .top-showcase .showcase-head {
                grid-template-columns: 1fr;
                align-items: start;
            }

            .top-showcase .showcase-head h2 {
                font-size: clamp(2.1rem, 8vw, 3.4rem);
            }

            .top-showcase .platform-stage {
                min-height: 560px;
            }

            .top-showcase .platform-screen {
                height: 560px;
            }

            .top-showcase .platform-screen img {
                object-fit: contain;
                padding: 8px;
            }

            .top-showcase .screen-thumbs {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .top-showcase {
                padding: 24px 0 48px;
            }

            .top-showcase .container {
                padding-left: 12px;
                padding-right: 12px;
            }

            .top-showcase .platform-stage {
                min-height: 430px;
            }

            .top-showcase .platform-screen {
                height: 430px;
            }

            .top-showcase .platform-caption {
                left: 12px;
                right: 12px;
                bottom: 12px;
                width: auto;
            }
        }



        /*
            ========================================================================
            AJUSTE V7 - TOPO MAIS COMERCIAL E SEM VAZIO LATERAL
            ------------------------------------------------------------------------
            O que foi feito aqui:
            - Mantém a V6 como arquivo base.
            - Melhora somente a primeira área acima da galeria.
            - Substitui a frase genérica por uma chamada mais voltada para venda/teste.
            - Preenche melhor o lado direito com um card de benefícios práticos.
            - Usa visual mais limpo com as cores Gabinett/Brasil: verde, amarelo, azul e branco.
            ========================================================================
        */
        .top-showcase {
            padding: 34px 0 76px;
            background:
                radial-gradient(circle at 8% 12%, rgba(0, 168, 89, .15), transparent 34rem),
                radial-gradient(circle at 92% 8%, rgba(255, 204, 41, .22), transparent 32rem),
                linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
        }

        .top-showcase .container {
            width: 100%;
            max-width: none;
            padding-left: clamp(24px, 4vw, 74px);
            padding-right: clamp(24px, 4vw, 74px);
        }

        .top-showcase .showcase-head {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
            align-items: center;
            gap: clamp(28px, 4vw, 72px);
            margin-bottom: 34px;
        }

        .top-showcase .showcase-copy {
            max-width: 1040px;
        }

        .top-showcase .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 14px;
            border-radius: 999px;
            color: #007a3d;
            background: #ffffff;
            border: 1px solid rgba(0, 168, 89, .28);
            box-shadow: 0 12px 26px rgba(0, 168, 89, .08);
        }

        .top-showcase .section-kicker::before {
            content: "";
            width: 9px;
            height: 9px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--gb-green), var(--gb-yellow));
            box-shadow: 0 0 0 5px rgba(0, 168, 89, .10);
        }

        .top-showcase .showcase-head h2 {
            max-width: 1050px;
            margin-top: 20px;
            margin-bottom: 18px;
            font-size: clamp(2.7rem, 5vw, 5.65rem);
            line-height: .94;
            letter-spacing: -.08em;
            color: var(--gb-dark);
        }

        .top-showcase .showcase-head p {
            max-width: 850px;
            color: #3f5577;
            font-size: clamp(1.02rem, 1.25vw, 1.22rem);
            line-height: 1.62;
        }

        .top-showcase .showcase-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 26px;
        }

        .top-showcase .showcase-summary {
            position: relative;
            overflow: hidden;
            padding: 28px;
            border-radius: 28px;
            background:
                linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .78)),
                radial-gradient(circle at 100% 0%, rgba(255, 204, 41, .25), transparent 12rem),
                radial-gradient(circle at 0% 100%, rgba(0, 168, 89, .18), transparent 12rem);
            border: 1px solid rgba(7, 90, 156, .16);
            box-shadow: 0 24px 60px rgba(8, 20, 47, .10);
        }

        .top-showcase .showcase-summary::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 5px;
            background: linear-gradient(90deg, var(--gb-green), var(--gb-yellow), var(--gb-blue));
        }

        .summary-topline {
            width: fit-content;
            padding: 7px 11px;
            border-radius: 999px;
            color: var(--gb-blue);
            background: var(--gb-blue-soft);
            border: 1px solid rgba(7, 90, 156, .16);
            font-size: .78rem;
            font-weight: 950;
            text-transform: uppercase;
            letter-spacing: .06em;
        }

        .top-showcase .showcase-summary h3 {
            margin: 15px 0 16px;
            font-size: clamp(1.35rem, 1.6vw, 1.75rem);
            line-height: 1.12;
            letter-spacing: -.035em;
            color: var(--gb-dark);
        }

        .top-showcase .showcase-summary ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 12px;
        }

        .top-showcase .showcase-summary li {
            position: relative;
            padding: 13px 13px 13px 42px;
            border-radius: 17px;
            color: #3f5577;
            background: rgba(255, 255, 255, .78);
            border: 1px solid rgba(220, 229, 241, .78);
            font-size: .96rem;
            line-height: 1.45;
        }

        .top-showcase .showcase-summary li::before {
            content: "✓";
            position: absolute;
            left: 13px;
            top: 13px;
            width: 20px;
            height: 20px;
            border-radius: 7px;
            display: grid;
            place-items: center;
            color: white;
            background: linear-gradient(135deg, var(--gb-green), var(--gb-blue));
            font-size: .75rem;
            font-weight: 950;
        }

        .top-showcase .showcase-summary strong {
            color: var(--gb-dark);
        }

        .top-showcase .platform-carousel {
            margin-left: auto;
            margin-right: auto;
            border-radius: 34px;
        }

        @media (max-width: 1100px) {
            .top-showcase .showcase-head {
                grid-template-columns: 1fr;
                align-items: start;
            }

            .top-showcase .showcase-summary {
                max-width: 760px;
            }
        }

        @media (max-width: 640px) {
            .top-showcase .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .top-showcase .showcase-head h2 {
                font-size: clamp(2.15rem, 12vw, 3.25rem);
                letter-spacing: -.065em;
            }

            .top-showcase .showcase-actions .btn {
                width: 100%;
            }

            .top-showcase .showcase-summary {
                padding: 22px;
                border-radius: 22px;
            }
        }

        /*
            ========================================================================
            AJUSTE GALERIA - CARROSSEL INSPIRADO NO GABINETE INTELIGENTE
            ------------------------------------------------------------------------
            Mantem as imagens atuais, mas muda a apresentacao da galeria para um
            palco em camadas: slide ativo grande, anterior/proximo aparecendo ao
            fundo, setas circulares e dots discretos no rodape do carrossel.
            ========================================================================
        */
        .top-showcase {
            overflow: hidden;
            overflow-x: clip;
            isolation: isolate;
            padding: clamp(44px, 6vw, 72px) 0 clamp(72px, 8vw, 116px);
            color: white;
            background:
                linear-gradient(118deg, rgba(255, 255, 255, .07) 0 13%, transparent 13% 34%, rgba(255, 255, 255, .05) 34% 35%, transparent 35% 100%),
                linear-gradient(135deg, #2b6fba 0%, #342f91 52%, #7945a4 100%);
        }

        .top-showcase::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background:
                linear-gradient(90deg, rgba(255, 255, 255, .09) 0 1px, transparent 1px 120px),
                linear-gradient(180deg, rgba(255, 255, 255, .07) 0 1px, transparent 1px 120px);
            mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent 70%);
            pointer-events: none;
        }

        .top-showcase .container {
            width: 100%;
            max-width: none;
            padding-left: clamp(18px, 4vw, 72px);
            padding-right: clamp(18px, 4vw, 72px);
        }

        .top-showcase .showcase-head {
            display: block;
            max-width: 1080px;
            margin: 0 auto clamp(32px, 4vw, 54px);
            text-align: center;
        }

        .top-showcase .showcase-copy {
            max-width: none;
        }

        .top-showcase .section-kicker {
            margin: 0 auto;
            color: #18d5f4;
            background: rgba(255, 255, 255, .11);
            border: 1px solid rgba(255, 255, 255, .18);
            box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
        }

        .top-showcase .section-kicker::before {
            background: #18d5f4;
            box-shadow: 0 0 0 6px rgba(24, 213, 244, .15);
        }

        .top-showcase .showcase-head h2 {
            max-width: 930px;
            margin: 18px auto 18px;
            color: white;
            font-size: clamp(2.35rem, 4.8vw, 4.9rem);
            line-height: 1.06;
            letter-spacing: 0;
        }

        .top-showcase .showcase-head p {
            max-width: 980px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, .86);
            font-size: clamp(1rem, 1.3vw, 1.22rem);
        }

        .top-showcase .showcase-actions {
            justify-content: center;
        }

        .top-showcase .showcase-summary {
            display: none;
        }

        .top-showcase .platform-carousel {
            width: min(100%, 1480px);
            margin: 0 auto;
            padding: 0;
            border: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
        }

        .top-showcase .platform-stage {
            width: min(1120px, 78vw);
            height: clamp(500px, 45vw, 690px);
            min-height: 0;
            margin: 0 auto;
            overflow: visible;
            border: 0;
            border-radius: 28px;
            background: transparent;
        }

        .top-showcase .platform-slide {
            opacity: 0;
            transform: translateX(0) scale(.78);
            transition: opacity .62s ease, transform .62s ease, filter .62s ease;
            will-change: opacity, transform;
        }

        .top-showcase .platform-slide.is-prev,
        .top-showcase .platform-slide.is-next {
            opacity: .52;
            z-index: 1;
            pointer-events: none;
            filter: saturate(.88) contrast(.94);
        }

        .top-showcase .platform-slide.is-prev {
            transform: translateX(-16%) scale(.9) rotate(-3.5deg);
        }

        .top-showcase .platform-slide.is-next {
            transform: translateX(16%) scale(.9) rotate(3.5deg);
        }

        .top-showcase .platform-slide.is-active {
            opacity: 1;
            transform: translateX(0) scale(1);
            z-index: 4;
        }

        .top-showcase .platform-screen {
            height: 100%;
            min-height: 0;
            overflow: hidden;
            border-radius: 24px;
            background: #ffffff;
            border: 1px solid rgba(255, 255, 255, .72);
            box-shadow: 0 34px 80px rgba(4, 15, 43, .32), 0 0 0 10px rgba(255, 255, 255, .08);
        }

        .top-showcase .platform-screen::before {
            display: none;
        }

        .top-showcase .platform-slide.is-prev .platform-screen,
        .top-showcase .platform-slide.is-next .platform-screen {
            box-shadow: 0 24px 56px rgba(4, 15, 43, .24);
        }

        .top-showcase .platform-screen img {
            width: 100%;
            height: 100%;
            padding: 0;
            object-fit: cover;
            object-position: top center;
        }

        .top-showcase .platform-slide.is-phone .platform-screen {
            background: linear-gradient(135deg, #f2fbff, #ffffff);
        }

        .top-showcase .platform-slide.is-phone .platform-screen img {
            width: auto;
            max-width: min(82%, 390px);
            height: 92%;
            object-fit: contain;
            object-position: center;
            filter: drop-shadow(0 28px 34px rgba(5, 20, 51, .22));
        }

        .top-showcase .platform-slide.is-prev .platform-caption,
        .top-showcase .platform-slide.is-next .platform-caption {
            opacity: 0;
            transform: translateY(10px);
        }

        .top-showcase .platform-caption {
            left: clamp(18px, 2.4vw, 34px);
            top: clamp(18px, 2.2vw, 32px);
            bottom: auto;
            width: min(430px, calc(100% - 48px));
            padding: 15px 17px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(5, 26, 67, .86), rgba(11, 100, 161, .74));
            border: 1px solid rgba(255, 255, 255, .2);
            box-shadow: 0 18px 42px rgba(4, 15, 43, .22);
            opacity: 0;
            transform: translateY(-8px);
            transition: opacity .38s ease .16s, transform .38s ease .16s;
        }

        .top-showcase .platform-slide.is-active .platform-caption {
            opacity: 1;
            transform: translateY(0);
        }

        .top-showcase .platform-caption h3 {
            font-size: 1.18rem;
            letter-spacing: 0;
        }

        .top-showcase .platform-caption {
            display: none;
        }

        .top-showcase .platform-arrow {
            top: 50%;
            width: 62px;
            height: 62px;
            color: white;
            background: linear-gradient(135deg, #08b86f, #0785ad);
            border: 1px solid rgba(255, 255, 255, .24);
            box-shadow: 0 20px 44px rgba(4, 15, 43, .28);
            transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
        }

        .top-showcase .platform-arrow:hover {
            transform: translateY(-50%) scale(1.06);
            box-shadow: 0 24px 54px rgba(4, 15, 43, .34);
        }

        .top-showcase .platform-arrow.prev {
            left: max(18px, calc(50% - 650px));
        }

        .top-showcase .platform-arrow.next {
            right: max(18px, calc(50% - 650px));
        }

        .top-showcase .platform-bottom {
            bottom: 18px;
            gap: 14px;
            padding: 10px 14px;
            background: rgba(255, 255, 255, .94);
            border: 1px solid rgba(255, 255, 255, .72);
            box-shadow: 0 16px 34px rgba(4, 15, 43, .18);
        }

        .top-showcase .platform-dot {
            width: 8px;
            height: 8px;
            background: #c5d1df;
        }

        .top-showcase .platform-dot.is-active {
            width: 24px;
            background: #2487e7;
        }

        .top-showcase .slide-counter {
            color: #31435f;
        }

        .top-showcase .screen-thumbs {
            display: none;
        }

        @media (max-width: 980px) {
            .top-showcase .platform-stage {
                width: min(100%, 760px);
                height: clamp(420px, 70vw, 590px);
            }

            .top-showcase .platform-slide.is-prev,
            .top-showcase .platform-slide.is-next {
                opacity: .28;
            }

            .top-showcase .platform-slide.is-prev {
                transform: translateX(-10%) scale(.9) rotate(-2deg);
            }

            .top-showcase .platform-slide.is-next {
                transform: translateX(10%) scale(.9) rotate(2deg);
            }

            .top-showcase .platform-arrow.prev {
                left: 18px;
            }

            .top-showcase .platform-arrow.next {
                right: 18px;
            }
        }

        @media (max-width: 640px) {
            .top-showcase {
                padding: 34px 0 64px;
            }

            .top-showcase .container {
                max-width: 100%;
                overflow: hidden;
                padding-left: 20px;
                padding-right: 20px;
            }

            .top-showcase .showcase-head {
                width: min(350px, calc(100vw - 40px));
                max-width: min(350px, calc(100vw - 40px));
                margin-left: 0;
                margin-right: 0;
                margin-bottom: 26px;
                transform: none;
            }

            .top-showcase .section-kicker {
                display: flex;
                flex-wrap: wrap;
                width: 100%;
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
                white-space: normal;
                justify-content: center;
                text-align: center;
                overflow-wrap: anywhere;
            }

            .top-showcase .showcase-head h2 {
                width: 100%;
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
                font-size: clamp(1.85rem, 7.5vw, 2.25rem);
                line-height: 1.12;
                word-break: break-word;
                overflow-wrap: anywhere;
            }

            .top-showcase .showcase-head p {
                width: 100%;
                max-width: 100%;
            }

            .top-showcase .platform-carousel {
                width: min(350px, calc(100vw - 40px));
                max-width: min(350px, calc(100vw - 40px));
                margin-left: 0;
                margin-right: 0;
                overflow: hidden;
                transform: none;
            }

            .top-showcase .platform-stage {
                width: 100%;
                height: 430px;
            }

            .top-showcase .platform-slide.is-prev,
            .top-showcase .platform-slide.is-next {
                opacity: 0;
            }

            .top-showcase .platform-screen {
                border-radius: 18px;
                box-shadow: 0 22px 48px rgba(4, 15, 43, .28), 0 0 0 6px rgba(255, 255, 255, .08);
            }

            .top-showcase .platform-screen img {
                object-fit: contain;
                background: white;
            }

            .top-showcase .platform-caption {
                left: 12px;
                right: 12px;
                top: 12px;
                width: auto;
                padding: 13px;
            }

            .top-showcase .platform-caption p {
                display: none;
            }

            .top-showcase .platform-arrow {
                display: flex;
                width: 46px;
                height: 46px;
                font-size: 1.35rem;
            }

            .top-showcase .platform-arrow.prev {
                left: 12px;
            }

            .top-showcase .platform-arrow.next {
                right: 12px;
            }

            .top-showcase .platform-bottom {
                bottom: 12px;
                max-width: calc(100% - 24px);
                overflow-x: auto;
            }
        }

        .brand {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
        }

        .brand-logo {
            height: 48px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .brand-logo {
                height: 40px;
            }
        }

        /* 
    Botão do vídeo
    Mantém o padrão dos botões existentes, mas com destaque próprio.
*/
        /*
            ========================================================================
            AJUSTE RESPONSIVIDADE MOBILE/TABLET
            ------------------------------------------------------------------------
            Camada final de CSS para corrigir largura, menu, carrossel, cards e
            botoes em telas de celular e tablet.
            ========================================================================
        */
        html,
        body {
            max-width: 100%;
            overflow-x: hidden;
        }

        body {
            -webkit-text-size-adjust: 100%;
        }

        img,
        iframe,
        video {
            max-width: 100%;
        }

        .section-title h2,
        .showcase-head h2,
        .hero h1,
        .cta-box h2 {
            overflow-wrap: anywhere;
        }

        .btn {
            max-width: 100%;
            text-align: center;
            white-space: normal;
            line-height: 1.15;
        }

        .platform-carousel,
        .platform-stage,
        .platform-screen,
        .top-showcase .platform-carousel,
        .top-showcase .platform-stage {
            max-width: 100%;
        }

        @media (max-width: 1100px) {
            .site-header {
                position: sticky;
            }

            .header-inner {
                position: relative;
                min-height: 72px;
                gap: 12px;
            }

            .main-nav {
                top: calc(100% + 8px);
                left: 16px;
                right: 16px;
                z-index: 100;
                max-height: calc(100vh - 96px);
                overflow-y: auto;
            }

            .main-nav a {
                display: block;
                width: 100%;
                padding: 13px 14px;
            }

            .hero-layout,
            .top-showcase .showcase-head {
                grid-template-columns: 1fr;
            }

            .hero-side,
            .top-showcase .showcase-summary {
                width: 100%;
                max-width: 760px;
            }

            .top-showcase .container {
                padding-left: clamp(16px, 3vw, 32px);
                padding-right: clamp(16px, 3vw, 32px);
            }

            .top-showcase .showcase-head {
                display: grid;
                max-width: 920px;
                text-align: left;
                margin-left: auto;
                margin-right: auto;
            }

            .top-showcase .showcase-actions {
                justify-content: flex-start;
            }

            .top-showcase .platform-carousel {
                width: 100%;
            }

            .top-showcase .platform-stage {
                width: 100%;
                height: clamp(420px, 62vw, 590px);
                overflow: hidden;
            }

            .top-showcase .platform-slide.is-prev,
            .top-showcase .platform-slide.is-next {
                opacity: 0;
            }

            .top-showcase .platform-screen img {
                object-fit: contain;
                background: #ffffff;
            }

            .solution-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .profile-grid,
            .benefit-grid,
            .steps {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .container {
                width: min(100% - 28px, var(--container));
            }

            .header-inner {
                min-height: 66px;
            }

            .brand-logo {
                height: 36px;
            }

            .header-actions {
                gap: 8px;
            }

            .header-actions .btn-primary,
            .header-actions .btn-secondary {
                display: none;
            }

            .menu-toggle {
                display: inline-grid;
                place-items: center;
                flex: 0 0 44px;
            }

            .main-nav {
                left: 14px;
                right: 14px;
            }

            .top-showcase {
                padding: 32px 0 56px;
            }

            .top-showcase .container {
                padding-left: 14px;
                padding-right: 14px;
            }

            .top-showcase .showcase-head {
                width: 100%;
                max-width: 100%;
                margin: 0 auto 24px;
                text-align: center;
            }

            .top-showcase .section-kicker {
                width: fit-content;
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
                white-space: normal;
                justify-content: center;
            }

            .top-showcase .showcase-head h2 {
                font-size: clamp(2rem, 9vw, 3.1rem);
                line-height: 1.08;
            }

            .top-showcase .showcase-head p {
                font-size: 1rem;
                line-height: 1.55;
            }

            .showcase-actions,
            .hero-actions {
                width: 100%;
                justify-content: center;
            }

            .showcase-actions .btn,
            .hero-actions .btn {
                flex: 1 1 220px;
                min-width: 0;
            }

            .top-showcase .platform-carousel {
                width: 100%;
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
                overflow: hidden;
            }

            .top-showcase .platform-stage {
                width: 100%;
                height: clamp(320px, 88vw, 470px);
                border-radius: 20px;
            }

            .top-showcase .platform-screen {
                border-radius: 18px;
            }

            .top-showcase .platform-arrow {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 42px;
                height: 42px;
                font-size: 1.25rem;
            }

            .top-showcase .platform-arrow.prev {
                left: 8px;
            }

            .top-showcase .platform-arrow.next {
                right: 8px;
            }

            .top-showcase .platform-bottom {
                bottom: 10px;
                max-width: calc(100% - 20px);
                gap: 8px;
                padding: 8px 10px;
                overflow-x: auto;
            }

            .platform-dot {
                flex: 0 0 auto;
            }

            .hero {
                padding: 44px 0 40px;
            }

            .hero h1 {
                font-size: clamp(2.1rem, 10vw, 3.2rem);
                line-height: 1.05;
            }

            .hero-side {
                border-radius: 22px;
                padding: 20px;
            }

            .solution-grid,
            .profile-grid,
            .benefit-grid,
            .steps {
                grid-template-columns: 1fr;
            }

            .solution-card {
                min-height: auto;
                border-radius: 22px;
            }

            .solution-main {
                padding: 22px 22px 16px;
            }

            .solution-hover {
                position: relative;
                transform: none;
                margin-top: 0;
            }

            .solution-card:hover,
            .solution-card:focus,
            .solution-card:focus-within {
                transform: none;
            }

            .benefit-band,
            .cta-box {
                border-radius: 24px;
                padding: 24px;
            }

            .cta-box,
            .footer-inner {
                flex-direction: column;
                align-items: stretch;
                text-align: left;
            }

            .cta-box .btn {
                width: 100%;
            }

            .video-modal__content {
                width: calc(100vw - 24px);
                max-height: calc(100vh - 24px);
                border-radius: 18px;
            }
        }

        @media (max-width: 480px) {
            .container {
                width: min(100% - 24px, var(--container));
            }

            .top-showcase .container {
                padding-left: 12px;
                padding-right: 12px;
            }

            .top-showcase .showcase-head h2 {
                font-size: clamp(1.85rem, 10vw, 2.55rem);
            }

            .showcase-actions .btn,
            .hero-actions .btn {
                flex-basis: 100%;
                width: 100%;
            }

            .top-showcase .platform-stage {
                height: clamp(300px, 98vw, 420px);
            }

            .platform-bottom .slide-counter {
                display: none;
            }

            .section,
            .showcase-section {
                padding: 52px 0;
            }

            .profile-card,
            .step {
                padding: 22px;
                border-radius: 22px;
            }
        }

.btn-video {
    background: #0d5c9f;
    color: #ffffff;
    border: 1px solid #0d5c9f;
}

.btn-video:hover {
    background: #094b82;
    border-color: #094b82;
    color: #ffffff;
}

/* 
    Modal do vídeo
    Ocupa a tela inteira e fica acima de todos os elementos do site.
*/
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    width: 100vw;
    height: 100vh;
}

/* 
    Quando o modal abre, ele aparece na tela.
*/
.video-modal.is-open {
    display: block;
}

/* 
    Fundo escuro do modal.
    Fica fixo na tela inteira atrás do vídeo.
*/
.video-modal__overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.72);
    z-index: 1;
}
/* 
    Caixa principal do modal
    Aqui forçamos o modal a ficar exatamente no centro da tela.
*/
.video-modal__content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: min(920px, calc(100vw - 48px));
    max-height: calc(100vh - 48px);

    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    z-index: 2;
}

/* Cabeçalho do modal */
.video-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid #edf0f5;
}

.video-modal__header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #101828;
}

/* Botão X para fechar */
.video-modal__close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f2f4f7;
    color: #101828;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.video-modal__close:hover {
    background: #e4e7ec;
}

/* Área do vídeo mantendo proporção 16:9 */
.video-modal__body {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.video-modal__body iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* 
    Ajuste para celular.
    Reduz a margem lateral para o vídeo caber melhor.
*/
@media (max-width: 576px) {
    .video-modal__content {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
    }

    .video-modal__header {
        padding: 14px 16px;
    }

    .video-modal__header h3 {
        font-size: 16px;
    }
}