/* Fonts */
/*:root {*/
/*    --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";*/
/*    --font-primary: "Montserrat", sans-serif;*/
/*    --font-secondary: "Poppins", sans-serif;*/
/*}*/

/* Classes Gerais --------------------------------------------------------------------------------------------------- */
.background-overlay { background-color: rgba(0, 0, 0, 0.2); }

/*
.linha-horizontal {
    width: 88%;
    height: 3px;
    background: #D97B29;
    border: none;
} */

.modal-content {
    color: var(--color-text);
    background-color: var(--color-text-alternative);
    border: 1px solid var(--brand-primary);
}

.modal .modal-dialog .modal-content .modal-header .btn-close i {
    font-size: 24px;
    color: #FFF;
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
}

.section-title h2 {
    font-weight: 500;
    position: relative;
}

.section-title h2:before { margin: 0 15px 10px 0; }

.section-title h2:before, .section-title h2:after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: var(--brand-primary);
    display: inline-block;
}

.section-title h2:after { margin: 0 0 10px 15px; }

section { scroll-margin-top: 70px; }


/* Header */
.header > div { width: 100%; }

.header .logo h1 { line-height: 1; }

.header .logo h1 {
    font-size: 30px;
    color: #FFF !important;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--brand-primary);
}

.header .logo a { color: #FFF; }

.header .logo img {
    max-height: 68px;
    margin-right: 6px;
}


/* Desktop Navigation */
@media (min-width: 1280px) {
    nav > ul > li > #theme-toggle { margin-right: 15px; }

    .navbar ul {
        display: flex;
        align-items: center;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 11px 10px 11px;
        font-weight: 600;
        color: #FFF;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px 0 10px 15px;
    }

    .navbar a i,
    .navbar a:focus i {
        line-height: 0;
        margin-left: 5px;
        font-size: 22px;
    }

    /*.navbar>ul>li>a:before {*/
    /*    content: "";*/
    /*    position: absolute;*/
    /*    width: 100%;*/
    /*    height: 2px;*/
    /*    bottom: 4px;*/
    /*    left: 0;*/
    /*    background-color: #FFF;*/
    /*    visibility: hidden;*/
    /*    transition: all 0.3s ease-in-out 0s;*/
    /*}*/

    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
        visibility: visible;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a { color: var(--brand-secondary); }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        right: -10px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background-color: var(--brand-primary);
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
        list-style: none;
    }

    .navbar .dropdown ul li {
        min-width: 200px;
        list-style: none;
    }

    .navbar .dropdown ul li::marker {
        content: none;
        display: none;
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        text-transform: none;
        font-weight: 600;
        color: var(--color-text-alternative);
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a { color: var(--brand-secondary); }

    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul { left: -90%; }

    .navbar .dropdown .dropdown:hover>ul { left: -100%; }
}

@media (min-width: 1280px) {
    .mobile-nav-show,
    .mobile-nav-hide { display: none; }
}


/* Mobile Navigation */
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        /*background-color: var(--brand-primary);*/
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-weight: 600;
        color: #FFF;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a { color: #FFF; }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        background: var(--brand-primary);
        padding: 8px 20px;
        border-radius: 4px;
        margin: 15px;
        color: #fff;
    }

    .navbar .getstarted:hover,
    .navbar .getstarted:focus:hover {
        color: #fff;
        background: var(--brand-primary);
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        list-style: none;
        /*background-color: var(--brand-primary);*/
        /*border: 1px solid var(--brand-primary);*/
    }

    .navbar .dropdown ul li,
    .navbar .dropdown .dropdown ul li {
        list-style: none;
    }

    .navbar .dropdown ul li::marker,
    .navbar .dropdown .dropdown ul li::marker {
        content: none;
        display: none;
    }

    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active { display: block; }

    .mobile-nav-show {
        color: #FFF;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin-right: 10px;
    }

    .mobile-nav-hide {
        color: #FFF;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active { overflow: hidden; }

    .mobile-nav-active .navbar { right: 0; }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background-color: var(--brand-primary);
        z-index: 9996;
    }
}


/*!* Registrations *!*/
/*#login {}*/

/*#register .register-logo,*/
/*#login .login-logo {*/
/*    width: 100px;*/
/*}*/

/*#register .button-register,*/
/*#login .button-login {*/
/*    color: #FFF;*/
/*    background-color: var(--brand-primary);*/
/*}*/


/*#register .btn-custom-radio {*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    background-color: var(--color-quinary);*/
/*    border: 2px solid transparent;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*#register .btn-custom-radio i {*/
/*    font-size: 24px;*/
/*}*/

/*#register .btn-check:checked + .btn-custom-radio {*/
/*    border-color: var(--brand-primary);*/
/*    background-color: var(--brand-primary-transparent-50);*/
/*}*/

/*#register .btn-custom-radio:hover {*/
/*    border-color: var(--brand-primary);*/
/*    background-color: var(--brand-primary-transparent-50);*/
/*}*/

/*#register .btn-check {*/
/*    position: absolute;*/
/*    clip: rect(0, 0, 0, 0);*/
/*    !* Ao usar a técnica de "clipping" com clip: rect(0, 0, 0, 0);, o elemento ainda existe no DOM, mesmo que esteja*/
/*    visualmente escondido, e ainda pode ser acessado por usuários que utilizam a tecla "Tab" para navegação e por*/
/*    leitores de tela, mantendo assim a acessibilidade e permitindo interação. *!*/
/*}*/

/*#register .btn-custom-text {}*/










/* Banner */
.banner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 50vh;
    margin-top: 60px;
    padding: 20px 0 60px 0;
    color: #FFF;
    /*background-color: var(--brand-primary);*/
}

.banner h1 {
    margin: 0 0 10px 0;
    font-weight: 700;
    color: var(--brand-primary);
}

.banner h1 span { color: var(--brand-secondary); }

.banner p {
    color: color-mix(in srgb, var(--brand-primary), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.banner .btn-get-started {
    color: #FFF;
    background-color: var(--brand-secondary);
    /*font-family: var(--heading-font);*/
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 0.75rem;
    transition: 0.5s;
}
.banner .btn-get-started:hover {
    transform: translateY(-10px);
    color: #FFF;
    background-color: color-mix(in srgb, var(--brand-secondary), transparent 15%);
}

/* Header - Dark Mode */
/*html.dark-mode .banner .btn-get-started {*/
/*    color: #FFF;*/
/*    background-color: var(--brand-secondary);*/
/*}*/

/*html.dark-mode .banner .btn-get-started:hover {*/
/*    transform: translateY(-10px);*/
/*    color: #FFF;*/
/*    background-color: color-mix(in srgb, var(--brand-secondary), transparent 15%);*/
/*}*/

.banner .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--brand-primary);
    font-weight: 500;
}

.banner .btn-watch-video i {
    color: var(--brand-primary);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.banner .btn-watch-video:hover {
    color: var(--brand-primary);
    transform: translateY(-10px);
}

/*.banner .btn-watch-video:hover i {*/
/*    transform: translateY(-10px);*/
/*}*/

.banner .animated {
    /*margin-bottom: 60px;*/
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 992px) {
    .banner .animated {
        max-width: 45%;
    }
}

@media (max-width: 991px) {
    .banner .animated {
        max-width: 60%;
    }
}

@media (max-width: 575px) {
    .banner .animated {
        max-width: 80%;
    }
}

@media (max-width: 640px) {
    .banner h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .banner p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .banner .btn-get-started,
    .banner .btn-watch-video {
        font-size: 13px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}


/* Sobre-nós */
.call-to-action {
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary), var(--brand-secondary) 3%) 0%, var(--brand-primary) 100%);
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px 0;
}

html.dark-mode .call-to-action { background: var(--dash-text-alternative); }

.call-to-action::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: color-mix(in srgb, var(--brand-secondary), transparent 96%);
    transform: rotate(-15deg);
    z-index: 1;
}

.call-to-action .container {
    position: relative;
    z-index: 2;
}

.call-to-action .image-wrapper { position: relative; }

.call-to-action .image-wrapper .main-image {
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px color-mix(in srgb, #FFF, transparent 85%);
    transition: transform 0.3s ease;
}

.call-to-action .image-wrapper .main-image:hover { transform: translateY(-10px); }

.call-to-action .image-wrapper .floating-card {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    background-color: var(--brand-secondary);
    color: #FFF;
    padding: 30px;
    border-radius: 0.75rem;
    max-width: 280px;
    box-shadow: 0 15px 35px color-mix(in srgb, var(--brand-secondary), transparent 70%);
    z-index: 3;
}

.call-to-action .image-wrapper .floating-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
}

.call-to-action .image-wrapper .floating-card h4 {
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.call-to-action .image-wrapper .floating-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

@media (max-width: 991px) {
    .call-to-action .image-wrapper .floating-card {
        right: auto;
        left: 20px;
        transform: translateY(-30%);
        max-width: 260px;
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .call-to-action .image-wrapper .floating-card {
        left: 10px;
        max-width: 240px;
        padding: 20px;
    }

    .call-to-action .image-wrapper .floating-card h4 { font-size: 1rem; }

    .call-to-action .image-wrapper .floating-card p { font-size: 0.85rem; }
}

.call-to-action .content-area { padding-left: 0; }

.call-to-action .content-area h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFF;
}

@media (max-width: 768px) {
    .call-to-action .content-area h2 { font-size: 2rem; }
}

@media (max-width: 576px) {
    .call-to-action .content-area h2 { font-size: 1.75rem; }
}

.call-to-action .content-area>p {
    font-size: 1.1rem;
    color: color-mix(in srgb, #FFF, transparent 20%);
    margin-bottom: 30px;
    line-height: 1.6;
}

.call-to-action .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.call-to-action .feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.call-to-action .feature-list li:last-child { margin-bottom: 0; }

.call-to-action .feature-list li i {
    color: var(--brand-secondary);
    font-size: 1.25rem;
    margin-right: 12px;
    margin-top: 2px;
    background: color-mix(in srgb, var(--brand-secondary), transparent 90%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.call-to-action .feature-list li span {
    font-size: 1rem;
    line-height: 1.5;
    color: #FFF;
}

.call-to-action .cta-wrapper { margin-top: 35px; }

@media (max-width: 991px) {
    .call-to-action .content-area { margin-top: 50px; }
}

@media (max-width: 576px) {
    .call-to-action { padding: 40px 0; }

    .call-to-action .image-wrapper .floating-card {
        position: relative;
        right: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}


/* Estatísticas */
.estatisticas {
    background-color: var(--light-background);
    padding: 30px 0;
}

.estatisticas .numeros span {
    font-size: 48px;
    display: block;
    color: var(--brand-primary);
    font-weight: 700;
}

.estatisticas .numeros p {
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: 600;
}


/* Vagas */
.vagas {  }


/* Filtro de Vagas */
.hero { padding-bottom: 50px; }

.hero.hero-normal { padding-bottom: 30px; }

.hero.hero-normal .hero__categories { position: relative; }

.hero.hero-normal .hero__categories ul {
	display: none;
	position: absolute;
	left: 0;
	top: 46px;
	width: 100%;
	z-index: 9;
	background-color: #ffffff;
}

.hero.hero-normal .hero__search { margin-bottom: 0; }

.hero__categories__all {
	position: relative;
	padding: 10px;
	background-color: var(--brand-primary);
    border-radius: 0.75rem;
    box-shadow: 0 0 30px var(--dash-box-shadow);
	cursor: pointer;
}

.hero__categories__all { transition: transform 0.3s ease-in-out; }

.filtro_todos_campos { transition: transform 0.4s ease-in-out; }

/* Hover direto na div */
.hero__categories__all:hover { transform: translateY(-10px); }

/* Hover direto na lista */
.filtro_todos_campos:hover { transform: translateY(-10px); }

/* Quando passar o mouse na DIV, a UL também sobe */
.hero__categories__all:hover + .filtro_todos_campos { transform: translateY(-10px); }

/* Quando passar o mouse na UL, a DIV também sobe */
.hero__categories__all:has(+ .filtro_todos_campos:hover) { transform: translateY(-10px); }

html.dark-mode .hero__categories__all {
    background-color: var(--dash-text-alternative);
    border: 1px solid #FFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

html.dark-mode .hero__categories__all:hover {
    border-color: var(--brand-secondary);
}

html.dark-mode .hero__categories__all:hover i,
html.dark-mode .hero__categories__all:hover span,
html.dark-mode .hero__categories__all:hover svg {
    color: var(--brand-secondary);
    fill: var(--brand-secondary);
    stroke: var(--brand-secondary);
    transition: color .18s ease, fill .18s ease, stroke .18s ease;
}

.hero__categories__all i {
	color: #FFF;
	margin-right: 10px;
}

.hero__categories__all span {
	font-weight: 700;
	color: #FFF;
}

.hero__categories ul {
	padding: 20px;
    background-color: var(--dash-text-alternative);
	border: 1px solid var(--brand-primary);
    border-radius: 0.75rem;
    box-shadow: 0 0 30px var(--dash-box-shadow);
}

html.dark-mode .hero__categories ul {
    border: 1px solid #FFF;
    box-shadow: 0px 0 30px rgba(255, 255, 255, 0.1);
}

.hero__categories #filtro-todas-profissoes-lista {
    height: 400px;
    overflow-y: scroll;
}

.hero__categories ul li { list-style: none; }

.hero__search { overflow: hidden; }

.hero__search__form {
	height: 50px;
    border-radius: 0.75rem;
	/*border: 1px solid var(--brand-primary);*/
	position: relative;
	float: left;
}

/*html.dark-mode .hero__search__form { border: 1px solid #FFF; }*/

.hero__search__form form { border-radius: 0.75rem; }

.hero__search__form form .hero__search__categories {
	width: 30%;
	height: 100%;
	float: left;
	color: #FFF;
    background-color: var(--brand-primary);
	font-weight: 700;
	position: relative;
    border: 1px solid var(--brand-primary);
    /*border-left: 1px solid var(--brand-primary);*/
    /*border-top: 1px solid var(--brand-primary);*/
    /*border-right: 1px solid var(--brand-primary);*/
    /*border-bottom: 1px solid var(--brand-primary);*/
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;

    /* .btn */
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -moz-user-select: none;
    user-select: none;
    padding: 0.375rem 0.75rem;
}

html.dark-mode .hero__search__form form .hero__search__categories {
    border: 1px solid #FFF;
    background-color: var(--dash-text-alternative);
}

html.dark-mode .hero__search__form form .hero__search__categories:hover {
    color: var(--brand-secondary);
    border-left: 1px solid var(--brand-secondary);
    border-top: 1px solid var(--brand-secondary);
    border-right: 1px solid var(--brand-secondary);
    border-bottom: 1px solid var(--brand-secondary);
}


/* .hero__search__form form .hero__search__categories:after {
	position: absolute;
	right: 0;
	top: 14px;
	height: 20px;
	width: 1px;
	background: #000000;
	opacity: 0.1;
	content: "";
} */

.hero__search__form form input,
.hero__search__form form input:focus {
    width: 70%;
    border-top: 1px solid var(--brand-primary);
    border-bottom: 1px solid var(--brand-primary);
    border-radius: 0;
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
    height: 100%;
}

html.dark-mode .hero__search__form form input {
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
}

html.dark-mode .hero__search__form form input.form-control { background-color: var(--dash-text-alternative) !important; }

html.dark-mode .hero__search__form form input:hover {
    border-top: 1px solid var(--brand-secondary);
    border-bottom: 1px solid var(--brand-secondary);
}

.hero__search__form form button {
	position: absolute;
	right: 0;
	top: 0;
	height: 50px;
    border: 1px solid var(--brand-primary);
    /*border-left: 1px solid var(--brand-primary);*/
    /*border-top: 1px solid var(--brand-primary);*/
    /*border-right: 1px solid var(--brand-primary);*/
    /*border-bottom: 1px solid var(--brand-primary);*/
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

html.dark-mode .hero__search__form form button {
    border: 1px solid #FFF;
    background-color: var(--dash-text-alternative);
}

html.dark-mode .hero__search__form form button:hover {
    color: var(--brand-secondary);
    border: 1px solid var(--brand-secondary);
}

.hero__item {
	display: flex;
	align-items: center;
}

.hero__item .list-vagas .row .col .card,
.hero__item .list-vagas .row .col-md-4 .card,
.hero__item .list-vagas .row .col-md-6 .card,
.hero__item .list-vagas .row .col-md-12 .card {
    border: 1px solid var(--brand-primary);
}

.hero__item .list-vagas .row .col .card:hover {
    transition: transform 0.3s ease-in-out;
    transform: translateY(-10px);
}

html.dark-mode .hero__item .list-vagas .row .col .card,
html.dark-mode .hero__item .list-vagas .row .col-md-4 .card,
html.dark-mode .hero__item .list-vagas .row .col-md-6 .card,
html.dark-mode .hero__item .list-vagas .row .col-md-12 .card {
    border: 1px solid #FFF;
}

.hero__item .list-vagas .row .col .card hr { color: var(--brand-primary); }

html.dark-mode .hero__item .list-vagas .row .col .card hr { color: var(--brand-secondary); }

.hero__item .list-vagas .row .col .card .card-header { color: var(--dash-text); }

.hero__item .list-vagas .row .col .card .card-header small i,
.hero__item .list-vagas .row .col-md-4 .card .card-header small i,
.hero__item .list-vagas .row .col-md-6 .card .card-header small i,
.hero__item .list-vagas .row .col-md-12 .card .card-header small i { color: var(--brand-primary); }


html.dark-mode .hero__item .list-vagas .row .col .card .card-header small i,
html.dark-mode .hero__item .list-vagas .row .col-md-4 .card .card-header small i,
html.dark-mode .hero__item .list-vagas .row .col-md-6 .card .card-header small i,
html.dark-mode .hero__item .list-vagas .row .col-md-12 .card .card-header small i { color: var(--brand-secondary); }

.hero__item .list-vagas .row .card .card-body ul li { color: var(--dash-text); }

.hero__item .list-vagas .row .col .card .card-body ul li i,
.hero__item .list-vagas .row .col-md-4 .card .card-body ul li i,
.hero__item .list-vagas .row .col-md-6 .card .card-body ul li i,
.hero__item .list-vagas .row .col-md-12 .card .card-body ul li i { color: var(--brand-primary); }

html.dark-mode .hero__item .list-vagas .row .col .card .card-body ul li i,
html.dark-mode .hero__item .list-vagas .row .col-md-4 .card .card-body ul li i,
html.dark-mode .hero__item .list-vagas .row .col-md-6 .card .card-body ul li i,
html.dark-mode .hero__item .list-vagas .row .col-md-12 .card .card-body ul li i { color: var(--brand-secondary); }

.hero__item .list-vagas .row .card .card-footer i { font-size: 24px; }

.hero__item .list-vagas .row .col .card .card-footer i,
.hero__item .list-vagas .row .col-md-4 .card .card-footer i,
.hero__item .list-vagas .row .col-md-6 .card .card-footer i,
.hero__item .list-vagas .row .col-md-12 .card .card-footer i {
    font-size: 24px;
    color: var(--brand-secondary);
}

.button-search-vaga-nome {
	color: #FFF;
	display: inline-block;
	padding: 13px 30px 12px;
	background-color: var(--brand-primary);
	border: none;
}

#modalVaga #lista-itens-empregador i,
#modalVaga #lista-itens-vaga i { color: var(--brand-primary); }



/* Linha do tempo */
.timeline { background-color: var(--color-quinary); }


.main-timeline-2 { position: relative; }

.main-timeline-2::after {
    content: "";
    position: absolute;
    width: 3px;
    background-color: var(--brand-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-2 {
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-2::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    right: -11px;
    background-color: var(--brand-primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left-2 {
    padding: 0px 40px 20px 0px;
    left: 0;
}

.right-2 {
    padding: 0px 0px 20px 40px;
    left: 50%;
}

.left-2::before {
    content: " ";
    position: absolute;
    top: 18px;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--brand-primary);
}

.right-2::before {
    content: " ";
    position: absolute;
    top: 18px;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--brand-primary) transparent transparent;
}

.right-2::after { left: -14px; }

@media screen and (max-width: 600px) {
    .main-timeline-2::after { left: 31px; }

    .timeline-2 {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-2::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .left-2::after,
    .right-2::after { left: 18px; }

    .left-2::before { right: auto; }

    .right-2 { left: 0%; }
}



/* Parceiros */
.parceiros {
    background-color: var(--light-background);
    padding: 40px 0;
}

.parceiros .swiper { padding: 10px 0; }

.parceiros .swiper-slide img { transition: 0.3s; }

.parceiros .swiper-slide img:hover { transform: scale(1.1); }

.parceiros .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.parceiros .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    background-color: #ddd;
}

.parceiros .swiper-pagination .swiper-pagination-bullet-active { background-color: var(--brand-primary); }



/* Contato */
.contact { background-color: var(--color-quinary); }

.contact .info-item+.info-item { margin-top: 40px; }

.contact .info-item i {
    font-size: 20px;
    background-color: var(--brand-primary);
    color: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h5 {
    padding: 0;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-text);
}

.contact .info-item p {
    font-size: 14px;
    padding: 0;
    margin-bottom: 0;
    color: var(--color-text)
}

.contact .php-email-form { width: 100%; }

.contact .php-email-form .form-group { padding-bottom: 8px; }

.contact input.form-control {
    color: var(--color-text) !important;
    background-color: var(--color-text-alternative) !important;
}

.contact input.form-control:focus {
    color: var(--color-text) !important;
    background-color: var(--color-text-alternative) !important;
}

.contact textarea.form-control {
    color: var(--color-text) !important;
    background-color: var(--color-text-alternative) !important;
}

.contact textarea.form-control:focus {
    color: var(--color-text) !important;
    background-color: var(--color-text-alternative) !important;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br { margin-top: 25px; }

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input { height: 44px; }

.contact .php-email-form textarea { padding: 10px 12px; }

.contact .php-email-form button[type=submit] {
    background: var(--brand-primary);
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover { background: var(--brand-primary-transparent-75); }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

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



/* Footer */
.footer {
    color: #FFF;
    background-color: var(--brand-primary);
    font-size: 16px;
    position: relative;
}

.footer .footer-top { padding-top: 50px; }

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .footer-about p { font-size: 16px; }

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, #FFF, transparent 50%);
    color: #FFF;
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--brand-secondary);
    border-color: var(--brand-secondary);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links { margin-bottom: 30px; }

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child { padding-top: 0; }

.footer .footer-links ul a {
    color: #FFF;
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover { color: var(--brand-secondary); }

.footer .footer-contact p { margin-bottom: 5px; }

.footer .copyright {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid color-mix(in srgb, #FFF, transparent 90%);
    color: #FFF;
}

.footer .copyright p { margin-bottom: 0; }

.footer .credits {
    color: #FFF;
    margin-top: 4px;
    font-size: 13px;
}

.footer .credits a {
    color: #FFF;
    &:hover {
        color: var(--brand-secondary);
    }
}




/* Dark Mode -------------------------------------------------------------------------------------------------------- */
/* Desktop Navigations - Dark Mode */
@media (min-width: 1280px) {
    html.dark-mode .navbar a { color: #FFF; }

    html.dark-mode .navbar a:hover,
    html.dark-mode .navbar a:focus { color: var(--brand-secondary); }

    html.dark-mode .navbar>ul>li>a:before { background-color: var(--brand-secondary); }

    html.dark-mode .navbar .dropdown ul {
        border: 1px solid #FFF;
        background-color: var(--dash-text-alternative);
        list-style: none;
    }

    html.dark-mode .navbar .dropdown ul li {
        list-style: none;
    }

    html.dark-mode .navbar .dropdown ul li::marker {
        content: none;
        display: none;
    }
}

/* Mobile Navigation - Dark Mode */
@media (max-width: 1279px) {
    html.dark-mode .navbar a,
    html.dark-mode .navbar a:focus { color: #FFF; }

    html.dark-mode .mobile-nav-active .navbar:before { background-color: var(--dash-text-alternative); }
}


/* Estatísticas - Dark Mode */
html.dark-mode .estatisticas .numeros span { color: var(--brand-secondary); }


/* Footer - Dark Mode */
html.dark-mode .footer { background-color: var(--dash-text-alternative); }
