/* CONTENEDOR */
body{
   background: url('../sitio_imgs/fondo_tranparencia.png') no-repeat center center;
   background-size: cover;
   background-attachment: fixed;
   overflow-x:hidden;
   font-family: 'Montserrat', sans-serif;
}

.transparencia{
   background:#e6f0d5;
   padding-bottom:60px;
   text-align:center;
}

/* HERO */
.hero-img{
   position:relative;
   display:flex;
   justify-content:center;
}

.hero-img img{
   width:90%;
   max-width:1200px;
   border-radius:20px;
}

/* TEXTO ENCIMA */
.hero-img h2{
   position:absolute;
   right:25%;
   top:40%;
   color:white;
   font-size:40px;
   font-weight:700;
	font-family: Montserrat;
}

/* CARDS BASE */
.cards{
   display:flex;
   justify-content:center;
   gap:25px;
   flex-wrap:wrap;
   max-width:1100px;
   margin:-80px auto 110px -137px;
}

/* TARJETAS */
.card{
   width:200px;
   height:300px;
	padding:15px;

   background:#7dbb3a;
   border-radius:25px;

   display:flex;
   justify-content:center;
   align-items:center;
   text-align:center;
   text-decoration:none;
   color:white;
   font-weight:600;
   padding:20px;
   font-family: Montserrat;
   box-shadow:0 10px 20px rgba(0,0,0,0.2);
   transition: box-shadow 0.2s ease, filter 0.2s ease;
}

.card p{
	color:white;
	text-align:justify;
}

/* HOVER SIN BRINCO */
.card:hover{
   box-shadow:0 20px 35px rgba(0,0,0,0.3);
   filter:brightness(1.05);
}

/* TOP CARDS (FLOTANDO) */
.cards.top{
   margin-top:-100px;
}

/* TITULO */
.titulo{
   font-size:32px;
	font-weight:700;
   /*color:#3b4ba3;*/
   margin:40px 0 10px;
	font-family: 'Montserrat', sans-serif;
   text-align:center;
   text-decoration:none;
   color:#2E4398;
	top:20%;
}

/* LOGOS */
.cards.logos .card{
   background:#7dbb3a;
	margin-top: 90px;
}

.cards.logos img{
   max-width:120px;
}