body {
  background-image: url("../../imagens/background/bg-site.png");
  background-size: contain;
  background-position: bottom;
  background-attachment: fixed;
}
.tabela-produtos {
  margin: 20px auto 20px;
  position: relative;
  z-index: 1;
  border-radius: 4px;
  background-color: #f7f5f5;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0);
}
.tabela-produtos h2 {
  text-transform: uppercase !important;
  font-size: 2em;
  font-weight: bold;
  color: #ca1b13;
}
.tabela-produtos div {
  text-align: center;
}
.tabela-produtos div.row div {
  border-bottom: 1px dashed #dfdfdf;
}
.tabela-produtos div.row div:nth-of-type(1) {
  text-align: center;
  border: none;
}
.tabela-produtos div.row div:nth-last-of-type(1) {
  border: none !important;
}
.tabela-produtos div.row div:nth-last-of-type(2) {
  border: none !important;
}
.tabela-produtos .btn {
  border: none;
}
.tabela-produtos .btn:hover {
  background-color: #ca1b13;
  color: #fff;
}
.no-border {
  border: 0px;
}
header {
  transition: all 0.2s ease-in-out;
  border-bottom: 5px solid #ca1b13;
  background-color: #efefef;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}
header a {
  box-sizing: border-box;
  padding: 0 5px;
}
header a:hover {
  color: #ca1b13;
  text-decoration: none;
}
@media (max-width: 600px) {
  header .areaHead {
    display: flex;
    flex-direction: row;
  }
  header .areaHead .nav {
    display: flex;
    flex-direction: column;
  }
  header .areaHead .nav li a {
    text-align: center;
    padding: 3px;
  }
  header .contatosHead {
    display: none !important;
  }
  header .logoHead img {
    width: 80px;
  }
}
header .nav {
  margin-left: 10px;
}
header .nav .nav-link:hover {
  background-color: #fff;
  color: #ca1b13 !important;
  border-radius: 4px;
}
.scroll {
  position: fixed;
  width: 100%;
  animation-name: scrollAnimation;
  animation-duration: 0.3s;
  z-index: 9999;
}
@keyframes scrollAnimation {
  0% {
    top: -100px;
  }
  100% {
    top: 0px;
  }
}
.Area {
  background-color: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.banner {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px 0px 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
}
.banner ul {
  list-style: none;
  max-width: 1140px;
  padding: 0;
  margin: 0;
}
.banner ul li {
  padding: 0;
  margin: 0;
}
.banner ul li img {
  width: 100%;
}
.banner ul li img.mobile {
  display: none;
}
@media (max-width: 600px) {
  .banner {
    max-width: 600px;
  }
  .banner ul {
    max-width: 600px;
  }
  .banner ul li img {
    display: none;
  }
  .banner ul li img.mobile {
    display: block;
  }
}
#secaoContato {
  background-color: #efefef;
  border-top: 5px solid #ca1b13;
  color: #333 !important;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0px -10px 10px rgba(0, 0, 0, 0.1);
}
#secaoContato:before {
  transition: all 0.2s ease-in-out;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('../../imagens/background/bg-site.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  filter: grayscale(1);
  opacity: 0.05;
}
#secaoContato .nomes {
  box-sizing: border-box;
  padding: 20px 0;
}
#secaoContato .nomes h2 {
  padding: 0px;
  margin: 0px;
  font-weight: bold;
  color: #ca1b13;
}
#secaoContato .nomes h4 {
  padding: 0px;
  margin: 0px;
  font-size: 1.1rem;
  color: #666;
}
#secaoContato p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 2px 0px;
  padding: 0;
}
#secaoContato p a {
  box-sizing: border-box;
  padding: 5px 0;
  margin: 0;
  padding: 0;
}
#secaoContato p strong a {
  font-size: 2rem;
}
#secaoContato .container {
  position: relative;
  box-sizing: border-box;
  padding-bottom: 20px;
}
#secaoContato .container:after {
  transition: all 0.2s ease-in-out;
  content: '';
  width: 100px;
  height: 100px;
  display: block;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('../../imagens/logo/gabi-cruz.svg');
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(1);
  opacity: 0.5;
}
#secaoContato p {
  font-size: 1rem;
}
#secaoContato a {
  font-size: 1rem;
  color: #333;
}
.tabela-produtos .encomenda {
  position: relative;
}
a {
  transition: all 0.2s ease-in-out;
  color: #333;
}
a:hover {
  color: #999;
}
.tabela-produtos .encomenda:after {
  position: absolute;
  top: 20px;
  transition: all 0.2s ease-in-out;
  left: 50%;
  transform: translate(-50%);
  content: "encomenda";
  background-color: #333;
  color: #fff;
  box-sizing: border-box;
  padding: 4px;
  margin: 0px 2px;
  border-radius: 4px;
  font-size: 0.8rem;
  opacity: 0;
}
.tabela-produtos .encomenda:hover:after {
  top: 35px;
  opacity: 1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
/*# sourceMappingURL=style.min.css.map */
@media (max-width: 600px) {
  .tabela-produtos .encomenda:after {
    left: 10px;
    top: initial;
    position: relative;
    transition: all 0.2s ease-in-out;
    content: "encomenda";
    background-color: #333;
    color: #fff;
    box-sizing: border-box;
    padding: 4px;
    margin: 0px 2px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 1;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  }
}
.Articles {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  gap: 40px 20px;
}
.Articles article {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 230px;
  padding: 0px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  justify-content: flex-start;
}
.Articles article figure {
  position: relative;
  width: 230px;
  height: 230px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 10px 10px 0 0;
}
.Articles article figure img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 100%;
}
.Articles article figure.Geladeira {
  background-image: url(../../imagens/icones/icone-geladeira.svg);
  background-size: auto 80%;
  background-repeat: no-repeat;
  background-position: left center;
}
.Articles article h4 {
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;
  box-sizing: border-box;
  padding: 2px 10px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
}
.Articles article ul li {
  font-size: 0.8rem;
  text-align: left;
  text-transform: capitalize;
}
.Articles article p {
  position: relative;
  font-weight: 500;
  color: #666;
  box-sizing: border-box;
  padding: 2px 10px;
  font-size: 0.8rem;
  text-align: left;
}
.Articles article p.alergicos {
  font-size: 0.7rem;
}
.Articles article p.alergicos strong {
  text-transform: uppercase;
}
.Articles article p.alergicos span {
  background-image: url(../../imagens/icones/icone-alergicos.svg);
  background-size: auto 75%;
  background-repeat: no-repeat;
  background-position: 10px center;
  padding: 3px 3px 3px 35px;
}
.Articles article p.validade {
  margin-bottom: 50px;
  background-image: url(../../imagens/icones/icone-validade.svg);
  background-size: auto 75%;
  background-repeat: no-repeat;
  background-position: 10px center;
  padding: 3px 3px 3px 35px;
}
.Articles article p.IconSnow {
  position: absolute;
  bottom: 0px;
  display: flex;
  width: 100%;
  background-color: #E0FFFF;
  border-radius: 4px;
  padding: 5px 3px 5px 35px;
  background-image: url(../../imagens/icones/icone-geladeira.svg);
  background-size: auto 94%;
  background-repeat: no-repeat;
  background-position: 10px center;
  font-size: 0.6rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}
