:root {
    --green-dark: #1A3234;
    --green-light: #43848A;
    --brown-dark: #302A26;
    --brown-light: #E5DBD0;
    --orange: #D9915D;
    --blue-light: #DBFCFF;
    --color-white: #fff;
    --color-li1mon: #C4B463;
}


body {
    font-size: 18px;
    line-height: 27px;
    font-weight: 300;
    font-family: "Archivo", sans-serif;
    color: var(--green-dark);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--green-dark);
    text-decoration: none;
    transition: all .3s ease;
}

strong {
    font-weight: 600;
}

.text-right {
    text-align: right;
}

.padding {
    padding: 90px 0;
}

.padding-top {
    padding-top: 90px;
}

.padding-bottom {
    padding-bottom: 90px;
}

/* buttons */
.btn-icon-left {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.84px;
    border: 1px solid var(--orange);
    border-radius: 24px;
    padding: 4px 12px;
}

.btn-icon-left img {
    margin-right: 5px;
}

.btn-icon-left:hover {
    background-color: var(--orange);
    color: var(--color-white);
}

.btn-icon-left:hover img {
    filter: brightness(0) invert(1);
}

.btn-arrow {
    font-weight: 700;
    line-height: 21.6px;
    color: var(--orange);
}

.btn-arrow:hover {
    color: var(--green-dark);
}

.btn-more {
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 1.08px;
    border: 2px solid var(--orange);
    border-radius: 24px;
    padding: 4px 12px;
}

.btn-more:hover {
    background-color: var(--orange);
    color: #fff;
}

.btn-cat {
    color: var(--green-light);
    background-color: rgba(221, 230, 231, 0.2);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    line-height: 22px;
    letter-spacing: 1.2px;
}

.btn-cat:hover {
    background-color: var(--orange);
    color: var(--color-white);
}

.btn-arrow-down {
    width: auto;
    height: 34px;
    border: 2px solid var(--orange);
    font-weight: 700;
    border-radius: 100px;
    background: transparent;
    text-align: left;
    padding: 0 15px;
    display: inline-flex;
    justify-content: space-around;
    position: relative;
    transition: all .3s ease;
    font-size: 14px;
    align-items: center;
    gap: 10px;
}

.btn-arrow-down:after {
    content: '';
    display: inline-block;
    background: url(../img/arrow-down.svg) center center no-repeat;
    width: 13px;
    height: 18px;
    transition: all .3s ease;
}

/* title */
h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 33.6px;
}

h3.title {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 24px;
}

h3.title strong {
    font-weight: 700;
}

h3.title.bord {
    border-bottom: 1px solid rgba(93, 217, 158, 0.502);
    padding-bottom: 20px;
}

/* language */
.language {
    position: absolute;
    top: 50%;
    right: 30px;
    text-align: center;
}

.language a {
    display: block;
    font-weight: 600;
}

.language a.active {
    color: var(--orange);
}

/* .language span {
    width: 18px;
    height: 1px;
    background-color: var(--orange);
    margin: 10px auto;
    display: block;
}
 */
/* header */

header {
    box-shadow: 1px 0 8px rgb(0 0 0 / 18%);
}

header .navbar>.container {
    align-items: flex-start;
}

header .navbar-expand-lg .navbar-collapse {
    margin-top: 36px;
}

.navbar-brand {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.navbar-brand .unicamp {
    margin-bottom: 12px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.navbar-expand-lg .navbar-nav .current_page_item .nav-link {
    font-weight: bold;
}

.navbar-expand-lg .navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3px;
    left: 0;
    background-color: var(--orange);
    transform: scaleX(0);
    transition: transform .3s ease;
}

.navbar-expand-lg .navbar-nav .nav-link:hover:after,
.navbar-expand-lg .navbar-nav .current_page_item .nav-link:after {
    transform: scaleX(1);
}

/* banner */
.banner p strong {
    color: #D9915D;
}

.banner p {
    margin-bottom: 0;
}

.banner .grid {
    display: grid;
    grid-template-columns: 266px 1fr;
    gap: 80px;
    align-items: flex-end;
}

/* video */

.video {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    display: inline-flex;
}

.video .btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* posts-featured */
.posts-featured .post {
    display: flex;
    align-items: center;
    gap: 80px;
}

.posts-featured img {
    border-radius: 20px;
}

.posts-featured .post h2 {
    margin-bottom: 12px;
}

.posts-featured .post span {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 24px;
    display: block;
}

.posts-featured .post p {
    margin-bottom: 24px;
}

.posts-featured .post .btn-cat {
    display: table;
    margin-bottom: 28px;
}

.posts-featured .post .text {
    max-width: 500px;
}

aside {
    padding-top: 10px;
}

aside h3 {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--green-dark);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

aside .menu-ball ul {
    padding-left: 0;
    position: relative;
}

aside .menu-ball ul:before {
    content: '';
    width: 1px;
    height: calc(100% - 20px);
    transform: translateY(-50%);
    background-color: var(--brown-light);
    position: absolute;
    left: 10px;
    top: 50%;
}

aside .menu-ball ul li {
    list-style: none;
    position: relative;
    padding-left: 30px;
}

aside .menu-ball ul li:before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: var(--brown-light);
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
    transition: all .3s ease;
}

aside .menu-ball ul li a {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--green-light);
}

aside .menu-ball ul li.current_page_item::before,
aside .menu-ball ul li:hover::before {
    width: 15px;
    height: 15px;
    left: 3px;
}

.menu-category ul {
    padding: 0;
    list-style: none;
}

.menu-category ul li {
    display: inline-block;
    line-height: 18px;
    margin-bottom: 10px;
    margin-left: 5px;
}

aside .menu-category ul li.current_page_item a,
aside .menu-category ul li:hover a {
    background-color: var(--orange);
    color: #fff;
}

aside .menu-category ul li a {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--green-light);
    background-color: #DDE6E740;
    padding: 5px 10px;
    border-radius: 100px;
}


.search .item {
    padding: 40px 0;
    border-top: 1px solid #5DD99E80;
}

.search .item:first-child {
    border: none;
    padding-top: 0;
}

.search .item h2 {
    color: var(--green-dark);
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    position: relative;
    margin-bottom: 30px;
}

.search .item h2:before {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../img/bullets.svg) center center no-repeat;
    position: absolute;
    left: -34px;
    top: 50%;
    transform: translateY(-50%);
}

a.site {
    font-size: 14px;
    position: relative;
}

a.site:after {
    content: '';
    width: 18px;
    height: 18px;
    background: url(../img/external-link.svg);
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

a.underline {
    font-size: 14px;
    position: relative;
    text-decoration: underline;
}

.search .item .grid {
    font-size: 14px;
    position: relative;
}

.search .item .grid h4 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.search .item .grid p {
    font-size: 14px;
    line-height: 18px;
}

.search .item .grid p:last-child {
    margin-bottom: 0;
}

ul.list {
    padding-left: 15px;
}

ul.list li {
    line-height: 18px;
    position: relative;
    list-style: none;
    margin-bottom: 10px;
}

ul.list li::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/arrow-right.svg) center center no-repeat;
    width: 13px;
    height: 25px;
    left: -20px;
}

ul.list li a {
    font-size: 14px;
}


.projects .project-item {
    padding: 40px 0;
    border-top: 1px solid #5DD99E80;
}

.projects .project-item:first-child {
    border: none;
    padding-top: 0;
}

.project-item .grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 15px;
}

.project-item .grid img {
    border-radius: 20px;
}

.project-item .grid h2 {
    font-size: 24px;
    line-height: 120%;
}

.project-item.member .grid h2 {
    margin-bottom: 0;
}

.project-item p {
    font-size: 12px;
    line-height: 150%;
}

.project-item.member p {
    margin-bottom: 10px;
    max-width: 290px;
}

.tags a {
    font-size: 12px;
    line-height: 22px;
    display: inline-block;
    text-transform: uppercase;
    margin-right: 5px;
    color: var(--orange);
    font-weight: 600;
}

.news-featured h2 {
    font-size: 32px;
    line-height: 120%;
}

.news-featured p {
    font-size: 14px;
}

.news-featured img {
    border-radius: 5px;
}

.members .item {
    margin: 0 auto;
}

.members .item img {
    border-radius: 100px;
}

.members .item p {
    margin-top: 20px;
    margin-bottom: 0;
}

.members .item .cat,
.members .item .text {
    text-transform: uppercase;
}

.members .item .cat,
.members .item .text,
.members .item .email {
    font-size: 12px;
    line-height: 22px;
}

.members .item .cat {
    text-transform: uppercase;
}

.members .item .text {
    color: #5f5f5f;
    margin: 5px 0 8px;
}

.members-old p {
    line-height: 20px;
    margin-bottom: 30px;
    font-size: 18px;
}

.members-old p strong {
    display: block;
}

.members-old p span {
    font-size: 12px;
}

p.legend {
    font-size: 12px;
}

.contacts p {
    color: #19213D;
}

.contacts a {
    color: var(--green-light);
    margin-top: 100px;
    display: table;
}

.contacts form label {
    color: #19213D;
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.contacts input {
    height: 47px;
    width: 100%;
    border: #5DD99E80 1px solid;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 16px;
}

.contacts textarea {
    min-height: 92px;
    width: 100%;
    border: #5DD99E80 1px solid;
    border-radius: 6px;
    font-size: 16px;
}

.contacts button {
    width: 109px;
    height: 34px;
    border: 2px solid var(--orange);
    font-weight: 700;
    border-radius: 100px;
    background: transparent;
    text-align: left;
    padding-left: 15px;
    margin: 20px 0 0 auto;
    display: flex;
    justify-content: space-around;
    position: relative;
    transition: all .3s ease;
}

.contacts button:after {
    content: '';
    display: inline-block;
    background: url(../img/arrow-down.svg) center center no-repeat;
    width: 13px;
    height: 25px;
    transition: all .3s ease;
}

.contacts button:hover {
    background-color: var(--orange);
    color: #fff;
}

.contacts button:hover:after {
    filter: brightness(0) invert(1);
}

.contacts .form br {
    display: none;
}

.contacts .form p {
    margin: 0;
}

.projects-single h2 {
    font-size: 32px;
    line-height: 38px;
}

.projects-single h2 span {
    font-size: 14px;
    line-height: 16px;
    display: block;
}

.project-text h5 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 17px;
}

.project-text p {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
    padding: 0 !important;
    border: unset !important;
}

/* numbers */
.numbers .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 1050px;
    margin: 0 auto;
}

.numbers .grid .box {
    height: 185px;
    width: 100%;
    max-width: 250px;
    border: 1px solid rgba(93, 217, 158, 0.502);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.numbers .grid .box .num {
    font-weight: 800;
    font-size: 32px;
    line-height: 38px;
    color: var(--orange);
}

.numbers .grid .box p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}

/* carousel */
.carousel {
    padding-left: 15%;
    position: relative;
}

.carousel img {
    border-radius: 5px;
}

.carousel .owl-carousel .owl-nav button.owl-next,
.carousel .owl-carousel .owl-nav button.owl-prev {
    background: url(../img/arrow-right-1.svg) center center no-repeat;
    width: 36px;
    height: 36px;
}

.carousel .owl-carousel .owl-nav button.owl-prev {
    transform: rotate(180deg);
}

.carousel .owl-carousel .owl-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 50px 0 0;
    gap: 20px;
}

/* footer */

footer {
    background-color: var(--blue-light);
    padding: 90px 0 48px;
}

footer .container {
    display: flex;
    gap: 220px;
}

footer .left {
    width: 100%;
    max-width: 450px;
}

footer .left .logo {
    margin-bottom: 48px;
}

footer .left p {
    margin-bottom: 48px;
}

footer .left .logos {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
}

footer .left a {
    font-size: 14px;
}

footer .right ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

footer .right ul li {
    margin-bottom: 24px;
}

footer .right ul li a {
    font-weight: 700;
    line-height: 21.6px;
    color: var(--orange);
}

footer .right ul li ul {
    padding-top: 6px;
    padding-left: 24px;
}

footer .right ul li ul li {
    margin-bottom: 6px;
}

.copy {
    background-color: #C4B463;
    display: block;
    padding: 6px 0;
}

.copy,
.copy a {
    color: var(--color-white);
    margin-bottom: 0;
    text-decoration: none;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.copy p {
    margin: 0;
}
.wpml-ls-legacy-list-vertical .wpml-ls-item {
    margin: 0 0 20px!important;
}
li.wpml-ls-slot-shortcode_actions.wpml-ls-item.wpml-ls-item-pt-br.wpml-ls-current-language.wpml-ls-first-item.wpml-ls-item-legacy-list-vertical a.wpml-ls-link, li.wpml-ls-slot-shortcode_actions.wpml-ls-item.wpml-ls-item-en.wpml-ls-current-language.wpml-ls-last-item.wpml-ls-item-legacy-list-vertical a.wpml-ls-link {
    color: var(--orange);
}
.wpml-ls-legacy-list-vertical a {
    position: relative;
}
li.wpml-ls-item:first-of-type > a.wpml-ls-link::before  {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 25px;
    height: 1px;
    background: #d9915d;
}
@media (max-width: 1500px) {
    .carousel {
        padding-left: 40px;
    }
}

@media (max-width: 1399px) {
    .navbar-brand .logo {
        width: 260px;
    }

    .language {
        right: 10px;
        top: 60%;
    }
}

@media (max-width: 1280px) {
    .navbar-brand .logo {
        width: 230px;
    }
}

@media (max-width: 1399px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 95%;
    }
}

@media (max-width: 1240px) {
    .navbar-brand .logo {
        width: 160px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 12px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .btn-icon-left {
        font-size: 12px;
    }

    header .navbar-expand-lg .navbar-collapse {
        margin-top: 10px;
    }
}

@media (max-width: 991px) {
    .banner .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .language {
        right: 4px;
        top: 60%;
        font-size: 14px;
    }

    .posts-featured .post {
        display: grid;
        gap: 20px;
    }

    .posts-featured .post {
        display: flex;
        flex-direction: column-reverse;
        /* Inverte: imagem para baixo, texto para cima */
        gap: 20px;
    }


    .posts-featured .post img {
        order: 2;
    }

    .posts-featured .post .text {
        order: 1;
        margin-bottom: 50px;
    }

    .posts-featured .post img {
        order: 2;
    }

    .posts-featured .post .text {
        order: 1;
    }

    footer .container {
        display: flex;
        gap: 50px;
    }

    .padding-top {
        padding-top: 60px;
    }

    .navbar-expand-lg .navbar-nav .nav-link:after {
        width: 60px;
    }

    .navbar-expand-lg .navbar-nav .nav-link,
    .btn-icon-left {
        font-size: 14px;
    }

    .navbar {
        padding-bottom: 20px;
    }

    .navbar-brand .logo {
        width: 220px;
    }

    header .navbar>.container {
        align-items: center;
    }

    .search .item h2:before {
        width: 18px;
        height: 18px;
        background-size: 18px;
        left: -22px;
    }
}

@media (max-width: 768px) {
    header .navbar .container {
        justify-content: right;
    }
    .language {
        top: 31%;
        right: 10px;
    }
    .banner p {
        max-width: 86%;
    }
    .navbar-brand .unicamp {
        width: 80px;
    }

    header .navbar>.container {
        gap: 20px;
    }

    .padding {
        padding: 60px 0;
    }

    .search .item h2:before {
        width: 15px;
        height: 15px;
        background-size: 15px;
        left: -18px;
    }

    footer {
        padding: 60px 0 20px;
    }

    footer .container {
        display: grid;
        gap: 20px;
    }

    footer .left p,
    footer .left .logos {
        margin-bottom: 0;
    }

    .search .item h2 {
        margin-bottom: 20px;
    }

    .search .item .grid {
        margin-top: 20px;
    }

    .project-item .grid {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 15px;
    }

    .project-item .grid img {
        width: 100%;
    }

    .project-item .grid a img {
        width: auto;
    }

    .numbers .grid {
        grid-template-columns: 1fr 1fr;
    }

    .carousel {
        padding-left: 0;
    }

    .ms-4.menu-category {
        margin: 10px 0 0 !important;
    }

    aside h3 {
        margin-bottom: 20px;
    }
    .contacts a {
        margin-top: 0;
    }
}