:root {
  --font-lato: 'Lato', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
}


.cp-tut,
.cp-tut * {
  box-sizing: border-box;
}

.cp-tut {
  --cp-tut-side-pad: 100px;
  --cp-tut-active-w: 340px;
  --cp-tut-active-h: 560px;
  --cp-tut-peek-left: 360px;
  --cp-tut-peek-top: 84px;
  --cp-tut-peek-w: 96px;
  --cp-tut-peek-h: 408px;
  --cp-tut-visual-w: 500px;

  position: relative;
  overflow: hidden;
  height: 100vh;
  color: #fff;
  isolation: isolate;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.cp-tut__bg,
.cp-tut__overlay {
  position: absolute;
  inset: 0;
}

.cp-tut__bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(8px);
  /*opacity: .96;*/
  transition:
    background-image .45s ease,
    filter 0.8s ease,
    opacity .35s ease;
  will-change: filter, opacity;
	transform: scale(1.03);
}

.cp-tut.is-intro-focus .cp-tut__bg,
.cp-tut.is-bg-sharp .cp-tut__bg {
  filter: blur(0);
  opacity: 1;
}

.cp-tut__overlay {
  /*background:
    linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.42) 38%, rgba(0,0,0,.38) 55%, rgba(0,0,0,.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.22) 100%);*/
	background: rgb(0 0 0 / 35%);
}

.cp-tut__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 100px minmax(320px, 1fr) minmax(430px, var(--cp-tut-visual-w));
  gap: 52px;
  align-items: center;
  min-height: 740px;
  padding: 54px var(--cp-tut-side-pad) 122px;
}

.cp-tut__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: 42px;
  gap: 100px;
  min-height: auto;
  margin: 0;
  padding: 0;
}

.cp-tut__steps::before {
  content: "";
  position: absolute;
  top: 21px;
  bottom: 21px;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,.26);
}

.cp-tut__step {
  position: relative;
  z-index: 1;
  width: 35px;
    height: 35px;
  margin-left: 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  line-height: 1;
}

.cp-tut__step span {
  display: block;
  line-height: 1;
}

.cp-tut__step:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,.18);
}

.cp-tut__step.is-active {
  transform: scale(1.28);
  background: rgba(255,255,255,.38);
  border-color: rgba(255,255,255,.45);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

.cp-tut__step.is-done {
  background: rgba(255,255,255,.20);
}

.cp-tut__content {
  max-width: 500px;
}

.cp-tut__eyebrow-wrap {
  margin-bottom: 18px;
}

.cp-tut__eyebrow {
  display: inline-block;
  padding: 10px 16px;
  background: #f4ab21;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  font-family: var(--font-lato);
}

.cp-tut__title {
  margin: 0 0 18px;
  max-width: 640px;
  /*font-size: clamp(38px, 5vw, 64px);*/
  font-size: 48px;
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.03em;
  font-family: var(--font-lato);
	color: #fff;
}

.cp-tut__text {
  margin: 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: #FFFFFF;
  font-family: var(--font-montserrat);

}

.cp-tut-cnt__cta {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-top: 30px;
    gap: 10px;
    flex-wrap: wrap;
	font-family: var(--font-montserrat);
}

.cp-tut__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: .5rem 1rem;
  border: 0;
  background: rgb(0 109 165 / 60%);
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 22px rgba(0,0,0,.20);
  cursor: pointer;
  transition: transform .25s ease, opacity .25s ease;
}

.cp-tut__cta:hover {
  transform: translateY(-2px);
  opacity: .96;
    background: rgb(0 109 165 / 60%);
	color: #fff;

}

.cp-tut__cta.is-disabled {
  opacity: .45;
  pointer-events: none;
}

.cp-tut__cta-icon {
  font-size: 17px;
  line-height: 1;
}

.cp-tut__visual {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--cp-tut-visual-w);
  height: var(--cp-tut-active-h);
  justify-self: end;
  margin-left: auto;
  overflow: visible;
}

.cp-tut__card {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  transition:
    transform .48s cubic-bezier(.22,.61,.36,1),
    opacity .48s cubic-bezier(.22,.61,.36,1),
    width .48s cubic-bezier(.22,.61,.36,1),
    height .48s cubic-bezier(.22,.61,.36,1),
    top .48s cubic-bezier(.22,.61,.36,1),
    left .48s cubic-bezier(.22,.61,.36,1),
    box-shadow .48s cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity, width, height, top, left;
}


/* Clones temporales para animación */
.cp-tut__anim-card {
  position: absolute;
  z-index: 8;
  pointer-events: none;
  margin: 0;
}

.cp-tut.is-fx-running .cp-tut__card--active,
.cp-tut.is-fx-running .cp-tut__card--peek {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

/* Ghost cards para animación suave */
.cp-tut__card--ghost {
  z-index: 8;
  pointer-events: none;
  will-change: transform, opacity, top, left, width, height;
}

.cp-tut__card--ghost-to-peek .cp-tut__card-content {
  opacity: 0;
  transition: opacity .18s ease;
}

.cp-tut.is-clone-animating .cp-tut__card--active,
.cp-tut.is-clone-animating .cp-tut__card--peek {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: none !important;
}

.cp-tut__card--active {
  top: 0;
  left: 0;
  width: var(--cp-tut-active-w);
  height: var(--cp-tut-active-h);
  z-index: 3;
  cursor: pointer;
}

.cp-tut__card--peek {
  top: var(--cp-tut-peek-top);
  left: var(--cp-tut-peek-left);
  width: var(--cp-tut-peek-w);
  height: var(--cp-tut-peek-h);
  z-index: 2;
  opacity: .95;
  cursor: default;
}

.cp-tut__card.is-hidden,
.cp-tut__card--peek.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.cp-tut__card-media,
.cp-tut__card-media--peek {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition:
    background-image .35s ease,
    transform .48s cubic-bezier(.22,.61,.36,1),
    opacity .35s ease;
  will-change: transform, opacity;
}

.cp-tut.is-animating .cp-tut__card-media {
  transform: scale(1.04);
}

.cp-tut__card-shade {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.04) 35%, rgba(0,0,0,.72) 100%);*/
}

.cp-tut__card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /*padding: 14px;*/
}

.cp-tut__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 14px;
  background: #f4ab21;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
	margin: 15px;
	font-family: var(--font-lato);
}

.cp-tut__card-copy {
    width: 100%;
    background: rgb(0 0 0 / 50%);
    padding: 10px 15px;
    margin: 30px 0;
}

.cp-tut__card-title {
  margin: 0px;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
	font-family: var(--font-lato);
}

.cp-tut__card-desc {
  display: none;
}

/* Card final */
.cp-tut__card.is-final .cp-tut__badge {
  display: none;
}
/*
.cp-tut__card.is-final .cp-tut__card-shade {
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.28) 40%, rgba(0,0,0,.72) 100%);
}*/

.cp-tut__card.is-final .cp-tut__card-content {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 26px;
}

.cp-tut__card.is-final .cp-tut__card-copy {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.cp-tut__card.is-final .cp-tut__card-title {
  margin: 0;
  max-width: 260px;
  font-size: 32px;
  line-height: 1.08;
  text-align: center;
}

.cp-tut__card.is-final .cp-tut__card-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 0;
  padding: 12px 18px;
  min-width: 148px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}

.cp-tut__card.is-final:hover .cp-tut__card-desc {
  background: rgba(255,255,255,.20);
}

.cp-tut__card--peek.is-final .cp-tut__card-shade,
.cp-tut__card--peek.is-final .cp-tut__card-content {
  display: none;
}

/* Flechas laterales */
.cp-tut__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  color: transparent;
  font-size: 0;
  cursor: pointer;
  transform: translateY(-50%);
  /*backdrop-filter: blur(6px);*/
  transition: .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-tut__nav, .cp-tut__nav:hover,
.cp-tut__nav:focus {
  background: transparent;
}

.cp-tut__nav::before {
  display: inline-block;
  font-size: 40px;
  line-height: 1;
  color: rgb(255 255 255 / 50%);
  transform: scaleY(2.5);
}

.cp-tut__nav--prev::before {
  content: "\23F4";
}

.cp-tut__nav--next::before {
  content: "\23F5";
}

.cp-tut__nav--prev {
  left: -60px;
}

.cp-tut__nav--next {
  right: -15px;
}

.cp-tut__nav.is-disabled {
  opacity: 0;
  pointer-events: none;
}

.cp-tut__footer {
  position: absolute;
  left: var(--cp-tut-side-pad);
  right: var(--cp-tut-side-pad);
  bottom: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
	font-family: var(--font-montserrat);
}

.cp-tut__footer-line {
  width: min(860px, 100%);
  height: 2px;
  background: rgba(255,255,255,.26);
}

.cp-tut__questions {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-montserrat);
}

.cp-tut__questions_white, .cp-tut__questions_white:hover {
  color: #fff !important;
}

.cp-tut__questions_black, .cp-tut__questions_black:hover {
  color: #000 !important;
}



.cp-tut__questions:hover {
  opacity: .95;
}

.cp-tut__questions-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-size: 0;
  line-height: 1;
  transform: translateY(-4px);
  margin-top: 10px;
}

.cp-tut__questions-arrow::before {
  content: "\23F7";
  display: inline-block;
  font-size: 34px;
  line-height: 1;
  color: rgb(255 255 255 / 50%);
  transform: scaleX(2.5);
}

.cp-tut__questions-arrow_black::before {
  color: rgb(0 0 0 / 50%);
}



.cp-tut-empty {
  padding: 18px 20px;
  border: 1px dashed #cfcfcf;
  background: #fafafa;
  color: #222;
  font-size: 14px;
}

/* Animación al avanzar *//*
.cp-tut.is-transitioning-next .cp-tut__card--active {
  transform: translateX(-56px) scale(.90) rotate(-1.2deg);
  opacity: 0;
}

.cp-tut.is-transitioning-next .cp-tut__card--peek {
  top: 0;
  left: 0;
  width: var(--cp-tut-active-w);
  height: var(--cp-tut-active-h);
  opacity: 1;
  z-index: 4;
  box-shadow: 0 22px 48px rgba(0,0,0,.28);
}

.cp-tut.is-transitioning-next .cp-tut__card-media--peek {
  transform: scale(1.06);
}*/

/* Animación al avanzar (siguiente) */
/* Card temporal para el retroceso */
.cp-tut__card--ghost-prev {
  top: 0;
  left: 0;
  width: var(--cp-tut-active-w);
  height: var(--cp-tut-active-h);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(-1 * (var(--cp-tut-active-w) + 90px)));
}

/* Animación al avanzar (siguiente) */
.cp-tut.is-transitioning-next .cp-tut__card--active {
  transform: translateX(calc(-1 * (var(--cp-tut-active-w) + 90px)));
  opacity: 0;
}

.cp-tut.is-transitioning-next .cp-tut__card--peek {
  top: 0;
  left: 0;
  width: var(--cp-tut-active-w);
  height: var(--cp-tut-active-h);
  opacity: 1;
  z-index: 4;
  transform: translateX(0);
  box-shadow: 0 22px 48px rgba(0,0,0,.28);
}

.cp-tut.is-transitioning-next .cp-tut__card-media--peek {
  transform: scale(1.02);
}

/* Animación al retroceder (anterior) */
.cp-tut.is-transitioning-prev .cp-tut__card--ghost-prev {
  transform: translateX(0);
  opacity: 1;
}

.cp-tut.is-transitioning-prev .cp-tut__card--active {
  top: var(--cp-tut-peek-top);
  left: var(--cp-tut-peek-left);
  width: var(--cp-tut-peek-w);
  height: var(--cp-tut-peek-h);
  opacity: .95;
  z-index: 3;
  transform: translateX(0);
}

.cp-tut.is-transitioning-prev .cp-tut__card--peek {
  transform: translateX(calc(var(--cp-tut-peek-w) + 70px));
  opacity: 0;
}

/* Saltos largos */
.cp-tut.is-transitioning-fade .cp-tut__card--active {
  transform: translateY(14px) scale(.965);
  opacity: .12;
}

.cp-tut.is-transitioning-fade .cp-tut__card--peek {
  transform: translateY(18px) scale(.94);
  opacity: .06;
}

/* Estilos botón volver al inicio en >= 786px*/
.cp-tut__cta--back {
  margin-left: 10px;
  background: rgba(0,0,0,0.5);
}
.cp-tut__cta--back:hover {
  background: rgba(0,0,0,0.7);
}

@media (max-width: 1200px) {
  .cp-tut {
    --cp-tut-side-pad: 28px;
    --cp-tut-peek-left: 290px;
    --cp-tut-peek-w: 88px;
    --cp-tut-visual-w: 378px;
  }

  .cp-tut__inner {
    grid-template-columns: 42px 1fr 378px;
    gap: 34px;
    padding: 42px var(--cp-tut-side-pad) 110px;
  }

  .cp-tut__title {
    font-size: clamp(28px, 3.2vw, 46px);
  }

  .cp-tut__nav--next {
    right: 2px;
  }
}
/*
@media (max-width: 991px) {
  .cp-tut {
    --cp-tut-active-w: 320px;
    --cp-tut-active-h: 500px;
    --cp-tut-peek-left: 262px;
    --cp-tut-peek-top: 70px;
    --cp-tut-peek-w: 78px;
    --cp-tut-peek-h: 350px;
    --cp-tut-visual-w: 340px;
  }

  .cp-tut {
    min-height: auto;
  }

  .cp-tut__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding: 28px 20px 100px;
  }

  .cp-tut__steps {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
    min-height: auto;
    padding-top: 8px;
  }

  .cp-tut__steps::before {
    top: 50%;
    bottom: auto;
    left: 21px;
    right: 21px;
    width: auto;
    height: 2px;
    transform: translateY(-50%);
  }

  .cp-tut__step.is-active {
    transform: scale(1.18);
  }

  .cp-tut__content {
    order: 2;
  }

  .cp-tut__visual {
    order: 3;
    justify-self: center;
    margin-left: 0;
  }

  .cp-tut__nav--prev {
    left: 0;
  }

  .cp-tut__nav--next {
    right: 0;
  }

  .cp-tut__footer {
    left: 20px;
    right: 20px;
    bottom: 16px;
  }
}*/

/* =========================================
   MOBILE: Solo mostrar tarjeta activa
   ========================================= */
@media (max-width: 768px) {
  /* El track se vuelve contenedor normal */
  .cp-tut__track {
    position: relative !important;
    min-height: 280px; /* reserva espacio, se ajusta al contenido */
  }

  /* Todas las tarjetas pierden posiciones absolutas */
  .cp-tut__track .cp-tut__card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    margin: 0 !important;
    visibility: visible !important;
  }
	
.cp-tut__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding: 28px 20px 100px;
	        display: grid;
        grid-auto-flow: row;
        align-items: stretch;
        justify-items: center;
        align-content: space-evenly;
  }
	
  .cp-tut__steps {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 14px;
    min-height: auto;
    /*padding-top: 8px;*/
  }
	
  .cp-tut__steps::before {
    top: 50%;
    bottom: auto;
    left: 21px;
    right: 21px;
    width: auto;
    height: 2px;
    transform: translateY(-50%);
  }

  /* Solo la activa se muestra; las demás se ocultan */
  .cp-tut__track .cp-tut__card:not(.is-pos-active) {
    display: none !important;
  }

  /* Ajusta la tarjeta activa para mantener relación de aspecto */
  .cp-tut__track .cp-tut__card.is-pos-active .cp-tut__card-media {
    position: relative;
    width: 100%;
    padding-bottom: 65%; /* 1 / 1.65 ≈ 0.606, pero 65% da mejor relación */
    background-size: cover;
    background-position: center;
  }
  /* Para que el contenido (badge, título, etc.) se superponga sobre el fondo */
  .cp-tut__track .cp-tut__card.is-pos-active .cp-tut__card-shade,
  .cp-tut__track .cp-tut__card.is-pos-active .cp-tut__card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  /* El contenedor visual se adapta al contenido */
  .cp-tut__visual {
    height: auto !important;
	  display: none;
  }

  /* Opcional: ocultar flechas de navegación en móvil (pueden seguir usando los pasos) */
  .cp-tut__nav {
    display: none;
  }
	
	.cp-tut-cnt__cta {
		justify-content: flex-start;
		padding-top: 15px;
	}
}

@media (max-width: 640px) {
  .cp-tut {
    --cp-tut-active-w: 280px;
    --cp-tut-active-h: 420px;
    --cp-tut-peek-left: 230px;
    --cp-tut-peek-top: 54px;
    --cp-tut-peek-w: 58px;
    --cp-tut-peek-h: 284px;
    --cp-tut-visual-w: 288px;
  }

  .cp-tut__title {
    font-size: 35px;
  }

  .cp-tut__text {
    font-size: 16px;
  }

  .cp-tut__cta {
    width: 100%;
    justify-content: center;
  }

  .cp-tut__badge {
    font-size: 13px;
    padding: 7px 10px;
  }

  .cp-tut__card-title {
    font-size: 18px;
  }

  .cp-tut__card.is-final .cp-tut__card-title {
    font-size: 24px;
    max-width: 180px;
  }

  .cp-tut__questions {
    font-size: 15px;
  }
	
	
  .cp-tut__card.is-final .cp-tut__card-title {
    font-size: 24px;
    max-width: 190px;
  }

  .cp-tut__card.is-final .cp-tut__card-desc {
    margin-top: 14px;
    padding: 10px 14px;
    min-width: 132px;
    font-size: 13px;
  }
	.cp-tut__cta--back {
    margin-left: 0;
    margin-top: 10px;
}
}


.cp-tut__track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.cp-tut__track .cp-tut__card {
  top: var(--cp-tut-peek-top);
  left: calc(var(--cp-tut-peek-left) + var(--cp-tut-peek-w) + 70px);
  width: var(--cp-tut-peek-w);
  height: var(--cp-tut-peek-h);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

/* Card principal */
.cp-tut__track .cp-tut__card.is-pos-active {
  top: 0;
  left: 0;
  width: var(--cp-tut-active-w);
  height: var(--cp-tut-active-h);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
}

/* Card cortada */
.cp-tut__track .cp-tut__card.is-pos-peek {
  top: var(--cp-tut-peek-top);
  left: var(--cp-tut-peek-left);
  width: var(--cp-tut-peek-w);
  height: var(--cp-tut-peek-h);
  opacity: .95;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

/* Sale por la izquierda */
.cp-tut__track .cp-tut__card.is-pos-prev {
  top: var(--cp-tut-peek-top);
  left: calc(-1 * (var(--cp-tut-peek-w) + 80px));
  width: var(--cp-tut-peek-w);
  height: var(--cp-tut-peek-h);
  opacity: 0;
  z-index: 1;
}

/* Cards futuras a la derecha */
.cp-tut__track .cp-tut__card.is-pos-hidden-right {
  top: var(--cp-tut-peek-top);
  left: calc(var(--cp-tut-peek-left) + var(--cp-tut-peek-w) + 70px);
  width: var(--cp-tut-peek-w);
  height: var(--cp-tut-peek-h);
  opacity: 0;
  z-index: 1;
}

/* Cards viejas más a la izquierda */
.cp-tut__track .cp-tut__card.is-pos-hidden-left {
  top: var(--cp-tut-peek-top);
  left: calc(-1 * (var(--cp-tut-peek-w) + 120px));
  width: var(--cp-tut-peek-w);
  height: var(--cp-tut-peek-h);
  opacity: 0;
  z-index: 1;
}

/* Solo la card activa muestra contenido */
.cp-tut__track .cp-tut__card.is-pos-peek .cp-tut__card-content,
.cp-tut__track .cp-tut__card.is-pos-peek .cp-tut__card-shade,
.cp-tut__track .cp-tut__card.is-pos-prev .cp-tut__card-content,
.cp-tut__track .cp-tut__card.is-pos-prev .cp-tut__card-shade,
.cp-tut__track .cp-tut__card.is-pos-hidden-right .cp-tut__card-content,
.cp-tut__track .cp-tut__card.is-pos-hidden-right .cp-tut__card-shade,
.cp-tut__track .cp-tut__card.is-pos-hidden-left .cp-tut__card-content,
.cp-tut__track .cp-tut__card.is-pos-hidden-left .cp-tut__card-shade {
  opacity: 0;
}

/* En la activa sí se ve todo */
.cp-tut__track .cp-tut__card.is-pos-active .cp-tut__card-content,
.cp-tut__track .cp-tut__card.is-pos-active .cp-tut__card-shade {
  opacity: 1;
}

/* La transición del contenido */
.cp-tut__track .cp-tut__card .cp-tut__card-content,
.cp-tut__track .cp-tut__card .cp-tut__card-shade {
  transition: opacity .22s ease;
}

/********** ¿Dudas antes de viajar a Perú ********/

.coll-dudas {
  gap: 10px;
}


.coll-h2 h2 {
  color: #fff;
  font-family: var(--font-lato);
  font-size: 40px;
  line-height: .98;
  font-weight: 900;
}

.coll-h3 h3 {
  color: #fff;
  font-family: var(--font-lato);
  font-size: 30px;
  line-height: .98;
  font-weight: 900;
}


.coll-desc {
  color: #fff;
  font-family: var(--font-montserrat);
  font-size: 16px;
  line-height: .98;
  font-weight: 500;
}

/* Botones */

.coll-btn a {
  font-family: var(--font-montserrat);
  font-size: 18px;
  line-height: .98;
  font-weight: 700;
background-color: transparent;
	padding: 0px;
}

.coll-btn .elementor-button-icon {
  font-size: 12px;
  align-self: center;
}

.btn-naranja a {
  color: #ffa900 !important;
}


.btn-azul a {
  color: #006da8 !important;
}

/* Accordion */

.coll-accordion .e-n-accordion-item-title {
  justify-content: space-between !important;
}


.cp-faq-accordion {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 0;
  font-family: Arial, sans-serif;
}

.cp-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}

.cp-faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
	font-family: var(--font-montserrat);
}

.cp-faq-question span:first-child {
  flex: 1;
white-space: normal;
}

.cp-faq-icon {
  flex: 0 0 auto;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  width: 24px;
  text-align: center;
}

.cp-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.cp-faq-answer-inner {
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  /*padding-right: 50px;*/
  padding-bottom: 0;
	font-family: var(--font-montserrat);
	  font-weight: 500;

}

.cp-faq-item.is-open .cp-faq-answer {
  grid-template-rows: 1fr;
}

.cp-faq-item.is-open .cp-faq-answer-inner {
  padding-bottom: 22px;
}

.cp-faq-question:hover, .cp-faq-question:focus {
  opacity: 0.95;
  background: transparent;
}

.cp-faq-question:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .cp-faq-question {
    font-size: 18px;
    padding: 20px 0;
  }

  .cp-faq-answer-inner {
    font-size: 15px;
    padding-right: 30px;
  }

  .cp-faq-icon {
    font-size: 24px;
  }
}