.in-banner {
  display: flex;
  gap: 0;
  width: 100%;
  padding: 2em 0;
}

.in-banner-textos {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
  color: var(--color-gray);
  font-size: 0.98em;
  text-align: center;
}

.in-banner-textos div h2 {
  color: var(--color-pri);
  font-weight: 300;
  max-width: 500px;
  padding-bottom: 1em;
  text-transform: uppercase;
  font-size: 1.5em;
}

.in-banner-textos p {
  font-weight: 400;
  margin: 0;
  font-size: 1em;
  color: var(--color-gray);
}

.in-banner-textos ul {
  list-style-type: none;
  padding: 0;
  margin: 1em 0;
}

.in-banner-textos ul li {
  margin: 0.5em 0;
  font-size: 1em;
  color: var(--color-gray);
}

.in-banner-textos ul li span {
  color: var(--color-pri);
  font-weight: bold;
  font-size: 1.2em;
}

.in-banner-textos div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.in-banner-btnTextos {
  display: flex;
  align-items: center;
  gap: 1em;
  border: none;
  padding: 0.75em 1.5em;
  color: var(--color-pri);
  font-weight: 800;
  cursor: pointer;
  background-color: transparent;
  transform: translate(-30px, 0);
  transition: color .4s ease, scale .4s ease;

  & {
    span {
      transition: color .4s ease, scale .4s ease;
    }
  }

  &:hover {
    color: #65b934;

    span {
      scale: 1.1;
    }

    span::after {
      left: 0;
      width: 100%;
    }
  }
}

.in-banner-btnTextos span {
  position: relative;
}

.in-banner-btnTextos span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #65b934;
  transition: width 0.3s ease, left 0.3s ease;
}

.in-banner-animated-arrow {
  display: inline-block;
  animation: moveArrow 0.6s infinite alternate;
}


@keyframes moveArrow {
  0% {
    transform: translateX(-5px);
  }

  100% {
    transform: translateX(5px);
  }
}

.in-banner-imagen {
  position: relative;
  width: 80%;
}

.in-banner-imagen img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  /* border-radius: 50%; */
}

.in-banner a{
  text-decoration: none;
  color: var(--color-pri);
}

@media (max-width: 1440px) {
  .in-banner {
    padding: 0;
  }

  .in-banner-textos {
    font-size: .9em;
    margin-top: -10px
  }

  .in-banner-textos div:nth-child(2) {
    font-size: .95em;
  }

  .in-banner-h2 {
    font-size: 1em;
  }

  .in-banner-textos p {
    font-size: 1em;
  }

  .in-banner-fondo-divider {
    top: 300px;
    height: 500px;
    width: 99vw;
  }
}

@media (max-width: 1024px) {
  .in-banner {
    padding: 0;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 9em;
  }

  .in-banner-textos {
    height: 100%;
    width: 100%;
    padding-left: 0;
  }

  .in-banner-imagen img {
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .in-banner-imagen {
    display: flex;
    justify-content: center;
    margin-bottom: 2em;
    width: 100%;
    padding: 0 1em;
  }

  .in-banner-imagen img {
    height: 100%;
    width: 100%;
  }

  .in-banner {
    gap: 5em;
    align-items: center;
    padding-top: 9em;
  }

  .in-banner-textos {
    gap: 1.2em;
    padding-top: 1em;
  }

}

@media (max-width: 425px) {
  .in-banner {
    gap: 2em;
  }

  .in-banner-textos div h2 {
    font-size: 1em;
    width: auto;
    padding: 1.2em 1em;
  }

  .in-banner-textos p {
    width: auto;
    padding: 0 1em;
  }
}

@media (max-width: 375px) {}

@media (max-width: 320px) {
  .in-banner {
    gap: 2em;
  }
}