/* ========= RESET BÁSICO ========= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #fafafa;
    color: #1a1a1a;
    line-height: 1.5;
    width: 100%;
    height: 1vh;
    margin: 0 auto;
    min-height: 100vh;
    max-width: 580px;
}

/* ========= NAVBAR SUPERIOR ========= */
.top-navbar {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.top-content-nav {
    display: flex;
    padding: 24px 24px 24px 16px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #D2D2D2;
    background: #F8F8F8;
}

.logo {
    height: 32px;
}

.main-container {
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.text-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
}

.title-navbar {
    font-size: 20px;
    font-weight: 600;
    height: auto;
    align-items: center;
}

.buttons-navbar {
    display: flex;
    gap: 16px;
    align-items: center;
    cursor: pointer;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    background: none;
}

.buttons-navbar svg {
    align-items: center;
}

.title-navbar-informacoes {
    font-size: 18px;

    height: auto;
    align-items: center;
}

.status-restaurante {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

.status-restaurante img {
  width: 10px;
  height: 10px;
}

.status-aberto {
  color: #2ecc71; /* verde */
}

.status-fechado {
  color: #e74c3c; /* vermelho */
}


/* ========= CATEGORIAS ========= */
.bottom-content-nav {
    display: flex;
    padding: 16px 24px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-bottom: 1px solid #D2D2D2;
    background: #F8F9FA;
}

.main-icon-container {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    list-style: none;
    overflow-x: auto;   
    align-items: center;
    align-self: stretch;
}

.main-icon-button a,
.main-icon-button button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    cursor: pointer;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    padding: 8px 8px;
    gap: 4px;
    font-weight: 300;
    height: auto;
}

.main-icon-button-selected a,
.main-icon-button-selected button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    color: #1a1a1a;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 8px;
    height: auto;

    gap: 4px;
    font-weight: 500;
    border-bottom: 2px solid #1A1A1A;
}

.main-icon-button .main-icon-button-selected img {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
}

/* ========= LISTA DE PRODUTOS ========= */
h2.category-title {
    padding: 16px 24px 0px 0px;
    color: #1A1A1A;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

line {
    border-bottom: 1px solid #D2D2D2;
    width: 100%;
}

.product-list {
    display: flex;
    padding: 200px 24px 80px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.product-card-container {
    display: flex;
    width: 100%;
    height: auto;
    padding: 4px 16px 4px 16px;
    align-items: center;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid #D2D2D2;
    background: #F8F8F8;

}

.card-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.product-card-content {
    display: flex;
    padding: 16px 0;
    gap: 8px;
    height: auto;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;
}

.title-product-card {
    display: flex;
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

h3 {
    color: #1A1A1A;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

p {
    color: #333;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.text-info-product-card {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-product-card {
    align-self: stretch;
    color: #1A1A1A;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
}

.size-product-card {
    border-radius: 8px;
    border: 1px solid rgba(229, 57, 53, 0.50);
    background: #E53935;
    display: inline-flex;
    padding: 2px 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

span.status-product-card {
    border-radius: 8px;
    border: 1px solid rgba(255, 123, 0, 0.5);
    background: #FF7F50;
    display: inline-flex;
    padding: 2px 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    color: #FFF;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.24px;

}

span.vegetarian-product-card {
    border-radius: 8px;
    border: 1px solid rgba(76, 175, 80, 0.5);
    background: #4CAF50;
    display: inline-flex;
    padding: 2px 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    color: #FFF;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.24px;

}

span.size-product-card {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.24px;
}


/* ========= BOTÃO FIXO (FOOTER) ========= */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 12px 24px;
    text-align: center;
}

button {
    display: flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    align-self: stretch;
    border-radius: 8px;
    background: #D84315;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    border: none;
    max-width: 580px;
    margin: 0 auto;
    cursor: pointer;
}

p {
    font-weight: 450;
}

/* ========= PÁGINA INFORMAÇÕES ========= */
.banner-list {
    display: flex;
    padding: 100px 24px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    width: auto;
    gap: 24px;
}

.title-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.title-h3 {
    color: #1A1A1A;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    width: 100%;
    
}

.banner-product-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #D2D2D2;
    border-radius: 8px;
    padding: 16px;
    background: #F8F8F8;
}

/* ========= PÁGINA PESQUISA ========= */
.top-navbar-search {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px;
    flex-direction: column;
    border-bottom: 1px solid #D2D2D2;
    background: #F8F8F8;
}

.main-container-search {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
}

.search-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #D2D2D2;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    outline: none;
    width: 100%;
}

.search-input:focus {
    border-color: #D84315;
    /* cor do botão "Pedir agora" */
}

.search-results {
    display: flex;
    width: 390px;
    height: 775px;
    padding: 0 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.search-placeholder {
    color: #999;
    font-size: 14px;
    text-align: center;
    margin-top: 40px;
    gap: 8px;
}

/* ========= PÁGINA DE ATENDIMENTO ========= */
.chat-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 16px 100px 16px;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.chat-content {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.chat-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.chat-content p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #444;
}

.chat-embed {
  width: 100%;
  min-height: 500px;
  overflow: hidden;
}
