body{
    top: 0;	  
    background: #414b52;
}



.cabecalho{
	position: relative;
    top: 50px;
    background: #e2dede;
}

.card {
    box-shadow: 10px 9px 6px rgba(99, 57, 57, 0.7);
    
}

.card-body{
    background: #ecebea;
}

.titulo{
	position: relative;
    top: 80px;
	text-align: center;
	color: #236e99;
	
}

.tabela{
	margin-right: 40px; 
	border:solid 1px #a8a8a8; 
	padding:20px;

}

.tabela a{
	text-decoration: none;
}

#menu{
	background-color: black;
	color: rgb(148, 138, 138);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	z-index: 1;
}

.footer{
	position: fixed;
	width: 100%;	
	justify-content: space-between;
	align-items: center;
	background-color: #333;	
}



.container{
	top: 85px;
    position: relative;
    width: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
}

.container .card{
    position: relative;
    max-width: 320px;
    height: 150px;
    background: rgb(170, 167, 167);
    margin: 30px 10px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    box-shadow:  10px 10px 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in-out;    
}

.container .card:hover
{
    height: 500px;
}

.container .card .imgBox{
    position: relative;
    width: 260px;
    height: 175px;
    top: -100px;
    left: 20px;
    z-index: 1;
   
    
}

.container .card .imgBox img{
    max-width: 100%;
    border-radius: 4px;
    
}

.container .card .content{
    position: relative;
    margin-top: -10px;
	height: 150px;
    padding: 10px 15px;
    text-align: center;
    color: #111;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.container .card:hover .content{    
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: 0.3s;
}

h3{
    color: rgb(4, 65, 34);
}

p{
    text-align: justify;
}





