<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

.imagem-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  margin-bottom: 50px;
	/*
  background-color: #3199cc; /* Cor de fundo do container */
}

.imagem {
  position: relative;
  width: 100%; /* Ajuste a largura conforme necessÃ¡rio */
  max-width: 300px; /* Largura mÃ¡xima */
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Sombra para o container da imagem */
}

.imagem img {
  width: 100%;
  height: auto;
  display: block; /* Remove espaÃ§os extras abaixo da imagem */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background: rgba(49, 153, 204, 0.9); /* Fundo semi-transparente */
}

.imagem:hover .overlay {
  opacity: 1; /* Torna o overlay visÃ­vel ao passar o mouse */
}

.texto {
  color: white;
  font-size: 1.2em;
  text-align: center;
  padding: 20px;
}
</pre></body></html>