.aliada-hero {
  --aliada-blue: #23588A;
  position: relative;
  width: 100%;
  height: var(--aliada-hero-height, 760px);
  min-height: 560px;
  overflow: hidden;
  background: #2e342e;
  color: #fff;
  font-family: inherit;
}
.aliada-hero * {
  box-sizing: border-box;
}
.aliada-hero__track,
.aliada-hero__slide {
  position: absolute;
  inset: 0;
}
.aliada-hero__slide {
  display: grid;
  opacity: 0;
  visibility: hidden;
  background-image: linear-gradient(
      90deg,
      rgba(13, 18, 14, var(--slide-overlay, 0.45)) 0%,
      rgba(13, 18, 14, 0.18) 60%,
      rgba(13, 18, 14, 0.05) 100%
    ),
    var(--slide-image);
  background-size: cover;
  background-position: center;
  transition: opacity 0.9s ease, visibility 0.9s ease;
  z-index: 0;
}
.aliada-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.aliada-hero__inner {
  max-width:1340px;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  width:100%;
}
.aliada-hero__content {
  width: min(720px, 62%);
  padding: 80px 0 110px;
}
.aliada-hero__slide.align-center .aliada-hero__inner {
  justify-content: center;
  text-align: center;
}
.aliada-hero__slide.align-right .aliada-hero__inner {
  justify-content: flex-end;
  text-align: right;
}
.aliada-hero__slide.align-center .aliada-hero__actions {
  justify-content: center;
}
.aliada-hero__slide.align-right .aliada-hero__actions {
  justify-content: flex-end;
}
.aliada-hero__eyebrow {
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 600;
color:#23588A;
}
.aliada-hero__heading {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5.1vw, 78px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: #fff;
}
.aliada-hero__description {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.align-center .aliada-hero__description {
  margin-left: auto;
  margin-right: auto;
}
.align-right .aliada-hero__description {
  margin-left: auto;
}
.aliada-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.aliada-hero__button {
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.aliada-hero__button.is-primary {
  background: #fff;
  color: #23588A !important;
}
.aliada-hero__button.is-primary:hover {
  background: var(--aliada-blue);
  border-color: var(--aliada-blue);
  color: #fff !important;
}
.aliada-hero__button.is-secondary {
  background: transparent;
}
.aliada-hero__button.is-secondary:hover {
  background: #fff;
  color: #23588A !important;
}
.aliada-hero__arrow {
  position: absolute;
  bottom: 42px;
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(20, 24, 20, 0.14);
  color: #fff;
  font-size: 21px;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: 0.25s;
  padding-bottom:3px!important;
}
.aliada-hero__arrow:hover {
  background: #fff;
  color: #283228;
}
.aliada-hero__arrow.is-prev {
  right: 112px;
}
.aliada-hero__arrow.is-next {
  right: 48px;
}
.aliada-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 59px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}
.aliada-hero__dots button {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 0.3s;
}
.aliada-hero__dots button.is-active {
  width: 48px;
  background: #fff;
}
.is-active .aliada-hero__eyebrow,
.is-active .aliada-hero__heading,
.is-active .aliada-hero__description,
.is-active .aliada-hero__actions {
  animation: aliadaReveal 0.8s both;
}
.is-active .aliada-hero__heading {
  animation-delay: 0.08s;
}
.is-active .aliada-hero__description {
  animation-delay: 0.16s;
}
.is-active .aliada-hero__actions {
  animation-delay: 0.24s;
}
@keyframes aliadaReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1340px) {
	.aliada-hero__inner{
		padding:0 15px;
	}
}
@media (max-width: 780px) {
  .aliada-hero {
    height: 500px;
  }
  .aliada-hero__slide {
    background-image: linear-gradient(184deg, rgba(12, 17, 13, 0.9) 0%, rgba(12, 17, 13, 0.18) 80%), var(--slide-image);
    background-position: center;
  }
  .aliada-hero__inner {
    padding:0 10px;
    align-items: flex-start;
  }
  .aliada-hero__content,
  .aliada-hero__slide.align-right .aliada-hero__content {
    width: 100%;
    padding: 70px 0 112px;
    text-align: left;
  }
  .aliada-hero__slide.align-center .aliada-hero__content {
    text-align: center;
  }
  .aliada-hero__heading {
    font-size: clamp(38px, 11vw, 55px);
  }
  .aliada-hero__description {
    font-size: 16px;
    line-height: 1.55;
    margin-top: 20px;
  }
  .aliada-hero__actions {
    margin-top: 25px;
  }
  .aliada-hero__slide.align-right .aliada-hero__actions {
    justify-content: flex-start;
  }
  .aliada-hero__arrow {
    width: 44px;
    height: 44px;
    bottom: 28px;
  }
  .aliada-hero__arrow.is-prev {
    right: 74px;
  }
  .aliada-hero__arrow.is-next {
    right: 20px;
  }
  .aliada-hero__dots {
    left: 20px;
    bottom: 48px;
    transform: none;
  }
  .aliada-hero__button {
    min-height: 48px;
    padding: 12px 18px;
  }
}
@media (max-width: 480px) {
  .aliada-hero__eyebrow {
    font-size: 11px;
    margin-bottom: 14px;
  }
  .aliada-hero__heading {
    font-size: 39px;
  }
  .aliada-hero__description {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .aliada-hero__button {
    flex: 1;
    min-width: 135px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .aliada-hero__slide,
  .aliada-hero__button {
    transition: none;
  }
  .is-active .aliada-hero__eyebrow,
  .is-active .aliada-hero__heading,
  .is-active .aliada-hero__description,
  .is-active .aliada-hero__actions {
    animation: none;
  }
}
