header {
  background: url(../img/img-header.jpg) repeat 0 -20px;
  background-size: 100% 733px;
  min-height: 50vh;
  padding: 3vh 4vh 4vh;
}

.hero h1 b {
  display: inline-block;
  padding-inline-end: 4px;
  padding-block-end: 4px;
  position: relative;
}

.hero h1 b::before {
  content: attr(data-title);
  color: var(--nerd-green);
  -webkit-text-stroke: .15rem white;
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: -1;
}

.hero h1 small {
  color: var(--nerd-green);
  display: block;
  position: relative;
  -webkit-text-stroke: .15rem white;
}

.hero h1 small::before {
  content: "";
  background: url(../img/misc.svg) no-repeat;
  filter: blur(4px);
  position: absolute;
  top: 12px;
  left: 4.5ch;
  height: 2ch;
  width: 5ch;
}

.hero h1 small::after {
  content: "";
  background: url(../img/misc.svg) no-repeat;
  position: absolute;
  top: 10px;
  left: 4.5ch;
  height: 2ch;
  width: 5ch;
}

.hero .content-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.hero-left {
  background-color: var(--nerd-green);
  flex: 2 1 400px;
  mix-blend-mode: multiply;
  margin: 8rem 0 2rem;
  padding: 1rem 1rem 0;
  position: relative;
  width: 100%;
}

.hero h1,
.hero .fecha,
.hero .sello {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}


.hero-left::before {
  background-color: var(--nerd-green);
  content: "";
  filter: blur(1px);
  height: calc(100% + 3px);
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 3px);
  z-index: -1;
}

.hero-left .fecha {
  border: 2px solid;
  border-radius: 1px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  margin-block: 1rem;
  padding: .3rem .5rem;
  text-transform: uppercase;
  width: fit-content;
}

.hero-left .sello {
  border-right: 2px solid;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  opacity: .9;
  padding: 0 .5rem;
  position: absolute;
  right: 2%;
  top: 2%;
  text-align: right;
  text-transform: uppercase;
  width: 9ch;
}

header .social-list {
  margin-inline-end: 2.5rem;
}

.hero-left .btn {
  margin-block-end: .8rem;
}

.hero-right {
  background: black url(../img/badge.svg) no-repeat;
  border-radius: .4rem;
  padding: 32px;
  text-align: center;
  position: relative;
  width: 335px;
}

.youtube-iframe {
  aspect-ratio: 6 / 9;
  height: auto;
  width: 275px;
}

.hero-right h2 {
  font-size: 2rem;
  margin-block-end: 1rem;
  word-break: normal;
}

.hero-right .badge-cinta {
  display: none;
  pointer-events: none;
  position: absolute;
  top: -41%;
  left: 0;
}

.hero-right .register-badge {
  background: black url(../img/badge.svg) no-repeat;
}

.hero-right .register-badge a {
  text-decoration: none;
}

.hero-right .register-badge .btn-outline {
  align-items: center;
  background-color: black;
  color: white;
  display: flex;
  letter-spacing: normal;
  margin-block-end: .8rem;
  padding: .8rem 1.2rem;
  text-transform: initial;
  width: 100%;
}

.hero-right .register-badge .btn-outline:hover {
  background-color: #1e1e1e;
  border-color: #ccc;
}

.hero-right .register-badge .btn-outline p {
  font-family: var(--text-font);
  font-size: 1.2rem;
  font-weight: normal;
  margin: 0 auto;
}

.or-divider {
  align-items: center;
  display: flex;
  font-size: 1.2rem;
  width: 100%;
}

.or-divider:before,
.or-divider:after {
  background-color: white;
  content: "";
  flex: 1;
  height: 1px;
  margin: .4rem;
}

.form-control {
  margin-block-end: .8rem;
  position: relative;
}

.form-control input {
  background-color: black;
  border: 1px solid white;
  border-radius: .2rem;
  color: white;
  padding: .8rem;
  width: 100%;
}

.form-control label {
  color: #CCC;
  left: .8rem;
  bottom: .6rem;
  pointer-events: none;
  position: absolute;
}

.form-control input:focus+label,
.form-control input:not(:placeholder-shown)+label {
  background-color: black;
  font-size: .8rem;
  padding: .2rem;
  top: -.8rem;
  bottom: auto;
}

.form-control input:not(:placeholder-shown) {
  border-color: var(--nerd-blue);
}

.form-control .btn-register {
  background-color: var(--nerd-blue);
  background: linear-gradient(90deg,
      var(--nerd-red) 0%,
      var(--nerd-red) 33.33%,
      var(--nerd-green) 33.33%,
      var(--nerd-green) 66.66%,
      var(--nerd-blue) 66.66%,
      var(--nerd-blue) 100%);
  background-position: 100% 0;
  background-size: 300%;
  color: white;
  font-size: 1.4rem;
  padding: 0.8rem 1.2rem;
  text-align: center;
  width: 100%;
}

.form-control .btn-register:hover {
  background-position: 0 0;
}

.form-control input:-webkit-autofill,
.form-control input:-webkit-autofill:hover,
.form-control input:-webkit-autofill:focus,
.form-control input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px black inset !important;
}

.form-control input:-webkit-autofill {
  -webkit-text-fill-color: white !important;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}

.social-list li a svg {
  color: white;
}

.social-list li a:hover svg {
  color: black;
}

.icon-gratis {
  bottom: -8%;
  right: 6%;
  position: absolute;
}

.sub-title {
  font-size: 0.3em;
  /* Adjust size as needed */
  color: #ffad00;
  font-weight: bold;
  line-height: 1.2;
  /* Reduce spacing */
  display: block;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 48em)
/* 768 */
  {
  .hero h1 {
    font-size: 7rem;
    word-break: break-word;
  }

  .hero .fecha {
    font-size: 1.2rem;
    word-break: break-word;
  }

  .social-list li a img {
    width: 30px;
  }

  .icon-gratis {
    bottom: -10px;
    right: -6%;
    width: 100px;
  }
}

@media screen and (max-width: 40em)
/* 640 */
  {
  .hero-left {
    padding: 1rem .5rem 0;
  }

  .hero-left .sello {
    display: none;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero h1 small::after,
  .hero h1 small::before {
    background-size: 250%;
    clip-path: polygon(0 0, 44px 0, 44px 100px, 0 100px);
    width: 2ch;
  }

  header .social-list {
    gap: 0.5rem;
    margin-block-start: 0;
  }

  header .social-list li a svg {
    padding: .2rem;
    width: 34px;
  }
}

@media screen and (min-width: 67.813rem)
/* 1085px */
  {
  .hero-left {
    margin: 8rem 0;
  }

  .hero-right .badge-cinta {
    display: block;
  }

}