 .becas-parallax-section {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
 
  .becas-parallax-bg {
    position: absolute;
    inset: -60px 0;
    background-image: url('../images/beneficios-section/banner-beneficios.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    will-change: transform;
    z-index: 0;
  }

  .becas-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.70);
    z-index: 1;
  }
 
  .becas-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 80px 24px;
    max-width: 680px;
    margin: 0 auto;
  }
 
  .becas-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #93c5fd;
  }
 
  .becas-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
  }
 
  .becas-highlight {
    color: #60a5fa;
  }
 
  .becas-description {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 480px;
    margin: 0;
  }
 
  .becas-description strong {
    color: #ffffff;
    font-weight: 600;
  }
 
  .becas-cta {
    display: inline-block;
    margin-top: 8px;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  }
 
  .becas-cta:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  }
 
  /* Fallback: en mobile, background-attachment: fixed no funciona bien */
  @media (max-width: 768px) {
    .becas-parallax-bg {
      background-attachment: scroll;
      inset: 0;
    }
  }