:root {
            --black: #050505;
            --white: #ffffff;
            --silver: #d7d7d2;
            --silver-light: #f3f3ef;
            --silver-dark: #969690;
            --gold: #b8955c;
            --container-width: 1180px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            min-height: 100%;
            background: var(--black);
            color: var(--white);
            font-family: "Inter", Arial, sans-serif;
        }

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

        button,
        a {
            -webkit-tap-highlight-color: transparent;
        }

        /* MENU */

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            width: 100%;
            transition:
                background-color 0.35s ease,
                backdrop-filter 0.35s ease,
                border-color 0.35s ease;
            border-bottom: 1px solid transparent;
        }

        .site-header.scrolled {
            background: rgba(5, 5, 5, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom-color: rgba(255, 255, 255, 0.08);
        }

        .navbar {
            width: min(calc(100% - 80px), var(--container-width));
            min-height: 88px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 32px;
        }

        .brand {
            justify-self: start;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

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

        .brand-symbol {
            display: grid;
            place-items: center;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            font-family: "Manrope", sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            line-height: 1.05;
            text-align: center;
            color: var(--silver-light);
        }

        .brand-name {
            max-width: 150px;
            font-size: 11px;
            font-weight: 400;
            line-height: 1.25;
            color: rgba(255, 255, 255, 0.82);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            list-style: none;
        }

        .nav-menu a {
            position: relative;
            padding: 10px 0;
            font-size: 13px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.82);
            transition: color 0.25s ease;
        }

        .nav-menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 3px;
            width: 100%;
            height: 1px;
            background: var(--silver);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--white);
        }

        .nav-menu a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }



        /* SUBMENUS DO MENU PRINCIPAL */
        .nav-menu > li {
            position: relative;
            list-style: none;
        }

        .nav-dropdown-toggle {
            min-height: 44px;
            padding: 10px 0;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            border: 0;
            background: transparent;
            color: rgba(255, 255, 255, 0.82);
            font: inherit;
            font-size: 13px;
            font-weight: 400;
            cursor: pointer;
            transition: color 0.25s ease;
        }

        .nav-dropdown-toggle::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 7px;
            width: 100%;
            height: 1px;
            background: var(--silver);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .nav-dropdown:hover > .nav-dropdown-toggle,
        .nav-dropdown.is-open > .nav-dropdown-toggle,
        .nav-dropdown-toggle:focus-visible {
            color: var(--white);
        }

        .nav-dropdown:hover > .nav-dropdown-toggle::after,
        .nav-dropdown.is-open > .nav-dropdown-toggle::after,
        .nav-dropdown-toggle:focus-visible::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-dropdown-chevron {
            display: inline-flex;
            font-size: 10px;
            opacity: 0.72;
            transition: transform 0.25s ease;
        }

        .nav-dropdown.is-open .nav-dropdown-chevron,
        .nav-dropdown:hover .nav-dropdown-chevron {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            z-index: 1250;
            width: 250px;
            padding: 9px;
            display: block;
            visibility: hidden;
            opacity: 0;
            list-style: none;
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 4px;
            background: rgba(10,10,10,.98);
            box-shadow: 0 24px 65px rgba(0,0,0,.48);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            transform: translate(-50%, 10px);
            pointer-events: none;
            transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
        }

        .nav-dropdown-menu::before {
            content: "";
            position: absolute;
            top: -13px;
            left: 0;
            width: 100%;
            height: 14px;
        }

        .nav-dropdown:hover > .nav-dropdown-menu,
        .nav-dropdown:focus-within > .nav-dropdown-menu,
        .nav-dropdown.is-open > .nav-dropdown-menu {
            visibility: visible;
            opacity: 1;
            transform: translate(-50%, 0);
            pointer-events: auto;
        }

        .nav-dropdown-menu li + li {
            border-top: 1px solid rgba(255,255,255,.065);
        }

        .nav-dropdown-menu a {
            width: 100%;
            min-height: 43px;
            padding: 11px 12px;
            display: flex;
            align-items: center;
            color: rgba(255,255,255,.72);
            font-size: 12px;
            line-height: 1.35;
            transition: color .2s ease, background-color .2s ease, padding-left .2s ease;
        }

        .nav-dropdown-menu a::after {
            display: none;
        }

        .nav-dropdown-menu a:hover,
        .nav-dropdown-menu a:focus-visible {
            padding-left: 16px;
            color: #fff;
            background: rgba(184,149,92,.11);
            outline: none;
        }

        .nav-actions {
            justify-self: end;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .language-selector {
            position: relative;
        }

        .language-button {
            min-height: 44px;
            padding: 0 13px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 2px;
            background: rgba(0, 0, 0, 0.25);
            color: rgba(255, 255, 255, 0.92);
            font: inherit;
            font-size: 11px;
            white-space: nowrap;
            cursor: pointer;
            transition:
                background-color 0.25s ease,
                border-color 0.25s ease;
        }

        .language-button:hover,
        .language-selector.open .language-button {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .language-current-flag,
        .language-option-flag {
            width: 28px;
            height: 20px;
            display: inline-flex;
            flex: 0 0 28px;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .flag-svg {
            display: block;
            width: 28px;
            height: 20px;
            border-radius: 2px;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
        }

        .language-chevron {
            width: 14px;
            height: 14px;
            display: inline-flex;
            flex: 0 0 14px;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            line-height: 1;
            opacity: 0.7;
            transform-origin: center;
            transition: transform 0.25s ease;
        }

        .language-selector.open .language-chevron {
            transform: rotate(180deg);
        }

        .language-menu {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            z-index: 1200;
            width: 290px;
            padding: 8px;
            display: none;
            list-style: none;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 4px;
            background: rgba(10, 10, 10, 0.98);
            box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .language-selector.open .language-menu {
            display: block;
        }

        .language-option {
            width: 100%;
            min-height: 44px;
            padding: 0 12px;
            display: flex;
            align-items: center;
            gap: 11px;
            border: 0;
            border-radius: 3px;
            background: transparent;
            color: rgba(255, 255, 255, 0.78);
            font: inherit;
            font-size: 12px;
            text-align: left;
            cursor: pointer;
            transition:
                color 0.2s ease,
                background-color 0.2s ease;
        }

        .language-option:hover,
        .language-option[aria-current="true"] {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
        }

        .language-option-text[dir="rtl"] {
            margin-left: auto;
            text-align: right;
        }

        .header-cta {
            flex-shrink: 0;
            min-height: 44px;
            padding: 0 21px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            border: 1px solid #dfbf80;
            border-radius: 2px;
            background: linear-gradient(135deg, #e1c181 0%, #a87935 52%, #e7cb91 100%);
            color: #080808;
            box-shadow: 0 15px 38px rgba(184, 149, 92, 0.2);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease;
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 48px rgba(184, 149, 92, 0.32);
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(0, 0, 0, 0.25);
            cursor: pointer;
        }

        .menu-toggle span {
            display: block;
            width: 20px;
            height: 1px;
            margin: 5px auto;
            background: var(--white);
            transition: transform 0.3s ease;
        }

        /* HERO */

        .hero {
            position: relative;
            min-height: 100svh;
            overflow: hidden;
            isolation: isolate;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #080808;
        }

        .hero-video {
            position: absolute;
            z-index: -4;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            opacity: 0;
            transition: opacity 1100ms cubic-bezier(.4,0,.2,1), filter 1100ms cubic-bezier(.4,0,.2,1);
            pointer-events: none;
            filter: brightness(.88) saturate(.94);
        }

        .hero-video.is-active {
            opacity: 1;
            filter: brightness(1) saturate(1);
        }

        .hero-overlay {
            position: absolute;
            z-index: -3;
            inset: 0;
            background:
                linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.48) 0%,
                    rgba(0, 0, 0, 0.34) 40%,
                    rgba(0, 0, 0, 0.72) 100%
                ),
                radial-gradient(
                    circle at center,
                    rgba(0, 0, 0, 0.05) 0%,
                    rgba(0, 0, 0, 0.58) 100%
                );
        }

        .hero-texture {
            position: absolute;
            z-index: -2;
            inset: 0;
            opacity: 0.06;
            pointer-events: none;
            background-image:
                linear-gradient(
                    rgba(255, 255, 255, 0.45) 1px,
                    transparent 1px
                ),
                linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0.45) 1px,
                    transparent 1px
                );
            background-size: 90px 90px;
            mask-image: linear-gradient(
                to bottom,
                transparent,
                black 40%,
                transparent
            );
        }

        .hero-content {
            width: min(calc(100% - 48px), 980px);
            margin: 0 auto;
            padding: 140px 0 80px;
            text-align: center;
        }

        .hero-eyebrow {
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.68);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            animation: fadeUp 0.8s ease both;
        }

        .hero-title {
            max-width: 930px;
            margin: 0 auto;
            font-family: "Manrope", sans-serif;
            font-size: clamp(44px, 6vw, 82px);
            font-weight: 500;
            line-height: 1.03;
            letter-spacing: -0.045em;
            text-wrap: balance;
            animation: fadeUp 0.9s 0.1s ease both;
        }

        .hero-title strong {
            font-weight: 500;
            color: var(--silver);
        }

        .hero-description {
            max-width: 820px;
            margin: 28px auto 0;
            color: rgba(255, 255, 255, 0.76);
            font-size: clamp(15px, 1.5vw, 18px);
            font-weight: 300;
            line-height: 1.75;
            text-wrap: balance;
            animation: fadeUp 0.9s 0.2s ease both;
        }

        .hero-features {
            margin-top: 36px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 11px;
            list-style: none;
            animation: fadeUp 0.9s 0.3s ease both;
        }

        .hero-features li {
            min-height: 36px;
            padding: 0 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 100px;
            background: rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: rgba(255, 255, 255, 0.82);
            font-size: 12px;
            font-weight: 400;
        }

        .feature-marker {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--silver);
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.65);
        }

        .hero-actions {
            margin-top: 42px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 14px;
            animation: fadeUp 0.9s 0.4s ease both;
        }

        .hero-button {
            min-width: 205px;
            min-height: 54px;
            padding: 0 25px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            border-radius: 2px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            transition:
                transform 0.25s ease,
                background-color 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease;
        }

        .hero-button-primary {
            border: 1px solid #dfbf80;
            background: linear-gradient(135deg, #e1c181 0%, #a87935 52%, #e7cb91 100%);
            color: #080808;
            box-shadow: 0 15px 38px rgba(184, 149, 92, 0.2);
        }

        .hero-button-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 48px rgba(184, 149, 92, 0.32);
        }

        .hero-button-secondary {
            border: 1px solid rgba(255, 255, 255, 0.38);
            background: rgba(0, 0, 0, 0.18);
            color: var(--white);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .hero-button-secondary:hover {
            transform: translateY(-3px);
            border-color: rgba(255, 255, 255, 0.75);
            background: rgba(255, 255, 255, 0.08);
        }

        .scroll-indicator {
            position: absolute;
            left: 50%;
            bottom: 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.52);
            font-size: 9px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            transform: translateX(-50%);
        }

        .scroll-line {
            width: 1px;
            height: 36px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.2);
        }

        .scroll-line::after {
            content: "";
            display: block;
            width: 100%;
            height: 50%;
            background: var(--white);
            animation: scrollLine 2s infinite ease-in-out;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(25px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scrollLine {
            0% {
                transform: translateY(-120%);
            }

            50%,
            100% {
                transform: translateY(220%);
            }
        }

        /* CONTEÚDO TEMPORÁRIO PARA TESTAR O SCROLL */

        .next-section {
            min-height: 100vh;
            padding: 160px 24px;
            display: grid;
            place-items: center;
            background: #080808;
            text-align: center;
        }

        .next-section h2 {
            font-family: "Manrope", sans-serif;
            font-size: clamp(32px, 5vw, 64px);
            font-weight: 400;
        }

        /* RESPONSIVO */

        @media (max-width: 1040px) {
            .navbar {
                grid-template-columns: 1fr auto;
                width: min(calc(100% - 56px), var(--container-width));
            }

            .nav-menu {
                position: fixed;
                top: 78px;
                left: 20px;
                right: 20px;
                display: none;
                padding: 28px;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                background: rgba(5, 5, 5, 0.97);
                border: 1px solid rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(18px);
                -webkit-backdrop-filter: blur(18px);
            }

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

            .nav-menu a {
                display: block;
                width: 100%;
                padding: 12px 0;
                font-size: 15px;
            }



            .nav-menu > li {
                width: 100%;
            }

            .nav-dropdown-toggle {
                width: 100%;
                min-height: 48px;
                padding: 12px 0;
                justify-content: space-between;
                color: rgba(255,255,255,.9);
                font-size: 15px;
                text-align: left;
            }

            .nav-dropdown-toggle::after {
                display: none;
            }

            .nav-dropdown-menu,
            .nav-dropdown:hover > .nav-dropdown-menu,
            .nav-dropdown:focus-within > .nav-dropdown-menu {
                position: static;
                width: 100%;
                max-height: 0;
                padding: 0 0 0 15px;
                visibility: hidden;
                opacity: 0;
                overflow: hidden;
                border: 0;
                border-left: 1px solid rgba(184,149,92,.38);
                border-radius: 0;
                background: transparent;
                box-shadow: none;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                transform: none;
                pointer-events: none;
                transition: max-height .3s ease, opacity .2s ease, visibility .2s ease, padding .3s ease;
            }

            .nav-dropdown.is-open > .nav-dropdown-menu {
                max-height: 360px;
                padding-top: 4px;
                padding-bottom: 8px;
                visibility: visible;
                opacity: 1;
                transform: none;
                pointer-events: auto;
            }

            .nav-dropdown-menu li + li {
                border-top: 0;
            }

            .nav-dropdown-menu a {
                min-height: 40px;
                padding: 9px 12px;
                font-size: 13px;
                color: rgba(255,255,255,.66);
            }

            .nav-actions {
                gap: 8px;
            }

            .header-cta {
                display: none;
            }

            .language-button {
                width: 44px;
                padding: 0;
            }

            .language-current-text,
            .language-chevron {
                display: none;
            }

            .language-menu {
                position: fixed;
                top: 76px;
                right: 20px;
                left: 20px;
                width: auto;
            }

            .menu-toggle {
                display: block;
            }
        }

        @media (max-width: 640px) {
            .navbar {
                min-height: 76px;
            }

            .brand-symbol {
                width: 40px;
                height: 40px;
                font-size: 10px;
            }

            .brand-name {
                max-width: 125px;
                font-size: 9px;
            }

            .hero-content {
                width: min(calc(100% - 34px), 980px);
                padding-top: 120px;
                padding-bottom: 105px;
            }

            .hero-eyebrow {
                margin-bottom: 18px;
                font-size: 9px;
                letter-spacing: 0.2em;
            }

            .hero-title {
                font-size: clamp(39px, 12vw, 58px);
                line-height: 1.06;
            }

            .hero-description {
                margin-top: 22px;
                font-size: 15px;
                line-height: 1.65;
            }

            .hero-features {
                margin-top: 28px;
                gap: 8px;
            }

            .hero-features li {
                min-height: 32px;
                padding: 0 11px;
                font-size: 10px;
            }

            .hero-actions {
                margin-top: 34px;
                flex-direction: column;
                width: 100%;
            }

            .hero-button {
                width: 100%;
                min-width: auto;
            }

            .scroll-indicator {
                bottom: 18px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

/*==================================================
    O QUE É A CERTIFICAÇÃO
==================================================*/

.about-certification{

    padding: 18px 0 32px;

    background:#050505;

}


/* ==================================================
   EMPRESAS CERTIFICADAS
================================================== */

.certified-companies {
    position: relative;
    overflow: hidden;
    padding: 100px 0 82px;
    background: #ffffff;
    color: #111111;
}

.certified-companies-heading {
    width: min(calc(100% - 96px), 1180px);
    margin: 0 auto 28px;
    text-align: center;
}

.certified-companies-heading span {
    display: block;
    margin-bottom: 18px;
    color: #a17c46;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.certified-companies-heading h2 {
    max-width: 780px;
    margin: 0 auto;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

/* Área do movimento */

.logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.logo-marquee + .logo-marquee {
    margin-top: 18px;
}

/* Sombras laterais para os logos surgirem suavemente */

.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 3;
    width: 140px;
    height: 100%;
    pointer-events: none;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(
        270deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

/* Faixa animada */

.logo-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: certifiedLogosMarquee 75s linear infinite;
    will-change: transform;
}

/* Movimento contínuo também no hover */
.logo-marquee:hover .logo-marquee-track {
    animation-play-state: running;
}

/* Cards retangulares das empresas */

.company-logo {
    position: relative;
    width: 250px;
    height: 118px;
    margin: 0 10px;
    padding: 22px 28px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #faf9f7 100%);
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.045);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

/* Linha dourada sutil, reforçando a identidade GCFC */

.company-logo::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(161, 124, 70, 0.15) 18%,
        #a17c46 50%,
        rgba(161, 124, 70, 0.15) 82%,
        transparent 100%
    );
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.company-logo:hover {
    transform: translateY(-4px);
    border-color: rgba(161, 124, 70, 0.48);
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.09);
}

.company-logo:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Imagem de cada marca */

.company-logo img {
    display: block;
    width: auto;
    max-width: 190px;
    height: auto;
    max-height: 62px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition:
        filter 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}

.company-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

/* Movimento contínuo */

@keyframes certifiedLogosMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-marquee-reverse .logo-marquee-track {
    animation-name: certifiedLogosMarqueeReverse;
}

@keyframes certifiedLogosMarqueeReverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Responsividade */

@media (max-width: 980px) {
    .certified-companies {
        padding: 80px 0 62px;
    }

    .certified-companies-heading {
        margin-bottom: 26px;
    }

    .company-logo {
        width: 215px;
        height: 68px;
        margin: 0 22px;
    }

    .company-logo img {
        max-width: 190px;
        max-height: 58px;
    }

    .logo-marquee-track {
        animation-duration: 65s;
    }

    .logo-marquee::before,
    .logo-marquee::after {
        width: 70px;
    }
}

@media (max-width: 640px) {
    .certified-companies {
        padding: 70px 0 52px;
    }

    .certified-companies-heading {
        width: min(calc(100% - 40px), 1180px);
        margin-bottom: 22px;
    }

    .certified-companies-heading h2 {
        font-size: 32px;
    }

    .company-logo {
        width: 175px;
        height: 62px;
        margin: 0 18px;
    }

    .company-logo img {
        max-width: 155px;
        max-height: 52px;
    }

    .logo-marquee::before,
    .logo-marquee::after {
        width: 38px;
    }

    .logo-marquee-track {
        animation-duration: 55s;
    }
}

/* Acessibilidade */

@media (prefers-reduced-motion: reduce) {
    .logo-marquee {
        overflow-x: auto;
    }

    .logo-marquee-track {
        animation: none;
    }
}

/* V57 — aplicação tridimensional da nova placa GCFC. */
.gcfc-benefits-visual {
    perspective: 1500px;
    isolation: isolate;
}

.gcfc-benefits-visual::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 78%;
    height: 64%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0,0,0,.78), transparent 67%);
    filter: blur(22px);
    transform: translate(38px, 150px) rotate(-7deg);
    opacity: .72;
    pointer-events: none;
}

.gcfc-benefits-seal {
    isolation: isolate;
    transform-style: preserve-3d;
    transform: perspective(1500px) rotateY(-13deg) rotateX(2deg) rotateZ(1.2deg);
    filter: drop-shadow(18px 38px 38px rgba(0,0,0,.46));
    transition: transform .8s cubic-bezier(.22,1,.36,1),filter .8s ease;
}

.gcfc-benefits-seal::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 7.2% 2.2% 5.2%;
    border: 1px solid rgba(238,238,232,.54);
    border-radius: 3px;
    background:
        linear-gradient(90deg,#4e4e4c 0,#d8d8d2 12%,#686866 28%,#ededE8 54%,#555 76%,#c8c8c2 100%);
    box-shadow: 13px 15px 0 rgba(18,18,18,.92),18px 23px 34px rgba(0,0,0,.58);
    transform: translateZ(-28px) translate(10px,8px);
}

.gcfc-benefits-seal::after {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 7.2% 2.2% 5.2%;
    border-radius: 3px;
    background: linear-gradient(112deg,transparent 18%,rgba(255,255,255,.03) 34%,rgba(255,255,255,.28) 47%,rgba(255,255,255,.035) 58%,transparent 75%);
    background-size: 230% 100%;
    background-position: 140% 0;
    mix-blend-mode: screen;
    opacity: .72;
    pointer-events: none;
    animation: gcfcPlateSheen 6.8s ease-in-out infinite;
}

.gcfc-benefits-seal img {
    position: relative;
    z-index: 2;
    transform: translateZ(12px);
    animation: gcfcPlateFace 5.8s ease-in-out infinite;
}

.gcfc-benefits-seal:hover {
    transform: perspective(1500px) rotateY(-5deg) rotateX(0deg) rotateZ(.2deg) translateY(-10px);
    filter: drop-shadow(22px 46px 44px rgba(0,0,0,.54));
}

@keyframes gcfcPlateFace {
    0%,100% { transform: translateZ(12px) translateY(0); }
    50% { transform: translateZ(18px) translateY(-7px); }
}

@keyframes gcfcPlateSheen {
    0%,20% { background-position:140% 0;opacity:.25; }
    48%,62% { background-position:-35% 0;opacity:.82; }
    100% { background-position:-35% 0;opacity:.2; }
}

@media(max-width:640px) {
    .gcfc-benefits-seal {
        transform: perspective(1100px) rotateY(-8deg) rotateX(1deg) rotateZ(.7deg);
        filter: drop-shadow(12px 27px 28px rgba(0,0,0,.48));
    }
    .gcfc-benefits-seal::before { box-shadow:8px 10px 0 rgba(18,18,18,.92),12px 17px 24px rgba(0,0,0,.55); }
}

@media(prefers-reduced-motion:reduce) {
    .gcfc-benefits-seal img,.gcfc-benefits-seal::after { animation:none; }
}

.container{

    width:min(calc(100% - 96px),1180px);

    margin:auto;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:90px;

    align-items:center;

}

.section-tag{

    display:inline-block;

    margin-bottom:18px;

    color:#b8955c;

    font-size:12px;

    letter-spacing:.22em;

    text-transform:uppercase;

}

.about-content h2{

    color:#ffffff;

    font-family:"Manrope",sans-serif;

    font-size:48px;

    line-height:1.08;

    font-weight:500;

    margin-bottom:38px;

}

.about-content p{

    max-width:620px;

    color:rgba(255,255,255,.74);

    line-height:2;

    font-size:18px;

    font-weight:300;

    margin-bottom:28px;

}

.about-content strong{

    color:#ffffff;

    font-weight:500;

}

.about-button{

    display:inline-flex;

    align-items:center;

    gap:14px;

    margin-top:24px;

    padding:16px 28px;

    border:1px solid rgba(255,255,255,.28);

    border-radius:3px;

    color:#ffffff;

    background:transparent;

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:.12em;

    font-size:11px;

    font-weight:600;

    transition:all .35s ease;

}

.about-button span{

    transition:transform .35s ease;

}

.about-button:hover{

    background:#fff;

    color:#111;

}

.about-button:hover span{

    transform:translateX(6px);

}

.about-video{

    display:flex;

    justify-content:center;

    align-items:center;

}

.video-stack{

    position:relative;

    width:470px;

    height:590px;

}

/* Vídeo da esquerda */

.video-left{

    position:absolute;

    left:0;

    top:0;

    width:280px;

    height:497.78px;

    object-fit:cover;

    border-radius:24px;

    z-index:2;

    box-shadow:0 40px 90px rgba(0,0,0,.45);

}

/* Vídeo da direita */

.video-right{

    position:absolute;

    left:180px;

    top:90px;

    width:280px;

    height:497.78px;

    object-fit:cover;

    border-radius:24px;

    z-index:1;

    box-shadow:0 40px 90px rgba(0,0,0,.35);

}

/* responsivo */

@media (max-width:980px){

    .about-grid{

        grid-template-columns:1fr;

        gap:70px;

    }

    .about-content{

        text-align:center;

    }

    .about-content p{

        margin-left:auto;
        margin-right:auto;

    }

    .about-video{

    margin:auto;

}

.video-stack{

    transform:scale(.85);

    transform-origin:center;

}

}
@media (max-width: 768px) {

    .about-certification {
        padding: 18px 0 28px;
    }

    .about-content h2{

        font-size:36px;

    }

    .about-content p{

        font-size:16px;

    }

}
    

/* ==================================================
   COMO GERAMOS CONFIANÇA — FLUXO EM TRIÂNGULOS
================================================== */

.trust-process {
    position: relative;
    overflow: hidden;
    padding: 18px 0 32px;
    background: #ffffff;
    color: #111111;
}

.trust-process-container {
    width: min(calc(100% - 96px), 1180px);
    margin: 0 auto;
}

.trust-process-heading {
    max-width: 1040px;
    margin: 0 auto 58px;
    text-align: center;
}

.trust-process-tag {
    display: block;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.trust-process-heading h2 {
    max-width: 1000px;
    margin: 0 auto;
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.trust-process-heading h2 strong {
    color: var(--gold);
    font-weight: 500;
}

.trust-flow {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.08fr) minmax(0, 1.75fr);
    align-items: stretch;
    gap: 18px;
}

.trust-triangle {
    position: relative;
    min-height: 430px;
    padding: 58px 34px 52px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    background:
        radial-gradient(circle at 28% 24%, rgba(255,255,255,.08), transparent 34%),
        linear-gradient(145deg, #1b1b1b 0%, #070707 100%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.12));
    transition:
        transform 0.35s cubic-bezier(.22,1,.36,1),
        filter 0.35s ease;
}

.trust-triangle::after {
    content: "";
    position: absolute;
    inset: 1px;
    pointer-events: none;
    clip-path: inherit;
    background: linear-gradient(
        145deg,
        rgba(184,149,92,.52),
        rgba(184,149,92,0) 28%,
        rgba(184,149,92,.22)
    );
    opacity: .42;
    mix-blend-mode: screen;
}

.trust-triangle:hover {
    transform: translateY(-7px);
    filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.18));
}

.trust-triangle:nth-child(2) {
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    padding: 58px 72px 52px 32px;
}

.trust-triangle:nth-child(2)::after {
    clip-path: inherit;
}

.trust-triangle:nth-child(2) .trust-triangle-content {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.trust-triangle-content {
    position: relative;
    z-index: 1;
    width: 52%;
    max-width: 190px;
}

.trust-step-number {
    display: block;
    margin-bottom: 28px;
    color: var(--gold);
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 500;
}

.trust-triangle h3,
.trust-video-copy h3 {
    margin-bottom: 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(20px, 1.55vw, 25px);
    font-weight: 600;
    line-height: 1.12;
}

.trust-triangle h3::after,
.trust-video-copy h3::after {
    content: "";
    display: block;
    width: 36px;
    height: 1px;
    margin-top: 16px;
    background: var(--gold);
}

.trust-triangle p,
.trust-video-copy p {
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.62;
    overflow-wrap: anywhere;
}

.trust-video-card {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    border-radius: 16px;
    background: #080808;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.trust-video-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.54) 35%, rgba(0,0,0,.08) 70%),
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.34));
}

.trust-video-copy {
    position: relative;
    z-index: 2;
    width: min(48%, 330px);
    min-height: 410px;
    padding: 56px 0 52px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.trust-video-copy .trust-step-number {
    color: #ffffff;
}

.trust-video-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 72%;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.74);
    border-radius: 50%;
    background: rgba(0,0,0,.22);
    color: #ffffff;
    font-size: 25px;
    line-height: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: trustPlayerFloat 2.4s ease-in-out infinite;
}

.trust-video-play::before,
.trust-video-play::after {
    content: "";
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: trustPlayerPulse 2.4s ease-out infinite;
}

.trust-video-play::after {
    animation-delay: 1.2s;
}

@keyframes trustPlayerFloat {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 rgba(255,255,255,0);
    }

    50% {
        transform: translate(-50%, -54%) scale(1.06);
        box-shadow: 0 12px 30px rgba(0,0,0,.28);
    }
}

@keyframes trustPlayerPulse {
    0% {
        opacity: .62;
        transform: scale(1);
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.72);
    }
}

.trust-flow-notes {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.trust-flow-note {
    position: relative;
    padding-top: 26px;
    color: rgba(17,17,17,.7);
    font-size: 14px;
    line-height: 1.65;
}

.trust-flow-note::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(184,149,92,.14));
}

.trust-flow-note::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
}

.trust-process-action {
    margin-top: 48px;
    text-align: center;
}

.trust-process-button {
    min-width: 330px;
    min-height: 58px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border: 1px solid rgba(184,149,92,.9);
    border-radius: 3px;
    color: #9d742f;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition:
        color .3s ease,
        background-color .3s ease,
        transform .3s ease;
}

.trust-process-button span {
    font-size: 22px;
    line-height: 1;
    transition: transform .3s ease;
}

.trust-process-button:hover {
    color: #ffffff;
    background: var(--gold);
    transform: translateY(-2px);
}

.trust-process-button:hover span {
    transform: translateX(5px);
}


.trust-triangle:nth-child(2) .trust-triangle-content {
    width: 54%;
    max-width: 205px;
}

.trust-triangle:nth-child(2) h3 {
    font-size: clamp(18px, 1.35vw, 22px);
    letter-spacing: -0.02em;
}

.trust-triangle:nth-child(2) p {
    font-size: 13px;
    line-height: 1.58;
}

@media (max-width: 1080px) {
    .trust-triangle-content,
    .trust-triangle:nth-child(2) .trust-triangle-content {
        width: 58%;
        max-width: 230px;
    }
}

@media (max-width: 760px) {
    .trust-triangle-content,
    .trust-triangle:nth-child(2) .trust-triangle-content {
        width: 62%;
        max-width: 250px;
    }

    .trust-triangle h3,
    .trust-triangle:nth-child(2) h3 {
        font-size: 21px;
    }

    .trust-triangle p,
    .trust-triangle:nth-child(2) p {
        font-size: 13.5px;
        line-height: 1.6;
    }
}

@media (max-width: 1080px) {
    .trust-flow {
        grid-template-columns: 1fr 1fr;
    }

    .trust-video-card {
        grid-column: 1 / -1;
        min-height: 460px;
    }

    .trust-video-copy {
        min-height: 460px;
    }
}

@media (max-width: 760px) {
    .trust-process {
        padding: 70px 0 78px;
    }

    .trust-process-container {
        width: min(calc(100% - 40px), 1180px);
    }

    .trust-process-heading {
        margin-bottom: 42px;
    }

    .trust-process-heading h2 {
        font-size: 34px;
    }

    .trust-flow {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trust-triangle {
        min-height: 310px;
        padding: 46px 90px 42px 30px;
    }

    .trust-triangle:nth-child(2) {
        padding: 46px 90px 42px 30px;
    }

    .trust-triangle-content {
        max-width: 250px;
    }

    .trust-video-card {
        grid-column: auto;
        min-height: 500px;
    }

    .trust-video-card::before {
        background:
            linear-gradient(180deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.18) 48%, rgba(0,0,0,.36) 100%);
    }

    .trust-video-copy {
        width: 100%;
        min-height: 500px;
        padding: 36px 28px;
        justify-content: flex-start;
    }

    .trust-video-play {
        top: 64%;
        left: 50%;
    }

    .trust-flow-notes {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .trust-process-button {
        width: 100%;
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trust-video-play,
    .trust-video-play::before,
    .trust-video-play::after {
        animation: none;
    }

    .trust-process-card,
    .trust-process-media img,
    .trust-process-number {
        transition: none;
    }

    .trust-process-card:hover,
    .trust-process-card:hover .trust-process-media img,
    .trust-process-card:hover .trust-process-number {
        transform: none;
        filter: none;
    }
}


        @media (max-width: 980px) {
            .certified-companies-heading,
            .container,
            .trust-process-container {
                width: min(calc(100% - 56px), 1180px);
            }
        }

        @media (max-width: 640px) {
            .certified-companies-heading,
            .container,
            .trust-process-container {
                width: min(calc(100% - 40px), 1180px);
            }
        }


/* ==================================================
   BENEFÍCIOS DA CERTIFICAÇÃO GCFC
================================================== */

.gcfc-benefits {
    position: relative;
    overflow: hidden;
    padding: 100px 0 110px;
    background: #ffffff;
    color: #111111;
}

.gcfc-benefits::before {
    content: "";
    position: absolute;
    top: 16%;
    right: -180px;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(184, 149, 92, 0.10) 0%,
        rgba(184, 149, 92, 0) 69%
    );
    pointer-events: none;
}

.gcfc-benefits-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 96px), 1180px);
    margin: 0 auto;
}

.gcfc-benefits-heading {
    max-width: 930px;
    margin: 0 auto 58px;
    text-align: center;
}

.gcfc-benefits-tag {
    display: block;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.gcfc-benefits-heading h2 {
    max-width: 900px;
    margin: 0 auto;
    font-family: "Manrope", sans-serif;
    font-size: clamp(36px, 4.4vw, 58px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.gcfc-benefits-heading h2 strong {
    color: var(--gold);
    font-weight: 500;
}

/* Destaque editorial: empresa + consumidores */
.gcfc-heading-company {
    position: relative;
    display: inline-block;
    min-width: 6.9em;
    white-space: nowrap;
}

.gcfc-heading-typing {
    display: inline;
}

.gcfc-heading-cursor {
    display: inline-block;
    width: 2px;
    height: 0.88em;
    margin-left: 5px;
    vertical-align: -0.04em;
    background: var(--gold);
    animation: gcfcCursorBlink 0.8s steps(1, end) infinite;
}

@keyframes gcfcCursorBlink {
    0%, 48% { opacity: 1; }
    49%, 100% { opacity: 0; }
}

.gcfc-heading-company::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(184, 149, 92, 0.10) 0%,
        rgba(184, 149, 92, 0.95) 42%,
        rgba(184, 149, 92, 0.12) 100%
    );
}

.gcfc-consumer-callout {
    position: absolute;
    z-index: 4;
    left: calc(100% + 18px);
    top: 34%;
    width: 226px;
    height: 104px;
    pointer-events: none;
}

.gcfc-consumer-callout-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 126px;
    height: 72px;
    overflow: visible;
}

.gcfc-consumer-callout-line path {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gcfc-consumer-callout-card {
    position: absolute;
    left: 104px;
    top: 47px;
    min-width: 150px;
    padding: 10px 14px 10px 31px;
    border: 1px solid rgba(184, 149, 92, 0.34);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    color: #111111;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.gcfc-consumer-callout-card::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(184, 149, 92, 0.11);
    transform: translateY(-50%);
}

@media (max-width: 1180px) {
    .gcfc-consumer-callout {
        left: calc(100% + 8px);
        width: 190px;
    }

    .gcfc-consumer-callout-line {
        width: 108px;
    }

    .gcfc-consumer-callout-card {
        left: 88px;
        min-width: 138px;
        padding-right: 12px;
        font-size: 10px;
    }
}

@media (max-width: 920px) {
    .gcfc-heading-company {
        white-space: normal;
    }

    .gcfc-heading-company::after {
        bottom: -5px;
    }

    .gcfc-consumer-callout {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        margin: 20px auto 0;
        display: flex;
        justify-content: center;
    }

    .gcfc-consumer-callout-line {
        display: none;
    }

    .gcfc-consumer-callout-card {
        position: relative;
        left: auto;
        top: auto;
        min-width: 0;
        display: inline-flex;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .gcfc-consumer-callout {
        margin-top: 17px;
    }

    .gcfc-consumer-callout-card {
        padding: 9px 12px 9px 29px;
        font-size: 9px;
        letter-spacing: 0.11em;
    }
}

.gcfc-benefits-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
    gap: 72px;
    align-items: center;
}

.gcfc-benefits-intro {
    max-width: 610px;
    margin-bottom: 34px;
    color: rgba(17, 17, 17, 0.67);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
}

.gcfc-benefits-list {
    display: grid;
    gap: 14px;
}

.gcfc-benefit-item {
    position: relative;
    min-height: 96px;
    padding: 18px 52px 18px 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    border-radius: 52px;
    background:
        radial-gradient(circle at 16% 12%, rgba(255,255,255,.08), transparent 32%),
        linear-gradient(145deg, #222222 0%, #090909 100%);
    color: #ffffff;
    box-shadow: 0 15px 34px rgba(0, 0, 0, 0.08);
    transition:
        transform .34s cubic-bezier(.22,1,.36,1),
        box-shadow .34s ease;
}

.gcfc-benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
}

.gcfc-benefit-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(184, 149, 92, 0.86);
    border-radius: 50%;
    color: var(--gold);
    transform: translateY(-50%);
}

.gcfc-benefit-icon svg {
    width: 35px;
    height: 35px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gcfc-benefit-item h3 {
    margin-bottom: 5px;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
}

.gcfc-benefit-item p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.55;
}

.gcfc-benefit-connector {
    position: absolute;
    top: 50%;
    left: calc(100% - 2px);
    width: 108px;
    height: 1px;
    border-top: 1px dashed rgba(184, 149, 92, 0.9);
    transform: translateY(-50%);
    pointer-events: none;
}

.gcfc-benefit-connector::before,
.gcfc-benefit-connector::after {
    content: "";
    position: absolute;
    top: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
}

.gcfc-benefit-connector::before {
    left: -3px;
}

.gcfc-benefit-connector::after {
    right: -3px;
}

.gcfc-benefits-visual {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gcfc-benefits-seal {
    margin-top: 30px;
    position: relative;
    z-index: 2;
    width: min(100%, 490px);
    transform: perspective(1200px) rotateY(-5deg) rotateZ(1deg);
    filter: drop-shadow(0 32px 45px rgba(0, 0, 0, 0.22));
    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        filter .45s ease;
}

.gcfc-benefits-seal:hover {
    transform: perspective(1200px) rotateY(0deg) rotateZ(0deg) translateY(-6px);
    filter: drop-shadow(0 38px 52px rgba(0, 0, 0, 0.28));
}

.gcfc-benefits-seal img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.gcfc-benefits-action {
    margin-top: 42px;
}

.gcfc-benefits-button {
    min-width: 240px;
    min-height: 56px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid #dfbf80;
    border-radius: 2px;
    background: linear-gradient(135deg, #e1c181 0%, #a87935 52%, #e7cb91 100%);
    color: #080808;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition:
        transform .3s ease,
        background-color .3s ease,
        color .3s ease;
}

.gcfc-benefits-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #e1c181 0%, #a87935 52%, #e7cb91 100%);
    color: #080808;
}

.gcfc-benefits-button span {
    color: #080808;
    font-size: 21px;
    transition:
        transform .3s ease,
        color .3s ease;
}

.gcfc-benefits-button:hover span {
    color: #080808;
    transform: translateX(5px);
}

@media (max-width: 1080px) {
    .gcfc-benefits-layout {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .gcfc-benefits-content {
        max-width: 760px;
        margin: 0 auto;
    }

    .gcfc-benefit-connector {
        display: none;
    }

    .gcfc-benefits-visual {
        min-height: auto;
    }

    .gcfc-benefits-seal {
        width: min(100%, 520px);
    }

    .gcfc-benefits-action {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .gcfc-benefits {
        padding: 72px 0 78px;
    }

    .gcfc-benefits-container {
        width: min(calc(100% - 40px), 1180px);
    }

    .gcfc-benefits-heading {
        margin-bottom: 42px;
    }

    .gcfc-benefits-heading h2 {
        font-size: 34px;
    }

    .gcfc-benefits-intro {
        font-size: 15px;
    }

    .gcfc-benefit-item {
        min-height: 112px;
        padding: 18px 22px 18px 82px;
        border-radius: 22px;
    }

    .gcfc-benefit-icon {
        left: 12px;
        width: 58px;
        height: 58px;
    }

    .gcfc-benefit-icon svg {
        width: 30px;
        height: 30px;
    }

    .gcfc-benefit-item h3 {
        font-size: 16px;
    }

    .gcfc-benefit-item p {
        font-size: 12.5px;
    }

    .gcfc-benefits-button {
        width: 100%;
        min-width: 0;
    }
}


/* ==================================================
   SELETOR DE PÚBLICO — BENEFÍCIOS
================================================== */

.gcfc-benefits-audience {
    width: fit-content;
    margin: 34px auto 0;
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(2, minmax(190px, 1fr));
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(17, 17, 17, 0.16);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gcfc-audience-button {
    position: relative;
    min-width: 190px;
    min-height: 50px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 2px;
    background: transparent;
    color: rgba(17, 17, 17, 0.62);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        color .3s ease,
        background-color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.gcfc-audience-button::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border: 1px solid currentColor;
    border-radius: 50%;
    transition:
        background-color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.gcfc-audience-button::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
}

.gcfc-audience-button:hover,
.gcfc-audience-button:focus-visible {
    color: #111111;
    background: rgba(17, 17, 17, 0.035);
    outline: none;
}

.gcfc-audience-button:hover::after,
.gcfc-audience-button:focus-visible::after {
    transform: scaleX(.46);
}

.gcfc-audience-button[aria-pressed="true"] {
    color: #ffffff;
    border-color: #111111;
    background:
        radial-gradient(circle at 18% 0%, rgba(255,255,255,.09), transparent 34%),
        linear-gradient(145deg, #222222 0%, #070707 100%);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.16),
        inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.gcfc-audience-button[aria-pressed="true"]::before {
    border-color: var(--gold);
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(184, 149, 92, 0.13);
}

.gcfc-audience-button[aria-pressed="true"]::after {
    transform: scaleX(1);
}

.gcfc-audience-button[aria-pressed="true"]:hover {
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .gcfc-benefits-audience {
        width: 100%;
        margin-top: 26px;
        grid-template-columns: 1fr;
    }

    .gcfc-audience-button {
        width: 100%;
        min-width: 0;
        min-height: 48px;
        padding: 0 18px;
        font-size: 10px;
    }
}



/* ==================================================
   TRANSIÇÃO EMPRESAS / CONSUMIDORES — BENEFÍCIOS
================================================== */

/*
   No desktop, os dois blocos ocupam colunas iguais para que a troca
   horizontal aconteça sem saltos ou desalinhamentos.
*/
.gcfc-benefits-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
}

.gcfc-benefits-content,
.gcfc-benefits-visual {
    will-change: transform, opacity;
    transition:
        transform .72s cubic-bezier(.22, 1, .36, 1),
        opacity .42s ease,
        filter .72s ease;
}

.gcfc-benefits-content {
    transform: translateX(0);
}

.gcfc-benefits-visual {
    transform: translateX(0);
}

/* Estado ativado ao clicar em “Para Consumidores” */
.gcfc-benefits-layout.is-consumers .gcfc-benefits-content {
    transform: translateX(calc(100% + 72px));
}

.gcfc-benefits-layout.is-consumers .gcfc-benefits-visual {
    transform: translateX(calc(-100% - 72px));
}

/* Leve efeito de profundidade durante a movimentação */
.gcfc-benefits-layout.is-transitioning .gcfc-benefits-content,
.gcfc-benefits-layout.is-transitioning .gcfc-benefits-visual {
    opacity: .78;
    filter: blur(.35px);
}

/*
   Quando os benefícios estão à direita, os conectores passam a apontar
   para a esquerda, em direção ao selo.
*/
.gcfc-benefits-layout.is-consumers .gcfc-benefit-connector {
    left: auto;
    right: calc(100% - 2px);
}

.gcfc-benefits-layout.is-consumers .gcfc-benefit-item:hover {
    transform: translateX(-8px);
}

/* Mantém a inclinação do selo coerente em cada posição */
.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal {
    transform: perspective(1200px) rotateY(5deg) rotateZ(-1deg);
}

.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal:hover {
    transform: perspective(1200px) rotateY(0deg) rotateZ(0deg) translateY(-6px);
}

/* Tablets e celulares: troca vertical, sem deslocamento horizontal excessivo */
@media (max-width: 1080px) {
    .gcfc-benefits-layout {
        grid-template-columns: 1fr;
    }

    .gcfc-benefits-layout.is-consumers .gcfc-benefits-content,
    .gcfc-benefits-layout.is-consumers .gcfc-benefits-visual {
        transform: none;
    }

    .gcfc-benefits-layout.is-consumers .gcfc-benefits-visual {
        grid-row: 1;
        animation: gcfcConsumerVisualIn .65s cubic-bezier(.22, 1, .36, 1) both;
    }

    .gcfc-benefits-layout.is-consumers .gcfc-benefits-content {
        grid-row: 2;
        animation: gcfcConsumerContentIn .65s .08s cubic-bezier(.22, 1, .36, 1) both;
    }

    .gcfc-benefits-layout:not(.is-consumers) .gcfc-benefits-content {
        grid-row: 1;
    }

    .gcfc-benefits-layout:not(.is-consumers) .gcfc-benefits-visual {
        grid-row: 2;
    }

    .gcfc-benefits-layout.is-consumers .gcfc-benefit-item:hover {
        transform: translateX(8px);
    }
}

@keyframes gcfcConsumerVisualIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gcfcConsumerContentIn {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gcfc-benefits-content,
    .gcfc-benefits-visual {
        transition: none;
    }

    .gcfc-benefits-layout.is-consumers .gcfc-benefits-content,
    .gcfc-benefits-layout.is-consumers .gcfc-benefits-visual {
        animation: none;
    }
}




/* ==================================================
   TROCA DE CONTEÚDO DOS BENEFÍCIOS
================================================== */

.gcfc-benefit-item h3,
.gcfc-benefit-item p,
.gcfc-benefit-icon svg {
    transition:
        opacity .24s ease,
        transform .34s cubic-bezier(.22, 1, .36, 1);
}

.gcfc-benefits-list.is-copy-changing .gcfc-benefit-item h3,
.gcfc-benefits-list.is-copy-changing .gcfc-benefit-item p,
.gcfc-benefits-list.is-copy-changing .gcfc-benefit-icon svg {
    opacity: 0;
    transform: translateY(10px);
}

.gcfc-benefits-layout.is-consumers .gcfc-benefit-item {
    border-color: rgba(184,149,92,.18);
}


/* ==================================================
   TEMA GLOBAL ESCURO — PRETO, PRATA, BRANCO E DOURADO
================================================== */

html,
body {
    background: #050505;
    color: #ffffff;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -100;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 18%, rgba(184,149,92,.045), transparent 32%),
        radial-gradient(circle at 82% 64%, rgba(215,215,210,.035), transparent 30%),
        #050505;
}

/* Todas as seções passam a compartilhar o mesmo fundo preto */
.next-section,
.about-certification,
.certified-companies,
.trust-process,
.gcfc-benefits {
    background: #050505;
    color: #ffffff;
}

/* Separação discreta entre blocos sem quebrar o fundo contínuo */
.about-certification,
.certified-companies,
.trust-process,
.gcfc-benefits {
    border-top: 1px solid rgba(255,255,255,.055);
}

/* Títulos e textos principais */
.certified-companies-heading h2,
.trust-process-heading h2,
.gcfc-benefits-heading h2,
.gcfc-benefits-intro,
.trust-flow-note {
    color: #ffffff;
}

.gcfc-benefits-intro,
.trust-flow-note {
    color: rgba(255,255,255,.66);
}

.section-tag,
.certified-companies-heading span,
.trust-process-tag,
.gcfc-benefits-tag,
.trust-process-heading h2 strong,
.gcfc-benefits-heading h2 strong {
    color: var(--gold);
}

/* Empresas certificadas */
.logo-marquee::before {
    background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,0) 100%);
}

.logo-marquee::after {
    background: linear-gradient(270deg, #050505 0%, rgba(5,5,5,0) 100%);
}

.company-logo img {
    filter: grayscale(1) brightness(0) invert(1);
    opacity: .64;
}

.company-logo:hover img {
    filter: grayscale(0) brightness(1.08);
    opacity: 1;
    transform: scale(1.06);
    filter: grayscale(0) brightness(1.08) drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

/* Fluxo de confiança */
.trust-triangle {
    border: 1px solid rgba(184,149,92,.22);
    background:
        radial-gradient(circle at 28% 24%, rgba(255,255,255,.07), transparent 34%),
        linear-gradient(145deg, #1b1b1b 0%, #070707 100%);
    filter: drop-shadow(0 18px 32px rgba(0,0,0,.42));
}

.trust-triangle:hover {
    filter: drop-shadow(0 25px 38px rgba(0,0,0,.58));
}

.trust-video-card {
    border: 1px solid rgba(255,255,255,.09);
    box-shadow: 0 26px 68px rgba(0,0,0,.48);
}

.trust-flow-note::before {
    background: linear-gradient(90deg, var(--gold), rgba(184,149,92,.08));
}

.trust-process-button {
    color: #d8b77d;
    border-color: rgba(184,149,92,.82);
    background: rgba(184,149,92,.025);
}

.trust-process-button:hover {
    color: #090909;
    background: linear-gradient(135deg, #d4b174 0%, #a67d3e 55%, #dfc28d 100%);
}

/* Benefícios */
.gcfc-benefits::before {
    background: radial-gradient(circle, rgba(184,149,92,.09) 0%, rgba(184,149,92,0) 69%);
}

.gcfc-benefit-item {
    border: 1px solid rgba(255,255,255,.075);
    background:
        radial-gradient(circle at 16% 12%, rgba(255,255,255,.075), transparent 32%),
        linear-gradient(145deg, #202020 0%, #080808 100%);
    box-shadow: 0 18px 42px rgba(0,0,0,.34);
}

.gcfc-benefit-item:hover {
    box-shadow: 0 23px 52px rgba(0,0,0,.52);
}

.gcfc-consumer-callout-card {
    border-color: rgba(184,149,92,.42);
    background: rgba(9,9,9,.96);
    color: #ffffff;
    box-shadow: 0 14px 36px rgba(0,0,0,.38);
}

.gcfc-benefits-seal {
    filter: drop-shadow(0 34px 52px rgba(0,0,0,.62));
}

.gcfc-benefits-seal:hover {
    filter: drop-shadow(0 42px 62px rgba(0,0,0,.72));
}

.gcfc-benefits-button {
    border: 1px solid #dfbf80;
    background: linear-gradient(135deg, #e1c181 0%, #a87935 52%, #e7cb91 100%);
    color: #080808;
    box-shadow: 0 15px 38px rgba(184, 149, 92, 0.2);
}

.gcfc-benefits-button:hover {
    background: linear-gradient(135deg, #e1c181 0%, #a87935 52%, #e7cb91 100%);
    color: #080808;
    box-shadow: 0 20px 48px rgba(184, 149, 92, 0.32);
}

.gcfc-benefits-button span,
.gcfc-benefits-button:hover span {
    color: #080808;
}

/* Seletor Empresas / Consumidores */
.gcfc-benefits-audience {
    border-color: rgba(255,255,255,.13);
    background: rgba(12,12,12,.86);
    box-shadow: 0 16px 40px rgba(0,0,0,.38);
}

.gcfc-audience-button {
    color: rgba(255,255,255,.58);
}

.gcfc-audience-button:hover,
.gcfc-audience-button:focus-visible {
    color: #ffffff;
    background: rgba(255,255,255,.055);
}

.gcfc-audience-button[aria-pressed="true"] {
    color: #ffffff;
    border-color: rgba(215,215,210,.42);
    background:
        radial-gradient(circle at 18% 0%, rgba(255,255,255,.09), transparent 34%),
        linear-gradient(145deg, #242424 0%, #080808 100%);
    box-shadow:
        0 12px 30px rgba(0,0,0,.45),
        inset 0 0 0 1px rgba(255,255,255,.035);
}

/* Botão da seção sobre */
.about-button:hover {
    background: linear-gradient(135deg, #eeeeea 0%, #c3c3bd 55%, #f5f5f1 100%);
    color: #090909;
    border-color: rgba(255,255,255,.82);
}

/* Mantém contraste de foco para navegação por teclado */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}



/* ==================================================
   CTA FINAL — CONVITE PARA CERTIFICAÇÃO
================================================== */
.gcfc-final-cta {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    border-top: 1px solid rgba(255,255,255,.055);
    background:
        radial-gradient(circle at 50% 100%, rgba(184,149,92,.15), transparent 36%),
        #050505;
}

.gcfc-final-cta-container {
    width: min(calc(100% - 96px), var(--container-width));
    margin: 0 auto;
}

.gcfc-final-cta-panel {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(184,149,92,.58);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0)),
        radial-gradient(circle at 50% 72%, rgba(184,149,92,.08), transparent 38%),
        #080808;
    box-shadow:
        0 34px 90px rgba(0,0,0,.48),
        inset 0 0 0 1px rgba(255,255,255,.018);
}

.gcfc-final-cta-panel::before,
.gcfc-final-cta-panel::after {
    display: none;
}

.gcfc-final-cta-glow {
    position: absolute;
    left: 50%;
    bottom: -95px;
    width: 610px;
    height: 180px;
    border-radius: 50%;
    background: rgba(184,149,92,.22);
    filter: blur(58px);
    transform: translateX(-50%);
    pointer-events: none;
}

.gcfc-final-cta-copy {
    position: relative;
    z-index: 4;
    width: min(100% - 570px, 610px);
    padding: 90px 10px;
    text-align: center;
}

.gcfc-final-cta-copy h2 {
    margin: 0 auto;
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 3.15vw, 46px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.gcfc-final-cta-copy h2 > span,
.gcfc-final-cta-copy h2 strong {
    display: block;
    white-space: nowrap;
}

.gcfc-final-cta-copy h2 strong {
    color: #d4af6d;
    font-weight: 500;
}

.gcfc-final-cta-copy p {
    max-width: 650px;
    margin: 28px auto 0;
    color: rgba(255,255,255,.72);
    font-size: clamp(15px, 1.35vw, 18px);
    font-weight: 300;
    line-height: 1.68;
    text-wrap: balance;
}

.gcfc-final-cta-actions {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.gcfc-final-cta-button {
    min-width: 210px;
    min-height: 56px;
    padding: 0 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background-color .3s ease;
}

.gcfc-final-cta-button-primary {
    border: 1px solid #dfbf80;
    background: linear-gradient(135deg, #e1c181 0%, #a87935 52%, #e7cb91 100%);
    color: #080808;
    box-shadow: 0 15px 38px rgba(184,149,92,.2);
}

.gcfc-final-cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(184,149,92,.32);
}

.gcfc-final-cta-button-secondary {
    border: 1px solid rgba(184,149,92,.62);
    background: rgba(0,0,0,.26);
    color: #ffffff;
}

.gcfc-final-cta-button-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(223,191,128,.95);
    background: rgba(184,149,92,.08);
}

.gcfc-final-cta-card {
    position: absolute;
    z-index: 3;
    width: 292px;
    padding: 18px;
    border: 1px solid rgba(184,149,92,.48);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(25,25,25,.98), rgba(7,7,7,.98));
    box-shadow: 0 24px 56px rgba(0,0,0,.54);
    transition: transform .45s cubic-bezier(.22,1,.36,1);
}

.gcfc-final-cta-card-left {
    left: -26px;
    bottom: 42px;
    transform: rotate(-8deg);
}

.gcfc-final-cta-card-right {
    right: -20px;
    top: 82px;
    transform: rotate(8deg);
}

.gcfc-final-cta-panel:hover .gcfc-final-cta-card-left {
    transform: rotate(-5deg) translateY(-7px);
}

.gcfc-final-cta-panel:hover .gcfc-final-cta-card-right {
    transform: rotate(5deg) translateY(-7px);
}

.gcfc-final-card-label {
    margin-bottom: 14px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 500;
}

.gcfc-final-option {
    position: relative;
    min-height: 72px;
    margin-top: 9px;
    padding: 12px 12px 12px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 10px;
    color: rgba(255,255,255,.72);
}

.gcfc-final-option.is-active {
    border-color: rgba(223,191,128,.95);
    color: #ffffff;
    box-shadow: inset 0 0 20px rgba(184,149,92,.05);
}

.gcfc-final-option-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: #d4af6d;
    transform: translateY(-50%);
}

.gcfc-final-option strong {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.gcfc-final-option small {
    margin-top: 3px;
    color: rgba(255,255,255,.52);
    font-size: 9px;
    line-height: 1.35;
}

.gcfc-final-check {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #d4af6d;
    color: #090909;
    font-size: 11px;
    font-weight: 700;
}

.gcfc-final-card-title {
    padding-bottom: 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid rgba(255,255,255,.09);
    font-size: 12px;
    font-weight: 600;
}

.gcfc-final-card-title span {
    color: #d4af6d;
}

.gcfc-final-choice-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.gcfc-final-choice {
    min-height: 112px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    color: rgba(255,255,255,.62);
    text-align: center;
    font-size: 10px;
    line-height: 1.35;
}

.gcfc-final-choice.is-active {
    border-color: rgba(223,191,128,.95);
    color: #ffffff;
}

.gcfc-final-choice-icon {
    font-size: 27px;
    color: #d4af6d;
}

.gcfc-final-metric {
    margin-top: 14px;
    padding-top: 13px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.09);
}

.gcfc-final-metric span {
    max-width: 150px;
    color: rgba(255,255,255,.5);
    font-size: 9px;
    line-height: 1.45;
}

.gcfc-final-metric strong {
    color: #d4af6d;
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    font-weight: 500;
}

@media (max-width: 1080px) {
    .gcfc-final-cta-copy {
        width: min(100% - 500px, 560px);
    }

    .gcfc-final-cta-copy h2 {
        font-size: clamp(30px, 3.4vw, 38px);
    }

    .gcfc-final-cta-card {
        width: 245px;
    }
}

@media (max-width: 820px) {
    .gcfc-final-cta {
        padding: 82px 0;
    }

    .gcfc-final-cta-container {
        width: min(calc(100% - 40px), var(--container-width));
    }

    .gcfc-final-cta-panel {
        min-height: auto;
        padding: 58px 20px 30px;
        display: block;
    }

    .gcfc-final-cta-copy {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .gcfc-final-cta-copy h2 {
        font-size: clamp(22px, 4.7vw, 32px);
    }

    .gcfc-final-cta-card {
        position: relative;
        inset: auto;
        width: min(100%, 330px);
        margin: 42px auto 0;
        transform: none;
    }

    .gcfc-final-cta-card-right {
        margin-top: 22px;
    }

    .gcfc-final-cta-panel:hover .gcfc-final-cta-card-left,
    .gcfc-final-cta-panel:hover .gcfc-final-cta-card-right {
        transform: translateY(-4px);
    }
}

@media (max-width: 560px) {
    .gcfc-final-cta-panel {
        padding-left: 14px;
        padding-right: 14px;
    }

    .gcfc-final-cta-actions {
        flex-direction: column;
    }

    .gcfc-final-cta-button {
        width: 100%;
    }

    .gcfc-final-cta-copy h2 {
        font-size: clamp(13px, 4.4vw, 24px);
        line-height: 1.14;
        letter-spacing: -.045em;
    }

    .gcfc-final-cta-copy h2 > span,
    .gcfc-final-cta-copy h2 strong {
        width: 100%;
        white-space: nowrap;
    }
}



/* ==================================================
   AJUSTE FINAL DA CTA — CARDS FORA DO QUADRO
================================================== */
@media (min-width: 821px) {
    .gcfc-final-cta {
        overflow: visible;
        padding: 96px 0;
    }

    .gcfc-final-cta-panel {
        width: calc(100% - 160px);
        min-height: 500px;
        margin: 0 auto;
        overflow: visible;
    }

    .gcfc-final-cta-copy {
        width: min(calc(100% - 470px), 610px);
        padding: 72px 10px;
    }

    .gcfc-final-cta-card-left,
    .gcfc-final-cta-card-right {
        top: 48px;
        bottom: auto;
    }

    .gcfc-final-cta-card-left {
        left: -80px;
    }

    .gcfc-final-cta-card-right {
        right: -80px;
    }
}

@media (min-width: 821px) and (max-width: 1080px) {
    .gcfc-final-cta-panel {
        width: calc(100% - 120px);
        min-height: 480px;
    }

    .gcfc-final-cta-card-left {
        left: -60px;
    }

    .gcfc-final-cta-card-right {
        right: -60px;
    }

    .gcfc-final-cta-copy {
        width: min(calc(100% - 390px), 520px);
        padding: 68px 8px;
    }
}

@media (max-width: 820px) {
    .gcfc-final-cta {
        overflow: hidden;
    }

    .gcfc-final-cta-panel {
        width: 100%;
        margin: 0;
        overflow: hidden;
    }
}


/* ==================================================
   AJUSTE CTA FINAL — TÍTULO CENTRALIZADO E QUADRO MENOR
================================================== */
@media (min-width: 1081px) {
    .gcfc-final-cta {
        padding: 78px 0;
    }

    .gcfc-final-cta-panel {
        min-height: 430px;
    }

    .gcfc-final-cta-copy {
        width: min(calc(100% - 500px), 540px);
        padding: 52px 8px;
    }

    .gcfc-final-cta-copy h2 {
        max-width: 520px;
        font-size: clamp(31px, 2.65vw, 38px);
        line-height: 1.1;
        letter-spacing: -0.04em;
    }

    .gcfc-final-cta-copy p {
        max-width: 500px;
        margin-top: 22px;
        font-size: 16px;
    }

    .gcfc-final-cta-actions {
        margin-top: 30px;
    }

    .gcfc-final-cta-card-left,
    .gcfc-final-cta-card-right {
        top: 28px;
    }
}

@media (min-width: 821px) and (max-width: 1080px) {
    .gcfc-final-cta {
        padding: 74px 0;
    }

    .gcfc-final-cta-panel {
        min-height: 420px;
    }

    .gcfc-final-cta-copy {
        width: min(calc(100% - 410px), 470px);
        padding: 48px 6px;
    }

    .gcfc-final-cta-copy h2 {
        max-width: 440px;
        font-size: clamp(25px, 3vw, 31px);
        line-height: 1.11;
    }

    .gcfc-final-cta-copy p {
        margin-top: 20px;
        font-size: 15px;
    }

    .gcfc-final-cta-actions {
        margin-top: 27px;
    }

    .gcfc-final-cta-card-left,
    .gcfc-final-cta-card-right {
        top: 24px;
    }
}



/* ==================================================
   BLOG GCFC
================================================== */

.gcfc-blog {
    position: relative;
    overflow: hidden;
    padding: 18px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    background:
        radial-gradient(circle at 20% 28%, rgba(184, 149, 92, 0.075), transparent 30%),
        radial-gradient(circle at 78% 70%, rgba(215, 215, 210, 0.035), transparent 26%),
        #050505;
    color: #ffffff;
}

.gcfc-blog::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.gcfc-blog-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 96px), 1180px);
    margin: 0 auto;
}

.gcfc-blog-heading {
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
}

.gcfc-blog-heading-copy {
    max-width: 710px;
}

.gcfc-blog-label {
    min-height: 42px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(184, 149, 92, 0.48);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gcfc-blog-heading h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5.2vw, 70px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.gcfc-blog-heading h2 strong {
    color: var(--gold);
    font-weight: 500;
}

.gcfc-blog-heading p {
    max-width: 650px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
}

.gcfc-blog-all-link {
    padding-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #d9ad62;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.gcfc-blog-all-link span {
    font-size: 25px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.gcfc-blog-all-link:hover {
    color: #f1d39d;
}

.gcfc-blog-all-link:hover span {
    transform: translateX(6px);
}

.gcfc-blog-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    gap: 34px;
    align-items: stretch;
}

.gcfc-blog-featured {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(184, 149, 92, 0.42);
    border-radius: 18px;
    background: #080808;
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.42);
    isolation: isolate;
}

.gcfc-blog-featured-image {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
    transform: scale(1.02);
    transition: transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.gcfc-blog-featured::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.82) 38%, rgba(0, 0, 0, 0.14) 74%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.92) 100%);
}

.gcfc-blog-featured::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 149, 92, 0.14), transparent 32%, rgba(184, 149, 92, 0.08));
    pointer-events: none;
}

.gcfc-blog-featured:hover .gcfc-blog-featured-image {
    transform: scale(1.065);
}

.gcfc-video-duration {
    position: absolute;
    top: 22px;
    left: 22px;
    min-height: 36px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(184, 149, 92, 0.62);
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.58);
    color: #ffffff;
    font-size: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gcfc-video-duration::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #ffffff;
}

.gcfc-blog-featured-content {
    width: min(62%, 500px);
    padding: 50px 38px 40px;
}

.gcfc-blog-category {
    display: block;
    margin-bottom: 14px;
    color: #d5a955;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.4;
    text-transform: uppercase;
}

.gcfc-blog-featured h3 {
    margin-bottom: 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.gcfc-blog-featured-description {
    max-width: 440px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
}

.gcfc-blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #deb564;
    font-size: 14px;
    font-weight: 500;
}

.gcfc-blog-read-link span {
    font-size: 22px;
    transition: transform 0.25s ease;
}

.gcfc-blog-read-link:hover span {
    transform: translateX(5px);
}

.gcfc-blog-featured-meta {
    padding: 0 38px 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
}

.gcfc-blog-featured-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gcfc-blog-featured-meta span + span::before {
    content: "•";
    margin-right: 4px;
    color: rgba(184, 149, 92, 0.72);
}

.gcfc-blog-list {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
}

.gcfc-blog-card {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: center;
    gap: 26px;
    border-bottom: 1px solid rgba(184, 149, 92, 0.24);
    transition: transform 0.3s ease;
}

.gcfc-blog-card:first-child {
    padding-top: 0;
}

.gcfc-blog-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.gcfc-blog-card:hover {
    transform: translateX(7px);
}

.gcfc-blog-thumb {
    position: relative;
    height: 160px;
    overflow: hidden;
    border: 1px solid rgba(184, 149, 92, 0.22);
    border-radius: 14px;
    background: #111111;
}

.gcfc-blog-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 0.55s cubic-bezier(.22, 1, .36, 1);
}

.gcfc-blog-card:hover .gcfc-blog-thumb img {
    transform: scale(1.08);
}

.gcfc-blog-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.gcfc-blog-thumb .gcfc-video-duration {
    top: 12px;
    left: 12px;
    z-index: 2;
    min-height: 30px;
    padding: 0 11px;
    font-size: 10px;
}

.gcfc-blog-card-copy h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(19px, 1.65vw, 25px);
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: -0.025em;
}

.gcfc-blog-card-meta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}

.gcfc-blog-card-meta span + span::before {
    content: "•";
    margin-right: 12px;
    color: rgba(184, 149, 92, 0.66);
}

@media (max-width: 1080px) {
    .gcfc-blog-grid {
        grid-template-columns: 1fr;
    }

    .gcfc-blog-featured {
        min-height: 620px;
    }

    .gcfc-blog-list {
        grid-template-rows: none;
    }

    .gcfc-blog-card {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 760px) {
    .gcfc-blog {
        padding: 78px 0 84px;
    }

    .gcfc-blog-container {
        width: min(calc(100% - 40px), 1180px);
    }

    .gcfc-blog-heading {
        margin-bottom: 36px;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 20px;
    }

    .gcfc-blog-heading h2 {
        font-size: 42px;
    }

    .gcfc-blog-heading p {
        font-size: 15px;
    }

    .gcfc-blog-all-link {
        padding-bottom: 0;
    }

    .gcfc-blog-featured {
        min-height: 590px;
    }

    .gcfc-blog-featured::before {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.06) 18%, rgba(0, 0, 0, 0.94) 68%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04));
    }

    .gcfc-blog-featured-image {
        object-position: center top;
    }

    .gcfc-blog-featured-content {
        width: 100%;
        padding: 280px 24px 28px;
    }

    .gcfc-blog-featured h3 {
        font-size: 31px;
    }

    .gcfc-blog-featured-meta {
        padding: 0 24px 24px;
    }

    .gcfc-blog-card {
        grid-template-columns: 132px minmax(0, 1fr);
        gap: 16px;
        padding: 20px 0;
    }

    .gcfc-blog-thumb {
        height: 112px;
        border-radius: 10px;
    }

    .gcfc-blog-card-copy h3 {
        font-size: 17px;
    }

    .gcfc-blog-card-meta {
        font-size: 10px;
    }
}

@media (max-width: 430px) {
    .gcfc-blog-featured {
        min-height: 620px;
    }

    .gcfc-blog-card {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 13px;
    }

    .gcfc-blog-thumb {
        height: 98px;
    }

    .gcfc-blog-card-copy h3 {
        font-size: 15px;
        line-height: 1.32;
    }

    .gcfc-blog-category {
        font-size: 9px;
    }
}



/* ==================================================
   AJUSTES FINAIS — MARGENS PADRONIZADAS E BLOG 30% MENOR
================================================== */

/* Usa exatamente a mesma largura lateral da seção Certificação GCFC® */
.trust-process-container,
.gcfc-blog-container {
    width: min(calc(100% - 96px), var(--container-width));
    margin-left: auto;
    margin-right: auto;
}

/* Redução aproximada de 30% na altura visual da seção Blog GCFC */
.gcfc-blog {
    padding: 13px 0 22px;
}

.gcfc-blog-heading {
    margin-bottom: 34px;
}

.gcfc-blog-label {
    min-height: 36px;
    margin-bottom: 17px;
    padding: 0 19px;
}

.gcfc-blog-heading p {
    margin-top: 15px;
    line-height: 1.6;
}

.gcfc-blog-grid {
    gap: 24px;
}

.gcfc-blog-featured {
    min-height: 420px;
}

.gcfc-blog-featured-content {
    padding: 30px 28px 22px;
}

.gcfc-blog-featured h3 {
    margin-bottom: 14px;
    font-size: clamp(26px, 2.7vw, 38px);
}

.gcfc-blog-featured-description {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.55;
}

.gcfc-blog-featured-meta {
    padding: 0 28px 20px;
}

.gcfc-blog-card {
    padding: 14px 0;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 20px;
}

.gcfc-blog-thumb {
    height: 112px;
}

.gcfc-blog-card-copy h3 {
    font-size: clamp(17px, 1.35vw, 21px);
}

.gcfc-blog-card-meta {
    margin-top: 9px;
}

@media (max-width: 980px) {
    .trust-process-container,
    .gcfc-blog-container {
        width: min(calc(100% - 56px), var(--container-width));
    }
}

@media (max-width: 1080px) {
    .gcfc-blog-featured {
        min-height: 434px;
    }
}

@media (max-width: 760px) {
    .trust-process-container,
    .gcfc-blog-container {
        width: min(calc(100% - 40px), var(--container-width));
    }

    .gcfc-blog {
        padding: 55px 0 59px;
    }

    .gcfc-blog-heading {
        margin-bottom: 25px;
    }

    .gcfc-blog-featured {
        min-height: 413px;
    }

    .gcfc-blog-featured-content {
        padding: 185px 20px 20px;
    }

    .gcfc-blog-featured h3 {
        font-size: 26px;
    }

    .gcfc-blog-featured-description {
        margin-bottom: 16px;
        font-size: 13px;
    }

    .gcfc-blog-featured-meta {
        padding: 0 20px 18px;
    }

    .gcfc-blog-card {
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 14px;
        padding: 14px 0;
    }

    .gcfc-blog-thumb {
        height: 78px;
    }
}

@media (max-width: 430px) {
    .gcfc-blog-featured {
        min-height: 434px;
    }

    .gcfc-blog-featured-content {
        padding-top: 195px;
    }

    .gcfc-blog-card {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 12px;
    }

    .gcfc-blog-thumb {
        height: 69px;
    }
}



/* ==================================================
   HERO GCFC — REFINAMENTO PREMIUM / HOME
   Mantém somente os efeitos essenciais definidos para a Hero.
================================================== */
.hero{
    --hero-gold:#b8955c;
    --hero-silver:#d7d7d2;
}

/* Profundidade cinematográfica e vinheta */
.hero::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    pointer-events:none;
    box-shadow:inset 0 0 190px 48px rgba(0,0,0,.66);
}

.hero-overlay{
    background:
        linear-gradient(180deg,rgba(0,0,0,.48) 0%,rgba(0,0,0,.30) 38%,rgba(0,0,0,.75) 100%),
        radial-gradient(circle at center,rgba(0,0,0,.04) 0%,rgba(0,0,0,.58) 100%),
        linear-gradient(90deg,rgba(5,5,5,.30),transparent 22%,transparent 78%,rgba(5,5,5,.30));
}

.hero-texture{
    opacity:.04;
    background-size:96px 96px;
}

/* Luz dourada atravessando o vídeo lentamente */
.hero-scan-light{
    position:absolute;
    z-index:-1;
    top:0;
    bottom:0;
    left:-35%;
    width:28%;
    pointer-events:none;
    background:linear-gradient(90deg,transparent,rgba(184,149,92,.05),rgba(255,255,255,.03),transparent);
    transform:skewX(-12deg);
    animation:heroScan 13s 2s ease-in-out infinite;
}

.hero-content{
    position:relative;
    z-index:4;
    max-width:1100px;
}

/* Título em exatamente duas linhas */
.hero-title{
    max-width:1080px;
    line-height:1.02;
    letter-spacing:-.052em;
    text-shadow:0 18px 55px rgba(0,0,0,.42);
}

.hero-title-line{
    display:block;
}

.hero-title-line:last-child{
    color:var(--hero-silver);
}

/* Divisor dourado discreto entre as CTAs */
.hero-actions{
    position:relative;
}

.hero-actions::before{
    content:"";
    width:1px;
    height:30px;
    order:2;
    background:linear-gradient(180deg,transparent,rgba(184,149,92,.52),transparent);
}

/* Acabamento metálico e reflexo único no botão principal */
.hero-button-primary{
    position:relative;
    overflow:hidden;
    order:1;
    border:1px solid #dfbf80;
    background:linear-gradient(135deg,#e1c181 0%,#a87935 52%,#e7cb91 100%);
    color:#080808;
    box-shadow:0 15px 38px rgba(184,149,92,.20);
}

.hero-button-primary::after{
    content:"";
    position:absolute;
    top:-40%;
    bottom:-40%;
    left:-45%;
    width:28%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.82),transparent);
    transform:skewX(-18deg);
    animation:heroButtonShine 1.35s 1.15s ease-out 1 both;
}

.hero-button-secondary{order:3}

@keyframes heroScan{
    0%,72%{left:-35%;opacity:0}
    76%{opacity:1}
    92%{left:112%;opacity:.65}
    100%{left:112%;opacity:0}
}

@keyframes heroButtonShine{
    from{left:-45%;opacity:0}
    22%{opacity:1}
    to{left:125%;opacity:0}
}

@media(max-width:640px){
    .hero-title{
        max-width:100%;
        font-size:clamp(38px,11vw,54px);
        line-height:1.05;
    }

    .hero-actions::before{
        width:46px;
        height:1px;
        order:2;
        background:linear-gradient(90deg,transparent,rgba(184,149,92,.52),transparent);
    }
}

/* V59 — selo na altura do bloco de benefícios e extrusão escura. */
.gcfc-benefits-visual {
    min-height:690px;
}
.gcfc-benefits-seal,
.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal {
    width:min(100%,415px);
    transform:perspective(1600px) rotateY(-18deg) rotateX(2.4deg) rotateZ(1.2deg);
    filter:drop-shadow(20px 42px 42px rgba(0,0,0,.48));
}
.gcfc-benefits-seal:hover,
.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal:hover {
    transform:perspective(1600px) rotateY(-8deg) rotateX(.5deg) rotateZ(.2deg) translateY(-10px);
    filter:drop-shadow(25px 48px 48px rgba(0,0,0,.56));
}
.gcfc-benefits-seal img {
    max-height:622px;
    filter:
        drop-shadow(5px 4px 0 rgba(7,7,7,.98))
        drop-shadow(11px 9px 0 rgba(2,2,2,.94))
        drop-shadow(25px 34px 28px rgba(0,0,0,.62));
}
@media(max-width:1080px){
    .gcfc-benefits-visual{min-height:620px}
    .gcfc-benefits-seal,.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal{width:min(100%,370px)}
    .gcfc-benefits-seal img{max-height:555px}
}
@media(max-width:640px){
    .gcfc-benefits-visual{min-height:510px}
    .gcfc-benefits-seal,.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal{width:min(84vw,310px);transform:perspective(1100px) rotateY(-10deg) rotateX(1deg) rotateZ(.6deg)}
    .gcfc-benefits-seal img{max-height:465px;filter:drop-shadow(3px 3px 0 #070707) drop-shadow(7px 6px 0 #020202) drop-shadow(15px 23px 22px rgba(0,0,0,.58))}
}

@media(prefers-reduced-motion:reduce){
    .hero-scan-light,
    .hero-button-primary::after{
        animation:none!important;
    }
}



/* ==================================================
   COMO GERAMOS CONFIANÇA — FLUXO CONTÍNUO GCFC
================================================== */

.trust-journey {
    padding: 96px 0 104px;
    background:
        radial-gradient(circle at 78% 48%, rgba(184,149,92,.075), transparent 32%),
        linear-gradient(180deg, #060606 0%, #090909 100%);
    color: #fff;
}

.trust-journey .trust-process-container {
    width: min(calc(100% - 96px), 1180px);
}

.trust-journey-heading {
    margin-bottom: 76px;
}

.trust-journey-heading h2 {
    color: #fff;
}

.trust-journey-track {
    --journey-progress: 0%;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, .8fr) minmax(360px, 1.45fr);
    gap: 34px;
    align-items: stretch;
    isolation: isolate;
}

.trust-journey-line {
    position: absolute;
    z-index: 0;
    top: 31px;
    left: 7%;
    right: 7%;
    height: 1px;
    overflow: visible;
    background: rgba(255,255,255,.13);
}

.trust-journey-line-progress {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--journey-progress);
    background: linear-gradient(
        90deg,
        rgba(184,149,92,.28),
        rgba(211,177,113,.96) 65%,
        rgba(244,222,175,.92)
    );
    box-shadow: 0 0 16px rgba(184,149,92,.22);
    transition: width 1.85s cubic-bezier(.22,1,.36,1);
}

.trust-journey-line-progress::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d2ab69;
    box-shadow: 0 0 18px rgba(210,171,105,.65);
    transform: translateY(-50%);
    opacity: 0;
}

.trust-journey.is-visible .trust-journey-line-progress::after {
    animation: trustJourneyTip 1.85s ease both;
}

.trust-journey-step {
    position: relative;
    z-index: 1;
    padding-top: 64px;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .68s ease,
        transform .68s cubic-bezier(.22,1,.36,1);
    outline: none;
}

.trust-journey-step:nth-of-type(2) {
    transition-delay: .38s;
}

.trust-journey-step:nth-of-type(3) {
    transition-delay: .76s;
}

.trust-journey.is-visible .trust-journey-step {
    opacity: 1;
    transform: translateY(0);
}

.trust-journey-node {
    position: absolute;
    top: 24px;
    left: 32px;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(210,171,105,.9);
    border-radius: 50%;
    background: #080808;
    box-shadow: 0 0 0 0 rgba(184,149,92,0);
    transform: scale(.55);
    transition:
        transform .42s cubic-bezier(.22,1,.36,1),
        background .35s ease,
        box-shadow .35s ease;
}

.trust-journey.is-visible .trust-journey-step:nth-of-type(1) .trust-journey-node {
    transition-delay: .22s;
}

.trust-journey.is-visible .trust-journey-step:nth-of-type(2) .trust-journey-node {
    transition-delay: .76s;
}

.trust-journey.is-visible .trust-journey-step:nth-of-type(3) .trust-journey-node {
    transition-delay: 1.28s;
}

.trust-journey.is-visible .trust-journey-node {
    transform: scale(1);
    background: #c9a15f;
    box-shadow:
        0 0 0 7px rgba(184,149,92,.08),
        0 0 22px rgba(184,149,92,.32);
}

.trust-journey-card {
    min-height: 320px;
    padding: 38px 32px 34px;
    border: 1px solid rgba(255,255,255,.12);
    background:
        linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
    transition:
        transform .38s cubic-bezier(.22,1,.36,1),
        border-color .38s ease,
        background .38s ease;
}

.trust-journey-number {
    display: block;
    margin-bottom: 48px;
    color: #c9a15f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
}

.trust-journey-card h3,
.trust-journey-video-copy h3 {
    margin-bottom: 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(24px, 2vw, 31px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.trust-journey-card h3::after,
.trust-journey-video-copy h3::after {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    margin-top: 18px;
    background: linear-gradient(90deg, #c9a15f, rgba(201,161,95,.12));
    transition: width .35s ease;
}

.trust-journey-card p,
.trust-journey-video-copy p {
    color: rgba(255,255,255,.68);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.72;
}

.trust-journey-step:hover .trust-journey-card,
.trust-journey-step:focus-visible .trust-journey-card {
    transform: translateY(-5px);
    border-color: rgba(184,149,92,.38);
    background:
        linear-gradient(145deg, rgba(184,149,92,.075), rgba(255,255,255,.018));
}

.trust-journey-step:hover .trust-journey-card h3::after,
.trust-journey-step:focus-visible .trust-journey-card h3::after {
    width: 66px;
}

.trust-journey-step:hover .trust-journey-node,
.trust-journey-step:focus-visible .trust-journey-node {
    box-shadow:
        0 0 0 9px rgba(184,149,92,.09),
        0 0 28px rgba(184,149,92,.46);
}

.trust-journey-video-card {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border: 1px solid rgba(210,171,105,.42);
    border-radius: 14px;
    background: #080808;
    box-shadow: 0 28px 70px rgba(0,0,0,.34);
}

.trust-journey-video-card::before,
.trust-journey-video-card::after {
    content: "";
    position: absolute;
    z-index: 5;
    width: 38px;
    height: 38px;
    pointer-events: none;
}

.trust-journey-video-card::before {
    top: 12px;
    left: 12px;
    border-top: 1px solid rgba(210,171,105,.72);
    border-left: 1px solid rgba(210,171,105,.72);
}

.trust-journey-video-card::after {
    right: 12px;
    bottom: 12px;
    border-right: 1px solid rgba(210,171,105,.72);
    border-bottom: 1px solid rgba(210,171,105,.72);
}

.trust-journey-video-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #050505;
    transform: translateZ(0);
}

.trust-journey-poster {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
    background: #050505;
    opacity: 1;
    transition: opacity .35s ease;
}

.trust-journey-video-card.is-playing .trust-journey-poster {
    opacity: 0;
    pointer-events: none;
}

.trust-journey-video-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.68) 40%, rgba(0,0,0,.12) 78%),
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.28));
    pointer-events: none;
}

.trust-journey-video-copy {
    position: relative;
    z-index: 2;
    width: min(54%, 320px);
    min-height: 380px;
    padding: 44px 0 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-journey-video-copy .trust-journey-number {
    margin-bottom: 38px;
}

.trust-journey-play {
    position: absolute;
    z-index: 6;
    top: 50%;
    right: 12%;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 50%;
    background: rgba(0,0,0,.46);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-50%);
    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease,
        opacity .25s ease;
    isolation: isolate;
    animation: trust-play-glow 1.8s ease-in-out infinite;
}

.trust-journey-play::before,
.trust-journey-play::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border: 1px solid rgba(184,149,92,.72);
    border-radius: inherit;
    pointer-events: none;
    animation: trust-play-ring 1.8s ease-out infinite;
}

.trust-journey-play::after {
    animation-delay: .9s;
}

.trust-journey-play img {
    position: relative;
    z-index: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 7px rgba(255,255,255,.42));
    animation: trust-play-icon 1.8s ease-in-out infinite;
}

@keyframes trust-play-glow {
    0%, 100% {
        border-color: rgba(255,255,255,.68);
        background: rgba(0,0,0,.48);
        box-shadow: 0 0 0 0 rgba(184,149,92,0), 0 0 18px rgba(184,149,92,.12);
    }
    50% {
        border-color: rgba(210,171,105,.96);
        background: rgba(18,14,8,.72);
        box-shadow: 0 0 0 8px rgba(184,149,92,.10), 0 0 34px rgba(184,149,92,.40);
    }
}

@keyframes trust-play-ring {
    0% {
        opacity: .72;
        transform: scale(1);
    }
    78%, 100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

@keyframes trust-play-icon {
    0%, 100% { opacity: .76; }
    50% { opacity: 1; }
}

.trust-journey-play span {
    margin-left: 4px;
    font-size: 23px;
}

.trust-journey-play:hover,
.trust-journey-play:focus-visible {
    transform: translateY(-50%) scale(1.07);
    border-color: rgba(210,171,105,.92);
    background: rgba(0,0,0,.66);
    box-shadow: 0 0 0 9px rgba(184,149,92,.08), 0 0 34px rgba(184,149,92,.22);
    outline: none;
}

.trust-journey-video-card.is-playing .trust-journey-play {
    opacity: 0;
    pointer-events: none;
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .trust-journey-play,
    .trust-journey-play::before,
    .trust-journey-play::after,
    .trust-journey-play img {
        animation: none;
    }
}

.trust-journey-destination .trust-journey-node {
    width: 21px;
    height: 21px;
    top: 21px;
    left: 32px;
}

.trust-journey.is-visible .trust-journey-destination .trust-journey-node {
    animation: trustJourneyDestinationPulse 2.8s 1.9s ease-in-out infinite;
}

.trust-journey-action {
    margin-top: 54px;
}

@keyframes trustJourneyTip {
    0%, 8% { opacity: 0; }
    18%, 86% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes trustJourneyDestinationPulse {
    0%, 100% {
        box-shadow:
            0 0 0 7px rgba(184,149,92,.08),
            0 0 22px rgba(184,149,92,.3);
    }
    50% {
        box-shadow:
            0 0 0 12px rgba(184,149,92,.035),
            0 0 34px rgba(184,149,92,.48);
    }
}

@media (max-width: 1020px) {
    .trust-journey-track {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .trust-journey-destination {
        grid-column: 1 / -1;
    }

    .trust-journey-line {
        display: none;
    }

    .trust-journey-step {
        padding-top: 42px;
    }

    .trust-journey-node,
    .trust-journey-destination .trust-journey-node {
        top: 4px;
    }
}

@media (max-width: 700px) {
    .trust-journey {
        padding: 74px 0 82px;
    }

    .trust-journey .trust-process-container {
        width: min(calc(100% - 40px), 1180px);
    }

    .trust-journey-heading {
        margin-bottom: 50px;
    }

    .trust-journey-track {
        display: block;
        padding-left: 30px;
    }

    .trust-journey-line {
        display: block;
        top: 0;
        bottom: 0;
        left: 7px;
        right: auto;
        width: 1px;
        height: auto;
    }

    .trust-journey-line-progress {
        width: 1px;
        height: var(--journey-progress);
        transition: height 1.85s cubic-bezier(.22,1,.36,1);
        background: linear-gradient(180deg, rgba(184,149,92,.28), #d2ab69 72%, rgba(244,222,175,.92));
    }

    .trust-journey-line-progress::after {
        top: auto;
        right: 50%;
        bottom: -4px;
        transform: translateX(50%);
    }

    .trust-journey-step,
    .trust-journey-destination {
        margin-bottom: 28px;
        padding-top: 0;
    }

    .trust-journey-node,
    .trust-journey-destination .trust-journey-node {
        top: 28px;
        left: -30px;
    }

    .trust-journey-card {
        min-height: 0;
        padding: 30px 26px;
    }

    .trust-journey-number {
        margin-bottom: 28px;
    }

    .trust-journey-video-card,
    .trust-journey-video-copy {
        min-height: 510px;
    }

    .trust-journey-video-overlay {
        background:
            linear-gradient(180deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.28) 46%, rgba(0,0,0,.64) 100%);
    }

    .trust-journey-video-copy {
        width: 100%;
        padding: 34px 28px;
        justify-content: flex-start;
    }

    .trust-journey-play {
        top: 66%;
        right: 50%;
        transform: translate(50%, -50%);
    }

    .trust-journey-play:hover,
    .trust-journey-play:focus-visible {
        transform: translate(50%, -50%) scale(1.07);
    }

    .trust-journey-action {
        margin-top: 38px;
    }
}

/* V57 — prioridade final da apresentação 3D sobre ajustes legados. */
.gcfc-benefits-seal {
    isolation:isolate;
    transform-style:preserve-3d;
    transform:perspective(1500px) rotateY(-13deg) rotateX(2deg) rotateZ(1.2deg);
    filter:drop-shadow(18px 38px 38px rgba(0,0,0,.46));
}
.gcfc-benefits-seal:hover {
    transform:perspective(1500px) rotateY(-5deg) rotateX(0) rotateZ(.2deg) translateY(-10px);
    filter:drop-shadow(22px 46px 44px rgba(0,0,0,.54));
}
.gcfc-benefits-seal img {
    position:relative;
    z-index:2;
    transform:translateZ(12px);
    animation:gcfcPlateFace 5.8s ease-in-out infinite;
}
@media(max-width:640px){
    .gcfc-benefits-seal{transform:perspective(1100px) rotateY(-8deg) rotateX(1deg) rotateZ(.7deg);filter:drop-shadow(12px 27px 28px rgba(0,0,0,.48))}
}
@media(prefers-reduced-motion:reduce){.gcfc-benefits-seal img,.gcfc-benefits-seal::after{animation:none}}

/* V59 — precedência final: altura do bloco e extrusão escura. */
.gcfc-benefits-visual{min-height:690px}
.gcfc-benefits-seal,.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal{width:min(100%,415px);transform:perspective(1600px) rotateY(-18deg) rotateX(2.4deg) rotateZ(1.2deg);filter:drop-shadow(20px 42px 42px rgba(0,0,0,.48))}
.gcfc-benefits-seal:hover,.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal:hover{transform:perspective(1600px) rotateY(-8deg) rotateX(.5deg) rotateZ(.2deg) translateY(-10px);filter:drop-shadow(25px 48px 48px rgba(0,0,0,.56))}
.gcfc-benefits-seal::before{display:none}
.gcfc-benefits-seal img{max-height:622px;filter:drop-shadow(5px 4px 0 rgba(7,7,7,.98)) drop-shadow(11px 9px 0 rgba(2,2,2,.94)) drop-shadow(25px 34px 28px rgba(0,0,0,.62))}
@media(max-width:1080px){.gcfc-benefits-visual{min-height:620px}.gcfc-benefits-seal,.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal{width:min(100%,370px)}.gcfc-benefits-seal img{max-height:555px}}
@media(max-width:640px){.gcfc-benefits-visual{min-height:510px}.gcfc-benefits-seal,.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal{width:min(84vw,310px);transform:perspective(1100px) rotateY(-10deg) rotateX(1deg) rotateZ(.6deg)}.gcfc-benefits-seal img{max-height:465px;filter:drop-shadow(3px 3px 0 #070707) drop-shadow(7px 6px 0 #020202) drop-shadow(15px 23px 22px rgba(0,0,0,.58))}}

.trust-journey-keep-together {
    display: inline-block;
    white-space: nowrap;
}

/* V54 — proporção vertical da nova placa GCFC. */
.gcfc-benefits-seal {
    width: min(100%, 410px);
}

.gcfc-benefits-seal img {
    width: auto;
    max-width: 100%;
    max-height: 610px;
    margin: 0 auto;
}

@media (max-width: 1080px) {
    .gcfc-benefits-seal {
        width: min(100%, 380px);
    }

    .gcfc-benefits-seal img {
        max-height: 570px;
    }
}

@media (max-width: 640px) {
    .gcfc-benefits-seal {
        width: min(88vw, 310px);
    }

    .gcfc-benefits-seal img {
        max-height: 465px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trust-journey-track {
        --journey-progress: 100%;
    }

    .trust-journey-step {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .trust-journey-node,
    .trust-journey-destination .trust-journey-node {
        transform: scale(1);
        transition: none;
        animation: none !important;
    }

    .trust-journey-line-progress {
        transition: none;
    }

    .trust-journey-line-progress::after {
        display: none;
    }
}


/* ==================================================
   AJUSTE GCFC — ETAPAS 01/02 TRIANGULARES + PLAY CENTRAL
   Mantém a etapa 03 retangular para favorecer o vídeo.
================================================== */

@media (min-width: 1021px) {
    .trust-journey-track {
        grid-template-columns: minmax(300px, .95fr) minmax(300px, .95fr) minmax(420px, 1.65fr);
        gap: 22px;
    }

    .trust-journey-step:not(.trust-journey-destination) {
        overflow: visible;
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card {
        position: relative;
        min-height: 380px;
        padding: 54px 42% 46px 34px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
        border: 0;
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        background:
            radial-gradient(circle at 24% 20%, rgba(255,255,255,.075), transparent 32%),
            linear-gradient(145deg, #1b1b1b 0%, #070707 100%);
        filter: drop-shadow(0 20px 34px rgba(0,0,0,.48));
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card::before {
        content: "";
        position: absolute;
        inset: 1px;
        z-index: -1;
        clip-path: inherit;
        background:
            linear-gradient(145deg, rgba(184,149,92,.16), transparent 38%),
            linear-gradient(145deg, #191919 0%, #070707 100%);
        pointer-events: none;
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-number {
        margin-bottom: 36px;
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card h3 {
        font-size: clamp(22px, 1.8vw, 28px);
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card p {
        max-width: 185px;
        font-size: 13px;
        line-height: 1.64;
    }

    .trust-journey-step:not(.trust-journey-destination):hover .trust-journey-card,
    .trust-journey-step:not(.trust-journey-destination):focus-visible .trust-journey-card {
        transform: translateY(-5px);
        background:
            radial-gradient(circle at 24% 20%, rgba(184,149,92,.12), transparent 34%),
            linear-gradient(145deg, #211c14 0%, #080808 100%);
        filter: drop-shadow(0 26px 42px rgba(0,0,0,.58));
    }
}

/* Centralizado na área visual do painel, sem competir com o texto da etapa. */
.trust-journey-play {
    top: 50%;
    left: 74%;
    right: auto;
    transform: translate(-50%, -50%);
}

.trust-journey-play:hover,
.trust-journey-play:focus-visible {
    transform: translate(-50%, -50%) scale(1.07);
}

@media (max-width: 1020px) and (min-width: 701px) {
    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card {
        position: relative;
        min-height: 340px;
        padding: 42px 34% 38px 30px;
        overflow: hidden;
        border: 0;
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        background:
            radial-gradient(circle at 24% 20%, rgba(255,255,255,.07), transparent 32%),
            linear-gradient(145deg, #1b1b1b 0%, #070707 100%);
        filter: drop-shadow(0 18px 30px rgba(0,0,0,.45));
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card p {
        max-width: 210px;
    }
}

@media (max-width: 700px) {
    /* No celular, preserva a leitura e mantém o triângulo como assinatura lateral. */
    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card {
        position: relative;
        overflow: hidden;
        border-color: rgba(184,149,92,.24);
        background:
            linear-gradient(135deg, rgba(184,149,92,.065), transparent 42%),
            linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 68px;
        height: 100%;
        clip-path: polygon(100% 0, 100% 100%, 0 50%);
        background: linear-gradient(145deg, rgba(184,149,92,.15), rgba(184,149,92,.025));
        pointer-events: none;
    }

    .trust-journey-play {
        top: 66%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }

    .trust-journey-play:hover,
    .trust-journey-play:focus-visible {
        transform: translate(-50%, -50%) scale(1.07);
    }
}



/* ==================================================
   GCFC — NOTAS COMPLEMENTARES DO FLUXO DE CONFIANÇA
   Preserva integralmente as três informações originais.
================================================== */
.trust-journey-notes {
    width: 100%;
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.trust-journey-note {
    position: relative;
    min-width: 0;
    padding-top: 27px;
    color: rgba(255, 255, 255, .74);
}

.trust-journey-note-marker {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c49a58;
    box-shadow: 0 0 0 5px rgba(184, 149, 92, .07);
    transform: translateY(-4px);
}

.trust-journey-note-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    overflow: hidden;
    background: rgba(184, 149, 92, .22);
}

.trust-journey-note-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #c49a58 0%, rgba(196,154,88,.4) 60%, rgba(196,154,88,.08) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .85s cubic-bezier(.22, 1, .36, 1);
}

.trust-journey-note p {
    max-width: 330px;
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
}

.trust-journey.is-visible .trust-journey-note-line::after {
    transform: scaleX(1);
}

.trust-journey.is-visible .trust-journey-note:nth-child(1) .trust-journey-note-line::after { transition-delay: 1.45s; }
.trust-journey.is-visible .trust-journey-note:nth-child(2) .trust-journey-note-line::after { transition-delay: 1.62s; }
.trust-journey.is-visible .trust-journey-note:nth-child(3) .trust-journey-note-line::after { transition-delay: 1.79s; }

.trust-journey-note {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .62s ease, transform .62s cubic-bezier(.22, 1, .36, 1);
}

.trust-journey.is-visible .trust-journey-note {
    opacity: 1;
    transform: translateY(0);
}

.trust-journey.is-visible .trust-journey-note:nth-child(1) { transition-delay: 1.38s; }
.trust-journey.is-visible .trust-journey-note:nth-child(2) { transition-delay: 1.55s; }
.trust-journey.is-visible .trust-journey-note:nth-child(3) { transition-delay: 1.72s; }

@media (max-width: 760px) {
    .trust-journey-notes {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 38px;
    }

    .trust-journey-note {
        padding-top: 24px;
    }

    .trust-journey-note p {
        max-width: none;
        font-size: 13.5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trust-journey-note,
    .trust-journey-note-line::after {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* ==================================================
   AJUSTE GCFC — LINHAS E CÍRCULOS APENAS NA BASE
================================================== */
.trust-journey-track {
    --journey-progress: 100%;
}

.trust-journey-line,
.trust-journey-node {
    display: none !important;
}

.trust-journey-step {
    padding-top: 0;
}

.trust-journey-notes {
    margin-top: 42px;
}

@media (max-width: 760px) {
    .trust-journey-step,
    .trust-journey-destination {
        padding-top: 0;
    }

    .trust-journey-notes {
        margin-top: 34px;
    }
}



        /* ==================================================
           RODAPÉ GCFC
        ================================================== */
        .gcfc-site-footer {
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(255,255,255,.09);
            background:
                radial-gradient(circle at 14% 12%, rgba(184,149,92,.10), transparent 28%),
                radial-gradient(circle at 88% 72%, rgba(215,215,210,.045), transparent 26%),
                #070707;
        }

        .gcfc-site-footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            width: min(1180px, calc(100% - 80px));
            height: 1px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, transparent, rgba(184,149,92,.72), transparent);
        }

        .gcfc-footer-container {
            width: min(calc(100% - 80px), var(--container-width));
            margin: 0 auto;
        }

        .gcfc-footer-main {
            display: grid;
            grid-template-columns: minmax(250px, 1.35fr) repeat(4, minmax(130px, .72fr));
            gap: 48px 36px;
            padding: 78px 0 58px;
        }

        .gcfc-footer-brand {
            max-width: 330px;
            align-self: start;
            padding-top: 0;
        }

        .gcfc-footer-logo {
            display: block;
            width: auto;
            height: 112px;
            margin: -30px 0 2px;
            object-fit: contain;
        }

        .gcfc-footer-description {
            max-width: 310px;
            color: rgba(255,255,255,.62);
            font-size: 13px;
            line-height: 1.75;
        }

        .gcfc-footer-socials {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 25px;
        }

        .gcfc-footer-social-link {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255,255,255,.13);
            background: rgba(255,255,255,.025);
            color: rgba(255,255,255,.76);
            transition: transform .25s ease, border-color .25s ease, color .25s ease, background-color .25s ease;
        }

        .gcfc-footer-social-link:hover {
            transform: translateY(-3px);
            border-color: rgba(184,149,92,.75);
            background: rgba(184,149,92,.09);
            color: #d8ba86;
        }

        .gcfc-footer-social-link svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .gcfc-footer-column-title {
            margin-bottom: 22px;
            color: #fff;
            font-family: "Manrope", sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .gcfc-footer-column-title::after {
            content: "";
            display: block;
            width: 28px;
            height: 1px;
            margin-top: 11px;
            background: var(--gold);
        }

        .gcfc-footer-links {
            display: grid;
            gap: 13px;
            list-style: none;
        }

        .gcfc-footer-links a {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            color: rgba(255,255,255,.58);
            font-size: 12px;
            line-height: 1.45;
            transition: color .25s ease, transform .25s ease;
        }

        .gcfc-footer-links a:hover {
            color: #fff;
            transform: translateX(4px);
        }

        .gcfc-footer-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            padding: 34px 38px;
            border: 1px solid rgba(184,149,92,.24);
            background: linear-gradient(110deg, rgba(184,149,92,.09), rgba(255,255,255,.018));
        }

        .gcfc-footer-cta-copy span {
            display: block;
            margin-bottom: 8px;
            color: var(--gold-light, #d8ba86);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .18em;
            text-transform: uppercase;
        }

        .gcfc-footer-cta-copy strong {
            display: block;
            max-width: 680px;
            font-family: "Manrope", sans-serif;
            font-size: clamp(20px, 2vw, 28px);
            font-weight: 500;
            line-height: 1.3;
        }

        .gcfc-footer-cta-button {
            min-height: 48px;
            padding: 0 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex: 0 0 auto;
            border: 1px solid rgba(215,215,210,.72);
            background: linear-gradient(135deg, #eeeeea, #c9c9c3, #f5f5f1);
            color: #0a0a0a;
            font-size: 12px;
            font-weight: 600;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .gcfc-footer-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 30px rgba(0,0,0,.28);
        }

        .gcfc-footer-legal-note {
            padding: 27px 0;
            border-bottom: 1px solid rgba(255,255,255,.07);
            color: rgba(255,255,255,.42);
            font-size: 10px;
            line-height: 1.7;
        }

        .gcfc-footer-bottom {
            min-height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            color: rgba(255,255,255,.38);
            font-size: 10px;
        }

        .gcfc-footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .gcfc-footer-bottom-links a:hover {
            color: rgba(255,255,255,.8);
        }

        @media (max-width: 1080px) {
            .gcfc-footer-main {
                grid-template-columns: 1.4fr repeat(2, 1fr);
            }
        }

        @media (max-width: 760px) {
            .gcfc-footer-container {
                width: min(calc(100% - 40px), var(--container-width));
            }

            .gcfc-site-footer::before {
                width: calc(100% - 40px);
            }

            .gcfc-footer-main {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 38px 28px;
                padding: 60px 0 46px;
            }

            .gcfc-footer-brand {
                grid-column: 1 / -1;
            }

            .gcfc-footer-cta {
                align-items: flex-start;
                flex-direction: column;
                padding: 28px;
            }

            .gcfc-footer-bottom {
                align-items: flex-start;
                flex-direction: column;
                justify-content: center;
                padding: 22px 0;
            }
        }

        @media (max-width: 480px) {
            .gcfc-footer-main {
                grid-template-columns: 1fr;
            }

            .gcfc-footer-brand {
                grid-column: auto;
            }

            .gcfc-footer-cta-button {
                width: 100%;
            }
        }



        /* ==================================================
           REFINAMENTO PREMIUM DO MENU PRINCIPAL
        ================================================== */
        .nav-menu {
            gap: clamp(18px, 1.65vw, 30px);
        }

        .nav-menu > li > a,
        .nav-dropdown-toggle {
            position: relative;
            min-height: 46px;
            display: inline-flex;
            align-items: center;
            letter-spacing: .012em;
        }

        .nav-menu > li > a::before,
        .nav-dropdown-toggle::before {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 5px;
            width: 18px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transform: translateX(-50%) scaleX(.35);
            transition: opacity .28s ease, transform .35s cubic-bezier(.22,1,.36,1);
        }

        .nav-menu > li > a::after,
        .nav-dropdown-toggle::after {
            display: none;
        }

        .nav-menu > li > a:hover::before,
        .nav-menu > li > a:focus-visible::before,
        .nav-dropdown:hover > .nav-dropdown-toggle::before,
        .nav-dropdown.is-open > .nav-dropdown-toggle::before,
        .nav-dropdown-toggle:focus-visible::before {
            opacity: 1;
            transform: translateX(-50%) scaleX(1);
        }

        .nav-dropdown-toggle {
            gap: 9px;
        }

        .nav-dropdown-chevron,
        .language-chevron {
            width: 12px;
            height: 12px;
            display: inline-grid;
            flex: 0 0 12px;
            place-items: center;
            color: rgba(255,255,255,.54);
            opacity: 1;
            transform-origin: center;
            transition: transform .35s cubic-bezier(.22,1,.36,1), color .25s ease;
        }

        .nav-dropdown-chevron svg,
        .language-chevron svg {
            width: 10px;
            height: 7px;
            overflow: visible;
        }

        .nav-dropdown-chevron path,
        .language-chevron path {
            fill: none;
            stroke: currentColor;
            stroke-width: 1.35;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .nav-dropdown:hover .nav-dropdown-chevron,
        .nav-dropdown.is-open .nav-dropdown-chevron,
        .nav-dropdown-toggle:focus-visible .nav-dropdown-chevron,
        .language-button:hover .language-chevron,
        .language-selector.open .language-chevron {
            color: var(--gold);
        }

        .nav-dropdown.is-open .nav-dropdown-chevron,
        .nav-dropdown:hover .nav-dropdown-chevron,
        .language-selector.open .language-chevron {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            top: calc(100% + 14px);
            width: 272px;
            padding: 10px;
            border: 1px solid rgba(184,149,92,.22);
            border-radius: 8px;
            background:
                linear-gradient(145deg, rgba(184,149,92,.055), transparent 38%),
                rgba(8,8,8,.97);
            box-shadow: 0 28px 80px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.035);
            transform: translate(-50%, 14px) scale(.985);
            transition: opacity .25s ease, transform .3s cubic-bezier(.22,1,.36,1), visibility .25s ease;
        }

        .nav-dropdown-menu::after {
            content: "";
            position: absolute;
            top: 0;
            left: 18px;
            right: 18px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(184,149,92,.85), transparent);
        }

        .nav-dropdown:hover > .nav-dropdown-menu,
        .nav-dropdown:focus-within > .nav-dropdown-menu,
        .nav-dropdown.is-open > .nav-dropdown-menu {
            transform: translate(-50%, 0) scale(1);
        }

        .nav-dropdown-menu a {
            position: relative;
            min-height: 46px;
            padding: 12px 38px 12px 14px;
            border-radius: 4px;
            color: rgba(255,255,255,.70);
        }

        .nav-dropdown-menu a::before {
            content: "";
            position: absolute;
            right: 15px;
            top: 50%;
            width: 6px;
            height: 6px;
            border-top: 1px solid rgba(184,149,92,.72);
            border-right: 1px solid rgba(184,149,92,.72);
            opacity: 0;
            transform: translate(-6px,-50%) rotate(45deg);
            transition: opacity .22s ease, transform .28s cubic-bezier(.22,1,.36,1);
        }

        .nav-dropdown-menu a:hover,
        .nav-dropdown-menu a:focus-visible {
            padding-left: 18px;
            color: #fff;
            background: linear-gradient(90deg, rgba(184,149,92,.12), rgba(184,149,92,.025));
        }

        .nav-dropdown-menu a:hover::before,
        .nav-dropdown-menu a:focus-visible::before {
            opacity: 1;
            transform: translate(0,-50%) rotate(45deg);
        }

        .language-button {
            border-color: rgba(255,255,255,.18);
            background: rgba(0,0,0,.30);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
        }

        .language-button:hover,
        .language-selector.open .language-button {
            border-color: rgba(184,149,92,.52);
            background: rgba(184,149,92,.07);
        }

        @media (max-width: 1040px) {
            .nav-dropdown-chevron {
                width: 16px;
                height: 16px;
                flex-basis: 16px;
            }

            .nav-dropdown-chevron svg {
                width: 11px;
                height: 8px;
            }

            .nav-dropdown-menu,
            .nav-dropdown:hover > .nav-dropdown-menu,
            .nav-dropdown:focus-within > .nav-dropdown-menu {
                border-left: 1px solid rgba(184,149,92,.34);
                border-radius: 0;
                background: transparent;
                box-shadow: none;
                transform: none;
            }

            .nav-dropdown-menu::after {
                display: none;
            }

            .nav-dropdown-menu a {
                border-radius: 3px;
            }
        }

/* MENU E RODAPÉ DA PÁGINA SOLICITAR CONVITE */
/* MENU E RODAPE IMPORTADOS DA INDEX */
/* MENU */

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            width: 100%;
            transition:
                background-color 0.35s ease,
                backdrop-filter 0.35s ease,
                border-color 0.35s ease;
            border-bottom: 1px solid transparent;
        }

        .site-header.scrolled {
            background: rgba(5, 5, 5, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom-color: rgba(255, 255, 255, 0.08);
        }

        .navbar {
            width: min(calc(100% - 80px), var(--container-width));
            min-height: 88px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 32px;
        }

        .brand {
            justify-self: start;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

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

        .brand-symbol {
            display: grid;
            place-items: center;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            font-family: "Manrope", sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            line-height: 1.05;
            text-align: center;
            color: var(--silver-light);
        }

        .brand-name {
            max-width: 150px;
            font-size: 11px;
            font-weight: 400;
            line-height: 1.25;
            color: rgba(255, 255, 255, 0.82);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            list-style: none;
        }

        .nav-menu a {
            position: relative;
            padding: 10px 0;
            font-size: 13px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.82);
            transition: color 0.25s ease;
        }

        .nav-menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 3px;
            width: 100%;
            height: 1px;
            background: var(--silver);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--white);
        }

        .nav-menu a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }



        /* SUBMENUS DO MENU PRINCIPAL */
        .nav-menu > li {
            position: relative;
            list-style: none;
        }

        .nav-dropdown-toggle {
            min-height: 44px;
            padding: 10px 0;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            border: 0;
            background: transparent;
            color: rgba(255, 255, 255, 0.82);
            font: inherit;
            font-size: 13px;
            font-weight: 400;
            cursor: pointer;
            transition: color 0.25s ease;
        }

        .nav-dropdown-toggle::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 7px;
            width: 100%;
            height: 1px;
            background: var(--silver);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .nav-dropdown:hover > .nav-dropdown-toggle,
        .nav-dropdown.is-open > .nav-dropdown-toggle,
        .nav-dropdown-toggle:focus-visible {
            color: var(--white);
        }

        .nav-dropdown:hover > .nav-dropdown-toggle::after,
        .nav-dropdown.is-open > .nav-dropdown-toggle::after,
        .nav-dropdown-toggle:focus-visible::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        
.nav-dropdown-chevron svg,.language-chevron svg{
width:12px;height:8px;display:block;overflow:visible;
}
.nav-dropdown-chevron path,.language-chevron path{
fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;
}

.nav-dropdown-chevron {
            display: inline-flex;
            font-size: 10px;
            opacity: 0.72;
            transition: transform 0.25s ease;
        }

        .nav-dropdown.is-open .nav-dropdown-chevron,
        .nav-dropdown:hover .nav-dropdown-chevron {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            z-index: 1250;
            width: 250px;
            padding: 9px;
            display: block;
            visibility: hidden;
            opacity: 0;
            list-style: none;
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 4px;
            background: rgba(10,10,10,.98);
            box-shadow: 0 24px 65px rgba(0,0,0,.48);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            transform: translate(-50%, 10px);
            pointer-events: none;
            transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
        }

        .nav-dropdown-menu::before {
            content: "";
            position: absolute;
            top: -13px;
            left: 0;
            width: 100%;
            height: 14px;
        }

        .nav-dropdown:hover > .nav-dropdown-menu,
        .nav-dropdown:focus-within > .nav-dropdown-menu,
        .nav-dropdown.is-open > .nav-dropdown-menu {
            visibility: visible;
            opacity: 1;
            transform: translate(-50%, 0);
            pointer-events: auto;
        }

        .nav-dropdown-menu li + li {
            border-top: 1px solid rgba(255,255,255,.065);
        }

        .nav-dropdown-menu a {
            width: 100%;
            min-height: 43px;
            padding: 11px 12px;
            display: flex;
            align-items: center;
            color: rgba(255,255,255,.72);
            font-size: 12px;
            line-height: 1.35;
            transition: color .2s ease, background-color .2s ease, padding-left .2s ease;
        }

        .nav-dropdown-menu a::after {
            display: none;
        }

        .nav-dropdown-menu a:hover,
        .nav-dropdown-menu a:focus-visible {
            padding-left: 16px;
            color: #fff;
            background: rgba(184,149,92,.11);
            outline: none;
        }

        .nav-actions {
            justify-self: end;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .language-selector {
            position: relative;
        }

        .language-button {
            min-height: 44px;
            padding: 0 13px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 2px;
            background: rgba(0, 0, 0, 0.25);
            color: rgba(255, 255, 255, 0.92);
            font: inherit;
            font-size: 11px;
            white-space: nowrap;
            cursor: pointer;
            transition:
                background-color 0.25s ease,
                border-color 0.25s ease;
        }

        .language-button:hover,
        .language-selector.open .language-button {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .language-current-flag,
        .language-option-flag {
            width: 28px;
            height: 20px;
            display: inline-flex;
            flex: 0 0 28px;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .flag-svg {
            display: block;
            width: 28px;
            height: 20px;
            border-radius: 2px;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
        }

        .language-chevron {
            width: 14px;
            height: 14px;
            display: inline-flex;
            flex: 0 0 14px;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            line-height: 1;
            opacity: 0.7;
            transform-origin: center;
            transition: transform 0.25s ease;
        }

        .language-selector.open .language-chevron {
            transform: rotate(180deg);
        }

        .language-menu {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            z-index: 1200;
            width: 290px;
            padding: 8px;
            display: none;
            list-style: none;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 4px;
            background: rgba(10, 10, 10, 0.98);
            box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .language-selector.open .language-menu {
            display: block;
        }

        .language-option {
            width: 100%;
            min-height: 44px;
            padding: 0 12px;
            display: flex;
            align-items: center;
            gap: 11px;
            border: 0;
            border-radius: 3px;
            background: transparent;
            color: rgba(255, 255, 255, 0.78);
            font: inherit;
            font-size: 12px;
            text-align: left;
            cursor: pointer;
            transition:
                color 0.2s ease,
                background-color 0.2s ease;
        }

        .language-option:hover,
        .language-option[aria-current="true"] {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
        }

        .language-option-text[dir="rtl"] {
            margin-left: auto;
            text-align: right;
        }

        .header-cta {
            flex-shrink: 0;
            min-height: 44px;
            padding: 0 21px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            border: 1px solid #dfbf80;
            border-radius: 2px;
            background: linear-gradient(135deg, #e1c181 0%, #a87935 52%, #e7cb91 100%);
            color: #080808;
            box-shadow: 0 15px 38px rgba(184, 149, 92, 0.2);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease;
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 48px rgba(184, 149, 92, 0.32);
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(0, 0, 0, 0.25);
            cursor: pointer;
        }

        .menu-toggle span {
            display: block;
            width: 20px;
            height: 1px;
            margin: 5px auto;
            background: var(--white);
            transition: transform 0.3s ease;
        }

        
/* ==================================================
           RODAPÉ GCFC
        ================================================== */
        .gcfc-site-footer {
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(255,255,255,.09);
            background:
                radial-gradient(circle at 14% 12%, rgba(184,149,92,.10), transparent 28%),
                radial-gradient(circle at 88% 72%, rgba(215,215,210,.045), transparent 26%),
                #070707;
        }

        .gcfc-site-footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            width: min(1180px, calc(100% - 80px));
            height: 1px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, transparent, rgba(184,149,92,.72), transparent);
        }

        .gcfc-footer-container {
            width: min(calc(100% - 80px), var(--container-width));
            margin: 0 auto;
        }

        .gcfc-footer-main {
            display: grid;
            grid-template-columns: minmax(250px, 1.35fr) repeat(4, minmax(130px, .72fr));
            gap: 48px 36px;
            padding: 78px 0 58px;
        }

        .gcfc-footer-brand {
            max-width: 330px;
            align-self: start;
            padding-top: 0;
        }

        .gcfc-footer-logo {
            display: block;
            width: auto;
            height: 112px;
            margin: -30px 0 2px;
            object-fit: contain;
        }

        .gcfc-footer-description {
            max-width: 310px;
            color: rgba(255,255,255,.62);
            font-size: 13px;
            line-height: 1.75;
        }

        .gcfc-footer-socials {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 25px;
        }

        .gcfc-footer-social-link {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255,255,255,.13);
            background: rgba(255,255,255,.025);
            color: rgba(255,255,255,.76);
            transition: transform .25s ease, border-color .25s ease, color .25s ease, background-color .25s ease;
        }

        .gcfc-footer-social-link:hover {
            transform: translateY(-3px);
            border-color: rgba(184,149,92,.75);
            background: rgba(184,149,92,.09);
            color: #d8ba86;
        }

        .gcfc-footer-social-link svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .gcfc-footer-column-title {
            margin-bottom: 22px;
            color: #fff;
            font-family: "Manrope", sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .gcfc-footer-column-title::after {
            content: "";
            display: block;
            width: 28px;
            height: 1px;
            margin-top: 11px;
            background: var(--gold);
        }

        .gcfc-footer-links {
            display: grid;
            gap: 13px;
            list-style: none;
        }

        .gcfc-footer-links a {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            color: rgba(255,255,255,.58);
            font-size: 12px;
            line-height: 1.45;
            transition: color .25s ease, transform .25s ease;
        }

        .gcfc-footer-links a:hover {
            color: #fff;
            transform: translateX(4px);
        }

        .gcfc-footer-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            padding: 34px 38px;
            border: 1px solid rgba(184,149,92,.24);
            background: linear-gradient(110deg, rgba(184,149,92,.09), rgba(255,255,255,.018));
        }

        .gcfc-footer-cta-copy span {
            display: block;
            margin-bottom: 8px;
            color: var(--gold-light, #d8ba86);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .18em;
            text-transform: uppercase;
        }

        .gcfc-footer-cta-copy strong {
            display: block;
            max-width: 680px;
            font-family: "Manrope", sans-serif;
            font-size: clamp(20px, 2vw, 28px);
            font-weight: 500;
            line-height: 1.3;
        }

        .gcfc-footer-cta-button {
            min-height: 48px;
            padding: 0 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex: 0 0 auto;
            border: 1px solid rgba(215,215,210,.72);
            background: linear-gradient(135deg, #eeeeea, #c9c9c3, #f5f5f1);
            color: #0a0a0a;
            font-size: 12px;
            font-weight: 600;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .gcfc-footer-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 30px rgba(0,0,0,.28);
        }

        .gcfc-footer-legal-note {
            padding: 27px 0;
            border-bottom: 1px solid rgba(255,255,255,.07);
            color: rgba(255,255,255,.42);
            font-size: 10px;
            line-height: 1.7;
        }

        .gcfc-footer-bottom {
            min-height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            color: rgba(255,255,255,.38);
            font-size: 10px;
        }

        .gcfc-footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .gcfc-footer-bottom-links a:hover {
            color: rgba(255,255,255,.8);
        }

        @media (max-width: 1080px) {
            .gcfc-footer-main {
                grid-template-columns: 1.4fr repeat(2, 1fr);
            }
        }

        @media (max-width: 760px) {
            .gcfc-footer-container {
                width: min(calc(100% - 40px), var(--container-width));
            }

            .gcfc-site-footer::before {
                width: calc(100% - 40px);
            }

            .gcfc-footer-main {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 38px 28px;
                padding: 60px 0 46px;
            }

            .gcfc-footer-brand {
                grid-column: 1 / -1;
            }

            .gcfc-footer-cta {
                align-items: flex-start;
                flex-direction: column;
                padding: 28px;
            }

            .gcfc-footer-bottom {
                align-items: flex-start;
                flex-direction: column;
                justify-content: center;
                padding: 22px 0;
            }
        }

        @media (max-width: 480px) {
            .gcfc-footer-main {
                grid-template-columns: 1fr;
            }

            .gcfc-footer-brand {
                grid-column: auto;
            }

            .gcfc-footer-cta-button {
                width: 100%;
            }
        }

/* Destaque automático da página atual */
.site-header[data-current-page="index"] a[href="/"] { opacity: 1; }


/* Ajustes responsivos dos cards de empresas certificadas */
@media (max-width: 768px) {
    .certified-companies {
        padding: 72px 0 64px;
    }

    .certified-companies-heading {
        width: min(calc(100% - 40px), 1180px);
        margin-bottom: 24px;
    }

    .logo-marquee::before,
    .logo-marquee::after {
        width: 54px;
    }

    .company-logo {
        width: 205px;
        height: 96px;
        margin: 0 7px;
        padding: 18px 22px;
    }

    .company-logo img {
        max-width: 160px;
        max-height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-marquee-track {
        animation-play-state: running;
    }
}

/* V10: thumbnails da seção Blog direcionam para a página principal do blog */
.gcfc-blog-featured-thumb {
    position: absolute;
    inset: 0;
    display: block;
    border-radius: inherit;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    z-index: 1;
}

.gcfc-blog-featured-content,
.gcfc-blog-featured-meta {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.gcfc-blog-featured-content a {
    pointer-events: auto;
}

.gcfc-blog-featured-thumb:focus-visible,
.gcfc-blog-thumb:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

/* V12 — organização editorial do destaque e links corretos para artigos */
.gcfc-blog-featured-copy{
    position:relative;
    z-index:3;
    width:min(72%,560px);
    margin-top:auto;
    padding:44px 30px 26px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}
.gcfc-blog-featured-copy h3{margin:0 0 14px;font-family:"Manrope",sans-serif;font-size:clamp(29px,3vw,42px);font-weight:500;line-height:1.08;letter-spacing:-.04em}
.gcfc-blog-featured-copy h3 a{color:inherit;text-decoration:none}
.gcfc-blog-featured-copy>p{max-width:520px;margin:0 0 18px;color:rgba(255,255,255,.78);font-size:15px;line-height:1.45}
.gcfc-blog-read-more{display:inline-flex;align-items:center;gap:10px;margin-top:2px;color:#e0b65e!important;font-size:14px;font-weight:600;text-decoration:none;white-space:nowrap}
.gcfc-blog-read-more span{font-size:20px;transition:transform .25s ease}.gcfc-blog-read-more:hover span{transform:translateX(5px)}
.gcfc-blog-featured-copy .gcfc-blog-featured-meta{padding:0;margin-top:12px;color:rgba(255,255,255,.58);font-size:12px}
.gcfc-blog-card-thumb{display:block;height:112px;overflow:hidden;border:1px solid rgba(184,149,92,.22);border-radius:14px;background:#111;text-decoration:none}
.gcfc-blog-card-thumb img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .45s ease}.gcfc-blog-card:hover .gcfc-blog-card-thumb img{transform:scale(1.06)}
.gcfc-blog-card-copy h3 a{color:inherit;text-decoration:none}.gcfc-blog-card-copy h3 a:hover{color:#e0b65e}
@media(max-width:760px){.gcfc-blog-featured-copy{width:100%;padding:205px 20px 20px}.gcfc-blog-featured-copy h3{font-size:27px}.gcfc-blog-featured-copy>p{font-size:13px}.gcfc-blog-card-thumb{height:78px}}

/* V14 — alinhamento definitivo do card principal do Blog na página inicial */
.gcfc-blog-featured {
    min-height: 520px;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: end;
}

.gcfc-blog-featured-thumb {
    z-index: 0;
}

.gcfc-blog-featured-copy {
    position: relative;
    z-index: 3;
    width: min(68%, 520px);
    margin: 0;
    padding: 42px 40px 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: end;
    justify-items: start;
    gap: 0;
    pointer-events: none;
}

.gcfc-blog-featured-copy::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -70px -120px -30px -50px;
    background: radial-gradient(ellipse at 22% 72%, rgba(0,0,0,.94) 0%, rgba(0,0,0,.82) 42%, rgba(0,0,0,.36) 68%, transparent 82%);
    pointer-events: none;
}

.gcfc-blog-featured-copy .gcfc-blog-category {
    margin: 0 0 13px;
    line-height: 1;
}

.gcfc-blog-featured-copy h3 {
    max-width: 500px;
    margin: 0 0 14px;
    font-size: clamp(30px, 3.25vw, 46px);
    line-height: 1.08;
    text-wrap: balance;
    pointer-events: auto;
}

.gcfc-blog-featured-copy > p {
    max-width: 475px;
    margin: 0 0 20px;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.55;
    text-wrap: pretty;
}

.gcfc-blog-read-more {
    min-height: 38px;
    margin: 0;
    padding: 0 0 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(224,182,94,.45);
    color: #e0b65e !important;
    line-height: 1;
    pointer-events: auto;
}

.gcfc-blog-featured-copy .gcfc-blog-featured-meta {
    width: 100%;
    margin: 14px 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: rgba(255,255,255,.58);
    line-height: 1.3;
    pointer-events: none;
}

.gcfc-blog-featured-copy .gcfc-blog-featured-meta span {
    margin: 0;
    padding: 0;
}

@media (max-width: 900px) {
    .gcfc-blog-featured {
        min-height: 500px;
    }

    .gcfc-blog-featured-copy {
        width: min(78%, 520px);
        padding: 36px 30px 28px;
    }
}

@media (max-width: 760px) {
    .gcfc-blog-featured {
        min-height: 510px;
    }

    .gcfc-blog-featured-image {
        object-position: 68% center;
    }

    .gcfc-blog-featured-copy {
        width: 100%;
        padding: 210px 22px 24px;
    }

    .gcfc-blog-featured-copy::before {
        inset: 80px -20px -20px;
        background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.7) 22%, rgba(0,0,0,.96) 58%, #050505 100%);
    }

    .gcfc-blog-featured-copy h3 {
        max-width: 100%;
        font-size: clamp(27px, 8vw, 35px);
        line-height: 1.08;
    }

    .gcfc-blog-featured-copy > p {
        max-width: 100%;
        margin-bottom: 17px;
        font-size: 14px;
        line-height: 1.5;
    }
}


/* =========================================================
   GCFC V15 — refinamento de vídeo e estabilidade visual
========================================================= */
.hero-video,
.video-left,
.video-right,
.trust-journey-video-card video {
    display: block;
    max-width: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: auto;
}

.video-left,
.video-right,
.trust-journey-video-card {
    contain: layout paint;
}

.trust-journey-video-card video,
.trust-journey-poster {
    transition: opacity .28s ease;
}

.trust-journey-video-card:not(.is-playing) video {
    opacity: 0;
}

.trust-journey-video-card.is-playing video {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .hero-video, .video-left, .video-right {
        animation: none !important;
    }
}

/* ==================================================
   AJUSTE V52 — CONTEÚDO DAS ETAPAS DA JORNADA
   Mantém títulos e descrições dentro da área útil das formas.
================================================== */
@media (min-width: 1021px) {
    .trust-journey-track {
        grid-template-columns:
            minmax(310px, .98fr)
            minmax(310px, .98fr)
            minmax(420px, 1.58fr);
        gap: 22px;
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card {
        min-height: 380px;
        padding: 50px 28% 44px 34px;
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-number {
        margin-bottom: 28px;
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card h3 {
        max-width: none;
        margin-bottom: 16px;
        font-size: clamp(20px, 1.55vw, 24px);
        line-height: 1.12;
        letter-spacing: -.035em;
        white-space: nowrap;
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card h3::after {
        margin-top: 16px;
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card p {
        max-width: 195px;
        font-size: 12.5px;
        line-height: 1.58;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .trust-journey-video-overlay {
        background:
            linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.78) 43%, rgba(0,0,0,.26) 70%, rgba(0,0,0,.08) 100%),
            linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.30));
    }

    .trust-journey-video-copy {
        width: min(54%, 310px);
        padding: 42px 0 38px 34px;
    }

    .trust-journey-video-copy .trust-journey-number {
        margin-bottom: 28px;
    }

    .trust-journey-video-copy h3 {
        margin-bottom: 16px;
        font-size: clamp(23px, 1.8vw, 28px);
        line-height: 1.12;
        white-space: nowrap;
    }

    .trust-journey-video-copy h3::after {
        margin-top: 16px;
    }

    .trust-journey-video-copy p {
        max-width: 248px;
        font-size: 13px;
        line-height: 1.62;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }
}

@media (min-width: 1021px) and (max-width: 1180px) {
    .trust-journey-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .trust-journey-destination {
        grid-column: 1 / -1;
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card {
        padding-right: 36%;
        padding-left: 36px;
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card h3 {
        font-size: 23px;
    }

    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card p {
        max-width: 230px;
        font-size: 12.5px;
    }
}

/* Mobile: a expressão digitada ocupa uma linha estável e exclusiva. */
@media (max-width: 700px) {
    .gcfc-benefits-heading h2 {
        text-wrap: wrap;
    }

    .gcfc-heading-company {
        display: block;
        width: 100%;
        min-width: 0;
        min-height: 1.18em;
        margin-top: 0.08em;
        line-height: 1.1;
        white-space: nowrap;
    }

    .gcfc-heading-typing {
        display: inline-block;
        white-space: nowrap;
    }

    .gcfc-heading-cursor {
        vertical-align: -0.03em;
    }
}

/* V58 — escala proporcional e profundidade sem placa intermediária. */
.gcfc-benefits-visual {
    min-height:590px;
}
.gcfc-benefits-seal,
.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal {
    width:min(100%,315px);
}
.gcfc-benefits-seal::before {
    display:none;
}
.gcfc-benefits-seal img {
    max-height:472px;
}
@media(max-width:1080px){
    .gcfc-benefits-visual{min-height:540px}
    .gcfc-benefits-seal,.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal{width:min(100%,295px)}
    .gcfc-benefits-seal img{max-height:442px}
}
@media(max-width:640px){
    .gcfc-benefits-visual{min-height:475px}
    .gcfc-benefits-seal,.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal{width:min(76vw,270px)}
    .gcfc-benefits-seal img{max-height:405px}
}

/* V57 — garantia de precedência da aplicação física do selo. */
.gcfc-benefits-seal {
    isolation:isolate;
    transform-style:preserve-3d;
    transform:perspective(1500px) rotateY(-13deg) rotateX(2deg) rotateZ(1.2deg);
    filter:drop-shadow(18px 38px 38px rgba(0,0,0,.46));
    transition:transform .8s cubic-bezier(.22,1,.36,1),filter .8s ease;
}
.gcfc-benefits-seal:hover {
    transform:perspective(1500px) rotateY(-5deg) rotateX(0) rotateZ(.2deg) translateY(-10px);
    filter:drop-shadow(22px 46px 44px rgba(0,0,0,.54));
}
.gcfc-benefits-seal img {
    position:relative;
    z-index:2;
    transform:translateZ(12px);
    animation:gcfcPlateFace 5.8s ease-in-out infinite;
}
@media(max-width:640px){.gcfc-benefits-seal{transform:perspective(1100px) rotateY(-8deg) rotateX(1deg) rotateZ(.7deg);filter:drop-shadow(12px 27px 28px rgba(0,0,0,.48))}}
@media(prefers-reduced-motion:reduce){.gcfc-benefits-seal img,.gcfc-benefits-seal::after{animation:none}}

/* V60 — selo proporcional ao bloco de benefícios + profundidade 3D reforçada. */
.gcfc-benefits-visual {
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.gcfc-benefits-seal,
.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal {
    width: min(100%, 430px);
    transform: perspective(1700px) rotateY(-17deg) rotateX(2.5deg) rotateZ(1deg);
    transform-style: preserve-3d;
    filter: drop-shadow(5px 4px 0 rgba(18,18,18,.98))
            drop-shadow(11px 8px 0 rgba(6,6,6,.96))
            drop-shadow(20px 18px 7px rgba(0,0,0,.68))
            drop-shadow(32px 48px 38px rgba(0,0,0,.58));
}
.gcfc-benefits-seal::before { display: none !important; }
.gcfc-benefits-seal img {
    width: 100%;
    height: auto;
    max-height: 645px;
    object-fit: contain;
    transform: translateZ(20px);
    filter: drop-shadow(2px 1px 0 rgba(255,255,255,.08))
            drop-shadow(6px 5px 0 rgba(9,9,9,.92))
            drop-shadow(13px 11px 0 rgba(2,2,2,.82))
            drop-shadow(24px 30px 24px rgba(0,0,0,.56));
}
.gcfc-benefits-seal:hover,
.gcfc-benefits-layout.is-consumers .gcfc-benefits-seal:hover {
    transform: perspective(1700px) rotateY(-8deg) rotateX(.8deg) rotateZ(.2deg) translateY(-10px) scale(1.015);
    filter: drop-shadow(6px 5px 0 rgba(18,18,18,.98))
            drop-shadow(13px 10px 0 rgba(5,5,5,.96))
            drop-shadow(25px 22px 9px rgba(0,0,0,.70))
            drop-shadow(38px 54px 42px rgba(0,0,0,.62));
}
@media (max-width:1080px) {
    .gcfc-benefits-visual { min-height: 610px; }
    .gcfc-benefits-seal,
    .gcfc-benefits-layout.is-consumers .gcfc-benefits-seal { width:min(100%,385px); }
    .gcfc-benefits-seal img { max-height:578px; }
}
@media (max-width:640px) {
    .gcfc-benefits-visual { min-height:510px; }
    .gcfc-benefits-seal,
    .gcfc-benefits-layout.is-consumers .gcfc-benefits-seal {
        width:min(84vw,315px);
        transform:perspective(1100px) rotateY(-9deg) rotateX(1deg) rotateZ(.6deg);
    }
    .gcfc-benefits-seal img { max-height:472px; }
}

/* =========================================================
   GCFC V85 — HERO PHOTO SLIDESHOW
   Duas camadas full-bleed, movimento feito via Web Animations API.
========================================================= */
.hero-photo{
    position:absolute!important;
    inset:0!important;
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
    object-position:center center!important;
    opacity:0;
    transition:opacity 1250ms cubic-bezier(.4,0,.2,1), filter 1250ms cubic-bezier(.4,0,.2,1)!important;
    will-change:opacity,transform!important;
    backface-visibility:hidden;
    transform-origin:center center;
}
.hero-photo.is-active{
    opacity:1;
}
@media (prefers-reduced-motion:reduce){
    .hero-photo{transform:scale(1.03)!important}
}

/* =========================================================
   GCFC V86 — Empresas Certificadas com background fotográfico
   Duas aplicações digitais alternadas atrás do conteúdo.
========================================================= */
.certified-companies{
    position:relative;
    isolation:isolate;
    overflow:hidden;
    background:#050505!important;
}
.certified-bg-stage{
    position:absolute;
    inset:0;
    z-index:0;
    overflow:hidden;
    pointer-events:none;
}
.certified-bg-photo{
    position:absolute;
    inset:-2.5%;
    width:105%;
    height:105%;
    object-fit:cover;
    object-position:center center;
    opacity:0;
    transition:opacity 1500ms cubic-bezier(.4,0,.2,1);
    will-change:opacity,transform;
    transform-origin:center center;
    filter:saturate(.84) brightness(.68) contrast(1.04);
}
.certified-bg-photo.is-active{opacity:1;}
.certified-bg-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background:
        radial-gradient(ellipse at center, rgba(5,5,5,.34) 0%, rgba(5,5,5,.62) 58%, rgba(5,5,5,.90) 100%),
        linear-gradient(180deg, rgba(5,5,5,.48) 0%, rgba(5,5,5,.64) 42%, rgba(5,5,5,.86) 100%);
}
.certified-companies-heading,
.certified-companies .logo-marquee,
.certified-companies .certified-companies-empty{
    position:relative;
    z-index:2;
}
.certified-companies-heading span{
    text-shadow:0 2px 18px rgba(0,0,0,.9);
}
.certified-companies-heading h2{
    text-shadow:0 4px 30px rgba(0,0,0,.82);
}
.certified-companies .logo-marquee::before{
    background:linear-gradient(90deg, rgba(5,5,5,.92) 0%, rgba(5,5,5,0) 100%)!important;
}
.certified-companies .logo-marquee::after{
    background:linear-gradient(270deg, rgba(5,5,5,.92) 0%, rgba(5,5,5,0) 100%)!important;
}
@media (max-width:768px){
    .certified-bg-photo{
        inset:-4%;
        width:108%;
        height:108%;
        object-position:center center;
        filter:saturate(.78) brightness(.56) contrast(1.06);
    }
    .certified-bg-overlay{
        background:linear-gradient(180deg, rgba(5,5,5,.62), rgba(5,5,5,.80));
    }
}
@media (prefers-reduced-motion:reduce){
    .certified-bg-photo{transform:scale(1.03)!important;}
}

/* ==========================================================
   GCFC V97 — jornada visual unificada (desktop e mobile)
   Cards retangulares, triângulos internos e vídeo full-bleed.
   ========================================================== */
@media (min-width:1021px){
    .trust-journey-track{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:20px!important;align-items:stretch!important}
    .trust-journey-step,.trust-journey-destination{min-width:0!important;padding-top:0!important}
    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card,
    .trust-journey-video-card{width:100%!important;min-height:390px!important;height:100%!important;border:1px solid rgba(184,149,92,.30)!important;border-radius:14px!important;clip-path:none!important;filter:none!important;box-shadow:0 24px 54px rgba(0,0,0,.34)!important}
    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card{position:relative!important;padding:42px 36px 38px!important;justify-content:flex-start!important;background:radial-gradient(circle at 12% 4%,rgba(184,149,92,.12),transparent 34%),linear-gradient(145deg,#14130f 0%,#080808 66%,#050505 100%)!important}
    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card::before{content:""!important;position:absolute!important;z-index:0!important;top:0!important;right:0!important;bottom:0!important;left:auto!important;width:42%!important;clip-path:polygon(100% 0,100% 100%,0 50%)!important;background:linear-gradient(145deg,rgba(184,149,92,.16),rgba(184,149,92,.018))!important;pointer-events:none!important}
    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card::after{content:"";position:absolute;z-index:1;right:18px;bottom:18px;width:34px;height:34px;border-right:1px solid rgba(210,171,105,.52);border-bottom:1px solid rgba(210,171,105,.52);pointer-events:none}
    .trust-journey-card>*{position:relative;z-index:2}
    .trust-journey-step:not(.trust-journey-destination) .trust-journey-number,
    .trust-journey-video-copy .trust-journey-number{margin-bottom:62px!important}
    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card h3,
    .trust-journey-video-copy h3{margin-bottom:16px!important;font-size:clamp(24px,2vw,29px)!important;line-height:1.1!important;white-space:normal!important}
    .trust-journey-step:not(.trust-journey-destination) .trust-journey-card p,
    .trust-journey-video-copy p{max-width:270px!important;font-size:13px!important;line-height:1.65!important}
    .trust-journey-video-card video,.trust-journey-poster{object-fit:cover!important;object-position:center center!important;background:#050505!important}
    .trust-journey-video-overlay{background:linear-gradient(180deg,rgba(0,0,0,.28) 0%,rgba(0,0,0,.24) 38%,rgba(0,0,0,.88) 100%),linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.08) 72%)!important}
    .trust-journey-video-overlay::after{content:"";position:absolute;right:0;bottom:0;width:38%;height:46%;clip-path:polygon(100% 0,100% 100%,0 100%);background:linear-gradient(145deg,rgba(184,149,92,.18),rgba(184,149,92,.018))}
    .trust-journey-video-copy{width:100%!important;min-height:390px!important;padding:42px 36px 38px!important;justify-content:flex-start!important}
    .trust-journey-video-copy>p:not(.trust-journey-mobile-note){margin-top:auto!important;padding-right:54px!important}
}

.trust-journey-play{top:auto!important;right:22px!important;bottom:22px!important;left:auto!important;width:46px!important;height:46px!important;border-color:rgba(255,255,255,.48)!important;background:rgba(5,5,5,.64)!important;box-shadow:0 8px 26px rgba(0,0,0,.38)!important;transform:none!important;animation:none!important}
.trust-journey-play::before,.trust-journey-play::after{display:none!important}
.trust-journey-play img{width:15px!important;height:15px!important;animation:none!important}
.trust-journey-play:hover,.trust-journey-play:focus-visible{transform:translateY(-2px) scale(1.04)!important;border-color:rgba(210,171,105,.82)!important;background:rgba(10,8,5,.84)!important}

@media (max-width:700px){
    .trust-journey-video-card,.trust-journey-video-copy{min-height:420px!important}
    .trust-journey-video-card video,.trust-journey-poster{object-fit:cover!important;object-position:center center!important;background:#050505!important}
    .trust-journey-video-overlay{background:linear-gradient(180deg,rgba(0,0,0,.42) 0%,rgba(0,0,0,.12) 38%,rgba(0,0,0,.90) 100%),linear-gradient(90deg,rgba(0,0,0,.52),transparent 76%)!important}
    .trust-journey-video-overlay::after{content:"";position:absolute;right:0;bottom:0;width:44%;height:38%;clip-path:polygon(100% 0,100% 100%,0 100%);background:linear-gradient(145deg,rgba(184,149,92,.17),rgba(184,149,92,.015))}
    .trust-journey-video-copy{width:100%!important;padding:28px 24px 24px!important;justify-content:flex-start!important}
    .trust-journey-video-copy .trust-journey-number{margin-bottom:14px!important}
    .trust-journey-video-copy h3{margin-bottom:12px!important}
    .trust-journey-video-copy>p:not(.trust-journey-mobile-note){max-width:92%!important;margin-top:auto!important;padding-right:34px!important;font-size:12px!important;line-height:1.58!important}
    .trust-journey-video-copy .trust-journey-mobile-note{margin-top:12px!important;padding-right:58px!important}
    .trust-journey-play{right:18px!important;bottom:18px!important;width:42px!important;height:42px!important}
}
