/* Main Styles Extracted from HTML */

:root {
    --bg: #f7f2e8;
    --bg-soft: #fbf8f1;
    --paper: #fffdf8;
    --paper-2: #efe7d8;
    --ink: #0d1321;
    --ink-soft: #5a6678;
    --ink-muted: #7d8795;
    --line: rgba(13, 19, 33, 0.10);
    --line-strong: rgba(13, 19, 33, 0.18);
    --brand: #17a8da;
    --brand-deep: #0d6f93;
    --gold: #b7863d;
    --gold-soft: rgba(183, 134, 61, 0.14);
    --shadow: 0 18px 60px rgba(13, 19, 33, 0.07);
    --radius: 24px;
    --radius-lg: 34px;
    --max: 1320px;
    --header-h: 104px;
    --section-space: 76px;
    --block-space: 56px;
    --gallery-gap: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

a,
button,
input,
textarea,
select {
    touch-action: manipulation;
    -webkit-touch-callout: none;
}

html {
    scroll-behavior: smooth;
}

/* Suavização na troca de idioma */
body {
    transition: opacity 180ms ease, transform 180ms ease;
}

body.lang-transitioning {
    opacity: 0.55;
    transform: scale(0.995);
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    body,
    body.lang-transitioning {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, rgba(23, 168, 218, 0.10), transparent 24%), radial-gradient(circle at bottom right, rgba(183, 134, 61, 0.08), transparent 20%), linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
    color: var(--ink);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
    border: 0;
    background: none;
    cursor: pointer;
}

input,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 32px), var(--max));
    margin-inline: auto;
}

.section {
    padding: var(--section-space) 0;
    position: relative;
}

    .section + .section {
        padding-top: 0;
    }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-deep);
}

    .eyebrow::before {
        content: "";
        width: 28px;
        height: 2px;
        background: linear-gradient(90deg, currentColor 0%, currentColor 100%);
        opacity: 0.6;
    }

.section-head {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
    max-width: 1120px;
}

.section-title {
    font-size: clamp(32px, 4vw, 60px);
    line-height: 1;
    letter-spacing: -0.06em;
    width: min(100%, 19ch);
    text-wrap: balance;
    font-weight: 800;
    color: var(--ink);
}

.section-copy {
    max-width: 80ch;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
}

.panel {
    background: rgba(255, 253, 248, 0.84);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.panel-dark {
    background: linear-gradient(135deg, #0d1321 0%, #0f1a2d 50%, #081421 100%);
    border: 1px solid rgba(23,168,218,0.12);
    border-radius: var(--radius);
    color: #f6f4ef;
    box-shadow: 0 20px 60px rgba(13, 19, 33, 0.15), 0 0 0 1px rgba(255,255,255,0.05) inset;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

    .btn:hover,
    .btn-secondary:hover {
        transform: translateY(-2px);
    }

.btn {
    background: linear-gradient(135deg, var(--ink) 0%, rgba(13, 19, 33, 0.8) 100%);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 16px 40px rgba(13, 19, 33, 0.18);
}

    .btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        pointer-events: none;
    }

    .btn:hover {
        background: linear-gradient(135deg, #1a2633 0%, var(--ink) 100%);
        box-shadow: 0 20px 50px rgba(13, 19, 33, 0.24);
    }

.btn-secondary {
    border: 1.5px solid var(--line-strong);
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(239,231,216,0.3) 100%);
    color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

    .btn-secondary:hover {
        border-color: var(--brand);
        background: linear-gradient(180deg, rgba(23,168,218,0.08) 0%, rgba(23,168,218,0.04) 100%);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 8px 24px rgba(23,168,218,0.12);
    }

.hero-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -56px;
    z-index: 3000;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    transition: top .2s ease;
}

    .skip-link:focus {
        top: 12px;
    }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1600;
    padding: 16px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(247, 242, 232, 0.7);
    border-bottom: 1px solid rgba(13, 19, 33, 0.06);
    transition: all 0.3s ease;
}

    .site-header.scrolled {
        padding: 10px 0;
        background: rgba(247, 242, 232, 0.95);
        border-bottom-color: rgba(13, 19, 33, 0.1);
    }

.nav-shell {
    min-height: 70px;
    display: grid;
    grid-template-columns: minmax(300px, 360px) 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 12px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 253, 248, 0.4) 0%, rgba(251, 248, 241, 0.3) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(23, 168, 218, 0.15);
    box-shadow: 0 12px 40px rgba(13, 19, 33, 0.08);
    margin: 0 16px;
}

.brand-slot {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    min-width: 0;
    max-width: 100%;
    box-shadow: none;
    overflow: visible;
}

.brand-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow: visible;
}

.brand-logo-image {
    display: block;
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    object-position: center center;
    transform-origin: center center;
    margin-inline: auto;
}

.nav-links {
    display: none;
    list-style: none;
    justify-self: center;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    width: 100%;
}

    .nav-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 56px;
        padding: 0 34px;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 600;
        color: var(--ink-soft);
        transition: all 0.25s cubic-bezier(0.23, 1, 0.320, 1);
        border: 1px solid transparent;
        white-space: nowrap;
        text-align: center;
        letter-spacing: -0.01em;
    }

        .nav-links a:hover {
            background: linear-gradient(135deg, rgba(23,168,218,0.08) 0%, rgba(23,168,218,0.04) 100%);
            color: var(--brand);
            border-color: var(--brand);
            transform: translateY(-2px);
        }

        .nav-links a.nav-link-docsia {
            position: relative;
            min-height: 48px;
            padding: 0 24px 0 20px;
            color: #fff;
            font-weight: 700;
            letter-spacing: -0.01em;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
            box-shadow: 0 12px 32px rgba(13, 111, 147, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
            overflow: hidden;
            isolation: isolate;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

            .nav-links a.nav-link-docsia::before {
                content: "";
                width: 20px;
                height: 20px;
                border-radius: 50%;
                margin-right: 10px;
                background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
                box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15);
                flex: 0 0 20px;
                position: relative;
                z-index: 2;
                animation: docsiaOrbPulse 3.2s ease-in-out infinite;
            }

            .nav-links a.nav-link-docsia::after {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: inherit;
                background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
                pointer-events: none;
                z-index: 1;
            }

            .nav-links a.nav-link-docsia:hover {
                color: #ffffff;
                border-color: rgba(255, 255, 255, 0.3);
                box-shadow: 0 16px 40px rgba(13, 111, 147, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
                transform: translateY(-2px);
                background: linear-gradient(135deg, #1ab8e8 0%, #0f75a3 100%);
            }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ════════════════════════════════════════════
   FLOATING LANG SWITCHER — Bandeiras + Texto
   ════════════════════════════════════════════ */

.floating-lang-switcher {
    position: fixed;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(13, 19, 33, 0.08);
    border-radius: 16px;
    padding: 10px 6px;
    box-shadow: 0 8px 32px rgba(13, 19, 33, 0.1);
    z-index: 2000;
}

/* Definição ÚNICA do lang-switch-btn */
.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    min-width: 44px;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-soft);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.lang-switch-btn::after {
    content: "";
    position: absolute;
    inset: 50%;
    border-radius: 50%;
    background: rgba(23, 168, 218, 0.22);
    opacity: 0;
    transform: scale(0);
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
}

.lang-switch-btn:active::after {
    opacity: 1;
    transform: scale(2.2);
    transition: transform 0s, opacity 0s;
}

.lang-switch-btn:hover {
    color: var(--brand);
    background: rgba(23, 168, 218, 0.08);
    border-color: rgba(23, 168, 218, 0.15);
    transform: scale(1.05);
}

.lang-switch-btn.active {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(23, 168, 218, 0.3);
}

.lang-text {
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
}

.lang-flag {
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Twemoji Mozilla", "EmojiMetrics", sans-serif;
    flex-shrink: 0;
    min-width: 22px;
    text-align: center;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--ink);
}

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
        content: "";
        display: block;
        width: 16px;
        height: 2px;
        background: currentColor;
        border-radius: 99px;
        position: relative;
        transition: transform .2s ease, opacity .2s ease;
    }

        .menu-toggle span::before {
            position: absolute;
            top: -5px;
        }

        .menu-toggle span::after {
            position: absolute;
            top: 5px;
        }

    .menu-toggle[aria-expanded="true"] span {
        background: transparent;
    }

        .menu-toggle[aria-expanded="true"] span::before {
            transform: translateY(5px) rotate(45deg);
        }

        .menu-toggle[aria-expanded="true"] span::after {
            transform: translateY(-5px) rotate(-45deg);
        }

.mobile-panel {
    display: grid;
    gap: 6px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 10px;
    padding: 0 14px;
    border-radius: 22px;
    background: rgba(255,253,248,.96);
    border: 1px solid transparent;
    transition: max-height .3s ease, opacity .2s ease, padding .3s ease, border-color .3s ease;
}

    .mobile-panel.open {
        max-height: 420px;
        opacity: 1;
        padding: 14px;
        border-color: var(--line);
    }

    .mobile-panel a {
        padding: 12px 14px;
        border-radius: 14px;
        color: var(--ink-soft);
        font-weight: 700;
    }

        .mobile-panel a:hover {
            background: var(--paper-2);
            color: var(--ink);
        }

        .mobile-panel a.nav-link-docsia,
        .mobile-panel a.mobile-docsia-link {
            justify-content: flex-start;
            min-height: 58px;
            padding: 14px 18px;
            border-radius: 18px;
            color: #f4fdff;
            font-weight: 800;
            border: 1px solid rgba(112, 231, 255, .28);
            background: radial-gradient(circle at 15% 50%, rgba(111, 233, 255, .95) 0%, rgba(79, 211, 255, .34) 12%, rgba(26, 103, 194, 0) 26%), linear-gradient(135deg, rgba(5, 15, 33, .98) 0%, rgba(9, 30, 63, .98) 42%, rgba(18, 71, 133, .98) 74%, rgba(23, 154, 222, .92) 100%);
            box-shadow: 0 12px 28px rgba(5, 18, 43, .22), inset 0 1px 0 rgba(255,255,255,.16), 0 0 0 3px rgba(55, 201, 255, .08);
            overflow: hidden;
        }

            .mobile-panel a.nav-link-docsia::before,
            .mobile-panel a.mobile-docsia-link::before {
                content: "";
                width: 16px;
                height: 16px;
                border-radius: 50%;
                margin-right: 12px;
                background: radial-gradient(circle at 35% 35%, #d7fbff 0%, #93eeff 18%, #48d1ff 42%, #1f90ff 68%, #0b285f 100%);
                box-shadow: 0 0 0 6px rgba(96, 225, 255, .12), 0 0 18px rgba(80, 222, 255, .34);
                flex: 0 0 16px;
            }

@media (min-width: 1120px) {
    .nav-links {
        display: flex;
        flex-wrap: nowrap;
    }

    .menu-toggle,
    .mobile-panel {
        display: none;
    }

    .nav-actions .btn {
        white-space: nowrap;
        min-width: 132px;
    }
}

@media (max-width: 1119px) {
    .nav-shell {
        grid-template-columns: 1fr auto;
    }

    .brand-slot {
        max-width: 255px;
    }

    .nav-actions .btn {
        display: none;
    }
}

.page-view {
    display: none;
}

    .page-view.is-active {
        display: block;
    }

.hero {
    padding-top: 48px;
    padding-bottom: var(--section-space);
}

.hero-stage {
    position: relative;
    isolation: isolate;
    display: grid;
    gap: var(--block-space);
}

    .hero-stage::before {
        content: "";
        position: absolute;
        inset: -40px auto auto -80px;
        width: min(34vw, 460px);
        height: min(34vw, 460px);
        border-radius: 50%;
        background: radial-gradient(circle, rgba(23,168,218,.08), transparent 70%);
        z-index: -1;
        filter: blur(40px);
    }

    .hero-stage::after {
        content: "";
        position: absolute;
        inset: auto -40px 0 auto;
        width: min(28vw, 360px);
        height: min(28vw, 360px);
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(183,134,61,.06), rgba(23,168,218,.02));
        transform: rotate(12deg);
        z-index: -1;
        filter: blur(60px);
    }

.hero-top {
    display: grid;
    gap: 44px;
    align-items: center;
}

@media (min-width: 1180px) {
    .hero-top {
        grid-template-columns: minmax(0, 1.08fr) 490px;
        grid-auto-flow: column;
        gap: 72px;
    }
}

.hero-copy-block {
    display: grid;
    gap: 24px;
    align-content: start;
    max-width: 100%;
}

.hero-title {
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    text-align: left;
    margin: 0;
}

    .hero-title > span:first-child {
        display: block;
        font-size: clamp(38px, 5vw, 78px);
        line-height: 1.15;
        letter-spacing: -0.04em;
        padding: 4px 8px;
        max-width: 100%;
        text-wrap: balance;
        text-align: left;
        font-weight: 800;
        background: linear-gradient(135deg, #17a8da 0%, #0d6f93 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: #17a8da;
    }

    .hero-title .accent {
        display: block;
        font-size: clamp(22px, 2.6vw, 46px);
        line-height: 1.05;
        letter-spacing: -0.05em;
        font-weight: 700;
        color: var(--brand);
        max-width: 12ch;
        margin-left: 0;
        text-wrap: balance;
        text-align: left;
    }

.hero-copy,
.hero-copy.hero-copy-arch {
    max-width: 68ch !important;
    width: 100%;
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--ink-soft);
    line-height: 1.7;
    font-weight: 500;
    text-align: justify !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.hero-rail {
    display: grid;
    gap: 16px;
    align-content: end;
    justify-items: end;
}

.hero-card-primary {
    padding: 48px;
    min-height: 360px;
    width: min(100%, 520px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-inline: auto;
    border-radius: var(--radius);
}

#entregas-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.star-wars-window {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 28%,
        black 72%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 28%,
        black 72%,
        transparent 100%
    );
}

.hero-services-full-width {
    width: 100%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

.hero-services-full-width .hero-card-primary {
    max-width: 520px;
    padding: 14px 20px;
    min-height: auto;
}

.services-gallery-viewport {
    overflow: hidden;
    border-radius: 16px;
    padding: 12px 0;
    height: 116px;
    width: 100%;
    isolation: isolate;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 22%,
        black 78%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 22%,
        black 78%,
        transparent 100%
    );
}

.services-gallery-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .45s ease;
    will-change: transform;
    width: 100%;
}

.services-slide {
    width: 100%;
    box-sizing: border-box;
    flex: 0 0 auto;
    padding: 16px 16px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 2.2vw, 24px);
    font-weight: 600;
    line-height: 1.3;
    color: var(--brand);
    white-space: normal;
    overflow-wrap: break-word;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-wars-crawl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    animation: seamlessCrawl 28s linear infinite;
    will-change: transform;
}

.crawl-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

.star-wars-crawl p {
    font-family: "Inter", sans-serif !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: var(--brand) !important;
    text-transform: none;
    margin: 0 !important;
    text-align: center;
    line-height: 1.2 !important;
    letter-spacing: -0.02em;
    transform: rotateX(15deg);
}

@keyframes seamlessCrawl {
    0% {
        transform: translateY(var(--crawl-start, 60px));
    }
    100% {
        transform: translateY(calc(-50% + var(--crawl-start, 60px)));
    }
}

    .hero-card-primary::after {
        content: "";
        position: absolute;
        inset: -50%;
        background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent 60%);
        pointer-events: none;
    }

.hero-card-label {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: none;
    background: linear-gradient(135deg, #17a8da 0%, #0d6f93 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.hero-card-primary h2 {
    font-size: clamp(36px, 3.2vw, 54px);
    line-height: 1;
    letter-spacing: -0.06em;
    max-width: 12ch;
    margin: 0 auto 18px;
    display: block;
    color: #fff;
    position: relative;
    z-index: 1;
}

.hero-card-primary p {
    max-width: 33ch;
    color: rgba(246,244,239,0.82);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 1;
}

.hero-card-primary > div {
    display: grid;
    gap: 18px;
    width: 100%;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1180px) {
    .hero-copy-block {
        max-width: 860px;
    }

    .hero-title {
        width: min(100%, 9.2ch);
    }

        .hero-title > span:first-child {
            font-size: clamp(40px, 9vw, 82px);
            max-width: none;
        }

        .hero-title .accent {
            margin-left: 0;
            max-width: 12ch;
            font-size: clamp(24px, 6vw, 40px);
            text-align: center;
        }
}

.hero-card-grid {
    display: grid;
    gap: 14px;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    margin-inline: auto;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.hero-mini {
    padding: 24px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.hero-mini:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--brand);
    box-shadow: 0 20px 40px rgba(23, 168, 218, 0.12);
}

.hero-mini::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-deep));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-mini:hover::before {
    opacity: 1;
}

.hero-mini-index {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(23, 168, 218, 0.1), rgba(13, 111, 147, 0.05));
    color: var(--brand-deep);
    border: 1px solid rgba(23, 168, 218, 0.15);
    padding: 10px;
    transition: all 0.3s ease;
}

.hero-mini:hover .hero-mini-index {
    background: var(--brand);
    color: #fff;
    transform: rotate(5deg) scale(1.1);
}

.hero-mini-index svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-mini strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-mini p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.ticker-shell {
    padding: 24px;
    overflow: hidden;
    position: relative;
}

.ticker-head {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 1040px;
}

    .ticker-head h2 {
        font-size: clamp(28px, 3vw, 44px);
        line-height: .94;
        letter-spacing: -0.07em;
        width: min(100%, 18ch);
    }

    .ticker-head p {
        max-width: 76ch;
        color: var(--ink-soft);
        font-size: 15px;
    }

.ticker-mask {
    overflow: hidden;
    padding: 12px 10px;
    mask-image: none;
    -webkit-mask-image: none;
}

.ticker-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: ticker 28s linear infinite;
    will-change: transform;
}

.ticker-mask:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-card {
    min-width: 210px;
    padding: 10px 14px;
    border-radius: 18px;
    border: 1px solid transparent;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: visible;
    box-shadow: none;
}

.ticker-logo {
    width: 104px;
    height: 104px;
    flex: 0 0 104px;
    border-radius: 0;
    border: 0;
    display: grid;
    place-items: center;
    background: transparent;
    overflow: visible;
    box-shadow: none;
}

    .ticker-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        padding: 2px;
        max-width: 100%;
        max-height: 100%;
        filter: drop-shadow(0 8px 14px rgba(13, 19, 33, 0.16));
    }

.ticker-copy {
    display: none;
}

.ticker-mask,
.ticker-track {
    overflow: visible;
}

.ticker-card,
.ticker-logo,
.ticker-logo img {
    transform: translateZ(0);
}

.ticker-copy strong {
    font-size: 15px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticker-copy span {
    font-size: 12px;
    color: var(--ink-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes docsiaOrbPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(23, 168, 218, 0.08), 0 0 20px rgba(23, 168, 218, 0.2);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(23, 168, 218, 0.12), 0 0 28px rgba(23, 168, 218, 0.3);
    }
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - (var(--gallery-gap) / 2)));
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(23, 168, 218, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(23, 168, 218, 0.5);
    }
}

.experience-shell {
    padding: 40px;
    overflow: hidden;
    position: relative;
}

    .experience-shell::before {
        content: "";
        position: absolute;
        inset: auto -120px -140px auto;
        width: 420px;
        height: 420px;
        border-radius: 40px;
        background: linear-gradient(135deg, rgba(255,255,255,.02), rgba(23,168,218,.04));
        transform: rotate(12deg);
        pointer-events: none;
        filter: blur(80px);
    }

.experience-layout {
    display: grid;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1120px) {
    .experience-layout {
        grid-template-columns: minmax(0, 1.06fr) minmax(520px, .94fr);
        gap: 48px;
    }
}

.experience-copy h2 {
    margin-top: 0;
    font-size: clamp(38px, 4.9vw, 78px);
    line-height: 1;
    letter-spacing: -0.06em;
    width: min(100%, 13ch);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.experience-points {
    display: grid;
    gap: 32px;
    margin-top: 32px;
    max-width: 56ch;
}

.experience-point {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 22px;
    align-items: start;
}

.experience-icon {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold-soft) 0%, rgba(23,168,218,.06) 100%);
    border: 1px solid rgba(23,168,218,.15);
    color: var(--brand-deep);
    box-shadow: 0 12px 32px rgba(13, 19, 33, 0.08), inset 0 1px 0 rgba(255,255,255,.3);
    position: relative;
    overflow: hidden;
    flex: 0 0 90px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.experience-point:hover .experience-icon {
    transform: scale(1.08) translateY(-2px);
    background: linear-gradient(135deg, rgba(23,168,218,.12) 0%, rgba(23,168,218,.08) 100%);
    box-shadow: 0 16px 40px rgba(13, 19, 33, 0.12), inset 0 1px 0 rgba(255,255,255,.3);
}

.experience-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(23,168,218,.08), transparent 60%);
    pointer-events: none;
}

.experience-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 1;
}

.experience-point strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--ink);
    color: #fffdf8;
}

.experience-point p {
    color: rgba(246,244,239,.74);
    font-size: 16px;
    line-height: 1.55;
}

.experience-visuals {
    display: grid;
    gap: 16px;
}

@media (min-width: 720px) {
    .experience-visuals {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 178px 178px 178px;
    }

    .experience-photo-primary {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .experience-stat-top {
        grid-column: 2;
        grid-row: 1;
    }

    .experience-stat-bottom {
        grid-column: 2;
        grid-row: 2;
    }

    .experience-photo-secondary {
        grid-column: 1 / -1;
        grid-row: 3;
        min-height: 178px;
    }
}

.experience-photo,
.experience-stat {
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    position: relative;
}

.experience-photo {
    min-height: 178px;
    background: radial-gradient(circle at top left, rgba(23,168,218,.18), transparent 34%), linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)), #111a2c;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

    .experience-photo::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,.05), transparent 34%), repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0 1px, transparent 1px 18px), repeating-linear-gradient(180deg, rgba(255,255,255,.02) 0 1px, transparent 1px 18px);
        opacity: .35;
        z-index: 0;
    }

.experience-photo-secondary {
    background: radial-gradient(circle at bottom right, rgba(23,168,218,.16), transparent 28%), linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)), #0f1a2f;
}

.experience-photo-secondary {
    background-image: linear-gradient(180deg, rgba(9, 18, 32, .14), rgba(9, 18, 32, .10)), url('imagens/equipe_implantacao.jpg');
    background-size: cover;
    background-position: center 42%;
    background-repeat: no-repeat;
}

@media (min-width: 720px) {
    .experience-photo-secondary {
        min-height: 220px;
    }
}

@media (max-width: 719px) {
    .experience-photo-secondary {
        min-height: 220px;
        background-position: center center;
    }
}

.experience-photo span {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.experience-stat {
    padding: 28px;
    display: grid;
    align-content: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

    .experience-stat strong {
        font-size: clamp(54px, 5vw, 78px);
        line-height: .82;
        letter-spacing: -0.08em;
        color: #2fc0ff;
    }

    .experience-stat span {
        font-size: 14px;
        font-weight: 900;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: rgba(246,244,239,.62);
    }

    .experience-stat.accent {
        background: #2aa9dd;
    }

        .experience-stat.accent strong,
        .experience-stat.accent span {
            color: #08111d;
        }

.sector-panel {
    padding: 30px;
}

.sector-duo {
    display: grid;
    gap: 0;
    margin-top: 18px;
}

@media (min-width: 980px) {
    .sector-duo {
        grid-template-columns: 1fr 1fr;
    }

        .sector-duo .sector-list + .sector-list {
            border-left: 1px solid var(--line);
            padding-left: 34px;
            margin-left: 34px;
        }
}

.sector-list {
    display: grid;
    gap: 0;
}

.sector-row {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

    .sector-row:first-child {
        border-top: 0;
    }

.sector-index {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--gold-soft);
    color: #8d6725;
    border: 1px solid rgba(183,134,61,.24);
    padding: 9px;
}

    .sector-index svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.sector-row strong {
    display: block;
    font-size: 18px;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.sector-row p {
    color: var(--ink-soft);
    font-size: 14px;
}

.solutions-stack {
    display: grid;
    gap: 14px;
}

.solution-row {
    padding: 26px;
    display: grid;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

    .solution-row::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 6px;
        background: linear-gradient(180deg, var(--brand), var(--gold));
    }

@media (min-width: 980px) {
    .solution-row {
        grid-template-columns: 140px 1fr;
        gap: 20px;
        align-items: start;
    }
}

.solution-no {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--ink-muted);
    padding-left: 10px;
}

.solution-content {
    padding-left: 10px;
}

    .solution-content h3 {
        font-size: clamp(22px, 2.2vw, 38px);
        line-height: .98;
        letter-spacing: -0.06em;
        margin-bottom: 12px;
        width: min(100%, 22ch);
    }

    .solution-content p {
        color: var(--ink-soft);
        font-size: 15px;
        max-width: 66ch;
    }

.solutions-extras {
    display: grid;
    gap: var(--block-space);
    margin-top: var(--block-space);
}

.hero-bar {
    display: grid;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(243,236,224,.74));
    box-shadow: 0 12px 36px rgba(13,19,33,.04);
    align-items: stretch;
}

@media (min-width: 1100px) {
    .hero-bar {
        grid-template-columns: 400px 1fr;
    }

    .hero-bar-private {
        grid-template-columns: 1fr 400px;
    }
}

.hero-bar-title {
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, #0f1627, #152036);
    color: #f6f4ef;
    display: grid;
    align-content: start;
    gap: 8px;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

    .hero-bar-title::after {
        content: "";
        position: absolute;
        right: -34px;
        bottom: -34px;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.10);
    }

    .hero-bar-title strong {
        display: inline-flex;
        align-items: center;
        width: max-content;
        max-width: 100%;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: rgba(116,216,255,.92);
        line-height: 1.1;
        white-space: nowrap;
    }

    .hero-bar-title h3 {
        margin-top: 0;
        font-size: clamp(26px, 2.8vw, 44px);
        line-height: .94;
        letter-spacing: -0.06em;
        width: min(100%, 10.5ch);
    }

    .hero-bar-title p {
        max-width: 30ch;
        color: rgba(246,244,239,.76);
        font-size: 14px;
        line-height: 1.65;
        margin-top: 12px;
    }

.hero-bar-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 14px;
    align-content: stretch;
    align-items: stretch;
    min-height: 100%;
    padding-block: 8px;
}

.audience-card {
    min-height: 160px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--line-strong);
    background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.92) 100%);
    display: grid;
    gap: 14px;
    align-content: start;
    box-shadow: 0 8px 24px rgba(13, 19, 33, 0.06), inset 0 1px 0 rgba(255,255,255,0.6);
    transition: all 0.25s cubic-bezier(0.23, 1, 0.320, 1);
}

    .audience-card:hover {
        border-color: var(--brand);
        box-shadow: 0 12px 32px rgba(13, 19, 33, 0.1), inset 0 1px 0 rgba(255,255,255,0.6);
        transform: translateY(-2px);
    }

.audience-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.audience-badge {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold-soft) 0%, rgba(183,134,61,0.1) 100%);
    color: #8b6627;
    border: 1px solid rgba(183,134,61,.3);
    padding: 8px;
    box-shadow: 0 4px 12px rgba(183,134,61,0.12);
}

    .audience-badge svg {
        width: 24px;
        height: 24px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.audience-card strong {
    display: block;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.audience-card span {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.55;
    max-width: 24ch;
}

.audience-card-more {
    border-style: dashed;
    border-color: var(--brand);
    background: linear-gradient(135deg, rgba(23,168,218,0.06) 0%, rgba(255,255,255,0.92) 100%);
}

.audience-badge-more {
    font-size: 28px;
    font-weight: 900;
    color: #8b6627;
    background: linear-gradient(135deg, var(--gold-soft) 0%, rgba(183,134,61,0.1) 100%);
    border-color: rgba(183,134,61,.3);
    display: grid;
    place-items: center;
    line-height: 1;
}

.cap-grid {
    display: grid;
    gap: 18px;
}

@media (min-width: 980px) {
    .cap-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.cap-card {
    padding: 28px;
    min-height: 300px;
    border-radius: 16px;
    border: 1px solid var(--line-strong);
    background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.92) 100%);
    box-shadow: 0 8px 24px rgba(13, 19, 33, 0.06);
    transition: all 0.25s cubic-bezier(0.23, 1, 0.320, 1);
}

    .cap-card:hover {
        border-color: var(--brand);
        box-shadow: 0 12px 32px rgba(13, 19, 33, 0.1);
        transform: translateY(-4px);
    }

    .cap-card h3 {
        margin: 0 0 20px 0;
        font-size: 24px;
        line-height: 1.05;
        letter-spacing: -0.02em;
        color: var(--ink);
        width: min(100%, 16ch);
    }

.cap-list {
    display: grid;
    gap: 12px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
}

    .cap-list span {
        display: grid;
        grid-template-columns: 18px 1fr;
        gap: 12px;
        align-items: start;
    }

        .cap-list span::before {
            content: "▪";
            color: var(--brand);
            font-weight: bold;
            font-size: 10px;
            margin-top: 4px;
        }

.trust-layout {
    display: grid;
    gap: 16px;
}

@media (min-width: 1120px) {
    .trust-layout {
        grid-template-columns: .9fr 1.1fr;
    }
}

.trust-main,
.trust-list-wrap {
    padding: 30px;
}

    .trust-main h3 {
        margin-top: 16px;
        font-size: clamp(30px, 3.8vw, 52px);
        line-height: .94;
        letter-spacing: -0.08em;
        width: min(100%, 13ch);
    }

    .trust-main p {
        margin-top: 16px;
        max-width: 50ch;
        color: rgba(246,244,239,.76);
        font-size: 16px;
    }

.trust-list {
    display: grid;
    gap: 0;
}

.trust-row {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

    .trust-row:first-child {
        border-top: 0;
    }

.trust-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--paper-2);
    border: 1px solid var(--line);
    color: var(--brand-deep);
    padding: 8px;
}

    .trust-mark svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.trust-row strong {
    display: block;
    font-size: 16px;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.trust-row p {
    color: var(--ink-soft);
    font-size: 14px;
}

.gallery-shell {
    overflow: hidden;
    padding: 28px;
}

.gallery-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    align-items: end;
    margin-bottom: 18px;
}

    .gallery-head h3 {
        font-size: clamp(28px, 4vw, 46px);
        line-height: .94;
        letter-spacing: -0.06em;
        width: min(100%, 15ch);
    }

    .gallery-head p {
        color: var(--ink-soft);
        font-size: 15px;
        max-width: 60ch;
    }

.gallery-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.gallery-btn {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.9);
    color: var(--ink);
    font-size: 18px;
    font-weight: 900;
}

.gallery-viewport {
    overflow: hidden;
    border-radius: 26px;
}

.gallery-track {
    display: flex;
    gap: var(--gallery-gap);
    transition: transform .45s ease;
    will-change: transform;
}

.gallery-slide {
    flex: 0 0 calc(25% - 10.5px);
    min-width: calc(25% - 10.5px);
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(160deg, rgba(23,168,218,.18), rgba(183,134,61,.14)), linear-gradient(180deg, #f4eee3, #efe8da);
    border: 1px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
    display: grid;
    place-items: end start;
    padding: 18px;
}

    .gallery-slide::before {
        content: "";
        position: absolute;
        inset: 14px;
        border-radius: 18px;
        border: 1px dashed rgba(13,19,33,.16);
    }

    .gallery-slide span {
        position: relative;
        z-index: 1;
        font-size: 15px;
        font-weight: 800;
        color: var(--ink);
        letter-spacing: -0.02em;
        background: rgba(255,253,248,.88);
        border: 1px solid rgba(13,19,33,.08);
        min-height: 34px;
        padding: 0 12px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
    }

    .gallery-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        position: absolute;
        inset: 0;
        z-index: 0;
    }

@media (max-width: 1100px) {
    .gallery-slide {
        flex-basis: calc(33.333% - 9.5px);
        min-width: calc(33.333% - 9.5px);
    }
}

@media (max-width: 760px) {
    .gallery-slide {
        flex-basis: calc(50% - 7px);
        min-width: calc(50% - 7px);
    }
}

@media (max-width: 520px) {
    .gallery-slide {
        flex-basis: 100%;
        min-width: 100%;
    }
}

.contact-layout {
    display: grid;
    gap: 16px;
    align-items: stretch;
}

@media (min-width: 980px) {
    .contact-layout {
        grid-template-columns: .88fr 1.12fr;
        grid-auto-rows: 1fr;
    }
}

.contact-info,
.contact-form {
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-list,
.video-contact-grid {
    display: grid;
    gap: 0;
    margin-top: 18px;
}

.contact-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

    .contact-row:first-child {
        border-top: 0;
    }

    .contact-row:last-child {
        padding-bottom: 0;
    }

.contact-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold-soft) 0%, rgba(183,134,61,0.08) 100%);
    border: 1px solid rgba(183,134,61,.25);
    color: #8b6627;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(183,134,61,0.08);
    flex: 0 0 48px;
}

    .contact-mark svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.contact-row strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    color: var(--ink);
}

.contact-row p,
.contact-row a,
.form-note {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.5;
}

.contact-row a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

    .contact-row a:hover {
        color: var(--brand-deep);
        text-decoration: underline;
    }

.whatsapp-numbers {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.whatsapp-number-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.whatsapp-flag {
    font-size: 15px;
    line-height: 1;
}

.whatsapp-country-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    line-height: 1;
}

.form-grid {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

@media (min-width: 640px) {
    .form-grid.two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .full {
        grid-column: 1 / -1;
    }
}

.field {
    display: grid;
    gap: 8px;
}

    .field label {
        font-size: 13px;
        font-weight: 700;
        color: var(--ink);
        letter-spacing: 0.3px;
        text-transform: uppercase;
    }

    .field input,
    .field textarea {
        width: 100%;
        min-height: 48px;
        padding: 12px 16px;
        border-radius: 12px;
        border: 1px solid var(--line-strong);
        background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.95) 100%);
        color: var(--ink);
        font-size: 14px;
        font-weight: 500;
        outline: none;
        transition: all 0.2s ease;
    }

    .field textarea {
        min-height: 140px;
        resize: vertical;
        font-family: inherit;
    }

        .field input:focus,
        .field textarea:focus {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px rgba(23,168,218,.12), inset 0 1px 3px rgba(13,19,33,.02);
            background: linear-gradient(180deg, #fff 0%, rgba(23,168,218,.02) 100%);
        }

        .field input::placeholder,
        .field textarea::placeholder {
            color: rgba(93, 102, 120, 0.5);
            font-weight: 500;
        }

.video-page-shell {
    min-height: calc(100vh - 150px);
    display: grid;
    place-items: center;
}

.video-page-center {
    width: min(100%, 980px);
    display: grid;
    gap: 18px;
}

.video-page-hero {
    display: grid;
    gap: 12px;
    text-align: center;
    justify-items: center;
}

    .video-page-hero h1 {
        font-size: clamp(34px, 4.5vw, 62px);
        line-height: .94;
        letter-spacing: -0.08em;
        width: min(100%, 14ch);
    }

    .video-page-hero p {
        max-width: 62ch;
        color: var(--ink-soft);
        font-size: 16px;
    }

.video-player-shell,
.video-contact-card,
.video-form-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.video-contact-grid {
    flex: 1;
    display: grid;
}

.video-contact-card .hero-actions {
    margin-top: auto;
}

.video-form-card form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-form-card .form-actions {
    margin-top: auto;
}

.video-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: radial-gradient(circle at top left, rgba(23,168,218,.18), transparent 24%), linear-gradient(180deg, #0d1321, #111a2c 60%, #15243f);
    border: 1px solid rgba(255,255,255,.08);
    display: grid;
    place-items: center;
}

    .video-frame::before {
        content: "";
        position: absolute;
        inset: 18px;
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,.08);
        pointer-events: none;
    }

.video-play {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
}

    .video-play::before {
        content: "";
        margin-left: 6px;
        border-left: 26px solid #fff;
        border-top: 16px solid transparent;
        border-bottom: 16px solid transparent;
    }

.video-frame-label {
    position: absolute;
    left: 28px;
    bottom: 24px;
    z-index: 1;
    color: rgba(246,244,239,.88);
    max-width: 30ch;
}

    .video-frame-label strong {
        display: block;
        font-size: 24px;
        line-height: 1;
        letter-spacing: -0.04em;
        margin-bottom: 8px;
    }

    .video-frame-label span {
        font-size: 14px;
        line-height: 1.5;
        color: rgba(246,244,239,.72);
    }

.site-footer {
    padding: 48px 0 56px;
    background: linear-gradient(180deg, var(--bg) 0%, #e3dacb 100%);
    border-top: none;
    margin-top: var(--section-space);
}

.footer-shell {
    padding-top: 28px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

@media (min-width: 900px) {
    .footer-shell {
        grid-template-columns: auto 1fr auto;
        gap: 64px;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

    .footer-links a {
        transition: color 0.2s ease;
        cursor: pointer;
    }

        .footer-links a:hover {
            color: var(--brand);
        }

.footer-copy {
    color: var(--ink-muted);
    font-size: 13px;
    line-height: 1.6;
    max-width: 360px;
}

@media (max-width: 760px) {
    .brand-slot {
        max-width: 235px;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .brand-logo-image {
        height: 52px;
        max-width: 220px;
    }

    .ticker-card {
        min-width: 160px;
        padding: 8px 10px;
    }

    .ticker-logo {
        width: 84px;
        height: 84px;
        flex-basis: 84px;
    }

    :root {
        --section-space: 56px;
        --block-space: 42px;
    }

    .section-copy {
        font-size: 16px;
    }

    .brand-logo-image {
        height: 34px;
    }

    .hero-mini strong {
        white-space: normal;
    }

    .ticker-card {
        min-width: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* Ajuste forte do header mobile */
@media (max-width: 1199px) {
    .nav-shell {
        grid-template-columns: minmax(0, 1fr) auto !important;
        gap: 10px !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-actions .btn {
        display: none !important;
    }

    .nav-actions {
        width: auto !important;
        min-width: 46px !important;
    }

    .menu-toggle {
        display: grid !important;
        width: 46px !important;
        height: 46px !important;
        flex: 0 0 46px !important;
    }

    .mobile-panel {
        display: grid !important;
    }

    .brand-slot {
        max-width: 210px !important;
        margin-inline: 0 !important;
        justify-content: flex-start !important;
    }

    .brand-logo-wrap {
        justify-content: flex-start !important;
    }

    .brand-logo-image {
        height: 42px !important;
        max-width: 180px !important;
        width: auto !important;
        object-position: left center !important;
        margin-inline: 0 !important;
    }
}

@media (max-width: 760px) {
    .site-header {
        padding: 10px 0 !important;
    }

    .nav-shell {
        min-height: 70px !important;
        padding: 10px 12px !important;
        border-radius: 22px !important;
    }

    .brand-slot {
        max-width: 180px !important;
    }

    .brand-logo-image {
        height: 38px !important;
        max-width: 160px !important;
    }

    .menu-toggle {
        width: 44px !important;
        height: 44px !important;
        flex-basis: 44px !important;
    }
}

/* Override final mobile header behavior */
@media (max-width: 1199px) {
    .nav-shell {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        min-height: 70px !important;
        padding: 10px 12px !important;
    }

    .brand-slot {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex: 1 1 auto !important;
        max-width: 200px !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    .brand-logo-wrap {
        justify-content: flex-start !important;
        width: 100% !important;
    }

    .brand-logo-image {
        display: block !important;
        width: auto !important;
        max-width: 170px !important;
        height: 38px !important;
        object-fit: contain !important;
        object-position: left center !important;
        margin: 0 !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        width: auto !important;
        min-width: 46px !important;
        flex: 0 0 auto !important;
        gap: 0 !important;
    }

        .nav-actions .btn {
            display: none !important;
        }

    .menu-toggle {
        display: grid !important;
        place-items: center !important;
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,.94) !important;
        border: 1px solid rgba(13,19,33,.14) !important;
        position: relative !important;
        z-index: 1702 !important;
    }

    .mobile-panel {
        display: grid !important;
        position: relative !important;
        z-index: 1701 !important;
        margin-top: 8px !important;
    }

        .mobile-panel a {
            display: flex !important;
        }
}

@media (max-width: 760px) {
    .site-header {
        padding: 10px 0 !important;
    }

    .nav-shell {
        border-radius: 22px !important;
    }

    .brand-slot {
        max-width: 185px !important;
    }

    .brand-logo-image {
        max-width: 155px !important;
        height: 34px !important;
    }

    .menu-toggle {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
    }
}

/* Correção final do menu mobile para não cortar itens */
@media (max-width: 1199px) {
    .mobile-panel {
        max-height: 0;
        overflow: hidden auto !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0 !important;
    }

        .mobile-panel.open {
            max-height: calc(100vh - 120px) !important;
            overflow-y: auto !important;
            padding: 14px 14px 22px !important;
        }

        .mobile-panel a:last-child {
            margin-bottom: 4px;
        }
}

@media (max-width: 760px) {
    .mobile-panel.open {
        max-height: calc(100vh - 108px) !important;
        padding-bottom: 26px !important;
    }
}

.video-external {
    padding: 0;
    overflow: hidden;
    background: #0d1321;
}

.video-launch {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,17,29,.18), rgba(8,17,29,.4));
}

.video-external .video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
}

    .video-external .video-play::before {
        content: "";
        margin-left: 6px;
        border-left: 26px solid #fff;
        border-top: 16px solid transparent;
        border-bottom: 16px solid transparent;
    }

.video-external .video-frame-label {
    position: absolute;
    left: 28px;
    bottom: 24px;
    z-index: 2;
    color: rgba(246,244,239,.96);
    max-width: 32ch;
}

    .video-external .video-frame-label strong {
        display: block;
        font-size: 24px;
        line-height: 1;
        letter-spacing: -0.04em;
        margin-bottom: 8px;
    }

    .video-external .video-frame-label span {
        font-size: 14px;
        line-height: 1.5;
        color: rgba(246,244,239,.82);
    }

@media (max-width: 760px) {
    .video-external .video-play {
        width: 78px;
        height: 78px;
    }

        .video-external .video-play::before {
            border-left-width: 22px;
            border-top-width: 14px;
            border-bottom-width: 14px;
        }

    .video-external .video-frame-label {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: none;
    }

        .video-external .video-frame-label strong {
            font-size: 20px;
        }
}

.video-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    border-radius: 20px;
    background: #000;
    display: block;
}

/* v10: header fit + apple-level overflow menu + global polish */
@media (min-width: 1120px) {
    .site-header {
        padding: 14px 0 16px;
    }

        .site-header.scrolled {
            padding: 10px 0 12px;
        }

    .nav-shell {
        grid-template-columns: minmax(210px, 260px) minmax(0, 1fr) auto;
        min-height: 92px;
        gap: 12px;
        padding: 14px 16px 14px 14px;
        border-radius: 34px;
    }

    .site-header .brand-slot {
        max-width: 250px;
        margin-inline: 0;
        justify-content: flex-start;
        padding-left: 2px;
    }

    .site-header .brand-logo-wrap {
        justify-content: flex-start;
    }

    .site-header .brand-logo-image {
        height: 56px;
        width: auto;
        max-width: 230px;
        margin-inline: 0;
        object-position: left center;
        filter: saturate(1.01) contrast(1.01);
    }

    .desktop-nav {
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        overflow: hidden;
    }

        .desktop-nav .nav-links {
            display: flex;
            flex: 1 1 auto;
            width: auto;
            min-width: 0;
            justify-self: stretch;
            justify-content: center;
            gap: 8px;
            overflow: hidden;
            padding: 4px;
            mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
            -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
        }

            .desktop-nav .nav-links li,
            .nav-more-menu li {
                list-style: none;
                flex: 0 0 auto;
            }

            .desktop-nav .nav-links a {
                min-height: 50px;
                padding: 0 16px;
                font-size: 13px;
                letter-spacing: -0.01em;
                white-space: nowrap;
            }

                .desktop-nav .nav-links a.mobile-video-link {
                    padding: 0 16px;
                }

                .desktop-nav .nav-links a.nav-link-docsia {
                    min-height: 54px;
                    padding: 0 20px 0 18px;
                    font-size: 13px;
                }

                    .desktop-nav .nav-links a.nav-link-docsia::before {
                        width: 16px;
                        height: 16px;
                        margin-right: 10px;
                        box-shadow: 0 0 0 7px rgba(92, 227, 255, .11), 0 0 20px rgba(92, 227, 255, .48), 0 0 46px rgba(92, 227, 255, .24);
                    }

    .nav-actions .btn {
        min-height: 54px;
        padding: 0 26px;
        font-size: 15px;
        white-space: nowrap;
    }

    .nav-more {
        position: relative;
        flex: 0 0 auto;
    }

        .nav-more[hidden] {
            display: none !important;
        }

        .nav-more.is-measuring {
            visibility: hidden;
            display: block !important;
        }

    .nav-more-toggle {
        min-height: 50px;
        padding: 0 18px;
        border-radius: 999px;
        border: 1px solid rgba(15, 23, 42, .10);
        background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.58)), linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,.12));
        color: #45556d;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: -0.01em;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 12px 24px rgba(15,23,42,.05);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    }

        .nav-more-toggle:hover,
        .nav-more.is-open .nav-more-toggle {
            color: #0d1321;
            transform: translateY(-1px);
            background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.68)), linear-gradient(135deg, rgba(255,255,255,.32), rgba(255,255,255,.16));
            box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 16px 28px rgba(15,23,42,.08);
        }

    .nav-more-menu {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        min-width: 244px;
        padding: 10px;
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,.88);
        background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.76)), linear-gradient(135deg, rgba(255,255,255,.42), rgba(255,255,255,.18));
        box-shadow: 0 28px 70px rgba(15,23,42,.12), 0 10px 30px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,.92);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        display: none;
        z-index: 1900;
    }

    .nav-more.is-open .nav-more-menu {
        display: grid;
        gap: 8px;
    }

    .nav-more-menu a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 48px;
        padding: 0 16px;
        border-radius: 16px;
        color: #4e5f76;
        border: 1px solid rgba(15,23,42,.08);
        background: rgba(255,255,255,.54);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.84);
        white-space: nowrap;
    }

        .nav-more-menu a:hover {
            color: #0d1321;
            background: rgba(255,255,255,.74);
            border-color: rgba(15,23,42,.10);
        }

        .nav-more-menu a.nav-link-docsia {
            color: #f5fdff;
            border-color: rgba(130, 244, 255, .30);
            background: radial-gradient(circle at 14% 50%, rgba(173,246,255,.95) 0%, rgba(90,222,255,.40) 11%, rgba(21,111,214,0) 27%), linear-gradient(135deg, rgba(6,14,31,.98) 0%, rgba(11,30,66,.98) 40%, rgba(18,79,154,.96) 100%);
            box-shadow: 0 16px 34px rgba(4, 12, 29, .20), 0 0 0 1px rgba(255,255,255,.05) inset, inset 0 1px 0 rgba(255,255,255,.18);
        }

            .nav-more-menu a.nav-link-docsia::before {
                content: "";
                width: 14px;
                height: 14px;
                border-radius: 999px;
                margin-right: 10px;
                background: radial-gradient(circle at 34% 30%, #effeff 0%, #c8fbff 12%, #90ebff 26%, #50d2ff 46%, #237eff 72%, #0b1d53 100%);
                box-shadow: 0 0 0 6px rgba(92, 227, 255, .10), 0 0 18px rgba(92, 227, 255, .44);
            }
}

@media (min-width: 1120px) and (max-width: 1440px) {
    .desktop-nav .nav-links a {
        padding: 0 14px;
        font-size: 12.5px;
    }

        .desktop-nav .nav-links a.nav-link-docsia {
            padding: 0 18px 0 16px;
        }

    .nav-actions .btn {
        padding: 0 24px;
    }
}

.panel,
.hero-mini,
.audience-card,
.solution-row,
.cap-card,
.trust-main,
.trust-list-wrap,
.contact-info,
.contact-form,
.gallery-shell,
.hero-bar {
    background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.70)), linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
    border-color: rgba(255,255,255,.82);
    box-shadow: 0 24px 58px rgba(15,23,42,.08), 0 8px 20px rgba(15,23,42,.04), inset 0 1px 0 rgba(255,255,255,.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.btn-secondary {
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 14px 26px rgba(15,23,42,.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn {
    background: linear-gradient(180deg, #091121, #0c1630 58%, #122040);
    box-shadow: 0 18px 40px rgba(3,10,24,.18), inset 0 1px 0 rgba(255,255,255,.06);
}

/* v11 - apple real refinado */
:root {
    --shadow: 0 22px 70px rgba(13, 19, 33, 0.08);
    --line: rgba(13, 19, 33, 0.08);
    --line-strong: rgba(13, 19, 33, 0.14);
}

body {
    background: radial-gradient(circle at top left, rgba(125, 211, 252, 0.10), transparent 22%), radial-gradient(circle at top right, rgba(255,255,255,0.70), transparent 18%), radial-gradient(circle at bottom right, rgba(183, 134, 61, 0.06), transparent 20%), linear-gradient(180deg, #f7f7f4 0%, #f2f1ed 100%);
}

.site-header {
    padding: 12px 0;
    background: linear-gradient(180deg, rgba(247,247,244,.88), rgba(247,247,244,.54) 75%, transparent);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
}

    .site-header.scrolled {
        padding: 8px 0;
    }

.nav-shell {
    min-height: 84px;
    grid-template-columns: minmax(220px, 270px) 1fr auto;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.72)), linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,.08));
    border: 1px solid rgba(255,255,255,.88);
    box-shadow: 0 24px 60px rgba(13, 19, 33, .08), inset 0 1px 0 rgba(255,255,255,.72), inset 0 -1px 0 rgba(255,255,255,.22);
    position: relative;
    overflow: hidden;
}

    .nav-shell::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(115deg, rgba(255,255,255,.44) 0%, rgba(255,255,255,.18) 16%, transparent 34%), radial-gradient(circle at 18% 0%, rgba(120, 222, 255, .10), transparent 24%);
        opacity: .9;
    }

    .nav-shell > * {
        position: relative;
        z-index: 1;
    }

.brand-slot {
    max-width: 250px;
    justify-content: flex-start;
    margin-inline: 0;
}

.brand-logo-wrap {
    justify-content: flex-start;
}

.brand-logo-image {
    height: 52px;
    max-width: 210px;
    width: auto;
    margin-inline: 0;
    object-position: left center;
    filter: saturate(1.02) contrast(1.02);
}

.nav-links {
    gap: 4px;
    overflow: hidden;
    justify-content: center;
}

    .nav-links a {
        background: transparent;
        border: 1px solid transparent;
        box-shadow: none;
        color: var(--ink-soft);
        font-weight: 700;
        padding: 0 10px;
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

        .nav-links a:hover {
            background: rgba(255,255,255,.2);
            border-color: rgba(13,19,33,.08);
            box-shadow: 0 4px 12px rgba(13,19,33,.04);
            color: var(--brand);
            transform: translateY(-1px);
        }

        .nav-links a.nav-link-docsia {
            min-height: 50px;
            padding: 0 20px 0 18px;
            border-color: rgba(129, 237, 255, .34);
            box-shadow: 0 16px 36px rgba(4, 17, 40, .20), 0 0 0 1px rgba(255,255,255,.06) inset, 0 0 0 4px rgba(55, 201, 255, .08), 0 12px 22px rgba(15, 115, 190, .14), inset 0 1px 0 rgba(255,255,255,.20), inset 0 -16px 24px rgba(0,0,0,.12);
            background: radial-gradient(circle at 14% 50%, rgba(173,246,255,.95) 0%, rgba(90,222,255,.46) 11%, rgba(21,111,214,0) 27%), radial-gradient(circle at 82% 12%, rgba(147, 255, 255, .22), transparent 20%), linear-gradient(135deg, rgba(6,14,31,.98) 0%, rgba(10,26,58,.98) 30%, rgba(16,60,122,.98) 68%, rgba(37,142,233,.94) 100%);
            color: #f5fdff;
        }

            .nav-links a.nav-link-docsia:hover {
                transform: translateY(-2px) scale(1.02);
                box-shadow: 0 26px 54px rgba(3, 12, 31, .28), 0 0 0 1px rgba(255,255,255,.08) inset, 0 0 0 4px rgba(79, 217, 255, .11), 0 0 42px rgba(70, 222, 255, .22), inset 0 1px 0 rgba(255,255,255,.26), inset 0 -16px 30px rgba(0,0,0,.18);
                color: #f5fdff;
            }

            .nav-links a.nav-link-docsia::before {
                width: 16px;
                height: 16px;
                margin-right: 10px;
                flex-basis: 16px;
            }

.nav-actions .btn {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(8,14,30,.98), rgba(8,15,36,.94)), linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,0));
    box-shadow: 0 18px 34px rgba(13, 19, 33, .16), inset 0 1px 0 rgba(255,255,255,.08);
}

.hero {
    padding-top: 26px;
}

.hero-stage {
    gap: 46px;
}

.hero-title > span:first-child {
    letter-spacing: -0.095em;
    text-shadow: 0 8px 26px rgba(255,255,255,.22);
}

.hero-title .accent {
    color: #146f92;
    text-shadow: 0 8px 22px rgba(23,168,218,.10);
}

.hero-copy {
    color: #5f6978;
    max-width: 58ch;
    text-align: justify;
}

.panel,
.hero-mini,
.gallery-shell,
.contact-info,
.contact-form,
.solution-row,
.cap-card,
.ticker-shell,
.sector-panel {
    background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.66)), linear-gradient(135deg, rgba(255,255,255,.38), rgba(255,255,255,.08));
    border-color: rgba(255,255,255,.84);
    box-shadow: 0 20px 54px rgba(13, 19, 33, .07), inset 0 1px 0 rgba(255,255,255,.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-card-primary,
.panel-dark,
.hero-bar-title,
.trust-main {
    background: radial-gradient(circle at top right, rgba(71, 224, 255, .18), transparent 24%), linear-gradient(180deg, rgba(8,16,31,.96), rgba(10,18,38,.92) 55%, rgba(12,24,54,.90) 100%);
    box-shadow: 0 24px 60px rgba(7, 12, 24, .18), inset 0 1px 0 rgba(255,255,255,.05);
}

.hero-mini,
.solution-row,
.cap-card {
    border-radius: 28px;
}

.hero-bar {
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(249,248,244,.70)), linear-gradient(135deg, rgba(255,255,255,.32), rgba(255,255,255,.08));
    border-color: rgba(255,255,255,.82);
    box-shadow: 0 24px 58px rgba(13,19,33,.06), inset 0 1px 0 rgba(255,255,255,.72);
}

.btn-secondary {
    background: rgba(255,255,255,.48);
    border-color: rgba(13,19,33,.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

    .btn-secondary:hover {
        background: rgba(255,255,255,.72);
    }

.field input,
.field textarea {
    background: rgba(255,255,255,.74);
    border-color: rgba(13,19,33,.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

@media (min-width: 1120px) {
    .nav-links {
        display: flex;
        justify-content: center;
        gap: 4px;
    }
}

@media (max-width: 1199px) {
    .nav-shell {
        min-height: 74px !important;
        padding: 10px 14px !important;
    }

    .brand-slot {
        max-width: 185px !important;
    }

    .brand-logo-image {
        max-width: 150px !important;
        height: 34px !important;
    }
}

@media (max-width: 760px) {
    .site-header {
        padding: 8px 0 !important;
    }

    .nav-shell {
        min-height: 68px !important;
        border-radius: 24px !important;
        padding: 10px 12px !important;
    }

    .brand-slot {
        max-width: 170px !important;
    }

    .brand-logo-image {
        max-width: 138px !important;
        height: 31px !important;
    }

    .hero {
        padding-top: 18px;
    }

    .hero-stage {
        gap: 34px;
    }
}

:root {
    --bg: #f5f2eb;
    --bg-soft: #fbfaf7;
    --paper: rgba(255,255,255,.78);
    --paper-2: rgba(247,243,235,.9);
    --line: rgba(15, 23, 42, 0.08);
    --line-strong: rgba(15, 23, 42, 0.14);
    --shadow: 0 24px 80px rgba(15, 23, 42, 0.10);
    --header-h: 114px;
}

body {
    background: radial-gradient(circle at 12% 8%, rgba(73, 196, 255, .12), transparent 20%), radial-gradient(circle at 86% 12%, rgba(130, 241, 255, .09), transparent 18%), radial-gradient(circle at 80% 92%, rgba(183, 134, 61, .08), transparent 20%), linear-gradient(180deg, #fcfbf8 0%, #f7f2ea 42%, #f2ede6 100%);
}

.panel,
.ticker-shell,
.gallery-shell,
.contact-info,
.contact-form,
.video-player-shell,
.video-contact-card,
.video-form-card,
.hero-bar,
.sector-panel,
.solution-row,
.audience-card,
.cap-card,
.trust-list-wrap {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .08), inset 0 1px 0 rgba(255,255,255,.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.panel-dark,
.hero-bar-title,
.experience-shell,
.trust-main {
    background: radial-gradient(circle at top right, rgba(89, 233, 255, .12), transparent 22%), linear-gradient(180deg, rgba(6,12,24,.96), rgba(9,16,33,.94) 42%, rgba(12,24,49,.94) 100%);
    border: 1px solid rgba(255,255,255,.09);
    box-shadow: 0 26px 80px rgba(4,10,24,.24), inset 0 1px 0 rgba(255,255,255,.08);
}

.site-header {
    padding: 18px 0 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

    .site-header.scrolled {
        padding: 12px 0 14px;
    }

.nav-shell {
    min-height: 108px;
    padding: 16px 18px;
    border-radius: 38px;
    background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.64)), linear-gradient(135deg, rgba(255,255,255,.34), rgba(255,255,255,.08));
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: 0 28px 80px rgba(15, 23, 42, .10), 0 8px 24px rgba(15, 23, 42, .06), inset 0 1px 0 rgba(255,255,255,.92), inset 0 -1px 0 rgba(255,255,255,.22);
    position: relative;
    overflow: hidden;
}

    .nav-shell::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(115deg, rgba(255,255,255,.44) 0%, rgba(255,255,255,.18) 18%, transparent 38%), radial-gradient(circle at 18% 0%, rgba(120, 222, 255, .10), transparent 24%);
        opacity: .9;
    }

    .nav-shell > * {
        position: relative;
        z-index: 1;
    }

.brand-slot {
    max-width: 390px;
    padding-left: 8px;
}

.brand-logo-image {
    height: 82px;
    max-width: 320px;
    filter: saturate(1.02) contrast(1.01);
}

.nav-links {
    gap: 8px;
}

    .nav-links a {
        min-height: 54px;
        padding: 0 18px;
        border-radius: 999px;
        background: rgba(255,255,255,.34);
        border: 1px solid rgba(15,23,42,.10);
        color: #56657b;
        font-size: 14px;
        font-weight: 800;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 8px 20px rgba(15,23,42,.03);
    }

        .nav-links a:hover {
            color: #0d1321;
            background: rgba(255,255,255,.60);
            border-color: rgba(15,23,42,.12);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 12px 24px rgba(15,23,42,.06);
            transform: translateY(-1px) scale(1.01);
        }

        .nav-links a.mobile-video-link {
            background: rgba(255,255,255,.50);
            color: #4f6077;
        }

        .nav-links a.nav-link-docsia {
            min-height: 60px;
            padding: 0 28px 0 22px;
            border-radius: 999px;
            border: 1px solid rgba(130, 244, 255, .34);
            color: #f5fdff;
            background: radial-gradient(circle at 14% 50%, rgba(173,246,255,.95) 0%, rgba(90,222,255,.46) 11%, rgba(21,111,214,0) 27%), radial-gradient(circle at 82% 12%, rgba(147, 255, 255, .22), transparent 20%), linear-gradient(135deg, rgba(6,14,31,.98) 0%, rgba(10,26,58,.98) 30%, rgba(16,60,122,.98) 68%, rgba(37,142,233,.94) 100%);
            box-shadow: 0 22px 38px rgba(4, 12, 29, .22), 0 0 0 1px rgba(255,255,255,.06) inset, 0 0 0 4px rgba(79, 217, 255, .08), 0 0 32px rgba(70, 222, 255, .14), inset 0 1px 0 rgba(255,255,255,.22), inset 0 -16px 30px rgba(0,0,0,.14);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

            .nav-links a.nav-link-docsia::before {
                width: 20px;
                height: 20px;
                margin-right: 12px;
                background: radial-gradient(circle at 34% 30%, #effeff 0%, #c8fbff 12%, #90ebff 26%, #50d2ff 46%, #237eff 72%, #0b1d53 100%);
                box-shadow: 0 0 0 8px rgba(92, 227, 255, .12), 0 0 24px rgba(92, 227, 255, .58), 0 0 56px rgba(92, 227, 255, .28);
            }

            .nav-links a.nav-link-docsia::after {
                background: linear-gradient(115deg, rgba(255,255,255,.38) 0%, rgba(255,255,255,.16) 16%, transparent 34%), linear-gradient(90deg, transparent 0%, rgba(140, 240, 255, .18) 52%, transparent 100%);
                border: 1px solid rgba(186, 248, 255, .14);
            }

            .nav-links a.nav-link-docsia:hover {
                transform: translateY(-2px) scale(1.02);
                box-shadow: 0 26px 54px rgba(3, 12, 31, .28), 0 0 0 1px rgba(255,255,255,.08) inset, 0 0 0 4px rgba(79, 217, 255, .11), 0 0 42px rgba(70, 222, 255, .22), inset 0 1px 0 rgba(255,255,255,.26), inset 0 -16px 30px rgba(0,0,0,.18);
            }

.nav-actions {
    gap: 14px;
}

    .nav-actions > .btn {
        min-height: 66px;
        padding: 0 34px;
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(10,15,28,.98), rgba(7,13,28,.98));
        color: #fff;
        border: 1px solid rgba(255,255,255,.06);
        box-shadow: 0 22px 40px rgba(7, 10, 20, .16), inset 0 1px 0 rgba(255,255,255,.12), inset 0 -12px 22px rgba(0,0,0,.14);
        letter-spacing: -0.02em;
    }

        .nav-actions > .btn:hover {
            transform: translateY(-2px) scale(1.015);
            box-shadow: 0 28px 48px rgba(7,10,20,.20), inset 0 1px 0 rgba(255,255,255,.14), inset 0 -12px 22px rgba(0,0,0,.18);
        }

.menu-toggle {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.52);
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.docsia-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    color: #effcff;
    background: radial-gradient(circle at 14% 50%, rgba(156,244,255,.90) 0%, rgba(85,214,255,.34) 10%, rgba(23,105,194,0) 26%), linear-gradient(135deg, rgba(6,15,34,.98) 0%, rgba(11,34,69,.98) 44%, rgba(18,86,151,.96) 100%);
    border: 1px solid rgba(120, 238, 255, .26);
    box-shadow: 0 18px 34px rgba(3,12,31,.16), inset 0 1px 0 rgba(255,255,255,.14), 0 0 0 3px rgba(79,217,255,.06);
    width: max-content;
    max-width: 100%;
}

    .docsia-chip::before {
        content: "";
        width: 14px;
        height: 14px;
        border-radius: 50%;
        flex: 0 0 14px;
        background: radial-gradient(circle at 35% 35%, #e8feff 0%, #9aeeff 28%, #34c6ff 56%, #154ba3 100%);
        box-shadow: 0 0 16px rgba(77, 220, 255, .50);
    }

.hero-actions .btn,
.hero-actions .btn-secondary,
.form-actions .btn,
.form-actions .btn-secondary,
.video-contact-card .hero-actions .btn,
.video-contact-card .hero-actions .btn-secondary {
    min-height: 58px;
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-actions .btn,
.form-actions .btn,
.video-contact-card .hero-actions .btn {
    background: linear-gradient(180deg, rgba(7,13,28,.98), rgba(9,16,34,.98));
    box-shadow: 0 18px 32px rgba(7, 10, 20, .12), inset 0 1px 0 rgba(255,255,255,.12);
}

.hero-actions .btn-secondary,
.form-actions .btn-secondary,
.video-contact-card .hero-actions .btn-secondary {
    background: rgba(255,255,255,.52);
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

.hero-actions .btn-docsia,
[data-docsia-open],
.btn-docsia-page,
.docsia-fab,
.docsia-send,
.docsia-primary-link {
    background: radial-gradient(circle at 14% 50%, rgba(173,246,255,.95) 0%, rgba(90,222,255,.46) 11%, rgba(21,111,214,0) 27%), radial-gradient(circle at 82% 12%, rgba(147,255,255,.20), transparent 20%), linear-gradient(135deg, rgba(6,14,31,.98) 0%, rgba(10,26,58,.98) 30%, rgba(16,60,122,.98) 72%, rgba(37,142,233,.94) 100%) !important;
    color: #f5fdff !important;
    border: 1px solid rgba(130,244,255,.30) !important;
    box-shadow: 0 22px 42px rgba(3,12,31,.22), 0 0 0 1px rgba(255,255,255,.06) inset, 0 0 0 4px rgba(79,217,255,.07), 0 0 36px rgba(70,222,255,.14), inset 0 1px 0 rgba(255,255,255,.18), inset 0 -16px 28px rgba(0,0,0,.14) !important;
    position: relative;
    overflow: hidden;
}

    .hero-actions .btn-docsia::before,
    [data-docsia-open]::before,
    .btn-docsia-page::before,
    .docsia-fab::before,
    .docsia-send::before,
    .docsia-primary-link::before {
        content: "";
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: inline-block;
        margin-right: 12px;
        vertical-align: middle;
        background: radial-gradient(circle at 35% 35%, #f0ffff 0%, #c7fbff 15%, #8aeaff 32%, #44ccff 52%, #1d73ff 76%, #0b1c4f 100%);
        box-shadow: 0 0 0 7px rgba(92,227,255,.10), 0 0 22px rgba(92,227,255,.48);
    }

    .hero-actions .btn-docsia:hover,
    [data-docsia-open]:hover,
    .btn-docsia-page:hover,
    .docsia-fab:hover,
    .docsia-send:hover,
    .docsia-primary-link:hover {
        transform: translateY(-2px) scale(1.015);
    }

.mobile-panel {
    margin-top: 12px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.68));
    border: 1px solid rgba(255,255,255,.88);
    box-shadow: 0 28px 64px rgba(15,23,42,.12), inset 0 1px 0 rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

    .mobile-panel a {
        min-height: 52px;
        display: flex;
        align-items: center;
        border-radius: 18px;
        background: rgba(255,255,255,.32);
        border: 1px solid transparent;
    }

        .mobile-panel a:hover {
            background: rgba(255,255,255,.58);
            border-color: rgba(15,23,42,.08);
        }

        .mobile-panel a.nav-link-docsia,
        .mobile-panel a.mobile-docsia-link,
        .mobile-panel a.btn-docsia-page {
            border-radius: 20px;
        }

.section-title,
.hero-title > span:first-child,
.hero-title .accent,
.hero-card-primary h2,
.experience-copy h2,
.trust-main h3,
.gallery-head h3,
.video-page-hero h1 {
    letter-spacing: -0.075em;
    text-wrap: balance;
}

.docsia-panel,
.docsia-popup,
.docsia-dedicated-shell,
.docsia-chat-shell {
    background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.72));
    border: 1px solid rgba(255,255,255,.86);
    box-shadow: 0 30px 70px rgba(15,23,42,.14), inset 0 1px 0 rgba(255,255,255,.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

@media (max-width: 1199px) {
    .nav-shell {
        min-height: 88px !important;
        border-radius: 30px !important;
        padding: 12px 14px !important;
    }

    .brand-logo-image {
        height: 60px !important;
        max-width: 230px !important;
    }
}

@media (max-width: 760px) {
    .site-header {
        padding: 10px 0 12px !important;
    }

    .nav-shell {
        min-height: 76px !important;
        border-radius: 24px !important;
    }

    .brand-logo-image {
        height: 48px !important;
        max-width: 190px !important;
    }

    .mobile-panel {
        border-radius: 24px;
    }

        .mobile-panel a.nav-link-docsia,
        .mobile-panel a.mobile-docsia-link,
        .mobile-panel a.btn-docsia-page,
        .hero-actions .btn-docsia,
        [data-docsia-open] {
            min-height: 54px;
            font-size: 15px;
        }
}

.site-footer {
    position: relative;
    margin-top: clamp(64px, 8vw, 120px);
    padding: 0 0 34px;
    background: linear-gradient(180deg, var(--bg) 0%, #e3dacb 100%);
    border-top: none;
    overflow: hidden;
}

    .site-footer::before {
        content: none;
    }

.footer-dark-shell {
    position: relative;
    z-index: 1;
    padding: 34px clamp(20px, 3vw, 36px) 0;
}

.footer-topline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(126, 228, 255, .16);
    background: rgba(255,255,255,.05);
    color: #9fe9ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

    .footer-topline::before {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #5ed9ff;
        box-shadow: 0 0 0 7px rgba(94, 217, 255, .12), 0 0 20px rgba(94, 217, 255, .24);
        flex: 0 0 10px;
    }

.footer-grid {
    display: grid;
    gap: 24px;
    margin-top: 22px;
}

@media (min-width: 1120px) {
    .footer-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr) minmax(280px, .74fr);
        align-items: start;
    }
}

.footer-brand-panel,
.footer-cert-panel,
.footer-nav-panel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.10);
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)), linear-gradient(135deg, rgba(9, 22, 44, .78), rgba(8, 18, 34, .92));
    box-shadow: 0 28px 80px rgba(3, 8, 19, .24), inset 0 1px 0 rgba(255,255,255,.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.footer-brand-panel {
    padding: clamp(26px, 3vw, 36px);
    display: grid;
    gap: 22px;
    min-height: 100%;
}

    .footer-brand-panel::after,
    .footer-cert-panel::after,
    .footer-nav-panel::after {
        content: "";
        position: absolute;
        inset: auto -100px -120px auto;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(48, 198, 255, .18), transparent 68%);
        pointer-events: none;
        filter: blur(10px);
    }

.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: max-content;
    max-width: 100%;
    pointer-events: none;
}

    .footer-brand-logo .brand-logo-wrap {
        justify-content: flex-start;
    }

    .footer-brand-logo .brand-logo-image {
        height: clamp(44px, 5vw, 64px) !important;
        max-width: min(100%, 280px) !important;
        margin: 0 !important;
        object-position: left center !important;
        filter: brightness(1.08) contrast(1.03);
    }

.footer-brand-title {
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: .96;
    letter-spacing: -0.07em;
    color: #f7fbff;
    width: min(100%, 12ch);
}

.footer-brand-copy {
    color: rgba(236, 244, 252, .76);
    font-size: 15px;
    line-height: 1.72;
    max-width: 54ch;
}

.footer-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.footer-pill-btn,
.footer-pill-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.footer-pill-btn {
    color: #f7fdff;
    border: 1px solid rgba(130,244,255,.32);
    background: radial-gradient(circle at 14% 50%, rgba(173,246,255,.95) 0%, rgba(90,222,255,.46) 11%, rgba(21,111,214,0) 27%), linear-gradient(135deg, rgba(6,14,31,.98) 0%, rgba(10,26,58,.98) 34%, rgba(16,60,122,.98) 72%, rgba(37,142,233,.94) 100%);
    box-shadow: 0 18px 38px rgba(3,12,31,.24), 0 0 0 1px rgba(255,255,255,.06) inset, inset 0 1px 0 rgba(255,255,255,.18);
}

.footer-pill-btn-secondary {
    color: #d9e8f7;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

    .footer-pill-btn:hover,
    .footer-pill-btn-secondary:hover {
        transform: translateY(-2px);
    }

.footer-cert-panel {
    padding: clamp(22px, 3vw, 32px);
    display: grid;
    gap: 18px;
}

.footer-panel-head {
    display: grid;
    gap: 8px;
}

    .footer-panel-head span {
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .15em;
        text-transform: uppercase;
        color: #94e7ff;
    }

    .footer-panel-head h3 {
        font-size: clamp(24px, 2.8vw, 40px);
        line-height: .98;
        letter-spacing: -0.06em;
        color: #f7fbff;
        width: min(100%, 11ch);
    }

    .footer-panel-head p {
        color: rgba(236, 244, 252, .72);
        font-size: 14px;
        line-height: 1.65;
        max-width: 52ch;
    }

.footer-badge-grid {
    display: grid;
    gap: 14px;
}

@media (min-width: 640px) {
    .footer-badge-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.footer-badge-card {
    position: relative;
    overflow: hidden;
    min-height: 188px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05)), linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 36px rgba(3, 8, 19, .16);
    display: grid;
    gap: 14px;
    align-content: start;
}

    .footer-badge-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(125deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.04) 22%, transparent 42%);
        pointer-events: none;
    }

.footer-badge-card--image {
    grid-column: 1 / -1;
    min-height: 220px;
    padding: 22px;
}

.footer-badge-card--ghost {
    border-style: dashed;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}

.footer-badge-logo-img {
    width: clamp(180px, 34vw, 360px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,.18));
}

.footer-badge-meta {
    display: grid;
    gap: 6px;
}

.footer-badge-kicker {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #9fe9ff;
}

.footer-badge-title {
    font-size: clamp(22px, 2vw, 30px);
    line-height: .96;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.footer-badge-copy {
    color: rgba(236, 244, 252, .72);
    font-size: 14px;
    line-height: 1.6;
}

.footer-badge-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

    .footer-badge-tags span {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 0 12px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(255,255,255,.05);
        color: #eff8ff;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

.footer-nav-panel {
    padding: clamp(24px, 3vw, 32px);
    display: grid;
    gap: 18px;
}

.footer-nav-grid {
    display: grid;
    gap: 18px;
}

@media (min-width: 560px) {
    .footer-nav-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.footer-nav-col {
    display: grid;
    gap: 12px;
    align-content: start;
}

    .footer-nav-col strong {
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: #f6fbff;
    }

    .footer-nav-col a {
        color: rgba(236, 244, 252, .72);
        font-size: 14px;
        line-height: 1.5;
        transition: color .2s ease, transform .2s ease;
        width: max-content;
        max-width: 100%;
    }

        .footer-nav-col a:hover {
            color: #a8efff;
            transform: translateX(2px);
        }

.footer-bottomline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px 22px;
    padding-top: 18px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(214, 228, 242, .60);
    font-size: 12px;
    line-height: 1.65;
}

    .footer-bottomline p {
        max-width: 56ch;
    }

.cert-page-shell {
    padding-top: clamp(26px, 3vw, 42px);
    padding-bottom: clamp(30px, 4vw, 54px);
}

.cert-page-center {
    display: grid;
    gap: 18px;
}

.cert-page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 42px);
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,.08);
    background: radial-gradient(circle at top right, rgba(48, 198, 255, .12), transparent 20%), linear-gradient(135deg, #071121 0%, #0a1730 55%, #0b1b35 100%);
    box-shadow: 0 28px 70px rgba(5, 10, 22, .20), inset 0 1px 0 rgba(255,255,255,.08);
    color: #f7fbff;
    display: grid;
    gap: 18px;
}

    .cert-page-hero::after {
        content: "";
        position: absolute;
        right: -90px;
        bottom: -110px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(48,198,255,.18), transparent 70%);
        pointer-events: none;
    }

    .cert-page-hero h1 {
        font-size: clamp(34px, 4.2vw, 64px);
        line-height: .93;
        letter-spacing: -0.08em;
        width: min(100%, 10ch);
    }

    .cert-page-hero p {
        max-width: 68ch;
        color: rgba(236, 244, 252, .76);
        font-size: 16px;
        line-height: 1.72;
    }

.cert-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cert-page-snapshot {
    display: grid;
    gap: 16px;
}

@media (min-width: 1120px) {
    .cert-page-snapshot {
        grid-template-columns: 1.02fr .98fr;
    }
}

.cert-page-card,
.cert-page-summary {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.82);
    background: rgba(255,255,255,.78);
    box-shadow: 0 24px 60px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cert-page-card {
    padding: clamp(24px, 3vw, 30px);
    display: grid;
    gap: 18px;
}

    .cert-page-card .footer-badge-logo-img {
        width: clamp(220px, 36vw, 420px);
    }

.cert-summary-grid {
    display: grid;
    gap: 14px;
    padding: clamp(24px, 3vw, 30px);
}

.cert-summary-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(15,23,42,.08);
}

    .cert-summary-item:first-child {
        border-top: 0;
        padding-top: 0;
    }

.cert-summary-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(23,168,218,.10), rgba(183,134,61,.10));
    border: 1px solid rgba(23,168,218,.16);
    color: var(--brand-deep);
}

    .cert-summary-mark svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.cert-summary-item strong {
    display: block;
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0d1321;
    margin-bottom: 4px;
}

.cert-summary-item p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.58;
}

.cert-cards-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 900px) {
    .cert-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1260px) {
    .cert-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.cert-item {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(15,23,42,.10);
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86));
    box-shadow: 0 18px 42px rgba(15,23,42,.06), inset 0 1px 0 rgba(255,255,255,.88);
    display: grid;
    gap: 14px;
    align-content: start;
}

    .cert-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 5px;
        background: linear-gradient(180deg, var(--brand), var(--gold));
    }

.cert-item-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(13, 19, 33, .06);
    color: #3b4c64;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cert-item h3 {
    font-size: clamp(22px, 2vw, 32px);
    line-height: .96;
    letter-spacing: -0.05em;
    color: #0d1321;
    width: min(100%, 12ch);
}

.cert-item p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.62;
}

.cert-item ul {
    display: grid;
    gap: 8px;
    list-style: none;
    color: #3d5068;
    font-size: 13px;
}

    .cert-item ul li {
        display: grid;
        grid-template-columns: 14px 1fr;
        gap: 10px;
        align-items: start;
    }

        .cert-item ul li::before {
            content: "•";
            color: var(--brand);
            font-weight: 900;
            margin-top: -1px;
        }

.cert-note {
    padding: 22px 24px;
    border-radius: 22px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.78);
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.88);
}

@media (max-width: 760px) {
    .site-footer {
        padding-bottom: 24px;
    }

    .footer-dark-shell {
        padding-inline: 0;
    }

    .footer-brand-panel,
    .footer-cert-panel,
    .footer-nav-panel {
        border-radius: 24px;
    }

    .footer-badge-card,
    .cert-item,
    .cert-page-card,
    .cert-page-summary {
        border-radius: 22px;
    }

    .footer-badge-card--image {
        min-height: 198px;
    }
}

.site-footer {
    position: relative;
    margin-top: clamp(56px, 7vw, 110px);
    padding: 0 0 28px;
    background: linear-gradient(180deg, var(--bg) 0%, #e3dacb 100%);
    border-top: none;
    overflow: hidden;
}

    .site-footer::before {
        content: none;
    }

.footer-simple-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 22px;
    align-items: center;
    padding: 26px clamp(18px, 3vw, 32px) 18px;
}

@media (min-width: 980px) {
    .footer-simple-shell {
        grid-template-columns: minmax(0, .95fr) auto minmax(0, .7fr);
    }
}

.footer-simple-brand {
    display: grid;
    gap: 14px;
}

    .footer-simple-brand .brand-slot {
        min-height: auto;
        max-width: 260px;
        pointer-events: none;
    }

.footer-simple-copy {
    color: rgba(233,243,255,.72);
    font-size: 14px;
    line-height: 1.6;
    max-width: 42ch;
}

.footer-simple-seals {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-simple-seals-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
    box-shadow: 0 22px 50px rgba(2, 8, 19, .22), inset 0 1px 0 rgba(255,255,255,.08);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

    .footer-simple-seals-link:hover {
        transform: translateY(-2px);
        border-color: rgba(126,228,255,.28);
        background: rgba(255,255,255,.08);
    }

.footer-simple-seals-img {
    display: block;
    width: min(100%, 240px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,.22));
}

.footer-simple-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

@media (min-width: 980px) {
    .footer-simple-nav {
        justify-content: flex-end;
    }
}

.footer-simple-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
    color: rgba(241,247,255,.86);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -.01em;
    transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}

    .footer-simple-nav a:hover {
        transform: translateY(-1px);
        color: #ffffff;
        border-color: rgba(126,228,255,.28);
        background: rgba(255,255,255,.08);
    }

.footer-simple-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(212,225,240,.62);
    font-size: 12px;
    line-height: 1.6;
}

    .footer-simple-bottom a {
        color: rgba(226,240,255,.82);
    }

@media (max-width: 760px) {
    .footer-simple-shell {
        padding: 22px 18px 16px;
    }

    .footer-simple-brand .brand-slot {
        max-width: 220px !important;
    }

    .footer-simple-seals-link {
        width: 100%;
        padding: 16px 18px;
    }

    .footer-simple-seals-img {
        width: min(100%, 220px);
    }

    .footer-simple-bottom {
        flex-direction: column;
    }
}

.cert-hub-shell {
    padding-top: 28px;
}

.cert-hub-center {
    display: grid;
    gap: 22px;
}

.cert-hub-hero {
    padding: clamp(28px, 4vw, 42px);
    display: grid;
    gap: 18px;
    overflow: hidden;
    position: relative;
}

    .cert-hub-hero::after {
        content: "";
        position: absolute;
        inset: auto -100px -120px auto;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(48,198,255,.22), transparent 68%);
        pointer-events: none;
        filter: blur(14px);
    }

    .cert-hub-hero h1 {
        font-size: clamp(34px, 5vw, 62px);
        line-height: .94;
        letter-spacing: -.08em;
        width: min(100%, 11ch);
        color: #fff;
    }

    .cert-hub-hero p {
        max-width: 66ch;
        color: rgba(246,244,239,.78);
        font-size: 16px;
        line-height: 1.7;
    }

.cert-hub-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cert-hub-grid {
    display: grid;
    gap: 18px;
}

@media (min-width: 1080px) {
    .cert-hub-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
        align-items: stretch;
    }
}

.cert-hub-showcase,
.cert-hub-side {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)), linear-gradient(135deg, rgba(9,22,44,.78), rgba(8,18,34,.92));
    box-shadow: 0 28px 80px rgba(3,8,19,.24), inset 0 1px 0 rgba(255,255,255,.10);
}

.cert-hub-showcase {
    padding: clamp(26px, 3vw, 34px);
    display: grid;
    gap: 18px;
}

.cert-hub-kicker {
    display: inline-flex;
    width: max-content;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(126,228,255,.16);
    color: #9fe9ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cert-hub-showcase h2,
.cert-hub-side h3 {
    color: #fff;
    letter-spacing: -.05em;
}

.cert-hub-showcase p,
.cert-hub-side p,
.cert-hub-bullets li,
.cert-hub-mini p {
    color: rgba(229,239,248,.74);
    line-height: 1.65;
}

.cert-hub-showcase-image-wrap {
    border-radius: 24px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.cert-hub-showcase-image {
    width: min(100%, 320px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 28px rgba(0,0,0,.24));
}

.cert-hub-side {
    padding: clamp(26px, 3vw, 34px);
    display: grid;
    gap: 18px;
    align-content: start;
}

.cert-hub-bullets {
    display: grid;
    gap: 10px;
    padding-left: 18px;
}

.cert-hub-mini-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 900px) {
    .cert-hub-mini-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.cert-hub-mini {
    border-radius: 24px;
    padding: 22px;
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(255,255,255,.86);
    box-shadow: 0 24px 60px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,.78);
}

    .cert-hub-mini span {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 0 10px;
        border-radius: 999px;
        background: rgba(23,168,218,.08);
        color: var(--brand-deep);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .cert-hub-mini strong {
        display: block;
        margin-top: 14px;
        margin-bottom: 8px;
        color: var(--ink);
        font-size: 20px;
        line-height: 1.05;
        letter-spacing: -.04em;
    }

.cert-hub-note {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.84);
    color: var(--ink-soft);
    box-shadow: 0 18px 42px rgba(15,23,42,.06), inset 0 1px 0 rgba(255,255,255,.82);
}

.legal-shell {
    padding-top: 28px;
}

.legal-center {
    display: grid;
    gap: 22px;
}

.legal-hero {
    padding: clamp(28px, 4vw, 42px);
    display: grid;
    gap: 18px;
    overflow: hidden;
    position: relative;
}

    .legal-hero::after {
        content: "";
        position: absolute;
        inset: auto -100px -120px auto;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(48,198,255,.22), transparent 68%);
        pointer-events: none;
        filter: blur(14px);
    }

    .legal-hero h1 {
        font-size: clamp(34px, 5vw, 58px);
        line-height: .96;
        letter-spacing: -.08em;
        max-width: 14ch;
        color: #fff;
    }

    .legal-hero p {
        max-width: 68ch;
        color: rgba(246,244,239,.78);
        font-size: 16px;
        line-height: 1.7;
    }

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .legal-nav a {
        display: inline-flex;
        align-items: center;
        min-height: 40px;
        padding: 0 16px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.16);
        background: rgba(255,255,255,.06);
        color: #f6f4ef;
        font-size: 14px;
        font-weight: 600;
        transition: border-color .2s ease, background .2s ease, color .2s ease;
    }

        .legal-nav a:hover {
            border-color: rgba(126,228,255,.36);
            background: rgba(255,255,255,.12);
            color: #fff;
        }

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.legal-doc {
    padding: clamp(26px, 3vw, 36px);
    display: grid;
    gap: 18px;
    scroll-margin-top: calc(var(--header-h) + 24px);
}

.legal-doc-label {
    display: inline-flex;
    width: max-content;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(23,168,218,.08);
    color: var(--brand-deep);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.legal-doc h2 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.02;
    letter-spacing: -.05em;
    color: var(--ink);
}

.legal-updated {
    color: var(--ink-muted);
    font-size: 14px;
}

.legal-section {
    display: grid;
    gap: 10px;
    padding-top: 6px;
}

    .legal-section h3 {
        font-size: 18px;
        line-height: 1.25;
        letter-spacing: -.03em;
        color: var(--ink);
    }

    .legal-section p {
        color: var(--ink-soft);
        line-height: 1.7;
        max-width: 78ch;
    }

.legal-note {
    padding: 18px 20px;
    color: var(--ink-soft);
    line-height: 1.65;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main#conteudo {
    flex: 1 0 auto;
    width: 100%;
}

.site-footer {
    margin-top: auto !important;
}

#seguranca .trust-layout {
    display: grid;
    gap: 20px;
    align-items: stretch;
}

    #seguranca .trust-layout > * {
        min-width: 0;
    }

#seguranca .trust-main,
#seguranca .trust-list-wrap {
    border-radius: 32px;
    min-height: 100%;
}

#seguranca .trust-main {
    display: grid;
    align-content: start;
    padding: 40px 42px;
    overflow: hidden;
}

    #seguranca .trust-main h3 {
        width: min(100%, 10.2ch);
        max-width: 10.2ch;
        font-size: clamp(54px, 5.2vw, 72px);
        line-height: 0.93;
        letter-spacing: -0.08em;
        text-wrap: balance;
        color: #f6f4ef;
    }

    #seguranca .trust-main p {
        max-width: 28ch;
        margin-top: 18px;
        font-size: clamp(17px, 1.35vw, 18px);
        line-height: 1.55;
        color: rgba(246,244,239,.74);
    }

#seguranca .trust-list-wrap {
    padding: 34px 36px;
    background: rgba(255,255,255,.76);
}

#seguranca .trust-list {
    display: grid;
    gap: 0;
}

#seguranca .trust-row {
    grid-template-columns: 68px 1fr;
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid rgba(13,19,33,.09);
}

    #seguranca .trust-row:first-child {
        border-top: 0;
        padding-top: 0;
    }

    #seguranca .trust-row:last-child {
        padding-bottom: 0;
    }

#seguranca .trust-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,248,236,.9), rgba(244,237,223,.88));
    border: 1px solid rgba(183,134,61,.26);
    color: #a57429;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.78);
}

#seguranca .trust-row strong {
    font-size: 17px;
}

.site-footer {
    position: relative;
    margin-top: clamp(56px, 7vw, 96px) !important;
    padding: clamp(42px, 5vw, 64px) 0 28px !important;
    background: linear-gradient(180deg, var(--bg) 0%, #e3dacb 100%) !important;
    border-top: none !important;
    overflow: hidden;
}

    .site-footer::before {
        content: none;
    }

.footer-classic-grid,
.footer-classic-legal {
    position: relative;
    z-index: 1;
}

.footer-classic-grid {
    display: grid;
    gap: 32px;
    align-items: start;
}

@media (min-width: 1100px) {
    .footer-classic-grid {
        grid-template-columns: repeat(4, minmax(140px, 1fr));
        gap: 36px;
    }
}

.footer-brand-block {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
}

.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    max-width: 250px;
    margin: 0 auto;
}

    .footer-brand-logo img {
        width: 100%;
        max-width: 250px;
        height: auto;
        object-fit: contain;
        display: block;
    }

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.footer-social {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    color: var(--ink);
    background: rgba(255,255,255,.4);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

    .footer-social:hover {
        transform: translateY(-1px);
        border-color: var(--brand);
        background: #fff;
        color: var(--brand);
    }

    .footer-social svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.footer-col {
    display: grid;
    gap: 14px;
    align-content: start;
}

    .footer-col h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 800;
        color: var(--ink);
        letter-spacing: -0.02em;
    }

    .footer-col nav,
    .footer-col .footer-contact-list {
        display: grid;
        gap: 12px;
    }

    .footer-col a,
    .footer-col span {
        color: var(--ink-soft);
        font-size: 15px;
        line-height: 1.45;
        text-decoration: none;
    }

        .footer-col a:hover {
            color: var(--brand);
        }

.footer-contact-list span {
    color: var(--ink-soft);
}

.footer-divider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 1px;
    margin: clamp(32px, 4vw, 46px) 0 22px;
    background: var(--line);
}

.footer-classic-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .footer-classic-legal a,
    .footer-classic-legal span {
        color: var(--ink-muted);
        font-size: 14px;
        line-height: 1.4;
        text-decoration: none;
    }

        .footer-classic-legal a:hover {
            color: var(--brand);
        }

.docsia-floating.docsia-floating-fab {
    right: 18px;
    bottom: 18px;
    width: 72px;
    height: 72px;
    min-height: 72px;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.22), transparent 32%), linear-gradient(135deg, #1c6dff 0%, #0e4fd5 100%);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 18px 34px rgba(13, 19, 33, 0.18), 0 0 0 1px rgba(255,255,255,.08) inset;
}

    .docsia-floating.docsia-floating-fab::before,
    .docsia-floating.docsia-floating-fab::after {
        display: none;
    }

    .docsia-floating.docsia-floating-fab:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 22px 42px rgba(13, 19, 33, 0.22), 0 0 0 1px rgba(255,255,255,.10) inset;
        background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.24), transparent 32%), linear-gradient(135deg, #2474ff 0%, #1157df 100%);
    }

    .docsia-floating.docsia-floating-fab .docsia-floating-icon {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        background: transparent;
        box-shadow: none;
        color: #ffffff;
    }

        .docsia-floating.docsia-floating-fab .docsia-floating-icon svg {
            width: 28px;
            height: 28px;
            stroke-width: 2.1;
        }

    .docsia-floating.docsia-floating-fab span {
        display: none;
    }

.docsia-floating.docsia-floating-fab {
    position: fixed !important;
    inset: auto 18px 18px auto !important;
    left: auto !important;
    right: 18px !important;
    top: auto !important;
    bottom: 18px !important;
    margin: 0 !important;
    z-index: 9999 !important;
    transform: none !important;
}

    .docsia-floating.docsia-floating-fab.is-hidden {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

/* ===== ÚLTIMAS REGRAS: FORÇA CONTRA OVERFLOW EM INGLÊS ===== */

.nav-shell {
    grid-template-columns: minmax(210px, 230px) minmax(0, 1fr) auto !important;
    gap: 10px !important;
    padding: 12px 14px !important;
    min-height: 92px !important;
}

.brand-slot {
    max-width: 220px !important;
    padding-left: 0 !important;
}

.brand-logo-wrap {
    justify-content: flex-start !important;
}

.brand-logo-image {
    max-width: 205px !important;
    height: 54px !important;
    margin: 0 !important;
    object-position: left center !important;
}

.desktop-nav {
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
}

    .desktop-nav .nav-links {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }

        .desktop-nav .nav-links a {
            min-height: 46px !important;
            padding: 0 22px !important;
            font-size: 12px !important;
            white-space: nowrap !important;
        }

            .desktop-nav .nav-links a.mobile-video-link {
                padding: 0 20px !important;
                font-size: 11.5px !important;
            }

            .desktop-nav .nav-links a.nav-link-docsia {
                min-height: 48px !important;
                padding: 0 24px 0 22px !important;
                font-size: 11.5px !important;
            }

                .desktop-nav .nav-links a.nav-link-docsia::before {
                    width: 14px !important;
                    height: 14px !important;
                    margin-right: 8px !important;
                    flex: 0 0 14px !important;
                }

.nav-actions {
    flex: 0 0 auto !important;
    gap: 0 !important;
}

    .nav-actions .btn {
        min-height: 48px !important;
        min-width: 112px !important;
        padding: 0 18px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }

/* ═══════════════════════════════════════════════════
   HERO ARCH — Arco do Triunfo Tipográfico
   ═══════════════════════════════════════════════════ */

.hero-top-arch {
    display: block;
}

.hero-stage-arch {
    width: 100%;
    gap: clamp(28px, 4vh, 44px);
    position: relative;
}

.hero-stage-arch::before {
    content: "";
    position: absolute;
    inset: -60px -80px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 30% 20%, rgba(23, 168, 218, 0.04) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(183, 134, 61, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.hero-stage-arch::after {
    content: "";
    position: absolute;
    inset: -20px -40px;
    border-radius: 40px;
    border: 1px solid rgba(23, 168, 218, 0.06);
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.hero-copy-block-arch {
    max-width: none !important;
    width: 100%;
    justify-items: center;
    text-align: center;
    gap: clamp(22px, 3.2vh, 36px);
    padding: clamp(8px, 2vh, 20px) 0;
}

.hero-copy-arch {
    max-width: 72ch;
    margin: 0 auto;
    text-align: justify;
    font-size: clamp(17px, 1.55vw, 21px);
    line-height: 1.65;
}

.hero-actions-arch {
    justify-content: center;
}

.hero-arch {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
    position: relative;
    padding: 0;
    isolation: isolate;
}

.arch-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: clamp(160px, 28vh, 320px);
    padding: clamp(20px, 3vh, 36px) clamp(20px, 3vw, 48px);
    gap: clamp(20px, 3vw, 60px);
}

.arch-divider {
    width: 2px;
    min-height: clamp(80px, 14vh, 160px);
    align-self: stretch;
    background: linear-gradient(180deg, transparent 0%, rgba(23, 168, 218, 0.25) 20%, rgba(183, 134, 61, 0.30) 50%, rgba(23, 168, 218, 0.25) 80%, transparent 100%);
    border-radius: 2px;
    flex: 0 0 2px;
}

.arch-column-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: clamp(12px, 2vh, 24px);
    z-index: 2;
    padding-top: clamp(4px, 0.8vh, 10px);
    flex: 0 1 auto;
}

.arch-column-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    z-index: 3;
}

.arch-column-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: clamp(12px, 2vh, 24px);
    z-index: 2;
    padding-top: clamp(4px, 0.8vh, 10px);
    flex: 0 1 auto;
}

.arch-top-left,
.arch-top-right {
    display: block;
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.045em;
    background: linear-gradient(135deg, #17a8da 0%, #0d6f93 60%, #b7863d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #17a8da;
    opacity: 0;
    transform: translateY(18px);
    white-space: normal;
}

.arch-pillar-left .arch-pillar-line {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.arch-pillar-right .arch-pillar-line {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero-arch.is-ready .arch-top-left {
    animation: archRevealTop 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.hero-arch.is-ready .arch-top-right {
    animation: archRevealTop 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.arch-amp {
    display: block;
    font-size: clamp(30px, 5vw, 72px);
    font-weight: 300;
    line-height: 1;
    background: linear-gradient(135deg, #0d6f93 0%, #b7863d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #b7863d;
    opacity: 0;
    transform: scale(0.72);
    white-space: nowrap;
}

.hero-arch.is-ready .arch-amp {
    animation: archRevealAmp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.arch-pillar {
    display: flex;
    flex-direction: column;
    gap: 0.06em;
}

.arch-pillar-left {
    align-items: flex-start;
}

.arch-pillar-right {
    align-items: flex-end;
}

.arch-pillar-line {
    display: block;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(16px);
}

.arch-pillar-line-ecm {
    display: inline;
    margin-left: 0.15em;
}

.hero-arch.is-ready .arch-pillar-left .arch-pillar-line:nth-child(1) {
    animation: archRevealPillar 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.36s forwards;
}

.hero-arch.is-ready .arch-pillar-left .arch-pillar-line:nth-child(2) {
    animation: archRevealPillar 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.46s forwards;
}

.hero-arch.is-ready .arch-pillar-right .arch-pillar-line:nth-child(1) {
    animation: archRevealPillar 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}

.hero-arch.is-ready .arch-pillar-right .arch-pillar-line:nth-child(2) {
    animation: archRevealPillar 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.52s forwards;
}

.arch-pillar-left .arch-pillar-line {
    font-size: clamp(24px, 3.8vw, 52px);
    background: linear-gradient(135deg, #17a8da 0%, #0d6f93 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #17a8da;
}

.arch-pillar-right .arch-pillar-line {
    font-size: clamp(24px, 3.8vw, 52px);
    background: linear-gradient(135deg, #0d6f93 0%, #b7863d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #b7863d;
}

.hero-arch.is-ready .arch-frame-vault,
.hero-arch.is-ready .arch-frame-left,
.hero-arch.is-ready .arch-frame-right,
.hero-arch.is-ready .arch-frame-base {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: archDraw 1.35s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

.hero-arch.is-ready .arch-frame-left {
    animation-delay: 0.12s;
}

.hero-arch.is-ready .arch-frame-right {
    animation-delay: 0.18s;
}

.hero-arch.is-ready .arch-frame-base {
    animation-delay: 0.28s;
}

@keyframes archDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes archRevealTop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes archRevealAmp {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes archRevealPillar {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 760px) {
    .hero-stage-arch {
        width: min(calc(100% - 16px), 100%);
    }

    .arch-grid {
        column-gap: clamp(30px, 5vw, 50px);
        min-height: clamp(170px, 34vh, 260px);
        padding-inline: 0;
    }

    .arch-top-left,
    .arch-top-right {
        font-size: clamp(26px, 7.5vw, 44px);
        white-space: normal;
    }

    .arch-amp {
        font-size: clamp(20px, 5.5vw, 32px);
    }

    .arch-column-left,
    .arch-column-right {
        gap: clamp(10px, 2vh, 18px);
    }

    .arch-pillar-left .arch-pillar-line,
    .arch-pillar-right .arch-pillar-line {
        font-size: clamp(15px, 4.2vw, 24px);
    }
}

@media (min-width: 1400px) {
    .hero-stage-arch {
        width: min(calc(100% - 32px), 1480px);
    }

    .arch-top-left,
    .arch-top-right {
        font-size: clamp(46px, 4.2vw, 72px);
    }

    .arch-pillar-left .arch-pillar-line,
    .arch-pillar-right .arch-pillar-line {
        font-size: clamp(40px, 2.8vw, 56px);
    }

    .arch-grid {
        min-height: clamp(260px, 30vh, 420px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-arch.is-ready .arch-top-left,
    .hero-arch.is-ready .arch-top-right,
    .hero-arch.is-ready .arch-amp,
    .hero-arch.is-ready .arch-pillar-line,
    .hero-arch.is-ready .arch-frame-vault,
    .hero-arch.is-ready .arch-frame-left,
    .hero-arch.is-ready .arch-frame-right,
    .hero-arch.is-ready .arch-frame-base {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        stroke-dashoffset: 0 !important;
    }

    .hero-arch.is-ready .arch-frame-glow {
        opacity: 1;
    }
}

.hero-title.hero-arch {
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
}

/* ═══════════════════════════════════════════════════
   GLOBAL TEXT WRAPPING — Evita desalinhamento e quebra com hífen
   ═══════════════════════════════════════════════════ */

[data-i18n] {
    overflow-wrap: break-word;
    hyphens: manual;
    max-width: 100%;
}

.section-title,
.hero-title > span:first-child,
.hero-title .accent,
.hero-card-primary h2,
.trust-main h3,
.hero-bar-title h3,
.hero-bar-title p,
.gallery-head h3,
.video-page-hero h1,
.legal-hero h1,
.cert-hub-hero h1,
.cert-page-hero h1,
.hero-card-label,
.solution-content h3,
.cap-card h3,
.cert-item h3,
.footer-brand-title,
.footer-panel-head h3,
.cert-hub-showcase h2,
.cert-hub-side h3,
.cert-hub-mini strong,
.legal-doc h2 {
    overflow-wrap: break-word;
    hyphens: manual;
    max-width: 100% !important;
    width: auto !important;
    min-width: 0;
}

.section-title {
    width: min(100%, 100%) !important;
}

/* Regra global: desativa hifens automáticos em todo o site */
body,
p,
h1, h2, h3, h4, h5, h6,
span, strong, em, a, li, td, th,
div, section, article {
    hyphens: manual;
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
}

/* ═══════════════════════════════════════════════════
   PRINT STYLES — Formatação de Impressão
   ═══════════════════════════════════════════════════ */

@media print {
    * {
        animation: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }

    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 11pt;
        line-height: 1.5;
        min-height: auto;
    }

    .floating-lang-switcher,
    .menu-toggle,
    .mobile-panel,
    .nav-more,
    .gallery-controls,
    .site-header,
    .footer-socials,
    .docsia-floating,
    .hero-actions,
    .form-actions {
        display: none !important;
    }

    .site-header {
        position: static !important;
        background: #fff !important;
        border-bottom: 1px solid #000 !important;
        padding: 10px 0 !important;
    }

    .nav-shell {
        background: #fff !important;
        border: 1px solid #000 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    .section-title,
    .hero-title > span:first-child,
    .hero-title .accent,
    .hero-card-primary h2,
    .experience-copy h2,
    .trust-main h3,
    .gallery-head h3,
    .video-page-hero h1,
    .legal-hero h1,
    .cert-hub-hero h1,
    .hero-card-label {
        text-wrap: balance;
        overflow-wrap: break-word;
        hyphens: manual;
        font-size: 14pt !important;
        line-height: 1.2 !important;
        letter-spacing: -0.02em !important;
    }

    .section-copy,
    .hero-copy,
    .hero-copy-arch,
    .experience-point p,
    .trust-row p,
    .audience-card span,
    .solution-content p,
    .cap-list,
    .legal-section p,
    .cert-hub-showcase p,
    .cert-hub-side p,
    .cert-item p,
    .footer-col a,
    .footer-col span {
        overflow-wrap: break-word;
        hyphens: manual;
        max-width: 100%;
    }

    .panel,
    .panel-dark,
    .hero-mini,
    .audience-card,
    .solution-row,
    .cap-card,
    .trust-main,
    .trust-list-wrap,
    .contact-info,
    .contact-form,
    .gallery-shell,
    .hero-bar,
    .sector-panel,
    .experience-shell,
    .video-player-shell,
    .video-contact-card,
    .video-form-card,
    .cert-hub-showcase,
    .cert-hub-side,
    .cert-hub-mini,
    .legal-doc,
    .cert-page-card,
    .cert-page-summary,
    .cert-item {
        background: #fff !important;
        border: 1px solid #000 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        color: #000 !important;
        page-break-inside: avoid;
        margin-bottom: 12px;
    }

    .panel-dark,
    .hero-bar-title,
    .trust-main,
    .experience-shell,
    .cert-hub-showcase,
    .cert-hub-side,
    .legal-hero,
    .cert-hub-hero,
    .cert-page-hero {
        background: #fff !important;
        color: #000 !important;
    }

    .panel-dark *,
    .hero-bar-title *,
    .trust-main *,
    .experience-shell *,
    .cert-hub-showcase *,
    .cert-hub-side *,
    .legal-hero *,
    .cert-hub-hero *,
    .cert-page-hero * {
        color: #000 !important;
    }

    a {
        color: #000 !important;
        text-decoration: underline !important;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 9pt;
        color: #333;
    }

    .btn,
    .btn-secondary,
    .lang-switch-btn,
    .phone-btn,
    .gallery-btn {
        border: 1px solid #000 !important;
        background: #fff !important;
        color: #000 !important;
        box-shadow: none !important;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    .gallery-slide {
        break-inside: avoid;
        page-break-inside: avoid;
        margin-bottom: 10px;
    }

    .hero-card-grid,
    .solutions-stack,
    .cap-grid,
    .cert-hub-mini-grid,
    .cert-cards-grid,
    .footer-classic-grid {
        display: block !important;
    }

    .hero-mini,
    .solution-row,
    .cap-card,
    .audience-card,
    .cert-hub-mini,
    .cert-item {
        margin-bottom: 12px;
        page-break-inside: avoid;
    }

    .experience-layout {
        display: block !important;
    }

    .experience-visuals {
        margin-top: 20px;
    }

    .experience-photo,
    .experience-stat {
        break-inside: avoid;
        page-break-inside: avoid;
        margin-bottom: 10px;
    }

    .contact-layout {
        display: block !important;
    }

    .contact-info,
    .contact-form {
        margin-bottom: 20px;
        page-break-inside: avoid;
    }

    .trust-layout {
        display: block !important;
    }

    .trust-list-wrap {
        margin-top: 20px;
    }

    .trust-row {
        page-break-inside: avoid;
    }

    .site-footer {
        background: #fff !important;
        border-top: 2px solid #000 !important;
        margin-top: 30px !important;
        padding-top: 20px !important;
    }

    .footer-classic-grid {
        display: block !important;
    }

    .footer-col {
        margin-bottom: 16px;
        page-break-inside: avoid;
    }

    .footer-classic-legal {
        border-top: 1px solid #000 !important;
        padding-top: 10px !important;
        margin-top: 10px !important;
    }

    .cert-hub-grid,
    .cert-page-snapshot {
        display: block !important;
    }

    .cert-hub-showcase,
    .cert-hub-side,
    .cert-page-card,
    .cert-page-summary {
        margin-bottom: 16px;
        page-break-inside: avoid;
    }

    .legal-doc {
        page-break-inside: avoid;
        margin-bottom: 20px;
    }

    .legal-section {
        page-break-inside: avoid;
    }

    .video-page-shell {
        min-height: auto !important;
    }

    .video-frame {
        aspect-ratio: 16 / 9 !important;
        height: 300px !important;
        background: #fff !important;
        border: 1px solid #000 !important;
    }

    .video-real {
        display: none !important;
    }

    .video-play {
        display: none !important;
    }

    .sector-duo {
        display: block !important;
    }

    .sector-list {
        margin-bottom: 16px;
    }

    .sector-row {
        page-break-inside: avoid;
    }

    .solutions-extras {
        page-break-inside: avoid;
    }

    .hero-bar {
        display: block !important;
    }

    .hero-bar-title {
        margin-bottom: 16px;
        page-break-inside: avoid;
    }

    .hero-bar-items {
        display: block !important;
    }

    .audience-card {
        margin-bottom: 10px;
        page-break-inside: avoid;
    }

    .section {
        page-break-inside: avoid;
        margin-bottom: 20px;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        orphans: 3;
        widows: 3;
    }

    p {
        orphans: 3;
        widows: 3;
    }

    .form-grid {
        display: block !important;
    }

    .field {
        margin-bottom: 12px;
        page-break-inside: avoid;
    }

    .services-gallery-viewport {
        height: auto !important;
        overflow: visible !important;
    }

    .services-gallery-track {
        display: block !important;
        animation: none !important;
    }

    .services-slide {
        display: block !important;
        margin-bottom: 8px;
        page-break-inside: avoid;
    }

    .ticker-mask {
        overflow: visible !important;
        height: auto !important;
    }

    .ticker-track {
        display: block !important;
        animation: none !important;
        width: 100% !important;
    }

    .ticker-card {
        display: inline-block !important;
        margin: 5px;
        page-break-inside: avoid;
    }

    .footer-simple-seals-link {
        border: 1px solid #000 !important;
        background: #fff !important;
    }

    [data-i18n] {
        hyphens: manual;
        overflow-wrap: break-word;
    }

    .hero-title > span:first-child,
    .hero-card-label,
    .arch-top-left,
    .arch-top-right,
    .arch-pillar-line {
        background: none !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
        -webkit-text-fill-color: #000 !important;
        color: #000 !important;
    }

    .nav-links,
    .desktop-nav .nav-links {
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }

    .experience-stat {
        background: #fff !important;
        border: 1px solid #000 !important;
        color: #000 !important;
    }

    .experience-stat strong,
    .experience-stat span {
        color: #000 !important;
    }

    .experience-stat.accent {
        background: #e0e0e0 !important;
    }

    .phone-selector {
        border: 1px solid #000 !important;
        background: #fff !important;
    }

    .phone-btn {
        border: 1px solid #ccc !important;
    }

    .phone-btn.active {
        background: #e0e0e0 !important;
        color: #000 !important;
    }
}
/* ===== FIM: OVERRIDES FINAIS ===== */

/* ═══════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS — Touch targets & small screens
   ═══════════════════════════════════════════════════ */

/* Touch targets mínimos (44px recomendado) */
.gallery-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
}

.menu-toggle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
}

.lang-switch-btn {
    min-width: 48px;
    min-height: 44px;
}

.mobile-panel a {
    min-height: 52px;
    display: flex;
    align-items: center;
}

/* Telas muito pequenas (≤360px — iPhone SE, Galaxy Fold) */
@media (max-width: 360px) {
    .container {
        width: min(calc(100% - 20px), var(--max));
    }

    .nav-shell {
        padding: 8px 10px !important;
        border-radius: 20px !important;
        min-height: 64px !important;
    }

    .brand-slot {
        max-width: 140px !important;
    }

    .brand-logo-image {
        max-width: 120px !important;
        height: 28px !important;
    }

    .menu-toggle {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
    }

    .hero-title > span:first-child,
    .arch-top-left,
    .arch-top-right {
        font-size: clamp(22px, 6.5vw, 34px) !important;
    }

    .arch-pillar-left .arch-pillar-line,
    .arch-pillar-right .arch-pillar-line {
        font-size: clamp(13px, 3.8vw, 20px) !important;
    }

    .arch-grid {
        column-gap: 18px !important;
        min-height: 150px !important;
        padding-inline: 0 !important;
    }

    .arch-divider {
        min-height: 70px !important;
    }

    .hero-copy-arch {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .hero-actions .btn,
    .hero-actions .btn-secondary,
    .form-actions .btn {
        min-height: 50px;
        padding: 0 18px;
        font-size: 13px;
        width: 100%;
    }

    .hero-actions,
    .form-actions {
        flex-direction: column;
        width: 100%;
    }

    .section-title {
        font-size: clamp(26px, 7vw, 36px) !important;
    }

    .section-copy {
        font-size: 15px !important;
    }

    .experience-shell {
        padding: 24px !important;
    }

    .experience-copy h2 {
        font-size: clamp(30px, 8vw, 40px) !important;
    }

    .experience-point {
        grid-template-columns: 64px 1fr !important;
        gap: 14px !important;
    }

    .experience-icon {
        width: 64px !important;
        height: 64px !important;
        flex-basis: 64px !important;
    }

    .experience-icon svg {
        width: 30px !important;
        height: 30px !important;
    }

    .solution-row {
        padding: 20px !important;
    }

    .solution-content h3 {
        font-size: clamp(20px, 5.5vw, 28px) !important;
    }

    .hero-bar {
        padding: 12px !important;
    }

    .hero-bar-title {
        padding: 22px !important;
    }

    .hero-bar-title h3 {
        font-size: clamp(22px, 6vw, 30px) !important;
    }

    .hero-bar-items {
        grid-template-columns: 1fr !important;
    }

    .audience-card {
        min-height: 140px !important;
        padding: 18px !important;
    }

    .cap-card {
        padding: 20px !important;
        min-height: auto !important;
    }

    .cap-card h3 {
        font-size: 20px !important;
    }

    .trust-main,
    .trust-list-wrap {
        padding: 22px !important;
    }

    .trust-main h3 {
        font-size: clamp(28px, 7.5vw, 36px) !important;
    }

    .trust-row {
        grid-template-columns: 44px 1fr !important;
        gap: 12px !important;
    }

    .trust-mark {
        width: 44px !important;
        height: 44px !important;
    }

    .gallery-shell {
        padding: 18px !important;
    }

    .gallery-head h3 {
        font-size: clamp(24px, 6.5vw, 32px) !important;
    }

    .gallery-btn {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
    }

    .contact-info,
    .contact-form {
        padding: 22px !important;
    }

    .contact-row {
        grid-template-columns: 40px 1fr !important;
        gap: 12px !important;
    }

    .contact-mark {
        width: 40px !important;
        height: 40px !important;
        flex-basis: 40px !important;
    }

    .form-grid.two {
        grid-template-columns: 1fr !important;
    }

    .field input,
    .field textarea {
        min-height: 46px;
        font-size: 16px; /* Evita zoom automático no iOS */
    }

    .footer-classic-grid {
        gap: 24px !important;
    }

    .footer-brand-block {
        gap: 16px !important;
    }

    .footer-brand-logo img {
        max-width: 200px !important;
    }

    .footer-col a,
    .footer-col span {
        font-size: 14px !important;
    }

    .footer-classic-legal {
        gap: 10px 16px !important;
    }

    .footer-classic-legal a,
    .footer-classic-legal span {
        font-size: 13px !important;
    }

    .floating-lang-switcher {
        right: 8px !important;
        padding: 8px 4px !important;
    }

    .lang-switch-btn {
        min-width: 40px !important;
        padding: 5px 8px !important;
    }

    .lang-text {
        font-size: 10px !important;
    }

    .lang-flag {
        font-size: 16px !important;
    }

    .video-page-hero h1 {
        font-size: clamp(28px, 7.5vw, 36px) !important;
    }

    .video-player-shell,
    .video-contact-card,
    .video-form-card {
        padding: 20px !important;
    }

    .cert-hub-hero h1,
    .legal-hero h1 {
        font-size: clamp(28px, 7.5vw, 36px) !important;
    }

    .cert-hub-showcase,
    .cert-hub-side {
        padding: 22px !important;
    }

    .cert-hub-mini {
        padding: 18px !important;
    }

    .legal-doc {
        padding: 22px !important;
    }

    .legal-section h3 {
        font-size: 16px !important;
    }

    .legal-section p {
        font-size: 14px !important;
    }
}

/* Previne zoom automático em inputs no iOS */
@media (max-width: 480px) {
    .field input,
    .field textarea,
    .field select {
        font-size: 16px;
    }
}
/* ===== FIM: MOBILE OPTIMIZATIONS ===== */

/* ═══════════════════════════════════════════════════
   VIDEO LAZY LOAD — Carrega o vídeo só no clique
   ═══════════════════════════════════════════════════ */

.video-lazy {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.video-lazy video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    background: #000;
    display: block;
}

.video-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    z-index: 2;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(255,255,255,.24);
    box-shadow: 0 0 40px rgba(23,168,218,.35);
}

.video-play-button svg {
    width: 34px;
    height: 34px;
    margin-left: 4px;
}

.video-lazy.is-playing .video-play-button {
    display: none;
}

@media (max-width: 760px) {
    .video-play-button {
        width: 78px;
        height: 78px;
    }

    .video-play-button svg {
        width: 28px;
        height: 28px;
    }
}
/* ===== FIM: VIDEO LAZY LOAD ===== */
