/* Header e footer compartilhados — fonte oficial: index */
:root{
            --black: #050505;
            --white: #ffffff;
            --silver: #d7d7d2;
            --silver-light: #f3f3ef;
            --silver-dark: #969690;
            --gold: #b8955c;
            --container-width: 1180px;
        }

/* 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;
        }

@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%);
            }
        }

@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;
            }
}

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

    to {
        transform: translateX(0);
    }
}

@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);
    }
}

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

@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);
    }
}

@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}
}

@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; }
}

@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);
    }
}

/* ==================================================
           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%;
            }
}

/* Isolamento: estilos das páginas não podem centralizar as colunas do footer. */
body .gcfc-site-footer,
body .gcfc-site-footer .gcfc-footer-container,
body .gcfc-site-footer .gcfc-footer-main,
body .gcfc-site-footer .gcfc-footer-brand,
body .gcfc-site-footer .gcfc-footer-column,
body .gcfc-site-footer .gcfc-footer-column-title,
body .gcfc-site-footer .gcfc-footer-links,
body .gcfc-site-footer .gcfc-footer-links li,
body .gcfc-site-footer .gcfc-footer-links a,
body .gcfc-site-footer .gcfc-footer-description,
body .gcfc-site-footer .gcfc-footer-disclaimer,
body .gcfc-site-footer .gcfc-footer-bottom,
body .gcfc-site-footer .gcfc-footer-bottom-links {
    text-align: left;
}

body .gcfc-site-footer .gcfc-footer-links {
    align-items: flex-start;
}

/* Rodapé: identidade dourada e bloco institucional centralizado. */
body .gcfc-site-footer .gcfc-footer-brand {
    justify-self: center;
    width: 100%;
    text-align: center;
}

body .gcfc-site-footer .gcfc-footer-brand > a {
    display: flex;
    justify-content: center;
    width: 100%;
}

body .gcfc-site-footer .gcfc-footer-logo {
    margin-right: auto;
    margin-left: auto;
}

body .gcfc-site-footer .gcfc-footer-description {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    text-align-last: center;
    text-justify: auto;
    hyphens: none;
    -webkit-hyphens: none;
}

body .gcfc-site-footer .gcfc-footer-socials {
    justify-content: center;
}

body .gcfc-site-footer .gcfc-footer-social-link {
    border-color: rgba(216,186,134,.82);
    background: rgba(184,149,92,.055);
    color: #d8ba86;
}

body .gcfc-site-footer .gcfc-footer-social-link:hover,
body .gcfc-site-footer .gcfc-footer-social-link:focus-visible {
    border-color: #efd59e;
    background: rgba(184,149,92,.14);
    color: #efd59e;
}

/* Desktop: o bloco institucional do rodapé permanece alinhado à esquerda. */
@media (min-width: 761px) {
    body .gcfc-site-footer .gcfc-footer-brand {
        justify-self: start;
        text-align: left;
    }

    body .gcfc-site-footer .gcfc-footer-brand > a {
        justify-content: flex-start;
    }

    body .gcfc-site-footer .gcfc-footer-logo {
        margin-right: 0;
        margin-left: 0;
    }

    body .gcfc-site-footer .gcfc-footer-description {
        margin-right: 0;
        margin-left: 0;
        text-align: left;
        text-align-last: auto;
    }

    body .gcfc-site-footer .gcfc-footer-socials {
        justify-content: flex-start;
    }
}

/* Mobile: duas colunas por linha, sempre dentro das margens do rodapé. */
@media (max-width: 760px) {
    body .gcfc-site-footer .gcfc-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 20px;
    }

    body .gcfc-site-footer .gcfc-footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    body .gcfc-site-footer .gcfc-footer-column {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    body .gcfc-site-footer .gcfc-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 16px;
    }

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

    body .gcfc-site-footer .gcfc-footer-column-title {
        font-size: 11px;
        letter-spacing: .1em;
    }
}

/* A bandeira não pode ser ocultada por regras de spans/SVGs das páginas. */
body .site-header .language-current-flag,
body .site-header .language-option-flag {
    width: 28px !important;
    min-width: 28px !important;
    height: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body .site-header .language-current-flag .flag-svg,
body .site-header .language-option-flag .flag-svg {
    width: 28px !important;
    min-width: 28px !important;
    height: 20px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Cor única para todas as CTAs Solicitar Convite. */
body .gcfc-invite-cta {
    border: 1px solid #dfbf80 !important;
    background: linear-gradient(135deg, #e1c181 0%, #a87935 52%, #e7cb91 100%) !important;
    color: #080808 !important;
    box-shadow: 0 15px 38px rgba(184,149,92,.20) !important;
}

body .gcfc-invite-cta:hover,
body .gcfc-invite-cta:focus-visible {
    border-color: #efd59e !important;
    color: #080808 !important;
    box-shadow: 0 20px 48px rgba(184,149,92,.32) !important;
}

/* Player da home: somente o círculo pulsa; o triângulo permanece estático. */
body .trust-journey-play img {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

/* Home: os dois cards decorativos da CTA final não aparecem no mobile. */
@media (max-width: 820px) {
    body .gcfc-final-cta .gcfc-final-cta-card-left,
    body .gcfc-final-cta .gcfc-final-cta-card-right {
        display: none !important;
    }
}

/* Home: CTA "Entenda como avaliamos" com as dimensões da CTA secundária da hero. */
body .about-certification .about-button {
    width: auto;
    min-width: 205px;
    min-height: 54px;
    padding: 0 25px;
    justify-content: center;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    body .about-certification .about-button {
        width: 100%;
        min-width: 0;
    }
}

/* Home: texto da seção O que é a Certificação GCFC justificado. */
body .about-certification .about-content > p {
    text-align: left;
    text-justify: auto;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
}

/* Home: somente o subtítulo da hero justificado, sem hifenização. */
body .hero .hero-description {
    text-align: left;
    text-align-last: center;
    text-justify: auto;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
}

/* Home: contorno dourado dos vídeos da seção sobre a certificação. */
body .about-certification .video-left,
body .about-certification .video-right {
    box-sizing: border-box;
    border: 1px solid rgba(216,183,125,.78);
    box-shadow:
        0 32px 72px rgba(0,0,0,.45),
        0 0 0 1px rgba(184,149,92,.16),
        0 0 26px rgba(184,149,92,.12);
}

/* No mobile, o empilhamento usa dimensões reais e permanece dentro da margem. */
@media (max-width: 768px) {
    body .about-certification .about-video {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        justify-content: center;
        overflow: hidden;
    }

    body .about-certification .video-stack {
        width: min(100%, 340px);
        max-width: 100%;
        height: clamp(270px, 94vw, 340px);
        margin: 0 auto;
        transform: none;
    }

    body .about-certification .video-left,
    body .about-certification .video-right {
        width: min(72%, 260px);
        height: min(72vw, 260px);
        aspect-ratio: 1 / 1;
        object-fit: cover;
        object-position: center;
        border-radius: 22px;
    }

    body .about-certification .video-left {
        top: 0;
        left: 0;
    }

    body .about-certification .video-right {
        top: clamp(40px, 12vw, 60px);
        left: 28%;
    }
}

/* Home: cards da jornada centralizados nas margens no mobile. */
.trust-journey-mobile-note {
    display: none;
}

@media (max-width: 700px) {
    body .trust-journey .trust-process-container {
        width: calc(100% - 32px) !important;
        max-width: 1180px !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    body .trust-journey .trust-journey-track {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    body .trust-journey .trust-journey-step,
    body .trust-journey .trust-journey-destination,
    body .trust-journey .trust-journey-card,
    body .trust-journey .trust-journey-video-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        box-sizing: border-box !important;
    }

    body .trust-journey .trust-journey-mobile-note {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        margin: 22px 0 0;
        padding: 14px 16px;
        display: block;
        border: 1px solid rgba(216,186,134,.48);
        border-radius: 2px;
        background: linear-gradient(135deg, rgba(184,149,92,.14), rgba(7,7,7,.72));
        color: #d8ba86;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.55;
        letter-spacing: .015em;
        text-align: left;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 10px 28px rgba(0,0,0,.2);
    }

    body .trust-journey .trust-journey-notes {
        display: none !important;
    }
}


/* Menu mobile isolado dos estilos específicos de cada página. */
@media (max-width: 1040px) {
    body .site-header .navbar {
        width: min(calc(100% - 32px), var(--container-width));
        min-height: 76px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
    }

    body .site-header .brand {
        min-width: 0;
        max-width: 220px;
    }

    body .site-header .brand-logo {
        display: block;
        width: 100%;
        max-width: 220px;
        height: auto;
    }

    body .site-header .nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    body .site-header .header-cta {
        display: none !important;
    }

    body .site-header .language-button {
        width: 42px;
        min-width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
    }

    body .site-header .language-current-text,
    body .site-header .language-chevron {
        display: none !important;
    }

    body .site-header .menu-toggle {
        position: relative;
        z-index: 1301;
        width: 42px;
        min-width: 42px;
        height: 42px;
        padding: 0;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,.20);
        background: rgba(0,0,0,.35);
    }

    body .site-header .menu-toggle span {
        display: block;
        width: 19px;
        height: 1px;
        margin: 2.5px 0;
        background: #fff;
    }

    body .site-header .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    body .site-header .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }
    body .site-header .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    body .site-header .nav-menu,
    body .site-header .nav-menu:not(.open) {
        position: fixed;
        top: 76px;
        left: 16px;
        right: 16px;
        z-index: 1300;
        width: auto;
        max-height: calc(100dvh - 92px);
        margin: 0;
        padding: 18px 20px 22px;
        display: none !important;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        overflow-x: hidden;
        overflow-y: auto;
        list-style: none;
        border: 1px solid rgba(255,255,255,.12);
        background: rgba(5,5,5,.985);
        box-shadow: 0 24px 70px rgba(0,0,0,.58);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    body .site-header .nav-menu.open {
        display: flex !important;
    }

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

    body .site-header .nav-menu > li > a,
    body .site-header .nav-dropdown-toggle {
        width: 100%;
        min-height: 48px;
        padding: 12px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(255,255,255,.88);
        font-size: 15px;
        text-align: left;
    }

    body .site-header .nav-dropdown-menu,
    body .site-header .nav-dropdown:hover > .nav-dropdown-menu,
    body .site-header .nav-dropdown:focus-within > .nav-dropdown-menu {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0 0 0 14px;
        display: block;
        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;
        transform: none;
        pointer-events: none;
    }

    body .site-header .nav-dropdown.is-open > .nav-dropdown-menu {
        width: 100% !important;
        height: auto !important;
        max-height: 420px !important;
        padding-top: 4px !important;
        padding-bottom: 8px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
        transform: none !important;
        pointer-events: auto !important;
    }

    body .site-header .nav-dropdown.is-open > .nav-dropdown-menu > li {
        width: 100% !important;
        display: list-item !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    body .site-header .nav-dropdown.is-open > .nav-dropdown-menu > li > a {
        width: 100% !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    body .site-header .nav-dropdown-menu a {
        min-height: 42px;
        padding: 10px 12px;
        font-size: 13px;
        color: rgba(255,255,255,.68);
    }
}

@media (max-width: 480px) {
    body .site-header .navbar { width: calc(100% - 24px); gap: 7px; }
    body .site-header .brand { max-width: min(52vw, 190px); }
    body .site-header .brand-logo { max-width: min(52vw, 190px); }
    body .site-header .language-button,
    body .site-header .menu-toggle { width: 40px; min-width: 40px; height: 40px; }
    body .site-header .nav-menu { left: 12px; right: 12px; padding: 14px 18px 20px; }
}

/* Contenção responsiva universal — evita overflow horizontal em qualquer página. */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@supports (overflow: clip) {
    html,
    body { overflow-x: clip; }
}

body main,
body main section,
body .site-header,
body .gcfc-site-footer {
    max-width: 100%;
}

body main *,
body .site-header *,
body .gcfc-site-footer * {
    box-sizing: border-box;
    min-width: 0;
}

body img,
body video,
body canvas,
body svg,
body iframe,
body embed,
body object {
    max-width: 100%;
}

body img,
body video {
    height: auto;
}

body input,
body select,
body textarea,
body button {
    max-width: 100%;
}

body table {
    max-width: 100%;
}

body pre,
body code {
    max-width: 100%;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

body h1,
body h2,
body h3,
body h4,
body p,
body li,
body a,
body span {
    overflow-wrap: break-word;
}

/*
 * Limites universais de conteúdo.
 * Mantém todas as estruturas editoriais dentro das mesmas margens externas,
 * sem limitar fundos, vídeos de fundo ou grafismos de seção em largura total.
 */
:root {
    --gcfc-page-gutter: 40px;
    --gcfc-page-content: 1180px;
}

body main > .invite-container,
body main > .legal-wrap,
body main > .policy-layout,
body main > section > .container,
body main > section > .hero-inner,
body main > section > .blog-hero-inner,
body main > section > .article-hero-inner,
body main > section > .article-layout,
body main > section > .related-articles-inner,
body main > section > .legal-hero-inner,
body main > section > .policy-hero-inner,
body main > section > .final-cta-inner,
body main > section > .trust-process-container,
body main > section > .gcfc-benefits-container,
body main > section > .gcfc-blog-container,
body main > section > .gcfc-final-cta-container,
body main > section > .certified-companies-heading {
    width: min(calc(100% - (var(--gcfc-page-gutter) * 2)), var(--gcfc-page-content));
    max-width: min(calc(100% - (var(--gcfc-page-gutter) * 2)), var(--gcfc-page-content));
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

/* Flex e grids nunca podem impor uma largura maior que o contêiner. */
body main :where(
    [class*="grid"],
    [class*="layout"],
    [class*="shell"],
    [class*="inner"],
    [class*="content"],
    [class*="card"],
    form,
    fieldset
) {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

body main :where(input, select, textarea) {
    width: 100%;
    min-width: 0;
}

body main :where(table) {
    width: 100%;
    max-width: 100%;
}

body main :where(th, td) {
    overflow-wrap: anywhere;
}

@media (max-width: 760px) {
    :root {
        --gcfc-page-gutter: 18px;
    }

    body main * {
        min-width: 0 !important;
    }

    body main :where(
        [class*="card"],
        [class*="panel"],
        [class*="box"],
        [class*="stage"],
        [class*="visual"],
        img,
        video,
        iframe,
        canvas
    ) {
        max-width: 100% !important;
    }

    body main :where(.hero-actions, .cta-actions, .final-actions) {
        max-width: 100%;
    }

    body main :where(.hero-actions, .cta-actions, .final-actions) > :where(a, button) {
        max-width: 100%;
        white-space: normal;
    }

    body main button {
        white-space: normal;
    }
}

@media (max-width: 380px) {
    :root {
        --gcfc-page-gutter: 14px;
    }
}

/* Como funciona: remove os quadros decorativos e alinha o card à coluna textual. */
body main #criterios .container.criteria-editorial {
    width: min(calc(100% - 80px), 1180px) !important;
    max-width: 1180px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    align-items: start;
}

body main #criterios .criteria-carousel {
    --criteria-stage-height: 430px;
    align-self: start;
    padding-bottom: 30px;
}

body main #criterios .criteria-controls {
    position: absolute !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
    width: auto;
    height: var(--criteria-stage-height);
    margin: 0 !important;
    display: block;
    pointer-events: none;
}

body main #criterios .criteria-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    pointer-events: auto;
    transform: translateY(-50%);
}

body main #criterios #criteriaPrev {
    left: -26px;
}

body main #criterios #criteriaNext {
    right: -26px;
}

body main #criterios .criteria-nav:hover,
body main #criterios .criteria-nav:focus-visible {
    transform: translateY(-50%) scale(1.06);
}

body main #criterios .criteria-nav:active {
    transform: translateY(-50%) scale(.98);
}

body main #criterios .criteria-progress {
    position: absolute;
    right: 72px;
    bottom: -14px;
    left: 72px;
    width: auto;
    pointer-events: none;
}

body main #criterios .criteria-hint {
    display: none !important;
}

/* O palco não muda de dimensão durante a troca de critérios. */
body main #criterios .criterion-slide,
body main #criterios .criterion-slide.active {
    position: absolute !important;
    inset: 0 !important;
}

body main #criterios .criterion-slide {
    transform: translateX(46px);
}

body main #criterios .criterion-slide.active {
    transform: translateX(0);
}

body main #criterios .criterion-slide.exit-left {
    transform: translateX(-42px);
}

/* Numeração uniforme: todos os slides usam o mesmo dourado e brilho. */
body main #criterios .criterion-count strong {
    color: #cca15b !important;
    text-shadow:
        0 0 8px rgba(204,161,91,.48),
        0 0 18px rgba(184,149,92,.28);
}

/* Mesmo halo dourado do slide 02 atrás da numeração em todos os slides. */
body main #criterios .criterion-slide::before {
    background: radial-gradient(
        circle at 82% 16%,
        rgba(204,161,91,.16),
        transparent 34%
    ) !important;
}

/* FAQs: respostas justificadas à esquerda em qualquer largura. */
body main .faq-answer p {
    text-align: left !important;
    text-align-last: left !important;
    text-justify: auto;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
}

/* Somente os subtítulos das heroes recebem justificação. */
body main .gcfc-hero-subtitle {
    text-align: left !important;
    text-justify: auto;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
}

body main .gcfc-hero-subtitle--left {
    text-align-last: left !important;
}

body main .gcfc-hero-subtitle--center {
    text-align-last: center !important;
}

@media (max-width: 760px) {
    body main .gcfc-hero-subtitle {
        text-align-last: center !important;
    }
}

body main #criterios .criteria-stage::before,
body main #criterios .criteria-stage::after {
    content: none !important;
    display: none !important;
}

@media (min-width: 701px) {
    body main #criterios .criteria-carousel {
        width: calc(100% - 86px) !important;
        justify-self: center !important;
    }
}

@media (max-height: 820px) and (min-width: 1041px) {
    body main #criterios .criteria-carousel {
        --criteria-stage-height: 390px;
    }
}

@media (max-width: 1040px) {
    body main #criterios .container.criteria-editorial {
        width: calc(100% - 36px) !important;
    }

    body main #criterios .criteria-carousel {
        --criteria-stage-height: 500px;
    }
}

@media (max-width: 700px) {
    body main #criterios .container.criteria-editorial {
        width: calc(100% - 36px) !important;
    }

    body main #criterios .criteria-carousel {
        --criteria-stage-height: 600px;
        width: 100% !important;
        padding-right: 26px;
        padding-left: 26px;
    }

    body main #criterios .criteria-controls {
        right: 26px;
        left: 26px;
    }

    body main #criterios .criteria-progress {
        right: 58px;
        left: 58px;
    }
}

@media (max-width: 760px) {
    body main [class*="container"],
    body main [class*="-shell"],
    body main [class*="-inner"],
    body main [class*="-wrap"] {
        max-width: 100% !important;
    }

    body main [class$="-grid"],
    body main [class*="-grid "] {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    body main [class*="actions"],
    body main [class*="buttons"],
    body main [class*="button-group"] {
        flex-wrap: wrap;
    }

    body main [class*="actions"] > a,
    body main [class*="actions"] > button,
    body main [class*="buttons"] > a,
    body main [class*="buttons"] > button {
        max-width: 100%;
    }

    body main table {
        width: 100%;
        display: block;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }

    body main input,
    body main select,
    body main textarea {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body main [class*="container"],
    body main [class*="-shell"],
    body main [class*="-inner"],
    body main [class*="-wrap"] {
        max-width: 100% !important;
    }

    body main h1 { font-size: clamp(34px, 11vw, 52px); }
    body main h2 { max-width: 100%; }
}



/* Padrão universal dos accordions de FAQ: cards retangulares GCFC. */
body main .faq-list {
    display: grid !important;
    gap: 14px !important;
    border-top: 0 !important;
}

body main .faq-list .faq-item.faq-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184,149,92,.25) !important;
    border-radius: 2px !important;
    background:
        linear-gradient(135deg, rgba(184,149,92,.045), rgba(255,255,255,.012) 54%, rgba(184,149,92,.018)),
        #080808 !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.025) !important;
    transition: border-color .3s ease, background .3s ease, box-shadow .3s ease, transform .3s ease !important;
}

body main .faq-list .faq-item.faq-item:hover {
    border-color: rgba(184,149,92,.48) !important;
    transform: translateY(-1px);
}

body main .faq-list .faq-item.faq-item.open,
body main .faq-list .faq-item.faq-item:has(.faq-question[aria-expanded="true"]) {
    border-color: rgba(216,186,134,.68) !important;
    background:
        radial-gradient(circle at 92% 0, rgba(184,149,92,.1), transparent 30%),
        linear-gradient(135deg, rgba(184,149,92,.07), rgba(255,255,255,.014)),
        #080808 !important;
    box-shadow: 0 18px 48px rgba(0,0,0,.2), inset 3px 0 0 rgba(184,149,92,.72) !important;
}

body main .faq-list .faq-item .faq-question {
    padding-right: 26px !important;
    padding-left: 26px !important;
}

@media (max-width: 700px) {
    body main .faq-list { gap: 10px !important; }
    body main .faq-list .faq-item .faq-question {
        padding-right: 17px !important;
        padding-left: 17px !important;
    }
}


/* GCFC V15 — camada global de estabilidade para vídeos */
video.gcfc-video-surface {
    display: block;
    background-color: #050505;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    image-rendering: auto;
}
video.gcfc-video-surface::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

/* GCFC V27 — integração discreta do tradutor */
.gcfc-google-translate,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-spinner-pos,
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}
html { top: 0 !important; }
body { top: 0 !important; position: static !important; }
.skiptranslate iframe { visibility: hidden !important; }
