﻿/* ------------------------------ INICIO DA BIBLIOTECA DE ESTILOS #madreideia ------------------------------ */

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

html {
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    width: 10px;
    /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: var(--green-lfc-second);
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: var(--grey-lfc-dark);
    /* color of the scroll thumb */
    border-radius: 10px;
    /* roundness of the scroll thumb */
}

body {
    padding: 0px;
    margin: 0px;
    font-family: "Ubuntu", sans-serif !important;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    margin: 0px;
    padding: 0px;
    font-weight: 900;
    line-height: initial !important;
    font-size: initial;
    line-height: initial;
}

a {
    text-decoration: none !important;
}

ul {
    margin: 0px !important;
    padding: 0px !important;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

/* 
  ----- Styles that are being used for the hole content -----
*/

/* Spaces */

.space-of-10 {
    height: 10px;
    width: 100%;
}

.space-of-20 {
    height: 20px;
    width: 100%;
}

.space-of-30 {
    height: 30px;
    width: 100%;
}

.space-of-50 {
    height: 50px;
    width: 100%;
}

.space-of-100 {
    height: 100px;
    width: 100%;
}

.space-of-150 {
    height: 150px;
    width: 100%;
}

.right-padding-of-100 {
    padding-right: 100px;
}

.right-padding-of-50 {
    padding-right: 50px;
}

.whole-site-wrap {
    max-width: 1920px;
    margin: auto;
}

/* Mobile Spacing */

@media (max-width: 1024px) {

    .space-of-100 {
        height: 50px;
    }

    .space-of-150 {
        height: 100px;
    }

    .right-padding-of-100 {
        padding: 0px;
    }

    .right-padding-of-50 {
        padding: 0px;
    }
}

/* Defyning Colors */

:root {
    --main-green-lfc: #76C142;
    --green-lfc-first: #A1D47C;
    --green-lfc-second: #BCE0A2;
    --green-lfc-third: #EFF8E8;
    --grey-lfc-dark: #737574;
    --grey-lfc-light: #949A9A;
    --purple-lfc: #430093;
    --yellow-lfc-light: #FDEFC8;
    --whatsapp-color: #128C7E;
    --all-transition: all 0.1s ease-in-out;
}

/* Font Styles */

.size-14 {
    font-size: 14px;
    line-height: 21px;
    font-weight: 300;
}

.size-16 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

.size-18 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
}

.size-21 {
    font-size: 21px;
    line-height: 28px;
    font-weight: 300;
}

.size-24 {
    font-size: 24px;
    line-height: 35px;
    font-weight: 300;
}

.size-28 {
    font-size: 28px;
    line-height: 35px;
    font-weight: 300;
}

.size-35 {
    font-size: 35px;
    line-height: 44px;
    font-weight: 300;
}

.italic-styled {
    font-style: italic;
}

.color-white {
    color: #fff;
}

.color-green-third {
    color: var(--green-lfc-third);
}

.color-grey-dark {
    color: var(--grey-lfc-dark);
}

.color-purple {
    color: var(--purple-lfc);
}

.color-main-green {
    color: var(--main-green-lfc);
}

/* Images and Backgrounds and Elements*/

.light-grey-patterned {
    background: #f9f9f9 url(../Images/NovoSite/pattern-60.png) no-repeat center top;
    background-size: cover;
}

.third-green-bg-patterned {
    background: var(--green-lfc-third) url(../Images/NovoSite/pattern-60.png) no-repeat center top;
    background-size: cover;
}

.main-green-bg {
    background-color: var(--main-green-lfc);
}

.dark-grey-bg {
    background-color: var(--grey-lfc-dark);
}

.items-svg-and-h3 li {
    text-align: center;
}

    .items-svg-and-h3 li h3 {
        color: #fff;
        font-weight: 300;
        font-size: 16px;
        line-height: 24px;
    }

.list-img-and-h3 {
    grid-column-gap: 20px;
}

    .list-img-and-h3 li img {
        width: 100%;
        height: auto;
    }

    .list-img-and-h3 li h3 {
        color: var(--grey-lfc-dark);
        font-weight: 300;
        font-size: 16px;
        line-height: 24px;
        padding-top: 20px;
    }

.cta-grey {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    color: var(--green-lfc-third);
    background: var(--grey-lfc-dark);
}

.buyer-steps {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
}

    .buyer-steps div {
        height: 50px;
        width: 50px;
        border-radius: 25px;
        border: 1px solid var(--main-green-lfc);
        background: var(--green-lfc-first);
        display: grid;
        align-content: center;
        justify-content: center;
        margin: auto;
        margin-bottom: 20px;
    }

        .buyer-steps div label {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
        }

    .buyer-steps h3 {
        font-size: 16px;
        font-weight: 300;
        color: var(--grey-lfc-dark);
        text-align: center;
        line-height: 24px;
    }

.step-number-and-text {
    grid-gap: 50px;
}

    .step-number-and-text div {
        height: 60px;
        width: 60px;
        border-radius: 6px 0px 6px 0px;
        background: var(--green-lfc-third);
        display: grid;
        align-content: center;
        justify-content: center;
        margin-bottom: 20px;
    }

        .step-number-and-text div label {
            font-size: 28px;
            font-weight: 700;
            color: var(--main-green-lfc);
        }

    .step-number-and-text p {
        font-size: 16px;
        font-weight: 300;
        color: var(--grey-lfc-dark);
        line-height: 24px;
    }

/* CSS Grid - Defyning the Grid */

.full-width-div .container-width {
    width: 100%;
}

.container-width {
    margin: auto;
    width: 100%;
    max-width: 1400px;
}

.divided-on-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.divided-on-2-gap {
    grid-column-gap: 50px;
}

.divided-on-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.limited-content-600 {
    max-width: 600px;
    margin: auto;
}

.top-align {
    display: grid;
    align-content: start;
}

.center-align {
    display: grid;
    align-content: center;
}

.bottom-align {
    display: grid;
    align-content: end;
}

.justify-end {
    display: grid;
    justify-content: end;
}

.justify-center {
    display: grid;
    justify-content: center;
}

.justify-start {
    display: grid;
    justify-content: start;
}

.sidebar-and-list {
    display: grid;
    grid-template-columns: 1fr 3fr;
}

.list-6-columns {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.list-5-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.list-4-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.list-3-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hide-on-desktop {
    display: none;
}

@media (max-width: 1450px) {

    .hide-on-big-screen {
        display: block;
    }

    .container-width {
        width: 90vw;
    }
}

@media (max-width: 1023px) {

    .divided-on-2 {
        grid-template-columns: 1fr;
    }

    .list-6-columns {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .list-5-columns {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .list-4-columns {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }

    .list-3-columns {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }

    .img-full-width {
        max-width: 100%;
    }

    .hide-on-desktop {
        display: block;
    }

    .buyer-steps {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .container-width {
        width: 94vw;
    }
}

/* Itens usados em vários lugares */

/* Heaader top */

.grey-top-bar {
    height: 40px;
    background-color: var(--grey-lfc-dark);
}

    .grey-top-bar .container-width {
        display: grid;
        grid-template-columns: 400px 1fr;
        align-content: center;
        height: 40px;
    }

.contacts-on-topbar {
    display: grid;
    grid-auto-flow: column;
    justify-content: end;
    grid-column-gap: 20px;
    align-content: center;
}

    .contacts-on-topbar li {
        display: grid;
        align-content: center;
    }

        .contacts-on-topbar li a {
            display: grid;
            grid-auto-flow: column;
            grid-column-gap: 10px;
            align-content: center;
            color: var(--green-lfc-third);
        }

            .contacts-on-topbar li a:hover {
                color: var(--green-lfc-second);
            }


.top-bar {
    height: 80px;
    display: grid;
    grid-template-columns: 1fr 400px;
    grid-column-gap: 50px;
}

    .top-bar ul {
        display: grid;
        grid-auto-flow: column;
        grid-column-gap: 20px;
        align-content: center;
    }

.search-input {
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    grid-column-gap: 0px !important;
    padding: 0px;
}

    .search-input li .textbox_menu {
        height: 51px !important;
        border-radius: 5px 0px 0px 5px;
        border: 1px solid var(--main-green-lfc);
        padding: 0px 30px 0px 10px;
        font-size: 16px;
        color: var(--main-green-lfc);
        font-weight: 700;
        background-color: #f9f9f9;
        width: 280px;
    }

    .search-input li .botaoBusca {
        height: 51px;
        border-radius: 0px 5px 5px 0px;
        border: 1px solid var(--main-green-lfc);
        border-bottom: 2px solid var(--main-green-lfc);
        padding: 0px 20px;
        width: 100%;
        font-size: 18px;
        font-weight: 700;
        background-color: var(--main-green-lfc);
        color: var(--green-lfc-third);
    }

    .search-input svg {
        position: absolute;
        margin-left: -40px;
        margin-top: 15px;
        height: 20px;
        width: 20px;
        cursor: pointer;
    }

.cta-top-whatsapp {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 10px;
    align-content: center;
    justify-content: center;
    padding: 0px 20px;
    border: 2px solid var(--whatsapp-color);
    height: 50px;
    border-radius: 5px;
    transition: var(--all-transition);
}

    .cta-top-whatsapp:hover {
        background-color: var(--whatsapp-color);
    }

        .cta-top-whatsapp:hover svg {
            fill: var(--green-lfc-third);
        }

        .cta-top-whatsapp:hover p {
            color: var(--green-lfc-third);
        }


    .cta-top-whatsapp svg {
        fill: var(--whatsapp-color);
    }

    .cta-top-whatsapp p {
        font-size: 14px;
        color: var(--whatsapp-color);
    }

        .cta-top-whatsapp p span {
            font-size: 18px;
            color: var(--main-green-lfc);
        }

.link-on-nav {
    font-size: 16px;
    color: var(--grey-lfc-dark);
    font-weight: 300;
}

.main-bar {
    border-top: 1px solid #f1f1f1;
}

    .main-bar .container-width {
        display: grid;
        grid-template-columns: 1fr 300px;
        height: 60px;
    }

.navbar-first ul {
    height: 60px;
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 20px;
    justify-content: start;
    align-content: center;
}

    .navbar-first ul li a {
        height: 60px;
        display: inline-block;
        line-height: 60px;
        vertical-align: middle;
        color: var(--grey-lfc-dark);
        font-weight: 300;
        font-size: 16px;
    }

        .navbar-first ul li a:hover {
            background: url(../Images/NovoSite/arrow-top-hover.svg) no-repeat center bottom;
        }

.active-item-on-nav {
    background: url(../Images/NovoSite/arrow-top-hover.svg) no-repeat center bottom;
}

.special-link {
    color: var(--purple-lfc) !important;
    font-weight: 700 !important;
}

.btn-cart {
    height: 60px;
    background-color: var(--grey-lfc-dark);
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 10px;
    padding: 0px 20px !important;
    align-content: center;
}

    .btn-cart li {
        display: grid;
        align-content: center;
    }

        .btn-cart li h3 {
            font-size: 14px;
            font-weight: 300;
            color: var(--green-lfc-third);
        }

            .btn-cart li h3 b {
                font-size: 18px;
            }

    .btn-cart svg {
        height: 40px;
        align-content: center;
    }


.products-on-cart-number {
    height: 40px;
    width: 40px;
    background: var(--green-lfc-third);
    border-radius: 20px;
    text-align: center;
    display: grid;
    align-content: center;
}

    .products-on-cart-number p {
        color: var(--grey-lfc-dark);
        font-size: 21px;
        line-height: 18px;
    }

.category-navbar {
    height: 60px;
    background-color: var(--main-green-lfc);
}

    .category-navbar ul {
        display: grid;
        grid-auto-flow: column;
        height: 60px;
        align-content: center;
        justify-content: stretch;
    }

        .category-navbar ul li {
            text-align: center;
        }

            .category-navbar ul li a {
                font-size: 15px;
                font-weight: 700;
                color: var(--green-lfc-third);
                transition: var(--all-transition);
                display: inline-block;
                text-align: center;
            }

                .category-navbar ul li a:hover {
                    transform: translateY(-3px);
                }

/* Banner acima da dobra */

.banner-top {
    background-color: var(--grey-lfc-dark);
    min-height: 340px;
    border-radius: 5px;
}

.banner-top-green-part {
    height: 290px;
    background-color: var(--green-lfc-third);
    border-bottom-left-radius: 50px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

    .banner-top-green-part h1 {
        padding: 0px 20px;
    }

.steps-to-acquire {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: url(../Images/NovoSite/line-steps-adesao.svg) no-repeat center top 24px;
}

    .steps-to-acquire li div {
        height: 50px;
        width: 50px;
        border-radius: 25px;
        background-color: var(--green-lfc-first);
        border: 1px solid var(--main-green-lfc);
        display: grid;
        align-content: center;
        justify-content: center;
        font-size: 35px;
        color: var(--green-lfc-third);
        font-weight: 700;
        margin: auto;
        margin-bottom: 20px;
    }

.banner-top-grey-part {
    height: 50px;
    display: grid;
    align-content: center;
    padding-right: 20px;
}

/* SIDEBAR */

.banner-duvidas {
    border-radius: 5px;
    padding: 20px;
    background: var(--purple-lfc) url(../Images/NovoSite/bg-banner-duvidas.png) no-repeat center center;
    background-size: cover;
    height: 340px;
    display: grid;
    grid-auto-flow: row;
}

    .banner-duvidas ul {
        display: grid;
        grid-template-columns: 80px 1fr;
    }

        .banner-duvidas ul li h3 {
            font-size: 21px;
            font-weight: 300;
            text-align: right;
            color: var(--green-lfc-third);
        }

.cta-on-banner-duvidas {
    background-color: var(--main-green-lfc);
    color: var(--green-lfc-third);
    display: inline-block;
    width: 100%;
    text-align: center;
    height: 50px;
    line-height: 50px;
    vertical-align: center;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 300;
    transition: var(--all-transition);
}

    .cta-on-banner-duvidas:hover {
        transform: translateY(-5px);
    }

.cta-main {
    background-color: var(--main-green-lfc);
    color: var(--green-lfc-third);
    padding: 0px 50px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    vertical-align: center;
    border-radius: 5px;
    font-size: 24px;
    font-weight: 300;
    transition: var(--all-transition);
    display: inline-block;
}

    .cta-main:hover {
        transform: translateY(-5px);
    }

.sidebar {
    padding-right: 20px;
}

/* Banner Newsletter */

.top-banner-newsletter {
    border-radius: 5px 5px 0px 0px;
    background: var(--green-lfc-third) url(../Images/NovoSite/icon-newsletter-banner.svg) no-repeat right 20px bottom;
    padding: 20px;
    padding-bottom: 70px;
}

    .top-banner-newsletter h3 {
        font-size: 21px;
        padding-right: 20px;
        color: var(--grey-lfc-dark);
        line-height: 28px;
    }

.bottom-banner-newsletter {
    border-radius: 0px 0px 5px 5px;
    background: var(--green-lfc-first);
    padding: 20px;
}

    .bottom-banner-newsletter p {
        font-size: 16px;
        font-weight: 700;
        color: var(--grey-lfc-dark);
        padding-bottom: 1rem;
    }

    .bottom-banner-newsletter .g-recaptcha {
        margin-top: 10px;
    }

    .bottom-banner-newsletter .input-news-form {
        height: 50px;
        border-radius: 5px;
        border: 0px;
        font-size: 18px;
        font-weight: 700;
        padding-left: 20px;
        color: var(--grey-lfc-dark);
        margin-bottom: 10px !important;
    }

    .bottom-banner-newsletter .button-news-form {
        background-color: var(--grey-lfc-dark) !important;
        padding-left: 0px !important;
        color: var(--green-lfc-third);
        margin-top: 20px !important;
    }


/* Section Formulário */

.specialist-form {
    background: var(--purple-lfc) url(../Images/NovoSite/pattern-60.png) no-repeat center left;
    background-size: auto 100%;
}

    .specialist-form .container-width {
        grid-template-columns: 1fr;
        display: grid;
    }

.specialist-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.specialist-texts {
    padding-right: 100px;
}


    .specialist-texts h3 {
        color: var(--green-lfc-third);
        font-size: 28px;
        font-weight: 300;
    }

    .specialist-texts p {
        color: var(--green-lfc-third);
        font-size: 18px;
        font-weight: 300;
        line-height: 24px;
        margin-top: 20px;
    }

.specialist-form-content ul {
    display: grid;
    grid-row-gap: 15px;
}

    .specialist-form-content ul li {
        margin-bottom: 20px;
    }

        .specialist-form-content ul li p {
            font-size: 16px !important;
            font-weight: 300 !important;
            color: var(--green-lfc-third) !important;
            margin-bottom: 10px !important;
        }

.if-orgao-publico {
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    grid-column-gap: 20px;
}

    .if-orgao-publico div {
        padding: 10px 20px;
        background-color: var(--green-lfc-third);
        border-radius: 5px;
        color: var(--grey-lfc-dark);
    }

    .if-orgao-publico input {
        height: 15px;
        width: 15px;
        border-radius: 15px;
    }

.campo-formulario-specialist {
    height: 50px !important;
    border-radius: 5px !important;
    border: 0px !important;
    background: #fff !important;
    font-size: 18px !important;
    padding-left: 10px !important;
    width: 100% !important;
    color: var(--grey-lfc-dark) !important;
}

.textarea-formulario-specialist {
    height: 100px !important;
    border-radius: 5px !important;
    border: 0px !important;
    background: #fff !important;
    font-size: 18px !important;
    padding-left: 10px !important;
    width: 100% !important;
    padding-right: 10px !important;
    padding-top: 10px !important;
    color: var(--grey-lfc-dark) !important;
    margin-bottom: 0px !important;
}

.btn-formulario-specialist {
    height: 50px !important;
    border-radius: 5px !important;
    border: 0px !important;
    background: var(--grey-lfc-dark) !important;
    font-size: 18px !important;
    text-align: center !important;
    width: 100% !important;
    color: var(--green-lfc-third) !important;
    font-weight: 700 !important;
    cursor: pointer !important;
}

    .btn-formulario-specialist:hover {
        background: var(--main-green-lfc);
        color: var(--green-lfc-third);
    }


.partners-form {
    background: var(--grey-lfc-dark) url(../Images/NovoSite/pattern-60.png) no-repeat center left;
    background-size: auto 100%;
}

    .partners-form .container-width {
        grid-template-columns: 1fr;
        display: grid;
    }

.btn-formulario-partners {
    height: 50px;
    border-radius: 5px;
    border: 0px;
    background: var(--main-green-lfc);
    font-size: 18px;
    text-align: center;
    width: 100% !important;
    color: var(--green-lfc-third);
    font-weight: 700;
    cursor: pointer;
}

    .btn-formulario-partners:hover {
        background: var(--green-lfc-third);
        color: var(--main-green-lfc);
    }


/* Lista de clientes */

.list-of-clients {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-content: center;
    padding: 20px;
}

.inner-list-of-clients {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 15px;
    align-items: center;
}

    .inner-list-of-clients li {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .inner-list-of-clients li img {
        width: 90px;
        height: 70px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .inner-list-of-clients li img:hover {
        transform: scale(1.1);
    }

/* Lista de produtos */

.order-by-cta {
    display: grid;
    justify-content: end;
    grid-auto-flow: column;
    grid-column-gap: 10px;
    margin-top: 20px;
    align-content: center;
}

    .order-by-cta DropDownList {
        display: grid;
        grid-auto-flow: column;
        align-content: center;
        height: 30px;
        border-radius: 3px;
        border: 1px solid var(--grey-lfc-dark);
        padding: 0px 20px;
        grid-column-gap: 10px;
    }

.products-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 50px;
}

    .products-list li {
        padding: 20px;
    }

        .products-list li .product-image {
            height: 200px;
            background-size: cover;
            background-position: center center;
        }

        .products-list li .product-type {
            font-size: 14px;
            color: var(--grey-lfc-dark);
            font-weight: 700;
        }

        .products-list li .product-title {
            font-size: 16px;
            color: var(--grey-lfc-dark);
            font-weight: 300;
            margin-top: 10px;
        }

        .products-list li .product-price {
            font-size: 18px;
            color: var(--main-green-lfc);
            font-weight: 700;
            margin-top: 10px;
        }

        .products-list li .product-cta {
            display: inline-block;
            padding: 15px;
            width: 100%;
            text-align: center;
            background-color: var(--main-green-lfc);
            margin-top: 20px;
            font-size: 18px;
            color: var(--green-lfc-third);
            border-radius: 5px;
        }

            .products-list li .product-cta:hover {
                background-color: var(--grey-lfc-dark);
            }

/* Footer */

.search-bar-on-footer {
    background-color: var(--green-lfc-third);
    padding: 20px;
}

    .search-bar-on-footer .container-width {
        display: grid;
        grid-template-columns: 1fr 3fr;
    }

.footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: none !important;
}

.icon-and-link {
    color: var(--grey-lfc-dark);
    font-weight: 700;
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    grid-column-gap: 10px;
    align-content: center;
    white-space: nowrap;
}

.social-media-list {
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    grid-column-gap: 10px;
}

.site-map-on-footer {
    padding-left: 50px;
}

    .site-map-on-footer h4 {
        font-weight: 700;
        padding-bottom: 30px;
        color: var(--grey-lfc-dark);
        font-size: 16px;
    }

.links-on-footer {
    display: grid;
    grid-row-gap: 10px;
}

    .links-on-footer li a {
        font-weight: 300;
        color: var(--grey-lfc-dark);
    }

        .links-on-footer li a:hover {
            font-weight: 300;
            color: var(--green-lfc-first);
        }

.links-on-foooter-2-columns {
    grid-template-columns: 1fr 1fr;
}

/* Estilos da página de projetos */

.cta-on-bottom-with-bg {
    margin-top: -220px;
    height: 215px;
    background: url(../Images/NovoSite/lines-on-bottom-bg.svg) no-repeat bottom center;
    background-size: cover;
}

.cta-on-bg-bottom {
    height: 215px;
    display: grid;
    align-content: center;
    justify-content: start;
}

    .cta-on-bg-bottom a {
        padding: 15px 30px;
        background: var(--green-lfc-third);
        color: var(--purple-lfc);
        border-radius: 5px;
        border: 1px solid var(--main-green-lfc);
        font-size: 18px;
        font-weight: 700;
    }

.decreto_link {
    color: var(--green-lfc-second);
    text-decoration: underline !important;
}

    .decreto_link:hover {
        color: #fff;
    }

@media (max-width: 1023px) {
    .full-width-div {
        padding: 0px 10px;
        border-radius: 5px;
        border: 1px solid red;
    }

    .hide-on-mobile {
        display: none;
    }

    .container-width {
        width: 92vw;
        overflow: auto;
    }

    .justify-end {
        justify-content: start;
    }

    /* Heaader top */

    .navbar-first ul {
        white-space: nowrap;
    }

    .cta-top-whatsapp {
        width: 100%;
    }

    .top-bar-left {
        padding-right: 0px;
        justify-content: initial;
    }

    .top-bar-right {
        width: 100%;
        justify-content: initial;
    }

    .logo-lfc {
        text-align: center;
    }

    .top-bar {
        height: auto;
        grid-template-columns: 1fr;
        grid-row-gap: 10px;
        padding: 10px 0px;
    }

        .top-bar ul {
            grid-auto-flow: row;
            grid-row-gap: 10px;
        }

    .search-input {
        grid-auto-flow: column !important;
        max-width: 100%;
    }

    .search-input {
        display: grid;
        grid-auto-flow: initial;
        justify-content: center;
        grid-template-columns: 1fr 100px;
        grid-column-gap: 0px !important;
        padding: 0px;
    }

        .search-input li .textbox_menu {
            height: 50px;
            border-radius: 5px 0px 0px 5px;
            border: 1px solid var(--main-green-lfc);
            padding: 0px 10px 0px 10px;
            width: 100%;
        }

        .search-input li .botaoBusca {
            padding: 0px;
            width: 100%;
        }

    .main-bar {
        justify-content: start;
        overflow-x: scroll;
    }

        .main-bar .container-width {
            grid-template-columns: 1fr 200px;
            grid-column-gap: 20px;
        }

    .category-navbar ul {
        display: grid;
        grid-auto-flow: column;
        justify-content: start;
        grid-column-gap: 20px;
        overflow-x: auto;
        white-space: nowrap;
    }

        .category-navbar ul li a {
            width: auto;
            display: inline-block;
        }

    .sidebar-and-list {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: space-around;
    }

    .specialist-form {
        min-height: auto;
        background: var(--purple-lfc);
    }

        .specialist-form .container-width {
            grid-template-columns: 1fr;
        }

    .partners-form {
        min-height: auto;
        background: var(--purple-lfc);
    }

        .partners-form .container-width {
            grid-template-columns: 1fr;
        }

    .specialist-form-content {
        grid-template-columns: 1fr;
    }

    .specialist-texts {
        padding-right: 0px;
        padding-bottom: 50px;
    }

    .list-of-clients {
        grid-template-columns: 1fr;
    }

    .inner-list-of-clients {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .list-of-clients h1 {
        text-align: center;
        padding: 30px 0px;
    }

    .search-bar-on-footer .container-width {
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
    }

    .footer {
        grid-template-columns: 1fr;
        grid-row-gap: 50px;
    }

    .site-map-on-footer {
        padding-left: 0px;
    }


    .cta-on-bottom-with-bg {
        margin-top: 00px;
    }

    /* Banner on top */

    .banner-top {
        grid-template-columns: 1fr;
    }

    .divided-part-on-banner {
        grid-template-columns: 1fr;
    }

    .banner-top-wrap {
        background-image: linear-gradient(45deg, var(--grey-lfc-dark), var(--grey-lfc-dark));
        background-position: center center;
        background-size: auto 100%;
    }

    .banner-green-side {
        border-radius: 30px 0px 0px 0px;
    }

    .banner-purple-side {
        border-radius: 0px 0px 30px 0px;
    }

    .sidebar {
        padding-right: 0px;
    }

    .products-list {
        grid-template-columns: 1fr;
    }
}


/* Estilos de limpeza */

#divMenuTop li a i {
    display: none !important;
}

p {
    margin: 0px !important;
}

input {
    margin: 0px !important;
}

.dropdown-content {
    display: none !important;
}

.full-width-div {
    padding: 0px 50px;
    border-radius: 5px;
}

@media (max-width: 1023px) {
    .full-width-div {
        width: 100%;
        padding: 0px 5px;
        border-radius: 5px;
    }
}

.confirmation-message-page {
    text-align: center;
    max-width: 300px;
    margin: auto;
}

    .confirmation-message-page h2 {
        font-size: 35px;
        color: var(--green-lfc-first);
        line-height: 44px;
    }

    .confirmation-message-page h4 {
        font-size: 18px;
        color: var(--grey-lfc-dark);
        padding-top: 0px;
        padding-bottom: 20px;
        line-height: 28px;
    }

.align-center-popup {
    display: grid;
    grid-auto-flow: column;
    column-gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.parent {
    display: flex;
}

.child {
    width: 100px;
    margin: auto;
}

/* Responsividade para lista de clientes */

@media (max-width: 1200px) {
    .inner-list-of-clients {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 900px) {
    .list-of-clients {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .inner-list-of-clients {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .inner-list-of-clients {
        grid-template-columns: repeat(3, 1fr);
    }

    .inner-list-of-clients li img {
        width: 70px;
        height: 55px;
    }
}
