I have a page with some DIVs and I would like to apply an effect when the mouse goes through some of them. What I would like to happen is that by hovering over any of the divs it would increase in size, almost as if it were "approaching" the user's screen and that the "Click to learn more" button appears, which is visible at all times, but hiding and appearing only when the mouse passes through the div.
.bloco-programas{
border: 1px solid #c1c1c1;
padding: 2em 2em;
}
.content-programas{
background-color: #003366;
padding-top: 50px;
padding-bottom: 50px;
color: #dcdcdc;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script><scriptsrc="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/js/bootstrap.min.js"></script><linkhref="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script><sectionclass="content-programas" id="programas">
<div class="container-fluid">
<h1 class="text-center">Minhas DIVs</h1>
<div class="row">
<div class="col text-center bloco-programas">
<p>Minha div</p>
<p>Qualquer Coisa aqui</p>
<a href="#" class="btn btn-primary">Clique para saber mais</a>
</div>
<div class="col text-center bloco-programas">
<p>Minha div</p>
<p>Qualquer Coisa aqui</p>
<a href="#" class="btn btn-primary">Clique para saber mais</a>
</div>
</div>
<div class="row">
<div class="col text-center bloco-programas">
<p>Minha div</p>
<p>Qualquer Coisa aqui</p>
<a href="#" class="btn btn-primary">Clique para saber mais</a>
</div>
<div class="col text-center bloco-programas">
<p>Minha div</p>
<p>Qualquer Coisa aqui</p>
<a href="#" class="btn btn-primary">Clique para saber mais</a>
</div>
</div>
</div>
</section>