@font-face {
  font-family: "LTGlockenspiel";
  src: url("LT Glockenspiel Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

:root{
  --creme: #f2db94;
  --rosa: #da727a;
  --marrom: #733630;

  --glass: rgba(255,255,255,0.86);
  --border: rgba(115,54,48,0.14);
  --shadow: 0 18px 45px rgba(1,1,1,0.10);
}

html { scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #fffaf7;
  color: #111;
}

/* NAVBAR */
.navbar{
  background: rgba(115,54,48,0.92) !important;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.navbar-brand{
  font-family: "LTGlockenspiel", system-ui, sans-serif;
  letter-spacing: 2px;
  color: #fff !important;
  font-size: 26px;
}

.navbar .nav-link{
  color: rgba(255,255,255,0.92) !important;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
}

.navbar .nav-link:hover{
  background: rgba(242,219,148,0.16);
  color: #fff !important;
}

/* HERO */
.hero{
  position: relative;
  padding: 85px 0 40px;
  overflow: hidden;
  color: #fff;
}

.hero::before{
  content:"";
  position: absolute;
  inset: 0;
  background-image: url("img/padrao.png");
  background-repeat: repeat;
  background-size: 650px;
  opacity: 0.98;
  z-index: 1;
}

.hero::after{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(115,54,48,0.90),
    rgba(166,109,88,0.86),
    rgba(218,114,122,0.78)
  );
  z-index: 2;
}

.hero .container{
  position: relative;
  z-index: 3;
}

.hero-card{
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 18px;
  text-align: center;
  border-radius: 26px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}

.brand-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(242,219,148,0.18);
  border: 1px solid rgba(242,219,148,0.22);
  font-weight: 800;
}

.brand-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--creme);
  box-shadow: 0 0 0 4px rgba(242,219,148,0.18);
}

.hero-title{
  font-family: "LTGlockenspiel", system-ui, sans-serif;
  letter-spacing: 1px;
  font-size: 44px;
  margin: 16px 0 10px;
  text-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.hero-sub{
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.95;
}

/* Botões */
.btn-brand{
  background: var(--creme);
  color: var(--marrom) !important;
  border: none;
  font-weight: 1000;
  border-radius: 999px;
  padding: 11px 18px;
}
.btn-brand:hover{ filter: brightness(0.96); }

.btn-brand-outline{
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.70);
  font-weight: 1000;
  border-radius: 999px;
  padding: 11px 18px;
}
.btn-brand-outline:hover{ background: rgba(255,255,255,0.12); }

/* Shell */
.section-shell{
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 26px;
  backdrop-filter: blur(10px);
}

/* Títulos */
.section-title{
  font-family: "LTGlockenspiel", system-ui, sans-serif;
  color: var(--marrom);
  letter-spacing: 1px;
  font-size: 34px;
}
.section-sub{ color: rgba(1,1,1,0.65); }

.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.categoria{
  font-family: "LTGlockenspiel", system-ui, sans-serif;
  color: var(--marrom);
  letter-spacing: 1px;
  font-size: 22px;
  margin: 0;
  display:flex;
  align-items:center;
  gap: 10px;
}
.categoria::before{
  content:"";
  width: 10px;
  height: 22px;
  border-radius: 999px;
  background: var(--rosa);
}

.pill{
  background: rgba(242,169,162,0.30);
  border: 1px solid rgba(218,114,122,0.22);
  color: var(--marrom);
  font-weight: 900;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
}

/* Cards */
.card{
  border: 1px solid rgba(115,54,48,0.10);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(1,1,1,0.08);
  transition: transform .18s ease, box-shadow .18s ease;
  background: rgba(255,255,255,0.92);
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(1,1,1,0.12);
}

.card-img-top{
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #f2f2f2;
}

/* bebidas menores */
#listaBebidas .card-img-top{
  height: 150px;
  object-fit: contain;
  background: white;
  padding: 10px;
}

.card-body{ padding: 16px 16px 18px; }

.card-title{
  color: var(--marrom);
  font-weight: 1000;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.price-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.price{
  font-weight: 1000;
  color: var(--marrom);
  background: rgba(242,219,148,0.55);
  border: 1px solid rgba(115,54,48,0.12);
  padding: 6px 10px;
  border-radius: 999px;
}

.tag{
  font-size: 12px;
  font-weight: 900;
  color: rgba(115,54,48,0.80);
  background: rgba(242,187,167,0.35);
  border: 1px solid rgba(115,54,48,0.10);
  padding: 6px 10px;
  border-radius: 999px;
}

.btn-add{
  background: var(--rosa);
  color: #fff;
  border-radius: 14px;
  font-weight: 1000;
  border: none;
  padding: 11px 12px;
}
.btn-add:hover{ filter: brightness(0.95); }

/* Modal */
.modal-content{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(115,54,48,0.14);
}

.modal-header{
  background: rgba(242,219,148,0.45);
}

.modal-title{
  font-family: "LTGlockenspiel", system-ui, sans-serif;
  color: var(--marrom);
  letter-spacing: 1px;
}

.carrinho-item{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(115,54,48,0.20);
}

.carrinho-item strong{ color: var(--marrom); }
.carrinho-acoes button{ border-radius: 10px; }

/* Mapa Leaflet */
.map{
  height: 250px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(115,54,48,0.14);
  background: #eee;
}

/* Footer */
.footer{
  margin-top: 70px;
  background: rgba(115,54,48,0.92);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-brand{
  font-family: "LTGlockenspiel", system-ui, sans-serif;
  letter-spacing: 2px;
  font-size: 22px;
}

.btn-footer{
  background: rgba(242,219,148,0.95);
  border: none;
  color: var(--marrom);
  font-weight: 1000;
  border-radius: 999px;
  padding: 9px 14px;
}
.btn-footer:hover{ filter: brightness(0.96); }

.footer-link{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-link:hover{ color: var(--creme); }

@media (max-width: 768px){
  .hero-title{ font-size: 34px; }
  .card-img-top{ height: 210px; }
  #listaBebidas .card-img-top{ height: 180px; }
  .hero::before{ background-size: 560px; }
}