#wwd{
	float: left;
	display: block;
	margin: 0px;
	padding: 0px;
	width: 100%;
	background: linear-gradient(to right, #f0efef 50%, #f7f7f7 50%);
	padding-top: 10vh;
	padding-bottom: 10vh;
}

#wwd > h2{
	float: left;
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 800;
	/*background-color: aqua;*/
	transform: scaleY(1.5);
	margin-top: 0px;
	padding-bottom: 1vh;
}

#wwd > h1{
	float: left;
	display: block;
	width: 100%;
	text-align: center;
	font-size: 2.54rem;
	font-weight: 800;
	/*background-color: aqua;*/
	transform: scaleY(1.5);
	margin-top: 0px;
	padding-bottom: 1vh;
}

#wwd > article{
	float: left;
	display: block;
	margin: 0px;
	padding: 0px;
	width: 80%;
	margin-left: 10%;
	margin-right: 10%;
	margin-top: 3.5vh;
}

#wwd > article > hgroup{
	float: left;
	width: 100%;
	 display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Espaciado entre las tarjetas */
  padding: 20px 0; /* Opcional, para agregar espacio adicional */
 
	
	
}

/* --- */

.gradCard{
	background: linear-gradient(180deg, #4cafab, #017d74);
}


.card {
  width: 30%;
  min-height: 380px;
  float: left;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 20px;
	padding-top: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	
	
}

.icon-container {
  width: 135px;
  height: 135px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  
}

.icon {
	margin-top: 40px;
  width: 120px;
  transition: transform 0.5s ease;
}

.card:hover .icon {
  transform: scale(1.2);
}


.card > section{
	margin-top: 12px;
}

.card > section:hover h1{
	color: #000000;
	
}

.card > section > h1 {
  font-size: 22px;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
	transform: scaleY(1.3);
}

.card > section > label {
  font-size: 14px;
  color: white;
 
	font-weight: 400;
	line-height: 1.8; 
}
