.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: 100%;
  height: 100%;
  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;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  contain: paint;
  text-align: center;
  z-index: 2;
}

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

/* Background image per slide — covers full section */
.switcher-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  contain: paint;
}
.switcher-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Icon above content */
.switcher-icon {
  display: block;
  margin-bottom: 1em;
  object-fit: contain;
}

.switcher-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: inherit;
  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 {
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.6em;
}

.switcher-description {
  margin-top: 0.75em;
  font-weight: 300;
  letter-spacing: -0.5px;
  font-size: 1rem;
  line-height: 1.6;
}

.switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  padding: 17px 28px;
  border: 1px solid #fff;
  border-radius: 0;
  background: none;
  cursor: pointer;
  margin-top: 1.2em;
  transition: background 0.3s ease, color 0.3s ease;
}
.switcher-btn:hover {
  background: #fff;
  color: #0f0f0f;
}
.switcher-btn i {
  font-style: normal;
  font-size: inherit;
}
.switcher-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.switcher-btn.reverse {
  flex-direction: row-reverse;
}

/* Split layout (image left/right) */
.switcher-text--split {
  flex-direction: row;
  align-items: center;
}
.switcher-text--split .switcher-inner {
  flex: none;
  min-width: 0;
  width: 50%;
}
.switcher-split-image {
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  contain: paint;
}
.switcher-text--image-left .switcher-split-image {
  order: -1;
}
.switcher-text--image-right .switcher-split-image {
  order: 1;
}
.switcher-text--split .switcher-bg {
  display: none;
}

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