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

/* ================= BASE ================= */
body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #333;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

/* ================= HEADER ================= */
.menu {
  position: relative;
  width: 100%;
  height: clamp(110px, 16vh, 180px);
  /* corrigido */
  overflow: hidden;
  padding: 0;
  margin-top: 40px;
}

.menu-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* mostra a imagem inteira */
  object-position: center;
  background-color: #fff;
}

/* Barra de pesquisa */
.search-bar {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  padding: 4px 2px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: none;
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  padding: 4px 2px;
  font-size: 13px;
  width: 140px;
  color: #333;
  font-family: 'Montserrat', sans-serif;
}

.search-bar input::placeholder {
  color: #999;
  font-size: 12px;
  letter-spacing: 1px;
}

.search-bar button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #000;
  /* preto */
  padding: 0;
  transition: 0.2s;
}

.search-bar button:hover {
  color: #000;
  opacity: 0.7;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.search-icon {
  width: 16px;
  height: 16px;
  fill: #000;
  /* PRETA */
  opacity: 0.9;
  transition: 0.2s;
}

.search-btn:hover .search-icon {
  opacity: 0.6;
}



/* Botão voltar (seta) */
.back-button {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  text-decoration: none;
  color: #222;
  background: rgba(255, 255, 255, 0.85);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: 0.2s;
}

.back-button:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

/* ================= FOOTER ================= */
.footer {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.footer-img {
  width: 100vw;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-left: calc(-50vw + 50%);
}

.footer-content {
  text-align: center;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-link {
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #222;
  border-bottom-color: #333;
}

.footer-text {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}


/* ================= HOME (estética do cardápio) ================= */
.home-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 20px 90px;
}

.home-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 6px;
}

.home-subtitle {
  letter-spacing: 6px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 34px;
}

.home-text {
  width: min(680px, 100%);
  margin: 0 auto 28px;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.home-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: #222;
  background: #fff;
  padding: 12px 22px;
  border-radius: 14px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.btn-primary {
  border-color: rgba(0, 0, 0, 0.28);
  font-weight: 400;
  /* sem negrito */
}

.home-divider {
  width: min(520px, 85%);
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 44px auto 30px;
}

.home-highlights {
  width: min(780px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.highlight {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.7);
}

.highlight-title {
  display: block;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 6px;
}

.highlight-text {
  display: block;
  font-size: 13px;
  color: #666;
}

/* ================= CARDÁPIO (LISTA PADRÃO) ================= */
.menu-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 90px;
  text-align: left;
}

.menu-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.menu-section-title {
  text-align: center;
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: 600;
  margin: 40px 0 22px;
}

.combos-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-top: 54px;
  margin-bottom: 28px;
}

.price-list {
  width: min(720px, 100%);
  margin: 0 auto;
}

.row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.item {
  font-size: 18px;
  color: #222;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
}

/* Combos com descrição */
.combo-row {
  align-items: flex-start;
}

.item-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.combo-name {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.desc {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* ================= RESPONSIVO ================= */
@media (max-width: 1024px) {
  .home-hero {
    padding: 50px 20px 70px;
  }

  .menu-page {
    padding: 50px 20px 70px;
  }
}

@media (max-width: 768px) {
  .search-bar {
    right: 12px;
    width: auto;
  }

  .search-bar input {
    width: 90px;
    font-size: 11px;
  }

  .home-hero {
    padding: 40px 16px 60px;
  }

  .home-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .home-title {
    font-size: 36px;
  }

  .home-subtitle {
    letter-spacing: 3px;
    font-size: 13px;
  }

  .home-actions {
    gap: 10px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .home-divider {
    margin: 30px auto 24px;
  }

  .menu-page {
    padding: 40px 16px 60px;
  }

  .menu-title {
    font-size: 32px;
  }

  .menu-section-title {
    font-size: 18px;
  }

  .combos-title {
    font-size: 24px;
    margin-top: 46px;
    margin-bottom: 22px;
  }

  .row {
    gap: 12px;
    padding: 12px 0;
  }

  .item,
  .price {
    font-size: 15px;
  }

  .desc {
    font-size: 12px;
  }

  .back-button {
    left: 10px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .footer-links {
    gap: 16px;
  }

  .footer-link {
    font-size: 12px;
    padding: 6px 10px;
  }

  .footer-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .search-bar {
    right: 8px;
    gap: 4px;
  }

  .search-bar input {
    width: 70px;
    font-size: 10px;
  }

  .menu-img {
    object-fit: cover;
  }

  .home-hero {
    padding: 30px 12px 50px;
  }

  .home-text {
    font-size: 13px;
    width: 100%;
  }

  .home-title {
    font-size: 28px;
  }

  .home-subtitle {
    letter-spacing: 2px;
    font-size: 12px;
  }

  .home-actions {
    flex-direction: column;
    gap: 8px;
  }

  .btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 12px;
  }

  .home-divider {
    width: 90%;
  }

  .home-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .highlight {
    padding: 12px 10px;
  }

  .highlight-title {
    font-size: 13px;
  }

  .highlight-text {
    font-size: 12px;
  }

  .menu-page {
    padding: 30px 12px 50px;
  }

  .menu-title {
    font-size: 26px;
  }

  .menu-section-title {
    font-size: 16px;
    margin: 28px 0 16px;
  }

  .combos-title {
    font-size: 20px;
    margin-top: 34px;
    margin-bottom: 18px;
  }

  .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
  }

  .item,
  .price {
    font-size: 14px;
  }

  .combo-name {
    font-size: 13px;
  }

  .desc {
    font-size: 11px;
  }

  .back-button {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .footer {
    min-height: auto;
    padding: 15px 12px;
  }

  .footer-img {
    max-height: 60px;
    margin-bottom: 8px;
  }

  .footer-links {
    gap: 12px;
    margin-bottom: 12px;
  }

  .footer-link {
    font-size: 11px;
    padding: 5px 8px;
  }

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

/* ====== PÁGINA PADRÃO (Pedido / História) ====== */
.page{
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 60px 20px 90px;
  text-align: center;
}

.page-title{
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 18px;
}

.page-title-sm{
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 14px;
}

.page-text{
  width: min(720px, 100%);
  margin: 0 auto 14px;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

.page-links{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 28px;
}

.link-btn{
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.18);
  background: #fff;
  color: #222;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.2s;
}

.link-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.page-box{
  width: min(720px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 18px 18px;
  background: rgba(255,255,255,0.7);
  text-align: left;
}

.page-subtitle{
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.page-list{
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.page-list li::before{
  content: "•";
  margin-right: 10px;
  color: rgba(0,0,0,0.35);
}

.page-divider{
  width: min(520px, 85%);
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 46px auto 34px;
}

/* responsivo */
@media (max-width: 1024px) {
  .page {
    padding: 50px 20px 70px;
  }
}

@media (max-width: 768px) {
  .page {
    padding: 40px 16px 60px;
  }

  .page-title {
    font-size: 32px;
  }

  .page-title-sm {
    font-size: 26px;
  }

  .page-text {
    font-size: 13px;
  }

  .link-btn {
    padding: 9px 14px;
    font-size: 12px;
  }

  .page-box {
    padding: 14px 14px;
  }

  .page-subtitle {
    font-size: 14px;
  }

  .page-list {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 30px 12px 50px;
  }

  .page-title {
    font-size: 24px;
  }

  .page-title-sm {
    font-size: 20px;
  }

  .page-text {
    font-size: 12px;
    line-height: 1.7;
  }

  .page-links {
    flex-direction: column;
    gap: 8px;
  }

  .link-btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 11px;
  }

  .page-box {
    padding: 12px 12px;
    border-radius: 12px;
  }

  .page-subtitle {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .page-list {
    font-size: 12px;
    gap: 8px;
    line-height: 1.6;
  }

  .page-divider {
    margin: 30px auto 20px;
  }
}
