*{
	text-shadow:none;
}
body{
	background-color: whitesmoke;
}
.right{
	float : right;
}

.left{
	float : left;
}

.servico{
	padding: 2em;
}


/* IMAGEM TRANSIÇÃO */

	.img__img{
		width: 100%;
		max-height: 30em;
	}

	.img__wrap {
		position: relative;
		height: auto;
		width: 80%;
		border-radius: 100px;
  	}
  
	.img__description_layer {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: #00aa00;
		color: #fff;
		visibility: hidden;
		opacity: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	
		/* transition effect. not necessary */
		transition: opacity .2s, visibility .2s;
	}
	
	.img__wrap:hover .img__description_layer {
		visibility: visible;
		opacity: 1;
	}
	
	.img__description {
		font-size: 2em;
		transition: .2s;
		transform: translateY(1em);
		padding: 1em;
	}

	.img__description a {
		text-decoration: none;
		color: black;
	}
	
	.img__wrap:hover .img__description {
		transform: translateY(0);
	}