:root {
    --azul-normal: #1c2b68;
    --cinza-escuro: #303030;
    --azul-active: #0975de;
    --azul-escuro: #15204e;
    --light-1: #FFF;
}

body {
    overflow-x: hidden;
}

@font-face {
    font-family: 'Work Sans Light';
    src: url('../../fonts/Work_Sans/WorkSans-Light.ttf') format('truetype');
}

.work-sans-light {
    font-family: "Work Sans Light", sans-serif;
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans Regular';
    src: url('../../fonts/Work_Sans/WorkSans-Regular.ttf') format('truetype');
}

.work-sans-regular {
    font-family: "Work Sans Regular", sans-serif;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans Medium';
    src: url('../../fonts/Work_Sans/WorkSans-Medium.ttf') format('truetype');
}

.work-sans-medium {
    font-family: "Work Sans Medium", sans-serif;
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans SemiBold';
    src: url('../../fonts/Work_Sans/WorkSans-SemiBold.ttf') format('truetype');
}

.work-sans-semibold {
    font-family: "Work Sans SemiBold", sans-serif;
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans Bold';
    src: url('../../fonts/Work_Sans/WorkSans-Bold.ttf') format('truetype');
}

.work-sans-bold {
    font-family: "Work Sans Bold", sans-serif;
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans ExtraBold';
    src: url('../../fonts/Work_Sans/WorkSans-ExtraBold.ttf') format('truetype');
}

.work-sans-extrabold {
    font-family: "Work Sans ExtraBold", sans-serif;
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans Black';
    src: url('../../fonts/Work_Sans/WorkSans-Black.ttf') format('truetype');
}

.work-sans-black {
    font-family: "Work Sans Black", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.heading-1 {
    font-size: 2.2rem;
    line-height: 3rem;
}

.heading-2 {
    font-size: 1.8rem;
    line-height: 2.1rem;
}

.heading-3 {
    font-size: 1.6em;
    line-height: 2.1rem;
}

.heading-4 {
    font-size: 1.1rem;
    line-height: 1.4rem;
}

.paragraph-1 {
    font-size: 16px;
    line-height: 24px;
}

.paragraph-2 {
    font-size: 15px;
    line-height: 22.5px;
}

.paragraph-3 {
    font-size: 14px;
    line-height: 21px;
}


* {
    font-family: 'Work Sans Regular', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* CORES PARA O BACKGROUND */
.bg-azul-normal {
    background-color: var(--azul-normal) !important;
}

.bg-cinza-escuro {
    background-color: var(--cinza-escuro) !important;
}

.bg-azul-active {
    background-color: var(--azul-active) !important;
}

.bg-azul-escuro {
    background-color: var(--azul-escuro) !important;
}

.bg-light-1 {
    background-color: var(--light-1) !important;
}

/* CORES PARA O TEXTO */
.txt-azul-normal {
    color: var(--azul-normal) !important;
}

.txt-cinza-escuro {
    color: var(--cinza-escuro) !important;
}

.txt-azul-active {
    color: var(--azul-active) !important;
}

.txt-azul-escuro {
    color: var(--azul-escuro) !important;
}

.txt-light-1 {
    color: var(--light-1) !important;
}

/* COR DA BORDA */
.bc-dark-4 {
    border-color: var(--dark-4) !important;
}


.d-flex-column {
    display: flex;
    flex-direction: column;
}

.txt-right {
    text-align: right;
}

.txt-encurtado {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-padding {
    padding: 80px 10px;
}

.btn {
    padding: 10px 25px;
    font-size: 15px;
    color: var(--light-1);
    background: var(--azul-escuro);
}

.btn:hover {
    color: var(--light-1);
    background: var(--azul-normal);
}

.overlay-light {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.overlay-dark {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

/* INICIO DA SECCAO TOPBAR */
#topbar {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#topbar .d-flex {
    gap: 15px;
    justify-content: end;
}

#topbar p {
    font-size: 14px;
    margin: 0;
}

#topbar .container .row .col-6 p {
    display: flex;
    align-items: center;
    gap: 7px;
}

#topbar .container .row .col-6 p a {
    text-decoration: none;
    color: var(--light-1) !important;
}

/* Imagem do cabecalho */
.navbar-brand img {
    width: 90px !important;
}

/* FIM DA SECCAO TOPBAR */

/* INICIO DA ANIMAÇÃO ANTES DO CARREGAMENTO COMPLETO DO SITE */

/* Preloader container */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(238, 243, 255);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

/* Loader animation */
#preloader .loader {
    border: 1px solid #92c7ff;
    border-top: 1px solid var(--cinza-escuro);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* FIM DA ANIMAÇÃO ANTES DO CARREGAMENTO COMPLETO DO SITE */

/* INICIO DA SECCAO FOOTER */

#footer .container .row .logo-container {
    background-color: var(--light-1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

#footer .container .row .social {
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer .container .row .social div {
    width: 30px;
    height: 30px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .container .row .social div a i {
    font-size: 1.4rem;
    color: var(--light-1);
    transition: .3s;
}

#footer .container .row .social div a i:hover {
    color: var(--azul-active);
}

#footer .container>.row .d-flex-column {
    gap: 7px;
}

#footer .container>.row .d-flex-column .links a {
    text-decoration: none;
    color: var(--light-1);
    transition: .3s;
}

#footer .container>.row .d-flex-column .links a:hover {
    color: var(--azul-active);
}

/* FIM DA SECCAO FOOTER */

/* PAGINA HOME */

/* INICIO DE TEXTO ANIMADO */

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

#typing-text {
    border-right: 3px solid var(--azul-escuro);
    /* Cursor piscando */
    white-space: nowrap;
    overflow: hidden;
    animation: blink 0.8s infinite step-end;
}

.bradcrumb {
    background: url('../../uploads/img/banner-textura.jpg') no-repeat center center/cover;
}

/* FIM DE TEXTO ANIMADO */

/* INICIO DA SECCAO BANNER PRINCIPAL */

#banner-principal {
    background: url('../../uploads/img/banner-textura.jpg') no-repeat center center/cover;
}

#banner-principal .container .buttons {
    width: 100%;
    max-width: 450px;
    display: flex;
    gap: 15px;
}

#banner-principal .container .banner-content {
    max-width: 450px;
}

#banner-principal .container .buttons .btn-2 {
    background: none;
    border: 1px solid var(--azul-normal);
    color: var(--azul-normal);
}

#banner-principal .container .buttons .btn-2:hover {
    background: var(--azul-escuro);
    color: var(--light-1);
}

#banner-principal .container .banner-img-container {
    background: url('../../uploads/img/banner-traducao-de-documentos.jpg') no-repeat center center/cover;
    max-width: 460px;
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

#banner-principal .container .banner-flags-container {
    max-width: 460px;
    width: 100%;
    height: 100px;
    padding: 10px;
}

/* FIM DA SECCAO BANNER PRINCIPAL */


/* INICIO DE SLIDER DE BANDEIRAS */
.slider {
    width: 100%;
    height: var(--height);
    height: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            transparent,
            #000 10% 90%,
            transparent);
}

.slider .list {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    height: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.slider .list .item {
    width: 130px !important;
    height: 100%;
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc((10s / var(--quantity)) * (var(--position) - 1) - 10s) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider .list .item img {
    border-radius: 1px;
    height: 60px !important;
    display: inline-block;
}

@keyframes autoRun {
    from {
        left: 100%;
    }

    to {
        left: calc(var(--width) * -2);
    }
}

.slider:hover .item {
    animation-play-state: paused !important;
    filter: grayscale(1);
}

.slider .item:hover {
    filter: grayscale(0);
}

.slider[reverse="true"] .item {
    animation: reversePlay 10s linear infinite;
}

/* FIM DE SLIDER DE BANDEIRAS */

/* INICIO DA SECCAO EQUIPAMENTOS */



/* FIM DA SECCAO EQUIPAMENTOS */

/* INICIO DA SECCAO SERVICOS DE TENDENCIAS */


/* FIM DA SECCAO SERVICOS DE TENDENCIAS */

/* INICIO DA SECCAO BENEFÍCIOS */


/* FIM DA SECCAO BENEFÍCIOS */

/* INICION DA SECCAO ATENDIMENTO */

#atendimento {
    background: url('../../uploads/img/call-center.jpg') no-repeat center center/cover;
}

/* FIM DA SECCAO ATENDIMENTO */
/* FIM DA PAGINA HOME */

/* INICIO DA PAGINA SOBRE */

/* INICIO DA SECCAO BANNER PRINCIPAL */

#banner-sobre .container .col-lg-6 h1 {
    line-height: 1.3em;
}

#banner-sobre .container .social {
    width: 100%;
    max-width: 400px;
    display: flex;
    gap: 15px;
}

#banner-sobre .container .social div i {
    font-size: 20px;
    color: var(--azul-normal);
    transition: .3s;
}

#banner-sobre .container .social div i:hover {
    color: var(--azul-active);
}

#banner-sobre .container .banner-img-container {
    background: url('../../uploads/img/certificado-tximoly.jpg') no-repeat center center/cover;
    max-width: 330px;
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

#banner-sobre .container .company-location {
    max-width: 460px;
    width: 100%;
    padding: 10px;
}

#banner-sobre .container .company-location p {
    margin-bottom: 0;
}

#banner-sobre .container .social {
    align-self: start;
}


/* FIM DA PAGINA SOBRE */


/* INICIO DA PAGINA DE SERVICOS */


#servicos .nav-tabs .nav-item.show .nav-link, #servicos .nav-tabs .nav-link.active {
    color: var(--azul-active);
    border-color: var(--azul-active);
}

#servicos .nav-link {
    color: var(--cinza-escuro);
}

#servicos .nav-tabs {
    --bs-nav-tabs-border-color: var(--azul-active);
}

#servicos .card img {
    width: 100%;
    height: 100%;
}

/* FIM DA PAGINA DE SERVICOS */



/* INICIO DA PAGINA BLOG */

#latest-post .latest-post {
    height: 500px;
}

/* FIM DA PAGINA BLOG */

/* INICIO DA PAGINA CONTACTOS */

#mapa {
    height: 500px;
}

/* FIM DA PAGINA CONTACTOS */

/* INICIO DA PAGINA DE PERGUNTAS E RESPOSTAS */

.accordion-item button {
    font-weight: 600;
}

/* FIM DA PAGINA DE PERGUNTAS E RESPOSTAS */