/* CSS Document */
header {
    width: 100%;
}

header > div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dot {
    opacity: 0.8;
    width: 25vw;
    max-width: 900px;
    min-width: 900px;
    height: auto;
    object-fit: contain;
}

/* X------------------------------------------ Corpo */
.products{
  max-width: 100%;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-evenly;  
  font-family: amiri; 
  opacity: 0.9;
}
.products div { 
  border-style: ridge;
  border-width: 2px;
  border-color: rgba(128, 128, 128, 0.1);
  color : #808080;
} 
.products p {
  text-align: center;
  margin-left : 2%;
  color : #808080;
  line-height: 1.2;  /* X------ Diminui a altura da Linha no Texto */
}
.products img {
  padding: 10px -10px 0px -10px;
  opacity: 0.9;
  object-fit: cover; 
  width: 100%;
}
/*  Alterar Imagem */
.img_00 img {
  padding: 10px -10px 0px -10px;
  opacity: 0.9;
  object-fit: cover; 
  width: 100%;  
}
.img_00 img.img-seg {
  display: none;
}
.img_00:hover img.img-pri {
  display: none;
}
.img_00:hover img.img-seg {
  display: inherit;
}

/* X---------------- Diminuição da Tela ------------- */
@media screen and (max-width:900px) {
  .dot {
    height: 100px;
  }
  .products {
    display: block;
    text-align: center;
  }
  .img_00 img {
    max-width: 70% !important;
  }
}
@media screen and (max-width:600px) {
  .img_00 img {
    max-width: 60% !important;
  }
}