.switcher-section {
  height: 100vh !important;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.switcher-texts {
  position: relative;
  width: 90vw;
  max-width: 900px;
  min-width: 0;
  height: auto;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 8px;
  z-index: 1;
}

.switcher-text {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.7rem;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.6s, transform 0.6s;
  will-change: opacity, filter, transform;
  text-align: center;
  z-index: 2;
}

.switcher-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.switcher-inner {
  position: relative;
  mix-blend-mode: difference;
  color: #fff;
  z-index: 3;
  text-align: center;
}
.switcher-inner > * {
  margin: 0;
  color: inherit;
}
.switcher-title,
.switcher-subtitle,
.switcher-description {
  display: block;
  width: 100%;
  color: inherit;
}

.switcher-subtitle {
  margin-top: 0.4em;
}

.switcher-description {
  margin-top: 0.75em;
}

.switcher-blend-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.switcher-blend-clone {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  will-change: transform;
}

.switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
}
.switcher-btn.reverse i {
  margin-left: 0.5em;
  margin-right: 0;
}

/* MÓVIL */
@media (max-width: 767px){
  .switcher-section {
    height: 100vh;
  }
  .switcher-texts {
    width: 80vw;
    max-width: 99vw;
    min-height: 120px;
    padding: 0 2vw;
  }
}
