    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family:"Montserrat", sans-serif; letter-spacing: -0.025em;
      background: #f2f2f2;
      color: #222;
    }

    /* === TOP NAV === */
    .top-nav {
      background: #1a1a1a;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 24px;
    }
    .top-nav .logo { display: flex; align-items: center; gap: 10px; }
    .logo-bars { display: flex; flex-direction: column; gap: 3px; }
    .logo-bars span { display: block; height: 3px; background: #e8b84b; }
    .logo-bars span:nth-child(1) { width: 18px; }
    .logo-bars span:nth-child(2) { width: 14px; }
    .logo-bars span:nth-child(3) { width: 18px; }
    .logo-bars span:nth-child(4) { width: 10px; }
    .logo-text {
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      line-height: 1.3;
      text-transform: uppercase;
    }
    .logo-text span { display: block; font-weight: 300; }
    .nav-right { display: flex; align-items: center; gap: 20px; }
    .menu-btn {
      color: #fff;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }
    .search-icon { color: #fff; font-size: 20px; cursor: pointer; }

    /* === TEAL BAR === */
    .teal-bar {
      background: #00c4a7;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 24px;
    }
    .teal-bar .section-label {
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    .teal-bar .nav-links { display: flex; gap: 16px; }
    .teal-bar .nav-links a {
      color: #fff;
      font-size: 13px;
      text-decoration: none;
      opacity: 0.9;
    }
    .teal-bar .nav-links a:hover { opacity: 1; text-decoration: underline; }

    /* === HERO === */
    .hero {
      position: relative;
      height:320px;
      background-repeat: no-repeat;
      background-image: url('https://www.utdt.edu/Themes2G/admision_ayufin/Images/beca-interior/hero_beca_salta_v1.webp');
      background-size: cover;
      background-position: center top;
      background-attachment: fixed !important;
      /*background-position-y:-139px;*/
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgb(196 70 100 / 30%);
      filter: grayscale(100%) brightness(0.75);
    }
    .hero-overlay::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgb(196 70 100 / 21%);
    }
    .hero-title {
      position: absolute;
      bottom: 140px;
      left: 0;
      right: 0;
      text-align: center;
      color: #fff;
      font-size: 60px;
      font-weight: 800;
      letter-spacing: 0.3px;
    }

    /* === INTRO === */
    .intro-section {
      background: #ffffff;
      padding: 44px 24px 36px;
      text-align: center;
    }
    .intro-section p {
      font-size: 20px;
      font-weight: 400;
      color: #222;
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* === PROGRAMA GENERAL === */
    .programa-section {
      background:#f5f3ef;
      padding: 44px 24px 48px;
      text-align: center;
    }
    .programa-section h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 24px;
      color: #222;
    }

    .body-text { padding-top: 30px; padding-bottom: 30px; font-size: 17px; }

    .programa-section .body-text {
      font-size: 17px;
      line-height: 1.7;
      max-width: 680px;
      margin: 0 auto 28px;
      color: #333;
    }

    .programa-section_II {
      background:#fff;
      padding: 44px 24px 48px;
      text-align: center;
    }

    .hl-red { color: #e85060; font-weight: 700; }
    .hl-red-link { color: #ffffff; font-weight: 700; text-decoration: underline; cursor: pointer; }

    .btn-group {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: nowrap;
    }
    .btn-primary {
      background: #EA6C75;
      color: #fff;
      border: 0px solid #EA6C75;
      border-radius: 50px;
      padding: 19px 22px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      font-family: inherit;
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
    }
    .btn-primary:hover { color:#ffffff; }
    .btn-secondary {
      background: #ffffff00;
      color: #e85060;
      border: 2px solid #EA6C75;
      border-radius: 50px;
      padding: 19px 12px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      font-family: inherit;
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
    }
    .btn-secondary:hover { background: #ffffff; }

    /* === CARDS === */
    .cards-section { background:#ffffff; padding: 50px 20px 48px; }
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 960px;
      margin: 0 auto;
      justify-content: center;
    }
    .card {
      background: #ffffff;
      border-radius: 12px;
      padding: 45px 22px 50px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      border: 2px solid #bcbcbc;
    }
    .card h3 {
      font-size: 28px;
      font-weight: 400;
      line-height: 1.4;
      text-align: center;
      color:#000000;
    }
    .card h3 strong { display: block; font-weight: 800; }
    .card p {
      font-size: 17px;
      line-height: 1.65;
      color: #000;
      text-align: center;
      flex: 1;
    }
    .card .btn-group {
      margin-top: auto;
      flex-wrap: nowrap;
    }
    .card .btn-primary,
    .card .btn-secondary {
      font-size: 15px;
      padding: 19px 12px;
      flex: 1;
      text-align: center;
    }


    section h3 {
        padding: 0;
        margin: 0;
        font-weight: 400;
        font-size: 30px;
    }

    /* === FORM FOOTER === */
    .form-footer { background: #00c4a7; padding: 28px 24px; }
    .form-footer h3 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr auto;
      gap: 10px;
      align-items: end;
      max-width: 900px;
    }
    .form-grid input {
      background: #fff;
      border: none;
      border-radius: 6px;
      padding: 9px 12px;
      font-size: 13px;
      font-family: inherit;
      width: 100%;
    }
    .btn-form {
      background: #1a1a1a;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 10px 18px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      white-space: nowrap;
    }
    .btn-form:hover { background: #333; }

    /*.teal-bar {
        position: sticky !important;
        top: 0 !important;
        z-index: 100 !important;
    }*/

    .vercn{ color:#fff !important;  }

      /* ==========================================================================
         INFO
      ========================================================================== */
      .container-info {
        padding:10px 0;
        color:#ffffff;
        background-color: #ffffff;
        z-index: 999999;
      }
      .container-info h3 {
        color:#000000;
        margin-bottom:15px;
        font-weight:600;
        font-size: 24px;
      }
      .container-info h3:after {
        content: '';
        width: 60px;
        height: 4px;
        position: absolute;
        bottom: -10px;
        left: 0px;
        background-color:#00C4B3;
      }
      .container-info .button {
        border: 3px solid #fff!important;
        background-color: transparent;
        color: #fff!important;
        opacity: 1!important;
      }
      .container-info .button:hover {
        background-color:rgba(255,255,255,.2)!important;
      }

      #info h3,p { color:#000; }

    /*.green-wrapper {
        background: #4BC9C2;
      }*/

    .green-wrapper {
        background: #00C4B3;
        background-image: url(../Images/home/becas-bg-hero-2025.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        height: 50px;
        background-position: bottom;
    }
    .page-title h2 {
        font-weight: 300;
        color: #fff;
        padding: 0 7px;
        margin: 0;
        transition: all 300ms ease-out;
        font-size: 1.5em;
    }

    .subt{ position: absolute;
    bottom: 97px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.3px; }


    @media only screen and (max-width: 767px) {
      .subt {
          position: absolute;
          bottom: 95px;
          left: 0;
          right: 0;
          text-align: center;
          color: #fff;
          font-size: 26px;
          font-weight: 500;
          letter-spacing: 0.3px;
      }

      .btn-group {
          display: flex;
          gap: 0px;
          justify-content: center;
          flex-wrap: nowrap;
      }

      .btn-secondary {
          background: #ffffff00;
          color: #e85060;
          border: 2px solid #EA6C75;
          border-radius: 50px;
          padding: 18px 12px;
          font-size: 13px;
          font-weight: 600;
          cursor: pointer;
          font-family: inherit;
          text-decoration: none;
          display: inline-block;
          white-space: nowrap;
      }
    }    

  @media only screen and (max-width: 767px) {
    .btn-group {
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
      flex: 1 1 140px;
      text-align: center;
    }

    .hero-title {
        position: absolute;
        bottom: 140px;
        left: 0;
        right: 0;
        text-align: center;
        color: #fff;
        font-size: 42px;
        font-weight: 800;
        letter-spacing: 0.3px;
    }

    .page-title h2 {
        font-weight: 300;
        color: #fff;
        padding: 0 7px;
        margin: 0;
        transition: all 300ms ease-out;
        font-size: 1.2em;
        top: 7px;
    }

      .hero {
        position: relative;
        height:320px;
        background-repeat: no-repeat;
        background-image: url('https://www.utdt.edu/Themes2G/admision_ayufin/Images/beca-interior/hero_beca_salta_v0_mob.webp');
        background-size: cover;
        background-position: center top;
        background-attachment: fixed !important;
        /*background-position-y:-139px;*/
      }   
  }

    @media only screen and (max-width: 767px) {

      /* Cards: 1 columna en mobile */
      .cards-grid {
        grid-template-columns: 1fr;
      }

      .card {
        padding: 30px 18px 36px;
      }

      .card h3 {
        font-size: 22px;
      }

      .card p {
        font-size: 15px;
      }

      .card .btn-primary,
      .card .btn-secondary {
        font-size: 14px;
        padding: 14px 12px;
      }

    }

    @media only screen and (min-width: 768px) and (max-width: 900px) {
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }

      .card {
        padding: 30px 16px 36px;
      }

      .card h3 {
        font-size: 20px;
      }
    }

    @media only screen and (max-width: 767px) {

    .card .btn-group {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }

    .card .btn-primary,
    .card .btn-secondary {
      flex: unset;
      width: 100%;
      text-align: center;
      padding: 14px 12px;
      font-size: 14px;
    }

    .btn-group {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }    

  }

  .green-wrapper{ position: sticky !important;
      top: 0 !important;
      z-index: 100 !important;
  }

  .page-title{ top: 4px; }

  .intro-section h2{ font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222; }
 
  .intro-section p {
      font-size: 17px;
      font-weight: 400;
      color: #222;
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.5;
  }