@import url('../fonts/fonts.css');

/*     COMPONENTES USADOS EM WEB     */
@import url('components/news.css');
@import url('components/product.css');
@import url('components/about.css');
@import url('components/list.css');
@import url('components/header.css');
@import url('components/banner.css');
@import url('components/banner_footer.css');
@import url('components/cultivo.css');
@import url('components/companies.css');
@import url('components/footer.css');
@import url('components/contact_label.css');


:root {
    --primary_rgb: 4, 61, 28;
    --green-light-rgb: 3, 140, 51;
    --primary: #043D1C;
    --green-dark: #1B5B35;
    --green-light: #038C33;

    --green: #70C536;

    --secondary: #FBC51F;
    --secondary-light: #FBC51E;


    --white: #fff;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1575px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3em;
    gap: 0.25em;

    .current {
        color: var(--green-dark);
        border-color: var(--green-dark);
        width: clamp(1.75em, 1.25vw, 2.5em);
        height: clamp(1.75em, 1.25vw, 2.5em);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        background-color: var(--green-dark);
        color: white;

    }

    .page-link {
        border-color: transparent;
        width: clamp(1.75em, 1.25vw, 2.5em);
        height: clamp(1.75em, 1.25vw, 2.5em);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #505050;
    }

    .arrow {
        width: 2.5em;
        height: 2.5em;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #000;
        font-size: 16px;
    }

    .disabled {
        pointer-events: none;
        width: 2.5em;
        height: 2.5em;
        border-radius: 50%;
        color: #ccc;
    }

    @media screen and (max-width:768px) {
        margin-block: 2em;

    }
}

.f13 {
    font-size: 13px;
}

.f15 {
    font-size: 15px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}

.f20 {
    font-size: 20px;
}

.f24 {
    font-size: 24px;
}

.f28 {
    font-size: 28px;
}

.f26 {
    font-size: 26px;
}

.f30 {
    font-size: 30px;
}

.f35 {
    font-size: 35px;
}



.breadcrumbs {
    /* font-family: "var(--vogue)"; */
    text-transform: lowercase;
    display: flex;
    flex-wrap: wrap;

    a {
        text-decoration: none;
        color: #777777;
        transition: all 0.3s ease;

        &:hover {
            text-decoration: underline;
        }

        &.has-next {
            margin-right: 60px;
            text-wrap: wrap;

            &::after {
                width: 50px;

                text-align: center;
                position: absolute;
                content: "\f054";
                font-family: "Font Awesome 7 Free";
                padding-top: 2px;

                font-size: 14px;
                font-weight: 900;
                text-decoration: none;
                color: #777777;
            }
        }
    }
}

#search-content #orderBy,
#search-content #limit {
    background-color: #F7F7F7;
    border: 1px solid #F7F7F7;
    color: #666666;
    padding: 0.5rem 1.3rem;
    border-radius: 4px;
}

.pagination .page-link {
    color: #000;
}

.pagination .page-item.active .page-link {
    font-weight: bold;
    background-color: #F89401;
    border-color: #F89401;
}


.prod-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prod-share span {
    font-size: 14px;
    font-weight: 500;
    font-weight: bold;
    color: var(--cinza-letra-marca-produto);
}

.prod-share a {
    color: #e7e7e7;
    border: 2px solid;
    border-radius: 8px;
    padding: 3px;
}

.prod-share a:hover {
    color: #212529;
}

.prod-share a svg {
    color: black;
}

.prod-share a i {
    color: black;
}


.filtros-busca .input_container {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
    font-family: sans-serif;
    display: flex;
    align-items: center;
}

.filtros-busca input[type="radio"],
.filtros-busca input[type="checkbox"] {
    cursor: pointer;
    opacity: 0;
    position: absolute;
}

.filtros-busca .checkbox {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #aaa;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.filtros-busca input[type="radio"]:checked+.checkbox,
.filtros-busca input[type="checkbox"]:checked+.checkbox {
    border-color: #F89401;
    background-color: #F89401;
}

.filtros-busca input[type="radio"]:checked+.checkbox::after,
.filtros-busca input[type="checkbox"]:checked+.checkbox::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}