:root{
    --white: #fff;
    --black: #000;
    --red-500: #d20100;
    --red-700: #850303;
    --gray-400: #6e6e6e;
    --gray-500: #474747;
    --whatsapp-green: #25d366;
    --background-nav-color: #242424;
    --background-color: #141414;
}

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

html, body {
    height: 100%;
    overflow-x: hidden;
}

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

h1, h2, h3, span, div, label, .btn {
    font-family: 'Paralucent-Medium', sans-serif;
}

label {
    color: var(--white);
}

body {
    background-color: var(--white);
}

.main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    overflow: visible; /* IMPORTANTE: não limitar rolagem aqui */
    flex: 1;
}

.row {
    margin: 0;
}

.navbar-nav {
    justify-content: end;
    width: 100%;
}

.navbar-nav .nav-item {
    padding: 0;
    width: auto;
}

.navbar-nav .nav-item a:hover {
    color: var(--red-500);
}

.btn-categories {
    background: var(--white);
    color: var(--black);
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5px;
    border-radius: 1rem;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-categories:hover {
    background: var(--red-500);
}

.btn-agape-gray {
    background-color: rgba(255,255,255,.07);
    color: var(--white);
    border-radius: 10px;

    transition: background 500ms;
}

.btn-agape-gray:hover {
    background: linear-gradient( rgba(78,6,178, 0.5), rgba(246,59,8, 0.5) );
    border-color: #fff;
    border-radius: 10px;
}

.text-small {
    font-size: 10px;
}

.border-radius-topmobili {
    border-radius: 10px;
}

input {
    background-color: #f8f8f8 !important;
}

.card {
    background-color: var(--white);
}

:focus { 
    outline: transparent !important;
    box-shadow: 0 0 0 1px var(--black) !important;
}

.navbar {
    width: 100%;
    height: 95px;
    border-radius: 0 0 10px 10px;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--background-nav-color);
    position: sticky;
}

.navbar .menu-logo a img {
    width: 7rem;
    margin-left: 1rem;
}

.header-list div, 
.body-list div {
    color: var(--white);
}

.content {
    display: flex;
    min-height: 100%;
    padding-left: 2rem;
    padding-top: 2rem;
    padding-right: 2rem;
    width: 100%;
}

.user-action {
    background-color: #fff;
    width: 12rem;
    padding: 15px 30px 15px 30px;
    border-radius: 10px;
    position: absolute;
    z-index: 1000;
    display: none;
}

.user-action .user-name-on-action {
    display: none;
}

.user-action a {
    cursor: pointer;
    text-decoration: none;
    color: var(--black);
    display: block;
    width: 100%;
}

.user-action a:hover,
.user-action a:hover i {
    color: #727272;
}

.user-action a i {
    color: #000;
}

.user-action.show {
    transform: translate(10px, 80px);
    display: block;
    z-index: 1000;
    top: 5px;
    right: 0;
    margin-right: 15px;
}

.card-product {
    display: flex;
    flex-direction: column;
    height: 340px;
    cursor: pointer;
    text-decoration: none;
}

.product-img {
    display: flex;
    border-radius: 10px;
}

.product-img img {
    width: 100%;
    border-radius: 10px;
    height: 150px;
    object-fit: fill;
}

.product-info {
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 100%;
    justify-content: space-between;
}

.product-info span {
    color: var(--black);
    font-family: 'Paralucent-Medium', sans-serif;
    font-size: 0.9rem;
}

.product-info .btn-product {
    background-color: var(--white);
    width: 100%;
    color: var(--black);
}

.product-info .btn-product span{
    color: var(--black);
}

.product-info .btn-product i{
    color: var(--black);
}

.cart {
    cursor: pointer;
}

.cart .badge {
    padding-left: 7px;
    padding-right: 7px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
    position: absolute;
    top: 20px;
}

.cart span {
    font-size: 12px;
    background: #ff0000;
    color: #fff;
    padding: 2px 5px;
    vertical-align: top;
    margin-left: -10px; 
}

.cart i {
    font-size: 20px;
}

.search input {
    width: 25%;
}

.card-product-cart {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}

.card-product-cart .product-img {
    display: flex;
    border-radius: 10px;
}

.card-product-cart .product-img img{
    width: 150px;
    border-radius: 10px 0 0 10px;
    height: 100%;
    object-fit: cover;
}

.card-product-cart .product-info {
    justify-content: center;
}

.card-product-cart .product-info button {
    background-color: var(--black);
    color: var(--white);
}

.summary .btn-finish {
    background-color: green;
    color: var(--white);
}

.summary .btn-clean-cart {
    background-color: red;
    color: var(--white);
}

.modal-intern {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: block;
    width: 100%;
    height: 100%;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.whatsapp-button i {
    font-size: 2rem;
}

/* footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
} */

@media only screen and (max-width: 992px) {

    .navbar .menu-logo a img {
        width: 6rem;
    }

    .navbar .menu-profile span{
        display: none;
    }

    .user-action .user-name-on-action {
        display: block;
        border-bottom: 1px solid;
        margin-bottom: 20px;
    }

    .content {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 3rem;
    }

    .search input {
        width: 100%;
    }

    .navbar-nav {
        justify-content: end;
        background-color: var(--white);
    }

    .navbar-nav .nav-item a{
        color: #000;
    }
}