body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: #f9f9f9;
  color: #222;
}

header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 0px;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 36px;
  margin-right: 10px;
}

.header-cart-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Carrinho */
#cart-btn {
  position: relative;
  margin-right: 20px;
  background: none;
  border: none;
  cursor: pointer;
}
#cart-btn img { height: 32px; }
#cart-count {
  position: absolute;
  top: 1px; right: 0;
  background: #000;
  color: #fff;
  border-radius: 10px;
  padding: 2px 7px 1px 7px;
  font-size: 12px;
}

/* Menu Desktop */
nav {
  display: flex;
  gap: 15px;
}
nav a {
  color: #111;
  font-weight: bold;
  text-decoration: none;
  padding: 8px 7px;
  border-radius: 5px;
  transition: background .2s;
}
nav a:hover {
  background: #f0f0f0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 4px;
  width: 28px;
  background: #111;
  margin: 2px 0;
  border-radius: 2px;
}

/* Ajuste para celulares */
@media (max-width: 800px) {
  nav {
    display: none;
    position: absolute;
    top: 60px; right: 15px;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    min-width: 150px;
    box-shadow: 0 3px 13px rgba(0,0,0,.21);
    z-index: 1001;
  }
  nav.open { display: flex; }
  .hamburger { display: flex; }
}

/* Responsivo espaço conteudo */
.main-content {
  padding-top: 0px;
  max-width: 1500px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 350px;
  max-width: 92vw;
  margin: 0 auto;
  padding: 28px 0;
}

.input-group label {font-weight: bold;}
.input-group input, .input-group textarea {
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-size: 1em;
  margin-bottom: 2px;
}
.input-group textarea { min-height: 70px; }
.input-buttons {
  display: flex; gap: 15px; margin-top:8px;
}
.button {
  padding: 8px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  background: #000;
  color: #fff;
  transition: background .2s;
  font-size: 1.07em;
}
.button:hover { background: #444; }
.link {
  color: #003daa;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 4px;
}

.error { color: #c60c0c; margin-top: 7px; font-weight: bold; }
.success { color: #129312; margin-top: 7px; font-weight: bold; }

.selected-item-container {
  display: flex;
  padding: 25px 18px 30px 18px;
  gap: 32px;
  align-items: flex-start;
  background: #fff;
  min-height: 520px;
  border-radius: 15px;
  box-shadow: 0 0 1.5rem rgba(50,50,80,.06);
}
.selected-image {
  width: 500px; height: 500px;
  object-fit: cover;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 7px rgba(0,0,0,.09);
}
@media (max-width: 1100px) {
  .selected-image { width: 350px; height: 350px; }
}
@media (max-width: 850px) {
  .selected-item-container {
    flex-direction: column; align-items:center; padding: 20px 2vw 12vw 2vw;
  }
  .selected-image { width: 98vw; max-width: 370px; height: 270px; }
} /* REMOVIDA CHAVE EXTRA AQUI */
.selected-title { font-size: 2rem; font-weight: bold; margin-bottom: 10px; }
.selected-desc { font-size: 1.1rem; margin-bottom: 20px;}
.selected-buttons { display: flex; flex-direction: column; gap: 11px; }

.cart-list, #content h2 {
  margin: 24px auto; max-width:500px;
}
.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #ccc;
  background: #fff;
}
.cart-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-item-img {
  width: 70px; height: 70px; border-radius: 7px;
  object-fit: cover;
}
.cart-actions {
  display: flex;
  gap: 13px;
  margin-top: 20px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.section-scroll {
  background: #111;
  color: #fff;
  padding: 17px 0 23px 0;
  margin-top: 10px;
  margin-bottom: 7px;
  position: relative;
  overflow: hidden;
}
.section-title {
  font-size: 1.3rem;
  margin-left: 30px;
  margin-bottom: 10px;
  font-weight: bold;
  width: 120px;
  white-space: nowrap;
}
.scroll-wrapper {
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  padding-left: 30px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}
.scroll-product {
  min-width: 170px;
  margin-right: 18px;
  text-align: center;
}
.product-img {
  width: 150px; height: 150px;
  object-fit: cover;
  margin: 8px auto;
  background: #fff; border-radius: 8px;
  box-shadow: 0 0 7px rgba(0,0,0,.12);
}
.product-caption { color: #fff; font-weight: bold; margin-top: 5px; margin-bottom: 3px; }
.scroll-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 37px; height: 37px;
  background: rgba(68,68,68,0.66);
  color: #fff; font-size: 26px;
  border: none; border-radius: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-50%);
}
.arrow-left { left: 5px; } .arrow-right { right: 5px; }

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx    Banner destaque inicial */
#banner-destaque {
  padding: 60px 0 0 0;
  background: black;
}
.banner-container {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto 25px auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(70,90,150,0.06);
  padding: 25px 40px;
}

.banner-img {
  width: 468px;
  height: 174px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0px rgba(0,0,0,0.09);
}

.banner-text {
  font-size: 1.27rem;
  color: #FFFFFF;
  font-weight: 500;
  flex: 1;
}

/* Campo destaque com imagem flutuante e texto ao redor */
.banner-float-text {
  background: #A9A9A9;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(70,90,150,0.06);
  padding: 23px 36px;
  max-width: 1500px;
  margin: 0 auto 28px auto;
  font-size: 1.15rem;
  min-height: 130px;
} /* REMOVIDA CHAVE EXTRA AQUI */

.banner-img-float {
  float: left;
  width: 468px;
  height: 174px;
  object-fit: cover;
  border-radius: 13px;
  margin-right: 27px;
  margin-bottom: 0px;
  box-shadow: 0 0 10px #0001;
}

/* Responsivo: imagem ocupa linha acima do texto em telas pequenas */
@media (max-width: 600px) {
  .banner-float-text {
    padding: 14px 7vw;
    font-size: 1rem;
  }
  .banner-img-float {
    float: none;
    display: block;
    margin: 0 auto 12px auto;
    width: 85px; height: 85px;
  }
}