:root {
  --xp-orange: #f15a22;
  --xp-orange-hot: #ff6a2b;
  --xp-orange-deep: #d94812;
  --xp-black: #121212;
  --xp-ink: #1a1a1a;
  --xp-panel: #2a2a2a;
  --xp-panel-2: #333;
  --xp-line: rgba(255, 255, 255, 0.12);
  --xp-white: #fff;
  --xp-muted: rgba(255, 255, 255, 0.72);
  --xp-font: "Montserrat", sans-serif;
  --xp-radius: 6px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body.xp-body {
  margin: 0;
  font-family: var(--xp-font);
  color: var(--xp-white);
  background: var(--xp-ink);
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

/* Header */
.xp-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(0,0,0,.65), transparent);
}

.xp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.xp-logo img {
  height: 34px;
  width: auto;
  filter: none;
}

.xp-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.xp-nav__link {
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
}

.xp-nav__link:hover,
.xp-nav__link.is-active { color: var(--xp-orange); }

.xp-nav__menu {
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
}
.xp-nav__menu span { color: var(--xp-orange); font-size: 1rem; margin-left: 2px; }

/* Buttons */
.xp-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--xp-radius);
  font-family: inherit;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.xp-btn:hover { transform: translateY(-1px); }
.xp-btn:disabled,
.xp-btn.is-disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}
.xp-btn--orange {
  background: var(--xp-orange);
  color: #fff;
}
.xp-btn--orange:hover:not(:disabled):not(.is-disabled) { background: var(--xp-orange-hot); color: #fff; }
.xp-btn--block { width: 100%; }
.xp-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.xp-btn--ghost:hover:not(:disabled):not(.is-disabled) {
  border-color: var(--xp-orange);
  color: var(--xp-orange);
  transform: translateY(-1px);
}
.xp-btn--muted {
  background: #4a4a4a;
  color: #aaa;
  cursor: not-allowed;
}

.xp-account-card__points {
  margin: 0 0 14px;
  color: rgba(255,255,255,.75);
  font-size: .8rem;
}
.xp-account-card__points strong {
  color: var(--xp-orange);
  font-size: 1.35rem;
  font-weight: 800;
  margin-right: 4px;
}
.xp-account-card__actions {
  display: grid;
  gap: 10px;
}
.xp-account-card__logout {
  margin-top: 4px;
  text-align: center;
}
.xp-stages-panel__status {
  margin: 0 0 12px;
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  line-height: 1.35;
}
.xp-stages-form {
  margin-top: 4px;
  gap: 8px;
}
.xp-stages-form .xp-field span {
  font-size: .58rem;
}
.xp-stages-form textarea.xp-input {
  min-height: 56px;
  resize: vertical;
}
.xp-modal .xp-input:disabled {
  opacity: .65;
  cursor: not-allowed;
  background: #f3f3f3;
}

/* Hero */
.xp-hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 0 72px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.xp-hero__photo {
  position: absolute;
  inset: 0;
  background: url("../../images/site/images/experience/banner-hero-desktop.jpg") center center / cover no-repeat;
  pointer-events: none;
}

.xp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.xp-seal {
  width: 148px;
  height: auto;
  margin: 0 0 22px;
  display: block;
}

.xp-hero__title {
  margin: 0 0 18px;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.01em;
  text-transform: uppercase;
  max-width: 22ch;
  color: #fff;
}
.xp-hero__title-accent {
  display: inline;
  color: var(--xp-orange);
  font-weight: 800;
}

.xp-hero__lead {
  margin: 0 0 18px;
  max-width: 48ch;
  color: var(--xp-muted);
  font-size: .95rem;
  line-height: 1.55;
}

.xp-hero__bullets {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.xp-hero__bullets li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,.88);
  font-size: .88rem;
}
.xp-hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--xp-orange);
}

/* Auth card — padding interno, abas dentro, borda em degradê, flag */
.xp-auth-card {
  --xp-card-pad: 34px;
  position: relative;
  background: #221f1f;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.xp-auth-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(145deg, #f0c090 0%, #f48021 35%, #8a4030 72%, #f15a22 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.xp-auth-card__flag {
  position: absolute;
  top: -10px;
  right: -17px;
  width: 52px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

.xp-auth-card__inner {
  position: relative;
  z-index: 1;
  padding: 28px 26px 26px;
  background: #221f1f;
  border-radius: 3px;
}

.xp-auth-card__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
.xp-auth-card__tab {
  border: 0;
  padding: 10px 8px;
  font-family: inherit;
  font-size: .65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .03em;
  cursor: pointer;
  background: #fff;
  color: #5a5a5a;
}
.xp-auth-card__tab.is-active {
  background: var(--xp-orange);
  color: #fff;
}

.xp-auth-card__body { padding: 0; }

.xp-header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.xp-header__link {
  border: 0;
  background: none;
  color: rgba(255,255,255,.92);
  font: inherit;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
}
.xp-header__link:hover,
.xp-header__link--cta { color: var(--xp-orange); }

.xp-nav__burger {
  display: none;
  width: 42px;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 6px 8px;
  gap: 6px;
  align-content: center;
  cursor: pointer;
  z-index: 60;
}
.xp-nav__burger span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.xp-body.is-menu-open .xp-nav__burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.xp-body.is-menu-open .xp-nav__burger span:nth-child(2) { opacity: 0; }
.xp-body.is-menu-open .xp-nav__burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.xp-body.is-menu-open { overflow: hidden; }
.xp-body.is-menu-open .xp-header {
  background: rgba(14, 14, 14, .97);
}

.xp-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(14, 14, 14, .97);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 0 20px;
  z-index: 50;
}
.xp-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px;
}
.xp-mobile-menu__link {
  display: block;
  width: 100%;
  border: 0;
  background: none;
  color: #fff;
  font: inherit;
  font-size: .95rem;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
}
.xp-mobile-menu__link:hover { color: var(--xp-orange); }
.xp-mobile-menu__link--cta { color: var(--xp-orange); }
.xp-mobile-menu__account {
  padding: 8px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 4px;
}
.xp-mobile-menu__kicker {
  margin: 0 0 4px;
  color: var(--xp-orange);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.xp-mobile-menu__hello {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}
.xp-mobile-menu__points {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}
.xp-mobile-menu__points strong {
  color: var(--xp-orange);
  font-size: 1.35rem;
  font-weight: 800;
}
.xp-mobile-menu__divider {
  height: 1px;
  margin: 10px 0;
  background: rgba(255,255,255,.12);
}

.xp-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.xp-slider__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.xp-slider__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255,255,255,.28);
  cursor: pointer;
}
.xp-slider__dot.is-active { background: var(--xp-orange); }

.xp-auth-card__kicker {
  margin: 0 0 2px;
  color: var(--xp-orange);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.xp-auth-card__title-form {
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}
.xp-auth-card__sub {
  margin: 0 0 12px;
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  line-height: 1.35;
}
.xp-field {
  display: grid;
  gap: 4px;
  align-content: start;
}
.xp-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}
.xp-field span {
  font-size: .62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
}
@media (max-width: 420px) {
  .xp-field-row { grid-template-columns: 1fr; }
}

.xp-form { display: grid; gap: 9px; }
.xp-form .xp-btn {
  margin-top: 2px;
  padding: 11px 16px;
  font-size: .82rem;
}
.xp-field .input-box {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}
.xp-field .input-box > input {
  grid-column: 1;
  grid-row: 1;
}
.xp-field .input-box > small.error {
  grid-column: 1;
  grid-row: 2;
}
.xp-input {
  width: 100%;
  border: 2px solid transparent;
  border-radius: 5px;
  padding: 9px 36px 9px 11px;
  font: inherit;
  font-size: .82rem;
  background: #fff;
  color: #222;
  transition: border-color .2s ease;
}
.xp-input::placeholder { color: #9a9a9a; }
.xp-input:focus {
  outline: none;
  border-color: rgba(241, 90, 34, .55);
}
.xp-field .input-box.error input {
  border-color: #e11d48;
}
.xp-field .input-box.success input {
  border-color: #16a34a;
}
.xp-field .input-box.error small.error {
  display: block;
  margin-top: 4px;
  padding-left: 2px;
  color: #ffb4b4;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.35;
  visibility: visible;
}
.xp-field .input-box.has-pass-toggle > input {
  padding-right: 58px;
}
.xp-pass-toggle {
  grid-column: 1;
  grid-row: 1;
  place-self: center end;
  margin-right: 8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #777;
  cursor: pointer;
  line-height: 0;
}
.xp-pass-toggle:hover { color: #333; }
.xp-pass-toggle svg { display: block; }
.xp-pass-toggle .xp-pass-toggle__hide { display: none; }
.xp-pass-toggle.is-visible .xp-pass-toggle__show { display: none; }
.xp-pass-toggle.is-visible .xp-pass-toggle__hide { display: block; }
.xp-field .input-box.success.has-input::after,
.xp-field .input-box.error.has-input::after {
  content: "";
  grid-column: 1;
  grid-row: 1;
  place-self: center end;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  z-index: 2;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}
.xp-field .input-box.has-pass-toggle.success.has-input::after,
.xp-field .input-box.has-pass-toggle.error.has-input::after {
  margin-right: 38px;
}
.xp-field .input-box.success.has-input::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='rgb(22,163,74)' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.2,104.2,0,0,0,128,24Zm49.5,85.8-58.6,56a8.1,8.1,0,0,1-5.6,2.2,7.7,7.7,0,0,1-5.5-2.2l-29.3-28a8,8,0,1,1,11-11.6l23.8,22.7,53.2-50.7a8,8,0,0,1,11,11.6Z'%3E%3C/path%3E%3C/svg%3E");
}
.xp-field .input-box.error.has-input::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='rgb(225,29,72)' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.2,104.2,0,0,0,128,24Zm37.7,130.3a8.1,8.1,0,0,1,0,11.4,8.2,8.2,0,0,1-11.4,0L128,139.3l-26.3,26.4a8.2,8.2,0,0,1-11.4,0,8.1,8.1,0,0,1,0-11.4L116.7,128,90.3,101.7a8.1,8.1,0,0,1,11.4-11.4L128,116.7l26.3-26.4a8.1,8.1,0,0,1,11.4,11.4L139.3,128Z'%3E%3C/path%3E%3C/svg%3E");
}
.xp-pass-meter {
  margin-top: 5px;
}
.xp-pass-meter__track {
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}
.xp-pass-meter__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: #e11d48;
  transition: width .2s ease, background .2s ease;
}
.xp-pass-meter__fill.is-weak { width: 33%; background: #e11d48; }
.xp-pass-meter__fill.is-ok { width: 66%; background: #f0b429; }
.xp-pass-meter__fill.is-strong { width: 100%; background: #16a34a; }
.xp-pass-meter__hint {
  display: block;
  margin-top: 4px;
  font-size: .65rem;
  color: rgba(255,255,255,.55);
  line-height: 1.3;
}

.xp-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .72rem;
  color: rgba(255,255,255,.85);
  line-height: 1.45;
}
.xp-check input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  accent-color: var(--xp-orange);
  cursor: pointer;
}
.xp-check--terms .xp-check__link {
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  text-align: left;
  color: rgba(255,255,255,.45);
  font: inherit;
  font-size: .66rem;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s ease;
}
.xp-check--terms .xp-check__link:hover {
  color: rgba(255,255,255,.78);
}
.xp-form__msg { min-height: 1.1em; margin: 0; color: #ffb4a0; font-size: .8rem; }
.xp-link {
  border: 0;
  background: none;
  color: var(--xp-orange);
  font-weight: 600;
  font-size: .8rem;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

/* Cronograma */
.xp-cronograma {
  position: relative;
  padding: 72px 0 80px;
  background: #2c313c;
  overflow: hidden;
}
.xp-cronograma__title {
  position: relative;
  margin: 0 0 40px;
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
}
.xp-cronograma__title span {
  color: var(--xp-orange);
  font-weight: 700;
}

.xp-timeline {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.xp-timeline__card {
  position: relative;
  flex: 0 1 148px;
  width: 148px;
  min-height: 220px;
  background: #1e2128;
  border-radius: 2px;
}
.xp-timeline__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2px;
  padding: 1px;
  background: linear-gradient(160deg, #f0c090 0%, #f48021 40%, #8a4030 75%, #f15a22 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.xp-timeline__flag {
  position: absolute;
  top: -10px;
  right: -14px;
  width: 42px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}
.xp-timeline__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 220px;
  padding: 28px 14px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #1e2128;
  border-radius: 2px;
}
.xp-timeline__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 16px;
}
.xp-timeline__card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--xp-orange);
  text-transform: none;
  line-height: 1.6;
}
.xp-timeline__card p {
  margin: 0;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}
.xp-timeline__arrow {
  flex: 0 0 auto;
  align-self: center;
  display: flex;
  align-items: center;
  line-height: 0;
}
.xp-timeline__arrow img {
  display: block;
  width: 28px;
  height: auto;
}

/* Stages (dark) */
.xp-section { padding: 80px 0; background: #161616; }
.xp-section__head { margin-bottom: 36px; text-align: center; }
.xp-section__title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
}
.xp-section__title span { color: var(--xp-orange); }
.xp-section__text {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--xp-muted);
}

/* Jornada LP — 4 cards + painel */
.xp-stages-preview {
  position: relative;
  padding: 72px 0 90px;
  background: #161616;
  overflow: hidden;
}
.xp-stages-preview::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(42vw, 520px);
  background: url("../../images/site/images/experience/background-flags.svg") left center / contain no-repeat;
  opacity: .9;
  pointer-events: none;
  z-index: 0;
}
.xp-stages-preview > .container {
  position: relative;
  z-index: 1;
}
.xp-stages__title {
  margin: 0 0 40px;
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
}
.xp-stages__title-journey {
  color: var(--xp-orange);
  font-weight: 800;
}
.xp-stages__title strong {
  color: #fff;
  font-weight: 800;
}

.xp-stages-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 28px;
}
.xp-stages-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 220px;
  padding: 22px 18px 28px;
  margin: 0;
  background: #1e1e1e;
  border-radius: 2px;
  color: #fff;
  font-family: inherit;
  transition: filter .25s ease, opacity .25s ease;
}
.xp-stages-tab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2px;
  padding: 1px;
  background: linear-gradient(160deg, #f0c090 0%, #f48021 40%, #8a4030 75%, #f15a22 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.xp-stages-tab__flag {
  position: absolute;
  top: -10px;
  right: -14px;
  width: 42px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}
.xp-stages-tab__head {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}
.xp-stages-tab__num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--xp-orange);
}
.xp-stages-tab__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.xp-stages-tab__title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.xp-stages-tab__badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  min-height: 26px;
  padding: 0 14px;
  border-radius: 4px;
  background: #e07a5f;
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.xp-stages-tab__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255,255,255,.88);
}
.xp-stages-tab__arrow {
  position: absolute;
  left: 50%;
  bottom: -10px;
  z-index: 4;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--xp-orange);
  transform: translateX(-50%);
}

/* Etapas concluídas cinza; futuras bloqueadas mais apagadas */
.xp-stages-tab.is-done:not(.is-active) {
  filter: grayscale(1);
  opacity: .55;
}
.xp-stages-tab.is-done:not(.is-active)::after {
  background: linear-gradient(160deg, #9a9a9a 0%, #6e6e6e 50%, #8a8a8a 100%);
}
.xp-stages-tab.is-locked:not(.is-active):not(.is-done) {
  opacity: .62;
  filter: grayscale(.35);
}
.xp-stages-tab.is-active { background: #222; }

.xp-stages-detail {
  position: relative;
  display: flex;
  justify-content: center;
}
.xp-stages-panel {
  position: relative;
  width: 100%;
  max-width: 1080px;
  padding: 36px 44px;
  background: #1e1e1e;
  border-radius: 2px;
  animation: xpPanelIn .35s ease;
}
.xp-stages-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2px;
  padding: 1px;
  background: linear-gradient(160deg, #f0c090 0%, #f48021 40%, #8a4030 75%, #f15a22 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.xp-stages-panel__flag {
  position: absolute;
  top: -10px;
  right: -14px;
  width: 48px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}
.xp-stages-panel__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr);
  gap: 0;
  align-items: stretch;
}
.xp-stages-panel__main {
  min-width: 0;
  padding-right: 32px;
}
.xp-stages-panel__aside {
  min-width: 0;
  max-width: 100%;
  padding-left: 32px;
  border-left: 1px solid rgba(241, 90, 34, .55);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.xp-stages-panel--points .xp-stages-panel__aside {
  align-items: center;
  text-align: center;
  justify-content: center;
}
.xp-stages-panel__aside .xp-stages-form,
.xp-stages-panel__aside .xp-file {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.xp-stages-panel h4 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--xp-orange);
}
.xp-stages-panel__main p {
  margin: 0 0 18px;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.55;
  color: #fff;
}
.xp-stages-check {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.xp-stages-check__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.xp-stages-check__item img {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.xp-stages-check__item.is-deny { color: #c94a3a; }
.xp-stages-check__item.is-strike span {
  text-decoration: line-through;
  text-decoration-color: #c94a3a;
}
.xp-stages-panel__period-label {
  margin: 0 0 4px;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}
.xp-stages-panel__period {
  margin: 0 0 14px;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}
.xp-stages-panel__note {
  margin: 0 0 22px;
  font-size: .88rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
}
.xp-stages-panel__score {
  margin-bottom: 14px;
}
.xp-stages-panel__score-value {
  display: block;
  font-size: clamp(3.4rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: .9;
  color: var(--xp-orange);
}
.xp-stages-panel__score-label {
  display: block;
  margin-top: 4px;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}
.xp-stages-panel__aside-line {
  margin: 0 0 6px;
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
}
.xp-stages-panel__aside .xp-btn {
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
}
.xp-stages-panel--points .xp-stages-panel__aside .xp-btn {
  margin-top: 0;
}

@keyframes xpPanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* Jornada autenticada (página /jornada/) */
.xp-stages { display: grid; gap: 22px; }
.xp-stage {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 26px;
  border-radius: 10px;
  background: #252525;
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.xp-stage__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, transparent 50%, var(--xp-orange) 50%);
}
.xp-stage.is-open:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.xp-stage.is-locked { opacity: .72; filter: grayscale(.2); }
.xp-stage.status-done,
.xp-stage.status-approved { filter: grayscale(.85); opacity: .6; }
.xp-stage__num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--xp-orange);
  line-height: 1;
}
.xp-stage__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.xp-stage__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}
.xp-stage__points { text-align: right; }
.xp-stage__points-value {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: .9;
  color: var(--xp-orange);
}
.xp-stage__points-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
}
.xp-stage__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}
.xp-stage__grid h4 {
  margin: 0 0 8px;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--xp-orange);
}
.xp-stage__grid p,
.xp-stage__grid li,
.xp-stage-rules li {
  color: var(--xp-muted);
  font-size: .9rem;
  line-height: 1.5;
}
.xp-stage-rules {
  margin: 10px 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.xp-stage-rules li {
  position: relative;
  padding-left: 16px;
}
.xp-stage-rules li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--xp-orange);
}
.xp-stage__grid ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.xp-stage__grid li {
  position: relative;
  padding-left: 16px;
}
.xp-stage__grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--xp-orange);
}
.xp-stage__aside {
  border-left: 1px solid var(--xp-line);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.xp-stage__lock {
  position: absolute;
  top: 20px;
  right: 28px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
  animation: xpPulse 2.4s ease-in-out infinite;
}
.xp-stage__lock-hint { color: var(--xp-muted); font-size: .85rem; }

.xp-badge {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.xp-badge--available { background: rgba(241,90,34,.18); color: #ffb089; }
.xp-badge--done,
.xp-badge--approved { background: rgba(80,160,90,.2); color: #9be0a4; }
.xp-badge--pending { background: rgba(255,190,80,.15); color: #ffd28a; }
.xp-badge--rejected { background: rgba(220,80,80,.18); color: #ff9a9a; }
.xp-badge--locked { background: rgba(255,255,255,.08); color: #aaa; }

.xp-journey-hero { padding: 100px 0 0; background: #161616; }
.xp-eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--xp-orange);
}
.xp-meta { color: var(--xp-muted); }

.xp-file {
  display: grid;
  gap: 8px;
}
.xp-file__label {
  font-size: .58rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
}
.xp-file__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.xp-file__pick {
  appearance: none;
  border: 1px dashed rgba(255,255,255,.35);
  background: rgba(255,255,255,.04);
  color: #fff;
  border-radius: 4px;
  padding: 12px 14px;
  font: inherit;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.xp-file__pick:hover {
  border-color: var(--xp-orange);
  color: var(--xp-orange);
  background: rgba(241, 90, 34, .08);
}
.xp-file__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.xp-file__list[hidden] { display: none !important; }
.xp-file__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  line-height: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.xp-file__item-name {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 18ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
}
.xp-file__item-meta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}
.xp-file__item-size {
  flex: 0 0 auto;
  color: rgba(255,255,255,.55);
  line-height: 1;
  display: flex;
  align-items: center;
}
.xp-file__clear {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 0;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.xp-file__clear:hover,
.xp-file__clear:focus-visible {
  background: rgba(255, 90, 70, .35);
  color: #fff;
  outline: none;
}
.xp-file__item.is-invalid {
  background: rgba(255, 80, 60, .14);
  outline: 1px solid rgba(255, 120, 90, .55);
  color: #ffc8ba;
}
.xp-file__item.is-invalid .xp-file__item-size {
  color: #ff9a82;
  font-weight: 600;
}
.xp-file__item.is-invalid .xp-file__clear {
  background: rgba(255, 90, 70, .28);
  color: #ffd0c4;
}
.xp-upload-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.xp-upload-progress[hidden] { display: none !important; }
.xp-upload-progress__track {
  height: 8px;
  border-radius: 999px;
  background: #3a3a3a;
  overflow: hidden;
}
.xp-upload-progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--xp-orange-deep), var(--xp-orange-hot));
  transition: width .15s linear;
}
.xp-upload-progress__pct {
  font-size: .68rem;
  font-weight: 700;
  color: var(--xp-orange);
  min-width: 2.5em;
  text-align: right;
}
.xp-stages-form.is-locked .xp-file,
.xp-stages-form.is-locked [data-upload-submit] {
  display: none !important;
}
.xp-upload-success {
  width: 100%;
  padding: 14px 12px;
  border-radius: 4px;
  background: rgba(241, 90, 34, .1);
  border: 1px solid rgba(241, 90, 34, .35);
  text-align: center;
}
.xp-upload-success__title {
  margin: 0 0 6px;
  color: var(--xp-orange);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.xp-upload-success__text {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: .78rem;
  line-height: 1.45;
}

/* Modals */
.xp-modal[hidden] { display: none !important; }
.xp-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}
.xp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(40, 40, 40, .72);
}
.xp-modal__dialog {
  position: relative;
  width: min(440px, 100%);
  background: #2a2a2a;
  border-radius: 4px;
  padding: 28px;
  color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  animation: xpModalIn .35s ease;
}
.xp-modal__dialog--auth {
  width: min(480px, 100%);
  padding: 36px 34px 32px;
  background: #221f1f;
  border: none;
  border-radius: 4px;
  overflow: visible;
}
.xp-modal__dialog--auth::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(145deg, #f0c090 0%, #f48021 35%, #8a4030 72%, #f15a22 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.xp-modal__dialog--auth > * {
  position: relative;
  z-index: 2;
}
.xp-modal__dialog--terms {
  width: min(640px, 100%);
  background: #fff;
  color: #333;
  padding: 40px 44px 36px;
  border: 1px solid transparent;
  border-image: linear-gradient(145deg, #f48021, #b03b37) 1;
  border-radius: 0;
}
.xp-modal__flag {
  position: absolute;
  top: -10px;
  right: -16px;
  width: 48px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}
.xp-modal__kicker {
  margin: 0 0 6px;
  color: var(--xp-orange);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.xp-modal__title {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  text-transform: none;
}
.xp-modal__lead {
  margin: 0 0 22px;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.55;
}
.xp-modal__title-terms {
  margin: 0 48px 22px 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #2a2a2a;
  line-height: 1.35;
}
.xp-terms-content {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}
.xp-terms-content p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.85;
  color: #444;
}
.xp-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  z-index: 4;
}
.xp-modal__dialog--auth .xp-modal__close {
  top: 14px;
  right: 42px;
  color: rgba(255,255,255,.55);
}
.xp-modal__dialog--auth .xp-modal__close:hover { color: #fff; }
.xp-modal__close--circle {
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ccc;
  font-size: 1.25rem;
  line-height: 1;
  color: #666;
  display: grid;
  place-items: center;
}
.xp-modal__dialog--terms .xp-btn {
  min-width: 150px;
  height: 40px;
  padding: 0 22px;
  font-size: .78rem;
  box-shadow: none;
}

.xp-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 90;
  background: #111;
  border: 1px solid rgba(241,90,34,.4);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: .9rem;
  animation: xpToastIn .3s ease;
}

.xp-footer {
  padding: 0;
  background: #0e0e0e;
}
.xp-footer__top {
  padding: 36px 0 22px;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,.1);
}
.xp-footer__logo-link {
  display: inline-block;
  margin-bottom: 14px;
  line-height: 0;
  transition: opacity .2s ease;
}
.xp-footer__logo-link:hover { opacity: .85; }
.xp-footer__logo {
  display: block;
  height: 36px;
  width: auto;
}
.xp-footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}
.xp-footer__copy {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  line-height: 1.45;
}
.xp-footer__lgpd {
  flex: 0 0 auto;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 500;
  text-decoration: none;
}
.xp-footer__lgpd:hover { color: var(--xp-orange); }
.xp-footer__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 16px;
  background: var(--xp-orange);
  text-align: center;
}
.xp-footer__dev {
  color: #fff;
  font-size: .75rem;
  font-weight: 300;
  text-decoration: none;
  transition: opacity .2s ease;
}
.xp-footer__dev:hover { opacity: .88; color: #fff; }

@media (max-width: 767px) {
  .xp-footer__top { text-align: center; }
  .xp-footer__logo-link { margin-left: auto; margin-right: auto; }
  .xp-footer__meta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

@keyframes xpPulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes xpModalIn {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: none; }
}
@keyframes xpToastIn {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* Premiação + Ranking */
.xp-premios {
  padding: 72px 0 80px;
  background: #2c313c;
}
.xp-premios__grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 48px;
  align-items: start;
}
.xp-premios__head {
  text-align: center;
  margin-bottom: 28px;
}
.xp-premios__title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
}
.xp-premios__title span {
  color: var(--xp-orange);
  font-weight: 800;
}
.xp-premios__subtitle {
  margin: 0;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
}
.xp-premios__stack {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}
.xp-premios .xp-slider {
  width: 100%;
}
.xp-premios__cards {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 25px;
}
.xp-premio-card {
  position: relative;
  flex: 0 0 200px;
  width: 148px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  justify-content: flex-end;
  padding: 16px 12px 22px;
  background: #1e2128;
  border: 1px solid var(--xp-orange);
  border-radius: 14px;
  color: #fff;
}
.xp-premio-card--1 {
  height: 280px;
  background: var(--xp-orange);
  border-color: var(--xp-orange);
}
.xp-premio-card--2 { height: 250px; }
.xp-premio-card--3 { height: 210px; }
.xp-premio-card__medal {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: block;
  height: auto;
  transform: translateX(-50%);
  object-fit: contain;
  pointer-events: none;
}
.xp-premio-card--1 .xp-premio-card__medal { width: 64px; }
.xp-premio-card--2 .xp-premio-card__medal { width: 50px; }
.xp-premio-card--3 .xp-premio-card__medal { width: 40px; }
.xp-premio-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 105px;
  width: 100%;
}
.xp-premio-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.15;
}
.xp-premio-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  justify-items: center;
}
.xp-premio-card li {
  position: relative;
  padding-left: 14px;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  text-align: center;
}
.xp-premio-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}
.xp-premios__tie {
  margin-top: 22px;
  text-align: left;
}
.xp-premios__tie p {
  margin: 0 0 4px;
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.45;
  color: #fff;
}
.xp-premios__tie strong { font-weight: 700; }

.xp-premios__ranking {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.xp-premios__soon {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 320px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--xp-orange);
}

/* CTA final */
.xp-cta-banner {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
}
.xp-cta-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 3px;
  background: linear-gradient(
    90deg,
    #8a4030 0%,
    #f15a22 18%,
    #f0c090 42%,
    #ffe6b0 50%,
    #f0c090 58%,
    #f15a22 82%,
    #8a4030 100%
  );
  box-shadow:
    0 0 10px rgba(241, 90, 34, .55),
    0 0 22px rgba(240, 192, 144, .35);
  pointer-events: none;
}
.xp-cta-banner__media {
  position: absolute;
  inset: 0;
  background: url("../../images/site/images/experience/banner-2.jpg") top center / cover no-repeat;
  z-index: 0;
}
.xp-cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-top: 72px;
  padding-bottom: 72px;
}
.xp-cta-banner__card {
  position: relative;
  width: min(100%, 580px);
  min-height: 430px;
  padding: 56px 52px 48px;
  background: rgba(30, 33, 40, .82);
  border: none;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.xp-cta-banner__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2px;
  padding: 1px;
  background: linear-gradient(160deg, #f0c090 0%, #f48021 40%, #8a4030 75%, #f15a22 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.xp-cta-banner__flag {
  position: absolute;
  top: -10px;
  right: -14px;
  width: 48px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
.xp-cta-banner__title {
  position: relative;
  z-index: 1;
  margin: 0 0 35px;
  font-size: clamp(1.55rem, 2.6vw, 1.6rem);
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
.xp-cta-banner__text {
  position: relative;
  z-index: 1;
  margin: 0 0 32px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.95;
  color: #fff;
}
.xp-cta-banner__card .xp-btn {
  position: relative;
  z-index: 1;
  align-self: center;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
  min-width: 220px;
}

@media (max-width: 991px) {
  .xp-header__nav { display: none; }
  .xp-nav__burger { display: grid; }
  .xp-mobile-menu[hidden] { display: none !important; }
  .xp-mobile-menu:not([hidden]) { display: block; }
  .xp-header { position: absolute; }

  /* Conta logada no mobile: só no menu hamburger */
  .xp-hero__form-wrap--account { display: none; }

  .xp-hero__photo {
    /* cover preenche; left mostra o lado esquerdo; gradiente escurece por cima */
    background-color: #1a1a1a;
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .45) 45%, rgba(0, 0, 0, .58) 100%),
      url("../../images/site/images/experience/banner-hero-desktop.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
  }

  .xp-hero__grid { grid-template-columns: 1fr; }
  .xp-hero__title { max-width: none; }
  .xp-premios,
  .xp-cronograma,
  .xp-stages-preview {
    overflow-x: hidden;
  }
  .xp-premios__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .xp-premios__stack {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .xp-premios__soon { min-height: 180px; }
  .xp-premios__tie {
    text-align: center;
    padding: 0 24px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .xp-premios__tie p {
    font-size: .78rem;
  }
  .xp-cta-banner { min-height: 520px; }
  .xp-cta-banner__inner { justify-content: center; }
  .xp-cta-banner__card {
    width: 100%;
    max-width: 580px;
    min-height: 320px;
    padding: 40px 26px 36px;
  }
  .xp-stages-panel {
    max-width: 100%;
    padding: 28px 22px;
  }
  .xp-stages-panel__grid { grid-template-columns: 1fr; }
  .xp-stages-panel__main { padding-right: 0; }
  .xp-stages-panel__aside {
    margin-top: 24px;
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid rgba(241, 90, 34, .55);
  }
  .xp-stage { grid-template-columns: 1fr; }
  .xp-stage__grid { grid-template-columns: 1fr; }
  .xp-stage__aside {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--xp-line);
    padding-top: 14px;
  }

  /* Sliders: 1 slide por vez (sem justify center — ele corta o 1º card) */
  .xp-slider__dots {
    display: flex;
    margin-top: 12px;
    margin-bottom: 28px;
  }
  .xp-slider--stages .xp-slider__dots {
    margin-bottom: 32px;
  }
  .xp-slider--stages .xp-stages-tabs {
    margin-bottom: 0;
  }
  .xp-slider__track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    justify-content: flex-start !important;
    gap: 14px !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0 12px;
    margin: 0;
    scroll-padding-inline: 32px;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }
  .xp-slider__track::-webkit-scrollbar { display: none; }
  .xp-slider__slide {
    box-sizing: border-box;
    flex: 0 0 calc(100% - 64px) !important;
    width: calc(100% - 64px) !important;
    max-width: calc(100% - 64px) !important;
    min-width: calc(100% - 64px) !important;
    margin-left: 32px !important;
    margin-right: 0 !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .xp-slider__slide:last-child {
    margin-right: 32px !important;
  }
  .xp-timeline__arrow {
    display: none !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .xp-timeline.xp-slider__track {
    justify-content: flex-start !important;
  }
  .xp-timeline__card.xp-slider__slide {
    flex: 0 0 calc(100% - 64px) !important;
    width: calc(100% - 64px) !important;
    max-width: calc(100% - 64px) !important;
    min-width: calc(100% - 64px) !important;
    padding: 0 !important;
  }
  /* Flags no canto do bloco (sem voar para fora) */
  .xp-timeline__flag,
  .xp-stages-tab__flag,
  .xp-stages-panel__flag {
    top: -8px;
    right: -8px;
  }
  /* Restaura padding interno da jornada (o !important do slide tinha zerado) */
  .xp-stages-tab.xp-slider__slide {
    min-height: 0;
    padding: 22px 18px 28px !important;
  }
  /* Premiação: card centralizado com respiro dos dois lados */
  .xp-slider--premios {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .xp-slider--premios .xp-slider__track {
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    padding: 24px 0 12px;
  }
  .xp-slider--premios .xp-premio-card.xp-slider__slide {
    flex: 0 0 82% !important;
    width: 82% !important;
    max-width: 82% !important;
    min-width: 82% !important;
    margin-left: 9% !important;
    margin-right: 0 !important;
    height: auto !important;
    min-height: 280px;
    padding: 72px 22px 28px !important;
    justify-content: flex-end;
    align-self: stretch;
    box-sizing: border-box;
  }
  .xp-slider--premios .xp-premio-card.xp-slider__slide:last-child {
    margin-right: 9% !important;
  }
  .xp-slider--premios .xp-premio-card--1,
  .xp-slider--premios .xp-premio-card--2,
  .xp-slider--premios .xp-premio-card--3 {
    height: auto !important;
  }
  .xp-slider--premios .xp-premio-card__medal {
    top: 18px;
    width: 56px !important;
  }
  .xp-slider--premios .xp-premio-card__body {
    height: auto;
  }
  .xp-premios__cards {
    justify-content: flex-start !important;
    align-items: stretch !important;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .xp-nav__burger,
  .xp-mobile-menu,
  .xp-slider__dots { display: none !important; }

  /* Desktop: sem slide — overflow visible para não cortar as flags */
  .xp-slider {
    overflow: visible;
  }
  .xp-slider__track {
    overflow: visible !important;
    scroll-snap-type: none !important;
  }
  .xp-slider--stages .xp-stages-tabs {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: unset;
  }
  .xp-slider--stages .xp-stages-tab.xp-slider__slide {
    flex: unset !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 22px 18px 28px !important;
  }
  .xp-stages-preview {
    overflow: visible;
  }
}
