.switcher-section {
  height: 100vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #F4EFEA;
  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;
}

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

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



.switcher-text div{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

/* MÓVIL */
@media (max-width: 767px){
  .switcher-section {
    height: 100vh;
  }
  .switcher-texts {
    width: 80vw;
    max-width: 99vw;
    min-height: 120px;
    padding: 0 2vw;
  }
  .switcher-text h2 {
    font-size: 55px !important;
    line-height: 1.18em;
    margin-bottom: 12px;
  }
  .switcher-text p {
    font-size: 19px !important;
    max-width: 80vw;
    padding: 0;
  }
}

.switcher-text h2 {
  font-family: "Neue Montreal", Sans-serif !important;
  font-size: 120px;
  font-weight: 400;
  text-transform: uppercase;
  color: #1B1B1B;
  text-align: center;
  line-height: 1em;
  margin-bottom: 20px;
  word-break: break-word;
}

.switcher-text p {
  font-size: 22px;
  color: #535353;
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  word-break: break-word;
}