@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* RESET */

* {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    background-color: #000000;
}

/* NAVBAR UP */

.navbar_up {
    background-color: #00A878;
    height: 1.4rem;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    display: flex;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.788rem;
    gap: .4rem;
    width: 100%;
}

/* NAVBAR */

#logo {
    font-size: 1.1rem;
}

#logo a h1 {
    font-family: 'Roboto', cursive;
    font-weight: bold;
    color: #00A878;
}

#logo::first-letter {
    color: #2ECC71;
}

header ul {
    display: flex;
    gap: 1rem;
}

header ul li {
    font-size: 1.3rem;
}

.navbar {
    background-color: #1C1C1E;
    height: 4.4375rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    top: 100;
    flex-wrap: wrap;
}

.navbar> :first-child {
    margin-left: 2.375rem;
}

.navbar> :last-child {
    margin-right: 2.125rem;
}

.fixed_nav {
    position: fixed;
    top: 0;
    scroll-behavior: smooth;
    z-index: 2;
}

.first_ul {
    color: #0F6657;
}

.bounce {
    animation: bounceAnimation 1s;
}

/* Search */

#search_input {
    display: none;
    max-width: 34rem;
    margin: 20px auto;
    align-items: center;
    justify-content: center;
}

.search {
    display: flex;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.search_term {
    flex: 1;
    padding: 8px 10px;
    border: none;
    font-size: 14px;
    outline: none;
}

.search_button {
    padding: 8px 10px;
    border: none;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-size: 14px;
}

.search_button:hover {
    color: #666;
}

.fa-search {
    font-size: 16px;
}

/* CARROSSEL */


.carousel_image {
    display: none;
    overflow: hidden;
    width: 100%;
    object-fit: cover;
}

.carousel .carousel_active {
    display: block;
}

.carousel_buttons {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    bottom: 2rem;
}

.carousel_buttons .carousel_button {
    background-color: transparent;
    border-radius: 3rem;
    width: 3rem;
    height: .5rem;
    border: 2px solid transparent;
    border-color: #8a8a87;
}

.carousel_buttons .carousel_button.button_active {
    background-color: #e6e4e47a;
}

.carousel_image img {
    max-width: 100%;
    height: auto;
}

/* QUALITYS AREA */

.container img {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.container_qualitys {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: #1C1C1E;
    height: 10rem;
    justify-content: center;
    align-items: center;
}

.unique_quality {
    display: flex;
    margin-right: 2rem;
    flex-direction: row;
    align-items: center;
}

.icons_quality {
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    margin-right: .2rem;
}

.text_quality p {
    color: #fff;
    text-transform: uppercase;
    font-size: .8rem;
}

.container_qualitys .unique_quality:last-child .text_quality {
    margin-right: 0;
}

div i img {
    height: 3.75rem;
}

/* TITLES */

.title_wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.titles_generic {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #333740;
    letter-spacing: .5rem;
    gap: 1.8rem;
}

.titles_generic::after {
    content: "";
    flex-grow: 1;
    height: 2px;
    background-color: rgb(145, 153, 145);
    width: 58rem;
}


#first_title {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#first_title::after {
    margin-left: 1.2rem;
    width: 54rem;
}

/* AREA DE PRODUTOS */

#products_area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

#inner_container_new {
    display: flex;
    flex-wrap: wrap;
    width: calc(4 * (16rem + 1rem));
    /* MUDAR O NUMERO DA FRENTE PRA A QUANTIDADE QUE A TELA SUPORTA */
}

.product_single {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    height: 25rem;
    width: 16rem;
    background-color: #1C1C1E;
    border-radius: .333rem;
    padding: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: .4s;
    cursor: pointer;
}

.product_single img {
    width: 14rem;
    border-radius: .6rem;
}

.product_single p {
    margin-top: .6rem;
    font-size: .925rem;
    font-weight: 200;
    color: #F1F3F4;
}

.product_single h3 {
    font-size: 1.3rem;
    margin-top: .6rem;
    color: #0F6657;

}

.reais {
    margin-right: .170rem;
}

.cart_add {
    margin-top: 1.5rem;
    padding: .2rem;
    display: flex;
    background-color: #00A878;
    border-radius: .2rem;
    justify-content: center;
    align-items: center;
    color: #F1F3F4;
}

.cart_add i {
    margin-right: .4rem;
}

.cart_add:hover {
    background-color: #009062;
    transition: background-color 0.3s ease-in-out;
}

.product_vals {
    display: flex;
}

.product_vals p {
    color: #B0B3B8;
    font-size: .850rem;
    margin-top: 1.10rem;
    margin-left: .6rem;
    text-decoration: line-through;
}

#new_product_area {
    margin: 0 2rem 2rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#inner_container_products {
    display: flex;
    flex-wrap: wrap;
    width: calc(4 * (16rem + 1rem));
}

.inner_container {
    display: flex;
    flex-wrap: wrap;
    width: calc(4 * (16rem + 1rem));
    /* filter products */
}

/* READ MORE BUTTON */

.read_more_box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#read_more {
    margin-top: 1rem;
    margin-bottom: 3rem;
    padding: .625rem 1.875rem;
    border-radius: .6rem;
    color: #B0B3B8;
    font-size: 1rem;
    background-color: #1C1C1E;
    cursor: pointer;
}

#read_more:hover {
    transition: 0.3s ease-in-out;
    color: #00A878;
}

.hidden_product {
    display: none;
}

/* WPP ICON */

.wpp_box img {
    height: 3rem;
    width: 3rem;
}

.wpp_box {
    animation: pulse 1s infinite;
    position: fixed;
    right: .875rem;
    bottom: .875rem;
}

/* CART MODAL */

#cart_background {
    width: 100vw;
    height: 100vw;
    color: black;
    display: block;
}

#cart_modal {
    animation: slidein .4s;
    z-index: 1001;
    display: none;
    width: 21.875rem;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
}

.cart_header {
    padding-left: 2rem;
    height: 6.250rem;
    position: relative;
    color: #1E824C;
    background-color: #1C1C1E;
    display: flex;
    align-items: center;
}

.cart_header h2 {
    justify-content: center;
    align-items: center;
}

#cart_closer {
    padding: .322rem;
    font-size: 1.2rem;
    cursor: pointer;
    margin-right: 6.6rem;
}

#cart_closer:hover {
    color: #2ECC71;
    transition: ease-in-out .3s;
}

.cart_content {
    height: calc(100% - 6.250rem);
    padding-left: 2rem;
    background-color: #000000;
}

.cart_itens {
    height: calc(100% - 12rem);
    overflow-y: auto;
    width: 100%;
    padding-right: 2rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    color: white;
}

.cart_itens::-webkit-scrollbar {
    display: none;
}

.cart_itens img {
    width: 5rem;
    height: 5rem;
    cursor: pointer;
}

.cart_item {
    display: flex;
}

.cart_item_texts {
    font-weight: bold;
    font-size: .8rem;
    padding-left: .8rem;
    min-width: 12rem;
}

.cart_item_texts> :first-child {
    width: 9rem;
    margin-bottom: -1rem;
    margin-right: 1rem;
}

.clear_product {
    display: inline-block;
    font-size: .6rem;
    position: relative;
    left: 11rem;
    bottom: 2.785rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s;
    cursor: pointer;
    padding: .2rem;
}

.cart_item_value {
    display: flex;
    gap: .2rem;
    font-size: .850rem;
    margin-bottom: .5rem;
    color: #B0B3B8;
}

.cart_item_quantity {
    display: flex;
    margin-top: .2rem;
    align-items: center;
    border: 1px solid #F1F3F4;
    width: 4rem;
}

.quantity_btn {
    font-size: 1.2rem;
    width: 1.875rem;
    color: #B0B3B8;
    border: none;
    background-color: transparent;
    cursor: pointer;
    gap: .2rem;
    outline: none;
}

.quantity_value {
    margin: 0;
    text-align: center;
    padding: 0 4px;
}

.quantity_btn:hover {
    color: #e0e0e0;
}

.total_price {
    color: #fff;
    font-weight: bold;
    margin-bottom: 2rem;
}

#cart_checkout {
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: .2rem;
}

#button_checkout {
    background-color: #00A878;
    border: none;
    width: 18rem;
    height: 1.9375rem;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: .3s ease-in-out;
}

#button_checkout:hover {
    background-color: #009062;
}

.hidden_product .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.170);
    backdrop-filter: blur(.625px);
    z-index: 2;
    display: none;
}

/* LOGIN E CADASTER MODAL*/

#login_modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 61.25rem;
    height: 29.75rem;
    padding: 1.4rem 4rem 2rem 4rem;
    display: none;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
    background-color: rgba(32, 32, 32, 0.8);
    z-index: 10;
}

#login_modal h2 {
    margin-top: 0;
    font-size: 2rem;
    margin-left: 4.8rem;
    letter-spacing: .1rem;
}

.login_cadaster_modal_content {
    display: flex;
}

.divisor_modal {
    border: .8px solid #ffffff;
    height: 16.75rem;
    margin-left: auto;
    margin-right: auto;
}

.login_modal_closer {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cadaster_modal_content h3 {
    font-size: .9rem;
    font-weight: lighter;
    color: #ffffff;
    margin-left: .2rem;
    margin-bottom: .2rem;
}

#cadaster_modal_content h3 span {
    margin-left: .2rem;
}

#cadaster_modal_content input {
    width: 21.25rem;
    height: 1.8125rem;
    margin-bottom: .2rem;
    padding-left: .2rem;
}

#cadaster_modal_terms {
    margin-left: .2rem;
    display: flex;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

#cadaster_modal_terms input {
    width: .8rem;
    height: 1rem;
    margin-top: auto;
    margin-bottom: auto;
}

#cadaster_modal_terms h4 {
    color: #ffffff;
    font-weight: lighter;
    margin-left: .6rem;
    font-size: .825rem;
    padding: 0;
    height: 1.333rem;
}

#cadaster_modal_terms .terms_outline {
    text-decoration: underline;
}

#login_modal_content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 16.75rem;
}

#login_modal_content span {
    color: #2ECC71;
    text-decoration: underline;
    cursor: pointer;
}

#btn_create_account {
    margin-right: auto;
    margin-left: auto;
    display: block;
    width: 9.375rem;
    height: 2.5rem;
    background-color: #2ECC71;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
}

#btn_create_account:hover {
    color: #2ECC71;
    background-color: #000000;
    transition: .3s ease-in-out;
}

/* OVERLAY */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.270);
    z-index: 2;
    display: none;
}

/* MENU */

.menu_sandwich {
    display: none;
}

.menu {
    background-color: #000000;
    display: none;
}

.fixed_menu {
    position: fixed;
    top: 71px;
    left: 0;
    z-index: 9;
}

/* PRODUCTS SEARCH */

.products_search h2 {
    display: flex;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #333740;
    letter-spacing: .5rem;
    gap: 1.8rem;
}

.products_search_area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.product_search_item {
    height: 25rem;
    width: 16rem;
    background-color: #1C1C1E;
    border-radius: .333rem;
    padding: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: .4s;
}

.product_search_item .product_vals p {
    color: #B0B3B8;
    font-size: .850rem;
    margin-top: 1.1rem;
    margin-left: 0.6rem;
    text-decoration: line-through;
}

.product_search_item img {
    width: 14rem;
    border-radius: .6rem;
    cursor: pointer;
}

.product_search_item p {
    margin-top: .6rem;
    font-size: .925rem;
    font-weight: 200;
    color: #F1F3F4;
}

.product_search_item h3 {
    font-size: 1.3rem;
    margin-top: .6rem;
    color: #0F6657;
}

.first_ul {
    margin-right: 2.375rem;
}

#products_list_filter {
    z-index: 99;
    max-height: 20rem;
    overflow-y: scroll;
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 34rem;
    position: absolute;
    background-color: #1C1C1E;
}

#products_list_filter::-webkit-scrollbar {
    display: none;
}

#products_list_filter li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    color: #B0B3B8;
    border: 1px solid #666;
    padding: .6rem;
}

#products_list_filter li a:hover {
    background-color: #2f2f31d8;
}

.item_search_name {
    margin-left: 1rem;
}

/* FOOTER */

footer {
    color: #fff;
    background-color: #1C1C1E;
    flex-direction: row;
    font-size: 0.725rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

footer .row_div {
    margin-left: 8.1875rem;
    display: flex;
    flex-direction: row;
    gap: 16rem;
}

footer ul {
    margin-top: 0.555rem;
}

footer ul li {
    margin-bottom: 0.377rem;
}

footer ul li a {
    color: #fff;
    position: relative;
    cursor: pointer;
}

footer ul li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #00A878;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    -webkit-transform-origin: left;
    transform-origin: left;
}

footer ul li a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* KEYFRAMES */

@keyframes bounceAnimation {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
        color: rgb(24, 187, 24);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.850;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.850;
    }
}

@keyframes slidein {
    from {
        margin-left: max;
        width: 0%;
    }

    to {
        margin-left: 0%;
        width: 21.875rem;
    }
}

@keyframes slideout {
    from {
        margin-left: 0%;
        width: 21.875rem;
    }

    to {
        margin-left: max;
        width: 0%;
    }
}