* {
  --header-bg-color: #48c78e;
  --header-color: #113726;
  --logo-color: #113726;
  --menu-item: #113726;
}

.custom-container {
  max-width: 70% !important;
  margin: 0 auto;
}

header {
  background-color: var(--header-bg-color);
  color: var(--header-color);
  margin-bottom: 30px;
}

.logo {
  text-decoration: none;
  color: var(--logo-color);
  text-align: center;
  display: block;
}

.logo h1{
  font-size: 36px;
  font-weight: bold;
}

.logo img {
  height: 80px;
  margin: 0 auto;
  display: block;
}

.titulo {
  font-family: "Anton";
}

.custom-menu {
  margin: 0;
  padding: 0;
  margin-top: 30px;
}

.menu-menu-container {
  text-align: center;
  margin: 0 auto;
}

.custom-menu .menu-item {
  padding: 7px 10px;
  display: inline-block;
}

.custom-menu .menu-item a {
  color: var(--menu-item);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.custom-menu .menu-item-has-children {
  position: relative;
}

.custom-menu .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: -2px;
  right: 0;
  width: 150px;
  border-radius: 3px;
}

.custom-menu .menu-item-has-children:hover .sub-menu {
  display: block;
}

.custom-menu .menu-item-has-children .sub-menu .menu-item {
  display: block;
  background-color: rgb(255, 255, 255);
  padding: 5px 0;
  border: 2px solid rgba(0, 0, 0, 0.492);
  border-right: transparent;
}

.custom-menu .menu-item-has-children .sub-menu .menu-item:last-child {
  border-top: transparent;
}

.custom-menu .menu-item-has-children .sub-menu > .menu-item {
  border-top: #000;
}

.custom-footer {
  border-top: 3px solid whitesmoke;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* -- Product item -- */
.card-product .title {
  font-size: 18px;
}
.card-product .card-image img {
  object-fit: contain;
  height: 150px;
  display: block;
  margin: 7px auto;
}

@media screen and (max-width: 42em) {
  .custom-container {
    max-width: 90% !important;
  }
  .silueta img {
    height: 50px;
  }
}
