/* === CSS Reset Corto === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  color: #707070;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

p{
    line-height: 1.1;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}


.section-apps{
    min-height: 600px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-apps_logo-vum{
    max-height: 70px;
    object-fit: contain;
    object-position: center;
}

.section-apps_tituloPrincipal{
	background-color: #1783EE;
	color: white;
    font-weight: 500;
    font-size: 1.3rem;
    opacity: 0.8;
}

.section-apps_cards .card-app{
    width: 100%;
    position: relative;
    background-color: #ebebeb;
    box-shadow: 0px 5px 5px #00000029;
    border-radius: 20px;
    transform: translate(-50%,-50%) scale(1.0);
    left: 50%;
    top: 50%;
    transition: 0.3s all ease-in-out ;
    z-index: 0;
}

.section-apps_cards .container-card:hover,
.section-apps_cards .container-card:focus,
.section-apps_cards .container-card:active{
    margin: 0 auto;
}

.section-apps_cards .container-card:hover .card-app,
.section-apps_cards .container-card:focus .card-app,
.section-apps_cards .container-card:active .card-app{
    background-color: white !important;
    transform: translate(-50%,-50%) scale(1.1);
    border: 1px solid #3A00FF;
    z-index: 2;
}

.section-apps_cards .card-app .card-body{
    padding: 2rem 1rem;
}

.section-apps_cards .card-app .card-app_logoApp{
    max-height: 135px;
    height: auto;
    max-width: 130px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 1.4em;
}

.section-apps .card-body_desc{
  min-height: 100px;
  height: auto;
}

.section-apps_cards .card-app .card-body h5{
    font-size: 1.2rem;
	color: #707070;
	font-weight: 500;
}

.section-apps_cards .card-app .card-body p{
    font-size: 1rem;
	color: #707070;
}

.section-apps_cards .card-app .card-body .btn-success{
    border-radius: 20px;
    background-color: #75E06C !important;
    color: #707070;
    text-transform: uppercase !important;
    border: 0px;
}

@media screen and (min-width:760px){
	.section-apps_tituloPrincipal{
		background-color: transparent;
		color: #707070;
	}
	.section-apps_cards .card-app{
		border-radius: 0px !important;
	}
	.section-apps .card-body_desc{
		height: 7.5rem;	
	}
    .section-apps_cards .card-app .card-app_logoApp{
		max-height: 90px;
		height: 6rem;
    }
	.section-apps_cards .card-app .card-body h5{
	    font-size: 0.85rem;
	}
	.section-apps_cards .card-app .card-body p{
		font-size: 0.75rem;
	}
}


@media screen and (min-width:1200px){
  .section-apps{
      height: 100%;
  }
}