.banner {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #003366;
    text-align: center;
    z-index: 20;
    padding:16px
}

.banner_content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 80px 16px;
    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);
}

.video-container {
  position: relative;
  width: 130%;
  max-width: 1025px;
  margin: 0px -100px -55px -100px;
  z-index: 10;
}

.video-container iframe {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  box-shadow: 0px 5px 30px rgba(0,0,0,0.3);
}

@media (max-width: 1024px) {
  .video-container {
    width: 100%;
    max-width: 800px;
    margin: 0px -20px -90px -20px; 
  }

  .video-container iframe {
    height: 400px;
  }
}

@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;
  }
   .video-container {
    width: 130%;
    max-width: 100%;
    margin: 0px 0px -90px 0px; 
  }

  .video-container iframe {
    height: 250px;
    border-radius: 10px;
  }
}


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

@media (max-width: 375px) {
  .banner_content {
    padding: 0px;
  }
}