/* CSS Document */
.ca_corpo {
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: space-evenly;  
  font-family: amiri; 
}
.ca_corpo div { 
  border-style: ridge;
  border-width: 1px;
  border-color: rgba(128, 128, 128, 0.1);
  width: 14%;
}
.ca_corpo h2 {
  line-height: 1.2;  /* X------ Diminui a altura da Linha no Texto */
}
.ca_corpo p {
  text-align: center;
  margin-left  : 1%;
  margin-right : 1%;
  color : #808080;
  line-height: 1.2;  /* X------ Diminui a altura da Linha no Texto */
}

/*  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;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

/* X---------------- Diminuição da Tela ------------- */
@media screen and (max-width:900px) {
  .ca_corpo {
    display: block;
  }  
  .ca_corpo div { 
    width: 100%;
  }
  .img_00 img {
    max-width: 70% !important;
  }
}
@media screen and (max-width:320px) {
  .ca_corpo {
    display: block;
    text-align: center;
  }
  .img_00 img {
    max-width: 60% !important;
  }  
}