.banner {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    color: #003366;
    text-align: center;
}

.banner_content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 50px;
    margin: 0 auto;
}

.banner_content p span {
    display: block;
}

.banner_logos {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 50px;
}

.banner h1 {
    font-family: 'CIBFont Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(32px, 6vw, 73px);
    line-height: 100%;
    letter-spacing: -0.7px;
    text-align: center;
    margin: 0;
    color: #003C82;
    text-transform: capitalize;
}

.banner h2 {
    font-family: 'CIBFont Sans', sans-serif;
    font-weight: 200;
    font-size: clamp(20px, 4vw, 54px);
    line-height: 100%;
    letter-spacing: -0.7px;
    text-align: center;
    margin-bottom: 15px;
    color: #003C82;
}

.banner p {
    font-family: 'CIBFont Sans', sans-serif;
    font-weight: 200;
    font-size: clamp(14px, 2.5vw, 25px);
    margin-bottom: 20px;
    letter-spacing: -0.6px;
    color: #2C2A29;
}

.banner_line-container {
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.banner_line {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    height: 0.2px;
    width: calc(100vw - 114px);
    background-color: #2C2A29;
    opacity: 1;
}

.btn_registro {
    position: relative;
    font-family: 'CIBFont Sans', sans-serif;
    font-weight: 300;
    display: inline-block;
    background: #003C82;
    color: #fff;
    padding: 12px 30px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.3s;
    margin-left: 20px;
    font-size: clamp(14px, 2vw, 18px);
}

@media (max-width: 768px) {
  .banner h1 {
    font-size: 56px;
    text-transform: capitalize;
  }

  .banner h2 {
    font-size: 36px
}

 .banner_logos {
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    justify-content: center;
  }

  .banner_logos img {
    max-height: 15px;
    flex-shrink: 0;
  }

 .banner_content p span {
    display: inline;
  }

  .banner p {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .banner_line {
    display: none;
  }

 .banner_line-container {
    width: 100%;
  }

  .btn_registro {
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
    padding: 14px 0;
    font-size: 16px;
  }
}


@media (min-width: 768px) {
  .banner h1 {
    text-transform: uppercase;
  }
}