        .premios-carrossel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 40px 2rem;
            width: 100%;
            max-width: 1920px;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior-x: contain;
            position: relative;
            gap: 50px;
            overflow: hidden !important;
        }



        .premio-item {
            flex: 0 0 auto;
            scroll-snap-align: center;
            scroll-snap-stop: always;
            transition: transform 0.3s ease;
            margin-right: 10px;
        }

        .premios-carrossel::-webkit-scrollbar {
            height: 8px;
        }

        .premios-carrossel::-webkit-scrollbar-track {
            background-color: #f0f0f0;
            border-radius: 4px;
        }

        .premios-carrossel::-webkit-scrollbar-thumb {
            background-color: #0073aa;
            border-radius: 4px;
        }

        .premios-carrossel::-webkit-scrollbar-thumb:hover {
            background-color: #00577c;
        }

        .premios-carrossel-container {
            width: 100%;
            max-width: 1440px;
            padding-left: 5.4rem;
            padding-right: 5.4rem;
            align-items: center;
            display: flex;
            justify-content: unset;
            height: 130px;
        }

        .premios-carrossel {
            scrollbar-width: thin;
            scrollbar-color: #0073aa #f0f0f0;
        }

        .premios-header-title {
            display: flex;
            align-items: center;
            flex-direction: row;
            justify-content: center;
            gap: 50px;
        }


        .img-cover {
            width: 652px;
            height: 250px;
        }


        .text-premios {
            max-width: 1440px;
            width: 100%;
            padding-left: 5.4rem;
            padding-right: 5.4rem;
        }

        .text-premios p {
            font-size: 18px;
            color: #012840;
            font-weight: 400;
            width: 50%;
            margin-left: 435px;
            margin-bottom: 2rem;
        }

        .text-premios-h3 {
            font-size: 18px;
            font-weight: 600;
            width: 50%;
            margin-left: 435px;
            margin-top: 4px;
        }

        @media screen and (min-width: 1266px) and (max-width: 1390px) {
            .text-premios p {
                margin-left: 29rem;
            }

            .text-premios-h3 {
                margin-left: 29rem;
            }
        }


        .premios-header {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: start;
        }

        .premios-wrapper {
            overflow: hidden;
            padding: 80px 0px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .premios-track {
            display: flex;
            width: max-content;
            animation: scroll 25s linear infinite;
        }

        .premios-carrossel {
            display: flex;
        }

        .premio-item img {
            height: 125px;
            max-width: 130px;
            object-fit: contain;
            margin-right: 20px;
        }

        .premio-item {
            display: flex;
            align-items: center;
        }

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

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


        .premios-main-container {
            width: 100%;
            background-color: white;
            height: auto;
        }

        .lang-perfil {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: start;
            margin-top: 15px;
            font-weight: bold;
        }

        .perfil-tabs-container {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            background-color: #F7F8F5;
            border: 1px solid #DADADA;
            border-radius: 8px;
            padding: 4px 7px;
            margin-bottom: 12px;
        }

        .perfil-imagem {
            z-index: 500;
        }


        .tab-top-btn {
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 500;
            color: #0B1E2D;
            cursor: pointer;
            padding: 1px 10px;
            border-radius: 6px;
            transition: all 0.2s ease-in-out;
        }

        @media (max-width: 1440px) {
            .tab-top-btn {
                font-size: 14px;
            }
        }

        .tab-top-btn:hover {
            color: #0094E8;
        }

        .tab-top-btn.active {
            background-color: #fff;
            border: 1px solid #DADADA;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
            font-weight: bold;

        }

        .perfil-sobre-container {
            display: flex;
            justify-content: flex-start;
            gap: 40px;
            margin-top: 80px;
            width: 100%;
            max-width: 1440px;
            padding: 48px 5.5em;
            background-color: #F4F3EE;
        }

        .perfil-sobre-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 280px;
        }

        .tab-btn {
            border: none;
            background-color: #00243B;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            border-radius: 10px;
            padding: 16px 20px;
            text-align: left;
            cursor: pointer;
            transition: background 0.2s ease-in-out;
        }

        .tab-btn.active {
            background-color: #00AEEF;
            color: #fff;
            font-weight: bold;
        }

        .tab-btn:hover {
            background-color: #008FCC;
        }

        .perfil-sobre-conteudo {
            flex: 1;
            border-radius: 10px;
            font-size: 16px;
            line-height: 28px;
            color: #222;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.3s ease-in-out;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

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

        @media (max-width: 1300px) {
            .premios-main-container {
                margin-top: 165px;
            }
        }

        @media (max-width: 900px) {
            .perfil-sobre-container {
                flex-direction: column;
            }

            .perfil-sobre-sidebar {
                width: 100%;
                flex-direction: row;
                overflow-x: auto;
                display: flex;
                flex-wrap: wrap;
            }

            .tab-btn {
                flex: 1;
                white-space: nowrap;
            }
        }

        .main-employer {
            display: flex;
            justify-content: center;
            position: relative;
            align-items: center;
            width: 100%;
            flex-direction: column;
            overflow: hidden;
        }

        .employer-header-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #0b1e2d;
            margin: 68px 4.2em 13px 4.2em;
            margin-top: -13px;
        }

        .employer-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 5px 4.2em;
            width: 100%;
            max-width: 1400px;
            display: none;
        }

        .employer-header-h2 {
            font-size: 36px;
            margin: 0;
            color: white;
            font-weight: 600;
            line-height: 46px;
            width: 100%;
            text-align: start;
        }

        .container-employer {
            width: 100%;
            max-width: 1440px;
            padding: 48px 5em;
            padding-top: 45px;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            margin-bottom: -210px;
            background-color: #F4F3EE;
        }

        .perfil-container {
            display: flex;
            gap: 40px;
            align-items: flex-start;
            justify-content: space-around;
            max-width: 1920px;
            margin: 0 auto;
            width: 100%;
        }

        .perfil-conteudo {
            flex: 1;
            text-align: left;
        }

        .perfil-nome {
            font-size: 28px;
            line-height: 38px;
            letter-spacing: -0.5px;
            font-weight: 700;
            color: #0094E8;
            margin-bottom: 6px;
        }

        .perfil-cargo {
            font-size: 18px;
            font-weight: 500;
            color: #333;
            margin-bottom: 16px;
        }

        .legenda-listagem {
            font-size: 18px;
            line-height: 28px;
            font-weight: 600;
            color: #012840;
            margin-bottom: 24px;
        }

        .areas-atuacao {
            margin-top: 65px;
        }

        .titulo-areas {
            font-size: 16px;
            line-height: 26px;
            color: #012840;
            margin-bottom: 12px;
        }

        .tags-areas {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            max-height: calc(2 * 2.2em + 8px);
            overflow: hidden;
        }

        .tag-area {
            background-color: #C3C2BE;
            border-radius: 6px;
            font-size: 15px;
            line-height: 25px;
            font-weight: 500;
            padding: 4px 10px;
            color: #012840;
        }

        .equipe-contatos {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contato-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(116deg, #009EE2 30%, #00F0FD 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease-in-out;
        }

        .contato-icon:hover {
            width: 32px;
            height: 32px;
            background: linear-gradient(116deg, #009EE2 30%, #00F0FD 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease-in-out;
        }

        .word-icon-container {
            width: 32px;
            height: 32px;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .world-icon,
        .linkedin-icon,
        .email-icon,
        .phone-icon {
            background-repeat: no-repeat;
            background-position: center;
            background-size: 90% auto;
            width: 28px;
            height: 28px;
        }

        .linkedin-icon {
            background-image: url('/wp-content/themes/hello-elementor-child-theme/styles/icons/icon-linkedin.svg');
        }

        .email-icon {
            background-image: url('/wp-content/themes/hello-elementor-child-theme/styles/icons/icon-mail.svg');
        }

        .phone-icon {
            background-image: url('/wp-content/themes/hello-elementor-child-theme/styles/icons/icon-phone.svg');
        }

        .world-icon {
            background-image: url('/wp-content/themes/hello-elementor-child-theme/styles/icons/word-icon.svg');
        }

        .noticias-relacionadas {
            max-width: 1440px;
            width: 100%;
            padding: 48px 5.2em;
        }

        .lista-noticias {
            display: flex;
            gap: 23px;
            justify-content: flex-start;
            width: 100%;
            max-width: 1440px;
            flex-wrap: wrap;
        }

        .card-noticia {
            width: 100%;
            height: 618px;
            padding: 20px;
            background: #F8F8F8;
            border-radius: 12px;
            border: solid 1px #EBEBEB;
            transition: 0.2s;
            max-width: 408px;
            position: relative;
        }


        .card-noticia a {
            width: 100%;
        }

        @media (max-width: 1440px) {
            .card-noticia {
                width: 360px;
                height: 580px;
            }
        }

        .card-noticia:hover {
            cursor: pointer;
        }

        .img-noticia {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 12px;
            transition: all 0.3s ease;
            z-index: 101;
            position: relative;

        }

        .contain-img {
            position: relative;
            display: inline-block;
            width: 100%;
            max-width: 366px;
        }

        .contain-img::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(30 106 255 / 33%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1001;
            border-radius: 12px;
        }

        .contain-img:hover::after {
            opacity: 1;
        }



        .titulo-noticia {
            font-size: 18px;
            font-weight: 700;
            margin-top: 3vw;
            color: #0C1A25;
            text-transform: uppercase;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            overflow: hidden;
            text-overflow: ellipsis;

        }

        .resumo-noticia {
            font-size: 16px;
            color: #0C1A25;
            line-height: 1.5;
            margin: 12px 0 20px 0;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .link-noticia {
            font-size: 16px;
            font-weight: 700;
            color: #009EE2;
            text-decoration: none;
            align-self: revert;
            position: absolute;
            bottom: 24px;
            gap: 9px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .link-noticia:hover {
            opacity: 0.7;
        }

        .areas-atuacao-mobile {
            display: none;
        }

        .card-noticia:hover .contain-img::after,
        .card-noticia.hover-img .contain-img::after {
            opacity: 1;
        }

        .perfil-collapses-mobile {
            display: none;
        }

        @media (max-width: 490px) {



            .collapse-content {
                display: none;
                padding: 0.5rem 1rem;
            }

            .collapse-btn {
                width: 100%;
                text-align: left;
                padding: 1rem;
                margin-bottom: 0.5rem;
                align-items: center;
                display: flex;
                background-color: white;
                border: 1px solid #C3CACB;
                border-radius: 10px;
                font-size: 18px;
                font-style: normal;
                font-weight: 600;
                line-height: 28px;
            }

            .collapse-item {}

            .collapse-item.active .collapse-content {
                display: block;
            }

            .collapse-btn svg {
                transition: transform 0.3s ease;
                transform: rotate(180deg);
            }

            .collapse-item.active .collapse-btn svg {
                transform: rotate(0deg);
            }

            .perfil-collapses-mobile {
                display: flex;
                flex-direction: column;
                width: 100%;
                gap: 35px;
                padding-left: 20px;
                padding-right: 20px;
                padding-top: 50px;
                padding-bottom: 50px;
                margin-top: -55px;
                background-color: #F4F3EE;
            }

            .web-info {
                display: none !important;
            }

            .perfil-imagem {
                height: 255px;
                width: 167px;
            }

            .perfil-container {
                gap: 16px;
            }

            .equipe-contatos {
                margin-top: 5px !important;
            }

            .perfil-nome {
                font-size: 16px;
                font-weight: 700;
                line-height: 26px;
                letter-spacing: -0.08px;
            }

            .legenda-listagem {
                font-size: 15px;
                font-weight: 600;
                line-height: 25px;
                letter-spacing: -0.075px;
            }

            .lang-perfil {
                font-size: 12px;
                font-weight: 600;
                line-height: 25px;
                letter-spacing: -0.075px;
            }

            .premios-main-container {
                margin-top: 0px;
            }

            .premios-carrossel-container {
                width: 100%;
                max-width: 1440px;
                padding-left: 0rem;
                padding-right: 0rem;
            }

            #premio-destaque {
                max-width: 100vw;
            }

            .tags-areas {
                max-height: max-content;
                overflow: hidden;
                height: auto;
            }


            .tag-area {
                height: auto;
            }

            .areas-atuacao {
                display: none;
            }

            .areas-atuacao-mobile {
                display: flex;
                flex-direction: column;
                padding: 20px;
                gap: 1px;
                flex-wrap: revert-layer;
                background-color: #F4F3EE;
            }

            .perfil-conteudo {
                position: relative;
            }


            .container-employer {
                padding: 20px;
                padding-bottom: 248px;
            }

            .perfil-imagem img {
                width: 165px !important;
                height: 255px !important;
            }


            .text-premios {
                padding-left: 20px !important;
                padding-right: 20px !important;
            }


            .img-cover {
                width: 285px;
                height: 180px
            }

            .premios-header-title {
                flex-direction: column-reverse !important;
            }

            .text-premios-h3 {
                text-align: center !important;
            }

            .text-premios p {
                width: 100% !important;
                margin-left: 0px !important;
                text-align: center !important;
                height: max-content;
            }

            .perfil-tabs-container {
                gap: 0px !important;
                padding: 0px !important;
                justify-content: start !important;
            }

            .perfil-sobre-container {
                padding: 20px !important;
            }

            .noticias-relacionadas {
                padding: 20px !important;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .lista-noticias {
                flex-direction: column;
            }


        }

        @media (min-width: 480px) and (max-width: 767px) {

            .lista-noticias {
                flex-direction: column;
                padding-right: 0px;
                padding-left: 0px;
            }

            .ribbon,
            .bg-video,
            .ribbon-container,
            .ribbon-container::after {
                height: 30vh;
            }

            .perfil-container {
                flex-wrap: wrap;
            }

            .perfil-imagem img {
                width: 100% !important;
            }
        }