.eixo-tour-lock {
  overflow: hidden;
}

.eixo-tour-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(5, 18, 16, .58);
  backdrop-filter: blur(2px);
}

.eixo-tour-overlay-center {
  display: block;
}

.eixo-tour-overlay-muted {
  background: rgba(5, 18, 16, .42);
  backdrop-filter: blur(1px);
  pointer-events: none;
}

.eixo-tour-card {
  position: fixed;
  z-index: 9993;
  width: min(430px, calc(100vw - 32px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  color: #07162f;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  font-family: Arial, Helvetica, sans-serif;
}

.eixo-tour-card-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.eixo-tour-card-anchor {
  left: 16px;
  top: 16px;
  width: min(360px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 14px;
}

.eixo-tour-card p {
  margin: 0 0 12px;
  color: #384252;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}

.eixo-tour-card p:last-child {
  margin-bottom: 0;
}

.eixo-tour-kicker {
  color: #00553f !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
  font-weight: 900;
}

.eixo-tour-field {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.eixo-tour-field span {
  color: #22302b;
  font-size: 14px;
  font-weight: 800;
}

.eixo-tour-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d5ded9;
  border-radius: 10px;
  padding: 0 13px;
  color: #07162f;
  font: inherit;
}

.eixo-tour-error {
  margin-top: 10px !important;
  color: #b42318 !important;
  font-size: 13px !important;
  font-weight: 800;
}

.eixo-tour-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.eixo-tour-actions-split {
  justify-content: space-between;
  flex-wrap: wrap;
}

.eixo-tour-actions button,
.eixo-tour-link-button {
  min-height: 42px;
  border: 1px solid #d8e0dc;
  border-radius: 10px;
  padding: 0 14px;
  background: #fff;
  color: #07162f;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.eixo-tour-actions .eixo-tour-next,
.eixo-tour-link-button.eixo-tour-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: #00553f;
  background: #00553f;
  color: #fff;
}

.eixo-tour-highlight {
  position: relative;
  z-index: 9992 !important;
  border-radius: 12px;
  box-shadow: 0 0 0 4px rgba(245, 186, 0, .92), 0 18px 48px rgba(0, 0, 0, .28);
}

.eixo-tour-org-focus {
  isolation: isolate;
}

.eixo-tour-org-card {
  width: min(310px, calc(100vw - 32px));
}

.eixo-tour-next-step-card {
  left: auto !important;
  right: 22px;
  top: auto !important;
  bottom: 22px;
  width: min(390px, calc(100vw - 32px));
}

.eixo-tour-registration-card {
  left: auto !important;
  right: 22px;
  top: 132px !important;
  bottom: auto;
  width: min(390px, calc(100vw - 32px));
}

.eixo-tour-org-card::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 26px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, .96);
  border-left: 1px solid rgba(255, 255, 255, .7);
  border-top: 1px solid rgba(255, 255, 255, .7);
  transform: rotate(45deg);
}

.eixo-resume-card {
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 14px;
}

.eixo-tour-soft-pulse {
  animation: eixoSoftPulse 1.8s ease-in-out infinite;
}

@keyframes eixoSoftPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245, 186, 0, .72), 0 18px 48px rgba(0, 0, 0, .24); }
  50% { box-shadow: 0 0 0 9px rgba(245, 186, 0, .22), 0 18px 48px rgba(0, 0, 0, .24); }
}

.eixo-login-screen {
  position: fixed;
  inset: 0;
  z-index: 9994;
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(280px, 420px);
  gap: 22px;
  align-content: center;
  justify-content: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(0, 61, 43, .96), rgba(0, 61, 43, .68)),
    url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.eixo-login-brand {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: end;
  font-weight: 800;
  text-transform: uppercase;
}

.eixo-login-mark {
  display: grid;
  grid-template-columns: repeat(2, 9px);
  gap: 4px;
  height: 42px;
  flex: 0 0 auto;
}

.eixo-login-mark i {
  display: block;
  border-radius: 10px;
  background: linear-gradient(180deg, #69c69b, #d8ae60);
}

.eixo-login-mark i:nth-child(2) {
  background: linear-gradient(180deg, #f09a42, #dbc46d);
}

.eixo-login-event {
  display: block;
  max-width: 360px;
  color: #f3efe7;
  font-size: 14px;
  line-height: 1.08;
  letter-spacing: .03em;
}

.eixo-login-box,
.eixo-login-guide {
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  color: #07162f;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.eixo-login-box {
  display: grid;
  gap: 13px;
  padding: 24px;
}

.eixo-login-label {
  margin: 0;
  color: #d8ae60;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eixo-login-box h1 {
  margin: 0 0 8px;
  color: #00553f;
  font-size: 27px;
  line-height: 1.1;
}

.eixo-login-box label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
  color: #384252;
}

.eixo-login-box input {
  min-height: 48px;
  border: 1px solid #d5ded9;
  border-radius: 10px;
  padding: 0 13px;
  background: #f9fbfa;
  color: #07162f;
  font: inherit;
}

.eixo-login-box button {
  min-height: 50px;
  margin-top: 6px;
  border: 0;
  border-radius: 10px;
  background: #00553f;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  animation: eixoButtonPulse 1.8s ease-in-out infinite;
}

@keyframes eixoButtonPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 186, 0, .48); }
  50% { box-shadow: 0 0 0 8px rgba(245, 186, 0, .18); }
}

.eixo-login-guide {
  align-self: end;
  padding: 22px;
}

.eixo-login-guide p {
  margin: 0 0 12px;
  color: #384252;
  font-size: 15px;
  line-height: 1.5;
}

.eixo-login-guide p:last-child {
  margin-bottom: 0;
  color: #00553f;
  font-weight: 900;
}

.eixo-tour-dashboard-card {
  z-index: 9995;
}

@media (max-width: 760px) {
  .eixo-tour-card-center {
    top: auto;
    bottom: 16px;
    transform: translateX(-50%);
  }

  .eixo-tour-card-anchor {
    left: 16px !important;
    right: 16px;
    top: auto !important;
    bottom: 16px;
    width: auto;
  }

  .eixo-tour-next-step-card {
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .eixo-tour-registration-card {
    left: 16px !important;
    right: 16px;
    top: auto !important;
    bottom: 16px;
    width: auto;
  }

  .eixo-tour-actions,
  .eixo-tour-actions-split {
    display: grid;
    grid-template-columns: 1fr;
  }

  .eixo-tour-actions button,
  .eixo-tour-link-button {
    width: 100%;
  }

  .eixo-login-screen {
    grid-template-columns: 1fr;
    align-content: start;
    overflow-y: auto;
  }

  .eixo-login-brand {
    margin-top: 24px;
    align-items: flex-start;
  }
}

/* Premium visual alignment with the approved forum reference. */
.eixo-tour-overlay {
  background: rgba(3, 12, 9, .68);
  backdrop-filter: blur(3px);
}

.eixo-tour-overlay-muted {
  background: rgba(3, 12, 9, .48);
}

.eixo-tour-card,
.eixo-login-box,
.eixo-login-guide {
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(16, 37, 30, .96);
  color: #f3efe7;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

.eixo-tour-card p,
.eixo-login-guide p {
  color: #bbc5be;
}

.eixo-tour-kicker,
.eixo-login-box h1 {
  color: #d8ae60 !important;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.eixo-tour-field span,
.eixo-login-box label {
  color: #dfe5e0;
}

.eixo-tour-field input,
.eixo-login-box input {
  border-radius: 0;
  border-color: rgba(255, 255, 255, .2);
  background: #091713;
  color: #f3efe7;
}

.eixo-tour-field input:focus,
.eixo-login-box input:focus {
  outline: none;
  border-color: #d8ae60;
}

.eixo-tour-actions button,
.eixo-tour-link-button,
.eixo-login-box button {
  border-radius: 0;
  border-color: rgba(255, 255, 255, .28);
  background: transparent;
  color: #f3efe7;
}

.eixo-tour-actions .eixo-tour-next,
.eixo-tour-link-button.eixo-tour-next,
.eixo-login-box button {
  border-color: #d8ae60;
  background: #d8ae60;
  color: #0c1914;
}

.eixo-tour-highlight,
.admin-tour-highlight {
  border-radius: 0;
  box-shadow: 0 0 0 4px rgba(216, 174, 96, .9), 0 18px 48px rgba(0, 0, 0, .3);
}

.eixo-tour-org-card::before {
  background: rgba(16, 37, 30, .96);
  border-color: rgba(255, 255, 255, .16);
}

.eixo-login-screen {
  background:
    linear-gradient(90deg, rgba(3, 12, 9, .98), rgba(3, 12, 9, .76), rgba(3, 12, 9, .42)),
    url("../img/hero.jpg") center / cover no-repeat;
}

.eixo-login-brand strong,
.eixo-login-event {
  color: #d8ae60;
}

.eixo-login-screen {
  background:
    linear-gradient(90deg, rgba(3, 12, 9, .86), rgba(3, 12, 9, .56)),
    url("../img/hero.jpg") center / cover no-repeat;
}

.eixo-login-box,
.eixo-login-guide {
  border: 1px solid rgba(13, 90, 66, .14);
  background: rgba(250, 248, 241, .96);
  color: #0c1914;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .26);
}

.eixo-login-box h1 {
  color: #0d5a42 !important;
}

.eixo-login-label {
  color: #9a7538;
}

.eixo-login-box label,
.eixo-login-guide p {
  color: #33443c;
}

.eixo-login-box input {
  border-color: rgba(13, 90, 66, .18);
  background: #fff;
  color: #0c1914;
}

.eixo-login-guide p:last-child {
  color: #0d5a42;
}

.eixo-login-box button {
  border-color: #c69b4f;
  background: #c69b4f;
  color: #0c1914;
}

.admin-guide-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(198, 155, 79, .42);
  background: rgba(198, 155, 79, .12);
  color: #d8ae60;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
