@charset "UTF-8";
/* ── Variables ── */
:root {
  --pink: #ff635d;
  --yellow: #ffb34e;
  --orange: #f48131;
  --white: #ffffff;
  --dark: #1a1a1a;
  --radius: 20px;
  --slide-h-desktop: 600px;
  --slide-h-mobile: 320px;
  --slide-h-interior: 400px;
}

/* ── Wrapper ── */
.banner-wrapper {
  width: 100%;
  max-width: 1313px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(17, 17, 17, 0.9725490196);
}

/* ── Slider container ── */
.slider {
  position: relative;
  height: var(--slide-h-desktop);
  overflow: hidden;
  border-radius: var(--radius);
}

/* ── Individual slide ── */
.slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide.leaving {
  opacity: 1;
  pointer-events: none;
}

/* ── Background image ── */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* animation applied via JS class */
  transform: translateY(-100%);
  transition: none;
  z-index: 1;
  opacity: 0;
}

.slide.active .slide-bg {
  animation: bgSlideDown 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes bgSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Dark overlay for readability */
.slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(100deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.28) 55%,
      rgba(0, 0, 0, 0.08) 100%); */
}

/* ── Organic blob decoration (fixed, always visible) ── */
.blob-deco {
  position: absolute;
  right: 33%;
  /* Ok @ 1418 */
  top: 3%;
  /* Ok @ 1418 */
  width: 200px;
  height: 300px;
  z-index: 2;
  pointer-events: none;
}

.blob-deco svg {
  width: 200%;
  height: 200%;
}

/* ── Person photo ── */
.slide-person {
  position: absolute;
  bottom: 0;
  right: -5%;
  height: 98%;
  /* Ok @ 1418 */
  z-index: 3 !important;
  object-fit: contain;
  object-position: bottom;
  transform: translateY(100%);
  filter: drop-shadow(-8px 0 20px rgba(0, 0, 0, 0.4));
}

.slide.active .slide-person {
  animation: personUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes personUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
/* ── Text content ── */
.slide-content {
  position: absolute;
  left: 64px;
  /* Ok @ 1418 */
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 530px;
  opacity: 0;
  transform: translateY(-50%) translateX(-60px);
}

.slide.active .slide-content {
  animation: textIn 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

@keyframes textIn {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
.slide-label {
  font-size: 1.2rem;
  font-family: "BwModelica-ExtraBold";
  font-weight: 500;
  color: var(--pink);
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

.slide-title {
  font-family: "edupass700" !important;
  font-size: clamp(2.2rem, 5.5vw, 3.85rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.slide-title span {
  font-family: "edupass300";
  font-weight: 400;
}

.slide-subtitle {
  font-size: clamp(0.78rem, 1.3vw, 1.3rem);
  font-family: "BwModelica-ExtraBold";
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  margin-bottom: 20px;
}

.slide-subtitle strong {
  color: var(--yellow);
  font-weight: 700;
}

.btn-interest {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: "edupass900";
  font-size: 1.3rem;
  padding: 10px 28px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-interest:hover {
  background: #d96510;
  transform: translateY(-1px);
  color: var(--white);
}

/* ── Footer bar ── */
.slider-footer {
  position: relative;
  height: 100%;
  /* no real height — children are absolutely positioned over the slider */
}

.footer-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 14px 48px 12px 40px;
  border-top-right-radius: 22px;
  font-family: "edupass900";
  font-size: 1.32rem;
  font-weight: 700;
  z-index: 10;
}

.footer-tab {
  cursor: pointer;
  color: #bbb;
  transition: color 0.2s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-tab.active-tab {
  color: #bf0053;
}

.footer-sep {
  color: #ccc;
  margin: 0 12px;
  font-weight: 300;
}

/* ── Dots ── */
.dots {
  position: absolute;
  bottom: 16px;
  right: 24px;
  display: flex;
  gap: 7px;
  align-items: center;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

/* ── Nav arrows ── */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: white;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.32);
}

.nav-arrow.prev {
  left: 16px;
}

.nav-arrow.next {
  right: 16px;
}

/* ── Responsive ── */
@media (max-width: 1399px) {
  .blob-deco {
    right: 33%;
    /* Ok @ 1418 */
    top: 3%;
    /* Ok @ 1418 */
    width: 200px;
    height: 300px;
  }
  .slide-person {
    bottom: 0;
    right: -10%;
    height: 98%;
    /* Ok @ 1418 */
  }
  .slide-content {
    position: absolute;
    left: 34px;
    /* Ok @ 1418 */
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    max-width: 530px;
  }
}
@media (max-width: 1199px) {
  .blob-deco {
    right: 25%;
    /* Ok @ 1418 */
    top: 40%;
    /* Ok @ 1418 */
    width: 150px;
    height: 176px;
  }
  .slide-person {
    bottom: 0;
    right: -18%;
    height: 80%;
    /* Ok @ 1418 */
  }
  .slide-content {
    position: absolute;
    left: 34px;
    /* Ok @ 1418 */
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    max-width: 530px;
  }
}
@media (max-width: 768px) {
  .slider {
    height: var(--slide-h-mobile);
  }
  .slide-content {
    left: 20px;
    max-width: 280px;
  }
  .blob-deco {
    width: 140px;
    height: 210px;
    right: 18%;
  }
  .blob-deco svg {
    width: 100%;
    height: 100%;
  }
  .slide-person {
    height: 95%;
    right: 0;
  }
  .nav-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  .slide-label {
    font-size: 0.78rem;
  }
}
@media (max-width: 480px) {
  .slide-person {
    height: 80%;
    opacity: 0.7;
  }
  .slide-content {
    max-width: 240px;
  }
  .slide-title {
    font-size: 1.6rem;
  }
}
/* ── Imagotipo ── */
.cls-1 {
  fill: url(#linear-gradient-2);
}

.cls-1,
.cls-2 {
  mix-blend-mode: multiply;
}

.cls-2 {
  fill: url(#linear-gradient-3);
}

.cls-3 {
  fill: url(#linear-gradient);
}

.cls-4 {
  isolation: isolate;
}

/* ── Banner interior - Wrapper ── */
.banner-interior-wrapper {
  width: 100%;
  max-width: 1313px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(17, 17, 17, 0.9725490196);
  /* ── Slider container ── */
}
.banner-interior-wrapper .slider {
  position: relative;
  height: var(--slide-h-interior);
  overflow: hidden;
  border-radius: var(--radius);
}
.banner-interior-wrapper .blob-deco {
  width: 280px;
  height: 280px;
  right: 10%;
  top: 24%;
}
.banner-interior-wrapper .blob-deco svg {
  width: 100%;
  height: 100%;
}
.banner-interior-wrapper .slide-person {
  position: absolute;
  bottom: 0;
  right: -5%;
  height: 98%;
  z-index: 3 !important;
  object-fit: contain;
  object-position: bottom;
  transform: translateY(100%);
  filter: drop-shadow(-8px 0 20px rgba(0, 0, 0, 0.4));
}/*# sourceMappingURL=slider.css.map */