﻿h5 {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 600; /* SemiBold — fica firme, mas não exagerado */
    font-size: 18px;
}

h6 {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 500; /* Medium — ideal pra títulos curtos */
    font-size: 16px;
}

p {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 14px;
    margin-bottom: 4px;
}

.price {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 600;
    font-size: 16px;
}

html {
  font-size: 14px;
}


body {
    font-family: "Momo Trust Display", sans-serif;
}

.header-top {
    background-color: #ffd402;
    box-shadow: 0 1px 9px rgb(0 0 0 / 32%);
    width: 100%;
    padding: 8px 15px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 700px;
    margin: 0 auto;
    padding: 5px 15px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
}

.header-center {
    flex: 1;
    text-align: center;
}

.logo-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* espaço entre logo e texto */
}

.logo-status img {
    height: 50px;
    width: auto;
    display: block;
}

.header-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-title {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

.header-status {
    font-size: 13px;
    color: #11b711;
    margin: 0;
}

.info-btn {
    background: #f1f1f1;
    color: #333;
    border: none;
    border-radius: 50px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.info-btn:hover {
    background: #e1e1e1;
}

.info-btn i {
    font-size: 16px;
}

/* Responsivo */
@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        gap: 8px;
    }

    .header-left {
        justify-content: center;
    }

    .info-btn {
        align-self: center;
    }
}

.menu-link {
    text-decoration: none;
}

.menu-card {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-bottom: 10px;
    border-radius: 0px;
    border-bottom: solid 1px #d5d5d5;
    align-items: center;
    background: #fff;
    transition: 0.4s ease-in-out;
}
.menu-card:active, .menu-card:focus {
    transform: scale(1.015);
}

.menu-info {
    flex: 1;
    padding-right: 10px;
}

.menu-title {
    font-size: 16px;
    margin-bottom: 4px;
    color: #3e3e3e;
}

.menu-description {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.3;
}

.menu-price {
    font-size: 15px;
    font-weight: 500;
    color: #3e3e3e;
    margin: 0;
}

.menu-image img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

#menuInferior {
    position: fixed; /* fixa na tela */
    bottom: 0; /* encosta no rodapé */
    left: 0;
    width: 100%; /* ocupa toda a largura */
    background-color: #fff; /* fundo branco */
    /*border-top: 1px solid #ddd;*/
    padding: 8px 0;
    z-index: 1000; /* fica acima de outros elementos */
    box-shadow: 0px -1px 20px 0px #0000003b;
}

#menuInferior i {
    margin-bottom: 2px;
}

#menuInferior span {
    font-size: 13px;
}



@media (min-width: 768px) {
    html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

bi.bi-arrow-left-circle-fill {
    transition: 0.4s ease-in-out;
}
.bi.bi-arrow-left-circle-fill:active, bi.bi-arrow-left-circle-fill:focus {
    transform: scale(1.15);
}

.btn-qty {
    width: 30px;
    height: 30px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #6c757d;
    border: none;
    background-color: transparent;
}

#quantidade {
    min-width: 25px;
    text-align: center;
}

#menuInferiorItens {
    color: #2f2f2f;
}

#header-btn {
    border-radius: 30px;
}

.blink-icon {
    animation: blink 4s infinite;
}
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.rotate-icon {
    display: inline-block;
    animation: spin 5s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.list-hover:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}

.linha-total {
    display: flex;
    justify-content: space-between;
}

.menu-card-cart {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0px;
    border-top: solid 1px #d5d5d5;
    border-bottom: solid 1px #d5d5d5;
    align-items: center;
    background: #fff;
    transition: 0.4s ease-in-out;
}

.item-price {
    font-size: 15px;
    font-weight: 500;
    color: #3e3e3e;
    margin: 0;
}