:root {
    --black-color: #111;
    --primary-color: #00CC73;
    --white-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Estilo das fontes */
h1 {
    font-family: 'Roboto Flex', sans-serif;
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.03em;
    text-align: center;
    font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
}

h2 {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: 0.03em;
    text-align: left;
    font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
    margin-bottom: 56px;
}

h3 {
    font-family: 'Roboto Flex', sans-serif;
    font-size: clamp(0.8rem, 1vw, 1.8rem);
    font-weight: 500;
    letter-spacing: 0.03em;
    text-align: center;
    font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
    text-transform: uppercase;
    line-height: 55px;
    margin-bottom: 0;
}

h5 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
}

p {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
}

/* Fim do estilo das fontes */

/* HEADER */
.header {
    padding: 20px 0;
    position: fixed;
    z-index: 10;
}

/* Seletor para a linguagem */
.language-selector {
    display: flex;
    justify-content: space-between;
    top: 0px;
    right: 4px;
    z-index: 1000;
    position: relative;
}

.lang-btn {
    background-color: #00cc7400;
    color: #71af94;
    border: none;
    padding: 10px 9px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

.no-scroll {
    overflow-y: hidden;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 30px;
    background-color: #FFFFFF1A;
    z-index: 10;
    border-radius: 24px;
}

@media (min-width: 200px) {
    .header__content {
        display: flex;
        justify-content: space-between;
        position: relative;
        align-items: center;
        padding: 12px 30px;
        border-radius: 24px;
        overflow: hidden;
    }
}

@media (min-width: 768px) {
    .header__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 12px 30px;
        background: rgba(255, 255, 255, 30%);
        z-index: 10;
        border-radius: 24px;
    }
}

.glassmorphism-effect {
    left: 0;
    backdrop-filter: blur(5px);
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF1A;
    z-index: -1;
}

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

.header__logo {
    z-index: 1000;
    position: relative;
}

#img-logo-nav {
    transition: opacity 1s ease-in-out;
}

.navbar__toggle-container {
    height: 40px;
    cursor: pointer;
    display: flex;
    z-index: 1000;
    align-items: center;
}

.navbar__toggle {
    border: 0;
    position: relative;
}

/* Navbar Button && Variable Colors Navbar */
.navbar__toggle,
.navbar__toggle::before,
.navbar__toggle::after {
    display: block;
    background-color: #00CC73;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}


/* COR QUANDO A NAVBAR ESTÁ FECHADA */
.lang-btn {
    color: #00CC73;
    opacity: 50%;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.lang-btn.selected {
    opacity: 100%;
}

.navbarActive button {
    color: #ffffff;
    opacity: 50%;
}

.lang-btn.selected .navbarActive {
    opacity: 100%;
}

/* END Navbar Button Variable Colors */
.navbar__toggle::before {
    content: '';
    margin-top: -8px;
    position: absolute;
    left: 0;
}

.navbar__toggle::after {
    content: '';
    margin-top: 4px;
    position: absolute;
    left: 0;
}

.navbar__toggle.toggle::before {
    margin-top: 0px;
    transform: rotate(45deg);
    background-color: #fff;
}

.navbar__toggle.toggle {
    background: rgba(255, 255, 255, 0);
}

.navbar__toggle.toggle::after {
    margin-top: 0px;
    transform: rotate(-45deg);
    background-color: #fff;
}

.img-container {
    display: flex;
    justify-content: center;
    max-width: 696px;
    width: 100%;
    height: 100%;
    max-height: 587px;
    overflow: hidden;
}

.img-menu {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

@keyframes navbarOn {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes navbarOff {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
    }
}

.nav-custom {
    background-color: #00CC73;
    width: 100vw;
    position: fixed;
    left: 0;
    z-index: 6;
    height: 100%;
    top: 0;
}

.navbar.show {
    animation: navbarOn 0.75s ease-in-out forwards;
}

.navbar.hide {
    animation: navbarOff 0.75s ease-in-out forwards;
}


.navbar__menu {
    max-width: 1427px;
    width: 100%;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.menu__items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 41%;
    justify-content: flex-start;
    margin-top: 35%;

}

.menu__item {
    list-style: none;
}

.menu__item:hover,
.menu__item:active {
    background: rgb(193, 255, 178);
    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.icon-menu:hover,
.icon-menu:active {
    background: rgb(202, 255, 200);
    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.menu__socials a {
    text-decoration: none;
}


.menu__link {
    text-decoration: none;
    color: var(--white-color);
    font-family: Roboto Flex;
    font-size: 30px;
    font-weight: 600;
    line-height: 127%;
    letter-spacing: 0.03em;
    text-align: center;
    font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;

}


.menu__info {
    margin-left: 34px;
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
}


.menu__socials {
    max-width: 339px;
    width: 100%;
    padding: 24px;
    display: flex;
    gap: 10px;
    border-radius: 16px;
    align-items: center;
    border: solid 2px #fff;
    justify-content: space-evenly;

}

.menu__socials i {
    width: 100%;
    max-width: 44px;
    display: flex;
    justify-content: flex-end;
    max-height: 44px;
    height: 100%;
    color: #fff;
}

.menu__socials p {
    font-family: Roboto Flex;
    font-size: 24px;
    font-weight: 800;
    line-height: 26.4px;
    letter-spacing: 0.03em;
    font-variation-settings: 'GRAD' 0, 'wdth' 40, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
    color: #fff;
    text-align: left;
    margin: 0;
    text-wrap: nowrap;
}

@media (min-width: 200px) {
    .navbar__menu {
        flex-direction: column-reverse;
    }

    .img-menu {
        max-width: 300px;
        width: 100%;
        margin: 0 15px;

        max-height: 300px;
        height: 100%;
    }

    .menu__socials p {
        font-size: 17px;
    }

    .menu__socials i {
        align-items: center;
        font-size: 18px;
    }

    .menu__socials {
        max-width: 369px;
        width: 100%;
        padding: 11px;
        gap: 11px;
        border-radius: 9px;
    }

}

@media (min-width: 768px) {
    .navbar__menu {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        margin: 10px auto;
    }

    .img-menu {
        max-width: 696px;
        width: 100%;
        height: 100%;
        max-height: 696px;
    }

    .header.menu-active {
        background-color: unset;
    }

    .navbar__toggle-container {
        z-index: 7;
        position: relative;
    }

    .navbar__toggle {
        z-index: 6;
    }

    .menu__items {
        align-items: flex-end;
        justify-content: center;
        padding: 0;
        height: 100%;
        margin: 0 20px;
        margin-bottom: -60px;
    }

    .menu__item {
        line-height: 1.2.3;
    }

    .menu__link {
        font-size: 2.5rem;
        text-wrap: nowrap;
    }


    .menu__socials {
        margin-right: 0;
        max-width: 339px;
        width: 100%;
        padding: 24px;
        display: flex;
        gap: 10px;
        border-radius: 16px;
        align-items: center;
        border: solid 2px #fff;
    }

    .menu__socials i {
        color: var(--white-color);
    }

    .menu__socials p {
        color: var(--white-color);
        font-size: 24px;
    }

    .menu__info {
        margin: 42px 42px 0;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

}

@media (min-width: 1024px) {
    .menu__link {
        font-size: 3.8rem;
        text-wrap: nowrap;
    }

    .menu__info {
        margin: 43px 83px 0;
    }

    .menu__socials i {
        font-size: 1.5rem;
    }

}

@media (min-width: 1400px) {
    .menu__info {
        margin: 43px 25% 0 83px;
    }
}

/* Fim navbar */
.margin-mob {
    margin: 20px;
}

.title-header {
    text-align: center;
    padding: 118px 0 56px;
}

.banner img {
    width: 100%;
    max-width: 1296px;
    height: auto;
    margin: 0 auto;
    display: flex;
    padding-bottom: 56px;
}

@media (max-width:520px) {
    .banner img {
        height: 250px;
    }
}

.title-highlight {
    font-weight: 600;
    font-size: clamp(1.5rem, 2.5vw, 2.8rem);
    max-width: 698px;
    line-height: 110%;
}

.percentages {
    display: flex;
    justify-content: space-around;
    padding: 56px 0 0;
    max-width: 935px;
    margin: 0 auto;
}

.percentage-column {
    font-family: 'Roboto Flex', sans-serif;
    font-size: clamp(2.3rem, 3.5vw, 3.5rem);
    font-weight: 600;
    line-height: 56px;
    padding-bottom: 10px;
    letter-spacing: 0.03em;
    text-align: center;
    font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
}

.sucess-text {
    font-size: clamp(1.8rem, 2.3vw, 2rem);
    line-height: 45px;
    text-align: center;
    padding-bottom: 56px;
    margin-bottom: 0;
}

/* WORKS SPLIDE */
#works-splide {
    font-family: "Roboto", sans-serif;
}

#works-splide img {
    overflow: hidden;
    width: 240px;
}

.works__title {
    font-family: Roboto Flex;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 40px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    font-variation-settings: 'GRAD' 0, 'wdth' 40, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
    color: #010E08;
    text-transform: uppercase;
    padding-top: 5%;
}

.works__title a {
    font-family: Roboto Flex;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 40px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
    color: #010E08;
    padding-top: 30px;

}

.works-scale {
    overflow: hidden;
    border-radius: 20px;

}

.works-scale img {
    width: 460px;
    height: auto;
    overflow: hidden;
    -webkit-transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
}

.works-scale:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}


#works-splide .works-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 8px;
    background-color: transparent;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

#works-splide .works-overlay.overlay-mob {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.6);
}

#works-splide .splide__slide__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#works-splide .splide__slide__content {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: clamp(.8rem, 1.5vw, 1.6rem);
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: right;
    transition: opacity 0.3s ease;
    opacity: 0;
}

#works-splide .splide__slide__content.text-show {
    opacity: 1;
}

#works-splide .splide__slide__content span {
    font-family: Roboto Mono;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-align: right;
}

#works-splide .works__brand {
    position: absolute;
    max-width: 110px;
    width: 100%;
}

#works-splide .works__brand.works__brand-ml {
    max-width: 85px;
}

#works-splide .splide__slide {
    flex-shrink: unset;
}

#works-splide .splide__pagination {
    bottom: -10%;
}

#works-splide .splide__pagination__page {
    height: 10px;
    width: 10px;
}

#works-splide .splide__pagination__page.is-active {
    background-color: var(--black-variant-color);
}

@media (min-width: 200px) {
    #works-splide .splide__slide__content span {
        font-size: 12px;
        line-height: 28.74px;
    }
}

@media (min-width: 768px) {
    .header__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 12px 30px;
        background-color: #FFFFFF1A;
        z-index: 10;
        border-radius: 24px;
    }

    #works-splide img {
        width: 400px;
    }

    #works-splide .splide__slide__content span {
        font-size: 18px;
        line-height: 38.74px;
    }

    #works-splide .works-overlay {
        background-color: rgba(0, 0, 0, 0.6);
        opacity: 0;
    }

    #works-splide .splide__slide__content {
        top: 16px;
        right: 24px;
    }

    #works-splide .splide__slide__container:hover .works__brand {
        display: none;
    }

    #works-splide .splide__slide__container:hover .works-overlay {
        opacity: 1;
        /* Overlay visível ao hover */
        border-radius: 20px;
    }

    #works-splide .splide__slide__container:hover .splide__slide__content {
        opacity: 1;
        /* Texto visível ao hover */
    }

    #works-splide .works__brand {
        max-width: 180px;
    }

    #works-splide .works__brand.works__brand-ml {
        max-width: 150px;
    }
}

@media (min-width: 1200px) {
    .thumbnail {
        width: 125px;
    }

    #works-splide img {
        width: 460px;
        height: auto;
    }

    #works-splide .works__brand {
        max-width: 200px;
    }

    #works-splide .works__brand.works__brand-ml {
        max-width: 180px;
    }
}

@media (min-width: 1600px) {
    #works-splide img {
        width: 400px;
        height: auto;
    }

    .thumbnail {
        width: 165px;
    }

    #works-splide .works__brand {
        max-width: 300px;
    }

    #works-splide .works__brand.works__brand-ml {
        max-width: 240px;
    }
}

/* Footer */
.footer {
    background-color: #000000;
    margin-top: 10%;
}

.logo-footer {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.title-footer {
    color: #00CC73;
    font-family: Roboto Flex;
    font-size: clamp(3.2rem, 7vw, 4rem);
    font-weight: 800;
    line-height: 95%;
    text-align: center;
    font-variation-settings: 'GRAD' 0, 'wdth' 40, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
}

.footer__title {
    font-family: "Roboto Flex", sans-serif;
    font-size: clamp(4rem, 8vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    max-width: 100%;
    padding: 5% 0 23%;

    color: #00CC73;
    font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
    text-align: center;
    line-height: 95%;

}


.phone__number,
.email {
    display: flex;
    justify-content: center;
}

.wpp:hover,
.wpp:active {
    background: rgb(7, 105, 23);
    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.bi-linkedin:hover,
.bi-linkedin:active {
    background: rgb(7, 105, 23);
    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}


.bi-instagram:hover,
.bi-instagram:active {
    background: rgb(7, 105, 23);
    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.termos a:hover,
.termos a:active {
    background: rgb(7, 105, 23);
    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}


.greener-style:hover,
.greener-style:active {
    background: rgb(7, 105, 23);
    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.txt-vagas:hover,
.txt-vagas:active {
    background: rgb(7, 105, 23);
    background-size: 100%;
    background-repeat: repeat;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.wpp {
    color: #00CC73;
    font-family: Roboto Flex;
    font-size: 20px;
    font-weight: 600;
    line-height: 26.4px;
    letter-spacing: 0.03em;
    text-align: center;
    font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
    text-decoration: none;
}

.footer__title-logo {
    font-family: Roboto Flex;
    font-size: clamp(2.3rem, 8vw, 4rem);
    font-weight: 900;
    line-height: 95%;
    text-align: center;
    font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;

    margin: 106px 0 66px;
    color: #00CC73;

}

.year-footer {
    color: #fff;
    font-family: Roboto;
    font-size: 13px;
    font-weight: 400;
    line-height: 15.23px;
    text-align: left;

}

.space-barra a {
    color: #00CC73;
    margin: 0 25px;
}

.termos-footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: center;
    align-items: flex-end;
    gap: 17px;
}

@media (min-width: 768px) {
    .termos-footer {
        display: flex;
        justify-content: space-around;
        flex-direction: row;
        align-items: flex-start;
    }
}

.img-footer {
    display: flex;
    justify-content: center;
    padding-top: 68px;
}

.termos a {
    color: #00CC73;
    text-decoration: none;
    font-family: Roboto;
    font-size: 13px;
    font-weight: 400;
    line-height: 15.23px;
    text-align: center;
    margin: 0 5px;


}

.agradecimentos-footer {
    text-transform: uppercase;
    font-family: Roboto;
    font-size: 13px;
    font-weight: 700;
    line-height: 15.23px;
    text-align: center;
    text-decoration: underline;

}


@media(min-width: 200px) {
    .footer__title {
        font-family: "Roboto Flex", sans-serif;
        font-size: clamp(3.2rem, 7vw, 4rem);
        font-weight: 900;
        line-height: 1.2;
        text-transform: uppercase;
        max-width: 100%;
        padding: 15% 0 37px;

        color: #00CC73;
        font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
        text-align: center;
        line-height: 95%;

    }

    .title-footer {
        color: #00CC73;
        font-size: clamp(3.2rem, 7vw, 4rem);
        font-family: Roboto Flex;
        font-weight: 800;
        line-height: 95%;

        text-align: center;
        font-variation-settings: 'GRAD' 0, 'wdth' 40, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
    }

}

@media(min-width: 320px) {
    .footer__title {
        font-family: "Roboto Flex", sans-serif;
        font-size: clamp(3.2rem, 7vw, 4rem);
        font-weight: 900;
        line-height: 1.2;
        text-transform: uppercase;
        max-width: 100%;
        padding: 15% 0 37px;

        color: #00CC73;
        font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
        text-align: center;
        line-height: 95%;

    }

    .title-footer {
        color: #00CC73;
        font-size: clamp(2.3rem, 8vw, 4rem);
        font-family: Roboto Flex;
        font-weight: 800;
        line-height: 95%;

        text-align: center;
        font-variation-settings: 'GRAD' 0, 'wdth' 40, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
    }

}

@media(min-width: 440px) {
    .footer__title {
        font-family: "Roboto Flex", sans-serif;
        font-size: clamp(3.2rem, 7vw, 4rem);
        font-weight: 900;
        line-height: 1.2;
        text-transform: uppercase;
        max-width: 100%;
        padding: 15% 0 37px;

        color: #00CC73;
        font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
        text-align: center;
        line-height: 95%;

    }

    .title-footer {
        color: #00CC73;
        font-size: clamp(3rem, 3vw, 4rem);
        font-family: Roboto Flex;
        font-weight: 800;
        line-height: 95%;

        text-align: center;
        font-variation-settings: 'GRAD' 0, 'wdth' 40, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
    }

    .footer__title-logo {
        font-size: clamp(3rem, 3vw, 4rem);

    }
}



.socials {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 14%;
    align-items: center;
    align-content: center;
    flex-direction: row;
}


.icon-footer {
    gap: 5px;

}

.socials-text {
    font-family: Roboto Flex;
    font-size: 20px;
    font-weight: 800;
    line-height: 26.4px;
    letter-spacing: 0.03em;
    text-align: center;
    font-variation-settings: 'GRAD' 0, 'wdth' 40, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
    color: #00CC73;
    display: flex;
    margin: 0;
}

.seja-greener {
    color: #00CC73;
    font-family: Roboto Flex;
    font-size: 24px;
    font-weight: 800;
    line-height: 26.4px;
    letter-spacing: 0.03em;
    text-align: center;
    font-variation-settings: 'GRAD' 0, 'wdth' 40, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;

}

.greener-style {
    font-family: Roboto Flex;
    font-size: 24px;
    font-weight: 900;
    line-height: 26.4px;
    letter-spacing: 0.03em;
    text-align: center;
    font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
    color: #00CC73;
}

.footer__job p {
    font-size: 18px;
    color: #ffffff;
    font-family: Roboto Flex;
    font-weight: 600;
    line-height: 17.6px;
    letter-spacing: 0.03em;
    text-align: center;
    font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
}


.txt-vagas {
    color: #ffffff;
    font-family: Roboto Flex;
    font-size: 18px;
    font-weight: 600;
    line-height: 17.6px;
    letter-spacing: 0.03em;
    text-align: center;
    font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
    text-decoration: underline;
}

.address-fluid {
    display: flex;
    text-align: center;
    margin: 7% auto;
    justify-content: space-evenly;
}

.address-fluid h3 {
    font-family: Roboto Flex;
    /* font-size: clamp(1.8rem, 2vw, 1.9rem); */
    font-weight: 600;
    line-height: 19.8px;
    letter-spacing: 0.03em;
    text-align: center;
    font-variation-settings: 'GRAD' 0, 'wdth' 151, 'slnt' 0, 'XOPQ' 96, 'YOPQ' 79, 'XTRA' 468, 'YTUC' 712, 'YTLC' 514, 'YTAS' 750, 'YTDE' -203, 'YTFI' 738;
    text-transform: uppercase;
}

.address-fluid h6 {
    font-family: Roboto;
    /* font-size: clamp(1.2rem, 1.4vw, 1.5rem); */
    font-weight: 400;
    line-height: 19.2px;
    text-align: center;

}


.address__title {
    color: var(--primary-color);
    font-family: Roboto;
    font-size: clamp(1.4rem, 3vw, 3rem);
    font-weight: bolder;
}

.address {
    color: var(--white-color);
    font-family: Roboto;
    font-size: clamp(1rem, 2.5vw, 2rem);
}

.socials i {
    font-size: clamp(1.9rem, 1.5vw, 2.9rem);
    color: var(--primary-color);
    margin: 0 15px;
}

.footer__info {
    gap: 10px;
}

.footer__info a {
    text-decoration: none;
    color: var(--primary-color);
}

.footer__info a:nth-child(2) {
    padding: 0 10px;
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
}

@media (min-width: 768px) {
    .footer footer {
        /* margin-top: 60px; */
        padding-top: 100px;
        background-color: var(--black-color);
    }

    #image-footer {
        margin-top: unset;
        display: flex;
        align-items: center;
    }

    .logo-footer-green {
        max-width: 160px;
        width: 100%;
    }

    .footer__title {
        color: var(--white-color);
        font-size: 4.8rem;
    }

    .footer__address {
        margin-top: 100px;
    }

    :is(.address__title, .footer__socials i) {
        color: var(--primary-color);
    }

    .termos-footer {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (min-width: 1200px) {
    .footer__title {
        font-size: 6rem;
    }
}

@media (min-width: 1400px) {
    .footer {
        align-items: center;
    }

    .footer__title {
        font-size: 8rem;
    }
}

@media (min-width: 1600px) {
    .footer__title {
        font-size: 9rem;
    }
}