.quienes-container {
  padding: 20px 0px;
  position: relative;
 top: 0%;
 height: auto;
  margin-top: 0%;
  display: flex;
  width: auto;
  left: 0%;
  padding-bottom: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:#ffdc75;
}
/* Título */
.quienes-container h2 {
  color: #fdeca6; /* dorado en vez de blanco */
}
.quienes-card {
  background: #000d33;
  max-width: 90vw;
  padding: 40px 50px;
  
  border-radius: 16px;
  width: 90vw;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
   transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.quienes-card:hover {
  background: #000d33;
 
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 5px 40px rgba(0,0,0,0.25);
  transform: translateY(-5px);
 -webkit-transform: translateY(-5px);
 -moz-transform: translateY(-5px);
 -ms-transform: translateY(-5px);
 -o-transform: translateY(-5px);
}
.quienes-card:hover .quienes-title {

  font-weight: 900;
}

.quienes-card:hover .btn-quienes{
  background: linear-gradient(#fdeca6, #fff3cf);
  color: #0b1b3f;
   letter-spacing: 0.3px;
  
}
.quienes-title {
  font-size: 32px;
  color: #fdeca6;
  margin-bottom: 15px;
}

.quienes-title span {
  color: #d88106;
}

.quienes-text {
  font-size: 18px;
  line-height: 1.6;
  color: #f4f1e6;
  margin-bottom: 30px;
}

.btn-quienes {
  display: inline-block;
  padding: 14px 28px;
 background: linear-gradient(#fdeca6, #fff3cf);
  color: #0b1b3f;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-quienes:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    background: linear-gradient(#d88106, #e2a018) !important;
   

}