/* GoAgendy auth experience — visual system shared by login, cadastro and trial */
:root {
  --auth-ink: #0f172a;
  --auth-navy: #111a35;
  --auth-navy-2: #1e2542;
  --auth-purple: #7c3aed;
  --auth-purple-dark: #5b21b6;
  --auth-purple-soft: #f4eeFE;
  --auth-orange: #f97316;
  --auth-orange-dark: #ea580c;
  --auth-orange-soft: #fff1e6;
  --auth-teal: #0ea5a0;
  --auth-muted: #647089;
  --auth-line: #e8e5f0;
  --auth-bg: #faf9fc;
  --auth-white: #fff;
  --auth-radius: 22px;
}

body.auth-page {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--auth-ink);
  background:
    radial-gradient(circle at 7% 10%, rgba(124, 58, 237, .10), transparent 28rem),
    radial-gradient(circle at 92% 88%, rgba(249, 115, 22, .10), transparent 30rem),
    var(--auth-bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.auth-page *,
body.auth-page *::before,
body.auth-page *::after { box-sizing: border-box; }

body.auth-page a { color: inherit; }

.auth-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(450px, 1.08fr);
  align-items: center;
  gap: 34px;
}

.auth-showcase {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 15%, rgba(124, 58, 237, .44), transparent 19rem),
    radial-gradient(circle at 88% 86%, rgba(249, 115, 22, .32), transparent 22rem),
    linear-gradient(145deg, #10182f, #1d2141 60%, #211b3e);
  box-shadow: 0 34px 80px -42px rgba(15, 23, 42, .68);
}

.auth-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.auth-showcase > * { position: relative; z-index: 1; }

.auth-brand,
.auth-mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.04em;
}

.auth-brand b,
.auth-mobile-brand b { color: var(--auth-orange); }

.auth-brand__mark,
.auth-mobile-brand__mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--auth-purple), var(--auth-orange));
  box-shadow: 0 9px 22px rgba(124, 58, 237, .32);
}

.auth-brand__mark svg,
.auth-mobile-brand__mark svg { width: 21px; height: 21px; }

.auth-showcase__content { max-width: 460px; margin-top: 112px; }

.auth-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.auth-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--auth-orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .18);
}

.auth-showcase h1 {
  max-width: 440px;
  margin: 22px 0 16px;
  color: #fff;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.auth-showcase h1 span { color: #ffab69; }

.auth-showcase p {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, .70);
  font-size: 15px;
  line-height: 1.75;
}

.auth-benefits {
  display: grid;
  gap: 13px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.auth-benefits li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  font-weight: 600;
}

.auth-benefits i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  color: #fff;
  background: rgba(14, 165, 160, .28);
  border: 1px solid rgba(45, 212, 191, .34);
  font-size: 12px;
}

.auth-showcase__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 58px;
}

.auth-showcase__stat {
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
}

.auth-showcase__stat strong {
  display: block;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 20px;
}

.auth-showcase__stat span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .57);
  font-size: 11px;
}

.auth-showcase__screen {
  position: absolute;
  right: 35px;
  bottom: 34px;
  width: 190px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 17px;
  background: rgba(255, 255, 255, .10);
  transform: rotate(-5deg);
  box-shadow: 0 24px 38px -20px rgba(0, 0, 0, .60);
}

.auth-showcase__screen-bar { display: flex; gap: 4px; margin-bottom: 12px; }
.auth-showcase__screen-bar i { width: 6px; height: 6px; border-radius: 50%; background: #ffab69; }
.auth-showcase__screen-bar i:nth-child(2) { background: #a78bfa; }
.auth-showcase__screen-bar i:nth-child(3) { background: #5eead4; }
.auth-screen-line { height: 8px; margin: 8px 0; border-radius: 99px; background: rgba(255, 255, 255, .16); }
.auth-screen-line.is-short { width: 58%; }
.auth-screen-line.is-purple { width: 78%; background: linear-gradient(90deg, var(--auth-purple), #a78bfa); }
.auth-screen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 14px; }
.auth-screen-grid span { height: 24px; border-radius: 6px; background: rgba(255, 255, 255, .14); }
.auth-screen-grid span:nth-child(2), .auth-screen-grid span:nth-child(6) { background: rgba(249, 115, 22, .62); }

.auth-panel {
  width: 100%;
  padding: 42px 44px 38px;
  border: 1px solid var(--auth-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 28px 70px -45px rgba(15, 23, 42, .42);
}

.auth-panel--wide { padding: 36px 40px 34px; }

.auth-panel__top { margin-bottom: 28px; }
.auth-panel__top .auth-mobile-brand { display: none; margin-bottom: 26px; color: var(--auth-ink); }
.auth-panel__top .auth-kicker { color: var(--auth-purple-dark); border-color: #d9c8fb; background: var(--auth-purple-soft); }
.auth-panel__top .auth-kicker::before { background: var(--auth-purple); box-shadow: 0 0 0 4px rgba(124, 58, 237, .12); }

.auth-panel h2 {
  margin: 15px 0 8px;
  color: var(--auth-ink);
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.12;
  letter-spacing: -.055em;
}

.auth-panel__lead { max-width: 520px; margin: 0; color: var(--auth-muted); font-size: 14px; line-height: 1.65; }
.auth-panel__lead strong { color: var(--auth-purple-dark); }

.auth-form { display: grid; gap: 17px; }
.auth-form--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 15px; }
.auth-form--grid .auth-form-section,
.auth-form--grid .auth-consent,
.auth-form--grid .auth-submit { grid-column: 1 / -1; }

.auth-form-section {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--auth-line);
  border-radius: 17px;
  background: linear-gradient(180deg, #fff, #fcfbff);
}

.auth-form-section h3 {
  margin: 0 0 1px;
  color: var(--auth-navy-2);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.auth-form-section > p { margin: 0 0 5px; color: var(--auth-muted); font-size: 12px; line-height: 1.5; }
.auth-field { display: grid; gap: 7px; }
.auth-form > .auth-field { gap: 8px; }
.auth-field label { color: var(--auth-navy-2); font-size: 13px; font-weight: 700; }
.auth-field label span, .auth-consent span.required { color: var(--auth-orange-dark); }

.auth-input-wrap { position: relative; }
.auth-input-wrap > i {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 1;
  color: #8d96aa;
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}

.auth-input,
.auth-input-wrap input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px 12px 43px;
  border: 1px solid #dcd9e7;
  border-radius: 13px;
  outline: none;
  color: var(--auth-ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.auth-input-wrap input::placeholder { color: #a0a8b7; }
.auth-input-wrap input:focus { border-color: #a78bfa; background: #fff; box-shadow: 0 0 0 4px rgba(124, 58, 237, .12); }
.auth-input-wrap.has-toggle input { padding-right: 46px; }

.auth-password-toggle {
  position: absolute;
  top: 50%;
  right: 9px;
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  color: #7a8499;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.auth-password-toggle:hover { color: var(--auth-purple); background: var(--auth-purple-soft); }

.auth-inline-error,
.cadastro-feedback,
.login-inline-error {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid #fecaca;
  border-radius: 11px;
  color: #b42318;
  background: #fff5f5;
  font-size: 13px;
  line-height: 1.45;
}

.login-inline-success {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid #a7f3d0;
  border-radius: 11px;
  color: #047857;
  background: #ecfdf5;
  font-size: 13px;
  line-height: 1.45;
}

.login-support-note { margin: 0; color: var(--auth-muted); font-size: 11px; line-height: 1.55; text-align: center; }

.auth-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: -2px; }
.auth-check { display: inline-flex; align-items: center; gap: 8px; color: var(--auth-muted); font-size: 12px; cursor: pointer; }
.auth-check input, .auth-consent input { accent-color: var(--auth-purple); }
.auth-link { color: var(--auth-purple-dark); font-size: 12px; font-weight: 700; text-decoration: none; }
.auth-link:hover { color: var(--auth-orange-dark); text-decoration: underline; }

.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 51px;
  padding: 13px 20px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--auth-orange), var(--auth-orange-dark));
  box-shadow: 0 13px 24px -14px rgba(249, 115, 22, .9);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.auth-submit:hover { transform: translateY(-2px); box-shadow: 0 17px 28px -14px rgba(249, 115, 22, .95); }
.auth-submit:disabled { cursor: wait; opacity: .72; transform: none; }
.auth-submit--purple { background: linear-gradient(135deg, var(--auth-purple), var(--auth-purple-dark)); box-shadow: 0 13px 24px -14px rgba(124, 58, 237, .88); }
.auth-submit--purple:hover { box-shadow: 0 17px 28px -14px rgba(124, 58, 237, .94); }

.auth-submit .btn-spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(255, 255, 255, .35); border-top-color: #fff; border-radius: 50%; animation: auth-spin .7s linear infinite; }
.auth-submit.is-loading .btn-spinner { display: inline-block; }
@keyframes auth-spin { to { transform: rotate(360deg); } }

.auth-note { margin: 0; color: var(--auth-muted); font-size: 11px; line-height: 1.55; text-align: center; }
.auth-footer-link { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 24px 0 0; color: var(--auth-muted); font-size: 13px; }
.auth-footer-link a { color: var(--auth-purple-dark); font-weight: 800; text-decoration: none; }
.auth-footer-link a:hover { color: var(--auth-orange-dark); text-decoration: underline; }
.auth-back-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 17px; color: var(--auth-muted); font-size: 12px; font-weight: 700; text-decoration: none; }
.auth-back-link:hover { color: var(--auth-purple-dark); }

.auth-consent { display: flex; align-items: flex-start; gap: 9px; color: var(--auth-muted); font-size: 12px; line-height: 1.55; }
.auth-consent input { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 1px; }
.auth-consent a { color: var(--auth-purple-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.auth-section-error { grid-column: 1 / -1; }

#login-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: rgba(15, 23, 42, .82);
  transition: opacity .2s ease, visibility .2s ease;
}
#login-transition.ativo { visibility: visible; opacity: 1; }
#login-transition img { width: 130px; height: 130px; object-fit: cover; border-radius: 28px; box-shadow: 0 24px 60px rgba(0,0,0,.35); }

/* Existing support modal remains available on cadastro pages, with the same language. */
body.auth-page .support-modal__content,
body.auth-page .confirm-modal__content { border-radius: 22px; border: 1px solid var(--auth-line); box-shadow: 0 28px 70px -35px rgba(15, 23, 42, .50); }

@media (max-width: 1020px) {
  .auth-shell { grid-template-columns: 1fr; width: min(720px, calc(100% - 28px)); padding: 22px 0 30px; }
  .auth-showcase { display: none; }
  .auth-panel { max-width: 720px; margin: 0 auto; }
  .auth-panel__top .auth-mobile-brand { display: inline-flex; }
}

@media (max-width: 620px) {
  .auth-shell { width: min(100% - 20px, 560px); padding: 10px 0 20px; }
  .auth-panel, .auth-panel--wide { padding: 27px 18px 24px; border-radius: 21px; }
  .auth-panel__top { margin-bottom: 23px; }
  .auth-panel h2 { font-size: 29px; }
  .auth-form--grid { grid-template-columns: 1fr; gap: 12px; }
  .auth-form-section { padding: 15px; }
  .auth-meta { align-items: flex-start; flex-direction: column; gap: 10px; }
  .auth-footer-link { flex-wrap: wrap; margin-top: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  body.auth-page *, body.auth-page *::before, body.auth-page *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Login interativo */
.auth-login-page {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 12%, rgba(124, 58, 237, .11), transparent 31rem),
    radial-gradient(circle at 94% 86%, rgba(249, 115, 22, .11), transparent 33rem),
    linear-gradient(145deg, #faf9ff 0%, #fbfbff 52%, #fff9f5 100%);
}

.auth-login-page .auth-login-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.auth-login-orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(5px);
  opacity: .62;
  will-change: transform;
}

.auth-login-orb--purple {
  top: -170px;
  left: -130px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle at 60% 60%, rgba(124, 58, 237, .22), rgba(124, 58, 237, .04) 62%, transparent 72%);
  animation: auth-login-orbit-a 13s ease-in-out infinite;
}

.auth-login-orb--orange {
  right: -170px;
  bottom: -190px;
  width: 510px;
  height: 510px;
  background: radial-gradient(circle at 35% 32%, rgba(249, 115, 22, .21), rgba(249, 115, 22, .04) 62%, transparent 72%);
  animation: auth-login-orbit-b 15s ease-in-out infinite;
}

.auth-login-orb--blue {
  top: 34%;
  right: 16%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(59, 130, 246, .10), transparent 69%);
  animation: auth-login-orbit-a 18s ease-in-out -6s infinite reverse;
}

.auth-login-spark {
  position: absolute;
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(124, 58, 237, .07), 0 0 22px rgba(124, 58, 237, .4);
  animation: auth-login-spark 5s ease-in-out infinite;
}

.auth-login-spark--1 { top: 17%; left: 6%; }
.auth-login-spark--2 { top: 26%; right: 7%; animation-delay: -1.4s; }
.auth-login-spark--3 { bottom: 18%; left: 43%; animation-delay: -2.8s; }
.auth-login-spark--4 { top: 66%; right: 3%; animation-delay: -4.1s; }

.auth-login-page .auth-shell {
  position: relative;
  z-index: 1;
}

.auth-login-page .auth-showcase,
.auth-login-page .auth-panel--login {
  will-change: transform, opacity;
}

.auth-login-page .auth-showcase {
  background:
    radial-gradient(circle at 18% 14%, rgba(124, 58, 237, .48), transparent 19rem),
    radial-gradient(circle at 88% 86%, rgba(249, 115, 22, .35), transparent 22rem),
    linear-gradient(145deg, #0f1731, #1c2142 58%, #241b3f);
  box-shadow: 0 38px 85px -42px rgba(15, 23, 42, .78);
  animation: auth-login-reveal-left .72s cubic-bezier(.2, .75, .25, 1) both;
}

.auth-login-page .auth-showcase::after {
  position: absolute;
  inset: -40% auto -40% -32%;
  z-index: 0;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .09), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(16deg);
  animation: auth-login-sheen 8s ease-in-out 1.2s infinite;
}

.auth-showcase__glow {
  position: absolute !important;
  z-index: 0 !important;
  display: block;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.auth-showcase__glow--purple {
  top: 30%;
  left: -90px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(167, 139, 250, .2), transparent 68%);
  animation: auth-showcase-glow 8s ease-in-out infinite;
}

.auth-showcase__glow--orange {
  right: -70px;
  bottom: 8%;
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, rgba(251, 146, 60, .2), transparent 68%);
  animation: auth-showcase-glow 9s ease-in-out -4s infinite reverse;
}

.auth-login-page .auth-brand,
.auth-login-page .auth-mobile-brand {
  gap: 9px;
  transition: transform .22s ease, color .22s ease;
}

.auth-login-page .auth-brand:hover,
.auth-login-page .auth-mobile-brand:hover {
  transform: translateY(-2px);
}

.auth-brand__logo {
  width: 52px;
  height: 52px;
  display: block;
  flex: 0 0 52px;
  object-fit: contain;
  filter: drop-shadow(0 9px 13px rgba(0, 0, 0, .22));
  transition: transform .28s ease, filter .28s ease;
}

.auth-brand:hover .auth-brand__logo,
.auth-mobile-brand:hover .auth-brand__logo {
  filter: drop-shadow(0 12px 16px rgba(249, 115, 22, .26));
  transform: rotate(-4deg) scale(1.05);
}

.auth-login-page .auth-showcase__content > *,
.auth-login-page .auth-benefits li,
.auth-login-page .auth-showcase__stat {
  animation: auth-login-rise .58s cubic-bezier(.2, .7, .25, 1) both;
}

.auth-login-page .auth-showcase__content > .auth-kicker { animation-delay: .16s; }
.auth-login-page .auth-showcase__content > h1 { animation-delay: .23s; }
.auth-login-page .auth-showcase__content > p { animation-delay: .3s; }
.auth-login-page .auth-benefits li:nth-child(1) { animation-delay: .38s; }
.auth-login-page .auth-benefits li:nth-child(2) { animation-delay: .44s; }
.auth-login-page .auth-benefits li:nth-child(3) { animation-delay: .5s; }
.auth-login-page .auth-showcase__stat:nth-child(1) { animation-delay: .54s; }
.auth-login-page .auth-showcase__stat:nth-child(2) { animation-delay: .6s; }

.auth-login-page .auth-showcase__stats {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 8px;
  margin-top: 28px;
}

.auth-login-page .auth-calendar-3d {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 2px;
  min-width: 0;
  overflow: hidden;
  padding: 3px 7px 3px 1px;
  border: 1px solid rgba(167, 139, 250, .27);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 76%, rgba(124, 58, 237, .24), transparent 58%),
    radial-gradient(circle at 100% 20%, rgba(249, 115, 22, .13), transparent 56%),
    rgba(255, 255, 255, .075);
  backdrop-filter: blur(9px);
  animation: auth-login-rise .58s cubic-bezier(.2, .7, .25, 1) .66s both;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.auth-login-page .auth-calendar-3d:hover {
  border-color: rgba(196, 181, 253, .48);
  background: rgba(255, 255, 255, .11);
  transform: translateY(-4px);
}

.auth-calendar-3d img {
  position: relative;
  z-index: 1;
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(2, 6, 23, .28));
  transform: rotate(-4deg);
  animation: auth-calendar-3d-float 4s ease-in-out infinite;
}

.auth-calendar-3d__copy {
  position: relative;
  z-index: 1;
  display: grid !important;
  min-width: 0;
  gap: 3px;
  margin: 0 !important;
}

.auth-calendar-3d__copy strong {
  overflow: hidden;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-calendar-3d__copy small {
  color: rgba(255, 255, 255, .58);
  font-size: 8px;
  line-height: 1.25;
}

.auth-login-page .auth-showcase h1 span {
  color: transparent;
  background: linear-gradient(90deg, #ff9a55, #ffd0a8, #ff9a55);
  background-size: 220% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: auth-login-text-shine 5s linear infinite;
}

.auth-login-page .auth-benefits li {
  width: fit-content;
  padding: 4px 8px 4px 0;
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease;
}

.auth-login-page .auth-benefits {
  max-width: 228px;
}

.auth-login-page .auth-benefits li:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateX(5px);
}

.auth-login-page .auth-benefits i {
  transition: transform .22s ease, background .22s ease;
}

.auth-login-page .auth-benefits li:hover i {
  background: rgba(14, 165, 160, .45);
  transform: scale(1.08) rotate(-5deg);
}

.auth-login-page .auth-showcase__stat {
  backdrop-filter: blur(8px);
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.auth-login-page .auth-showcase__stat:hover {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .11);
  transform: translateY(-4px);
}

.auth-login-page .auth-showcase__screen {
  width: 205px;
  padding: 14px;
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .11);
  backdrop-filter: blur(14px);
  transform: translate3d(var(--login-shift-x, 0), var(--login-shift-y, 0), 0) rotate(-5deg);
  transition: transform .18s ease-out, border-color .22s ease, background .22s ease;
  animation: auth-login-screen-in .8s cubic-bezier(.2, .75, .25, 1) .55s both;
}

.auth-login-page .auth-showcase__screen:hover {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .14);
}

.auth-screen-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 700;
}

.auth-screen-heading strong {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 17px;
}

.auth-login-page .auth-screen-line.is-purple {
  position: relative;
  overflow: hidden;
  animation: auth-screen-bar 3.4s ease-in-out infinite;
}

.auth-login-page .auth-screen-grid span {
  animation: auth-screen-cell 4s ease-in-out infinite;
}

.auth-login-page .auth-screen-grid span:nth-child(2) { animation-delay: -.7s; }
.auth-login-page .auth-screen-grid span:nth-child(3) { animation-delay: -1.4s; }
.auth-login-page .auth-screen-grid span:nth-child(4) { animation-delay: -2.1s; }
.auth-login-page .auth-screen-grid span:nth-child(5) { animation-delay: -2.8s; }
.auth-login-page .auth-screen-grid span:nth-child(6) { animation-delay: -3.5s; }

.auth-screen-live {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 11px;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 600;
}

.auth-screen-live i,
.auth-login-status__online i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .13);
  animation: auth-online-pulse 2s ease-in-out infinite;
}

.auth-login-page .auth-panel--login {
  position: relative;
  overflow: hidden;
  padding: 44px 46px 38px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 34px 80px -46px rgba(15, 23, 42, .46);
  backdrop-filter: blur(18px);
  animation: auth-login-reveal-right .72s cubic-bezier(.2, .75, .25, 1) .08s both;
}

.auth-login-page .auth-panel--login::before {
  position: absolute;
  top: 0;
  right: 42px;
  left: 42px;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, transparent, var(--auth-purple), var(--auth-orange), transparent);
  content: "";
  opacity: .8;
}

.auth-login-page .auth-panel--login.is-shaking {
  animation: auth-login-shake .34s ease both;
}

.auth-login-page .auth-panel__top {
  margin-bottom: 26px;
}

.auth-login-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.auth-login-status__online {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4b5563;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.auth-login-page .auth-panel__top .auth-kicker::before {
  animation: auth-kicker-pulse 2.4s ease-in-out infinite;
}

.auth-login-page .auth-form {
  gap: 13px;
}

.auth-field__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.auth-field__label-row > span {
  color: #9098aa;
  font-size: 10px;
  font-weight: 500;
}

.auth-login-page .auth-input-wrap > i {
  transition: color .18s ease, transform .18s ease;
}

.auth-login-page .auth-input-wrap:focus-within > i {
  color: var(--auth-purple);
  transform: translateY(-50%) scale(1.08);
}

.auth-login-page .auth-input,
.auth-login-page .auth-input-wrap input {
  min-height: 54px;
  border-color: #dedbe8;
  background: rgba(255, 255, 255, .96);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

.auth-login-page .auth-input-wrap input:hover:not(:focus) {
  border-color: #c9c3d9;
}

.auth-login-page .auth-input-wrap input:focus {
  transform: translateY(-1px);
}

.auth-field__state {
  position: absolute;
  top: 50%;
  right: 14px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(.7);
  transition: opacity .18s ease, transform .18s ease;
}

.auth-field.is-valid .auth-field__state {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.auth-field.is-valid .auth-input-wrap input {
  border-color: #86d9a1;
  background: #fbfffc;
}

.auth-field.is-invalid .auth-input-wrap input {
  border-color: #f08b8b;
  background: #fffafa;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .08);
}

.auth-field.is-invalid .auth-input-wrap > i {
  color: #dc2626;
}

.auth-field__feedback {
  min-height: 15px;
  margin: 0;
  color: #15803d;
  font-size: 10.5px;
  line-height: 1.4;
}

.auth-field.is-invalid .auth-field__feedback {
  color: #b42318;
}

.auth-password-feedback {
  min-height: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.auth-caps-lock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  color: #b45309;
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
}

.auth-caps-lock[hidden] { display: none; }

.auth-login-page .auth-password-toggle {
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.auth-login-page .auth-password-toggle:hover {
  transform: translateY(-50%) scale(1.06);
}

.auth-login-page .auth-check input {
  width: 17px;
  height: 17px;
  margin: 0;
  appearance: none;
  border: 1.5px solid #b9b4c7;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.auth-login-page .auth-check input:checked {
  border-color: var(--auth-purple);
  background: var(--auth-purple) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.6' d='m5 10 3 3 7-7'/%3E%3C/svg%3E") center/13px no-repeat;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, .1);
}

.auth-login-page .auth-check:hover input {
  border-color: var(--auth-purple);
}

.auth-login-page .auth-link,
.auth-login-page .auth-footer-link a,
.auth-login-page .auth-back-link {
  text-underline-offset: 3px;
  transition: color .18s ease, transform .18s ease;
}

.auth-login-page .auth-back-link:hover {
  transform: translateX(-3px);
}

.auth-login-page .auth-submit {
  position: relative;
  isolation: isolate;
  min-height: 54px;
  overflow: hidden;
  margin-top: 2px;
  font-size: 14.5px;
}

.auth-login-page .auth-submit::before {
  position: absolute;
  inset: -60% auto -60% -34%;
  z-index: -1;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
  content: "";
  transform: rotate(18deg);
  transition: left .55s ease;
}

.auth-login-page .auth-submit:hover::before {
  left: 112%;
}

.auth-submit__arrow {
  font-size: 12px;
  transition: transform .18s ease;
}

.auth-login-page .auth-submit:hover .auth-submit__arrow {
  transform: translateX(4px);
}

.auth-login-page .auth-submit.is-loading .auth-submit__arrow {
  display: none;
}

.auth-login-page .auth-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.auth-login-page .auth-note i {
  color: var(--auth-teal);
}

.auth-login-page .auth-footer-link {
  margin-top: 21px;
}

.auth-login-page #login-transition {
  background: rgba(15, 23, 42, .72);
  backdrop-filter: blur(10px);
}

.auth-login-page .login-transition__content {
  min-width: 280px;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 24px;
  background: rgba(17, 24, 39, .84);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
  color: #fff;
  text-align: center;
  transform: translateY(12px) scale(.97);
  transition: transform .22s ease;
}

.auth-login-page #login-transition.ativo .login-transition__content {
  transform: translateY(0) scale(1);
}

.auth-login-page #login-transition img {
  width: 92px;
  height: 92px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, .32));
  animation: auth-login-loader 1.8s ease-in-out infinite;
}

.auth-login-page .login-transition__content strong {
  font-family: "Sora", sans-serif;
  font-size: 16px;
}

.auth-login-page .login-transition__content span {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
}

@keyframes auth-login-reveal-left {
  from { opacity: 0; transform: translate3d(-30px, 12px, 0) scale(.985); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes auth-login-reveal-right {
  from { opacity: 0; transform: translate3d(32px, 12px, 0) scale(.985); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes auth-login-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes auth-login-orbit-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(32px, 24px, 0) scale(1.08); }
}

@keyframes auth-login-orbit-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-38px, -25px, 0) scale(1.06); }
}

@keyframes auth-login-spark {
  0%, 100% { opacity: .2; transform: translateY(0) scale(.8); }
  50% { opacity: .9; transform: translateY(-18px) scale(1.15); }
}

@keyframes auth-login-sheen {
  0%, 70% { left: -32%; opacity: 0; }
  78% { opacity: 1; }
  100% { left: 125%; opacity: 0; }
}

@keyframes auth-showcase-glow {
  0%, 100% { opacity: .5; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes auth-login-text-shine {
  to { background-position: 220% center; }
}

@keyframes auth-login-screen-in {
  from { opacity: 0; transform: translate3d(30px, 26px, 0) rotate(1deg) scale(.88); }
  to { opacity: 1; transform: translate3d(var(--login-shift-x, 0), var(--login-shift-y, 0), 0) rotate(-5deg) scale(1); }
}

@keyframes auth-screen-bar {
  0%, 100% { width: 64%; filter: brightness(.9); }
  50% { width: 86%; filter: brightness(1.18); }
}

@keyframes auth-screen-cell {
  0%, 100% { opacity: .58; }
  50% { opacity: 1; }
}

@keyframes auth-online-pulse {
  0%, 100% { opacity: .65; box-shadow: 0 0 0 3px rgba(34, 197, 94, .1); }
  50% { opacity: 1; box-shadow: 0 0 0 6px rgba(34, 197, 94, .03); }
}

@keyframes auth-kicker-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(124, 58, 237, .1); }
  50% { box-shadow: 0 0 0 7px rgba(124, 58, 237, .025); }
}

@keyframes auth-login-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-7px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-3px); }
}

@keyframes auth-login-loader {
  0%, 100% { transform: scale(.96) rotate(-2deg); }
  50% { transform: scale(1.04) rotate(2deg); }
}

@keyframes auth-calendar-3d-float {
  0%, 100% { transform: translateY(1px) rotate(-4deg); }
  50% { transform: translateY(-4px) rotate(-2deg); }
}

@media (max-width: 1020px) {
  .auth-login-page .auth-panel--login {
    padding: 39px 42px 34px;
  }

  .auth-login-page .auth-panel__top .auth-mobile-brand {
    margin-bottom: 23px;
  }

  .auth-login-page .auth-mobile-brand .auth-brand__logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
}

@media (max-width: 620px) {
  .auth-login-page .auth-panel--login {
    padding: 29px 20px 25px;
  }

  .auth-login-page .auth-panel--login::before {
    right: 24px;
    left: 24px;
  }

  .auth-login-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .auth-login-page .auth-panel h2 {
    margin-top: 13px;
    font-size: 30px;
  }

  .auth-field__label-row > span {
    display: none;
  }

  .auth-login-page .auth-meta {
    align-items: center;
    flex-direction: row;
  }

  .auth-login-page .login-transition__content {
    min-width: 0;
    width: calc(100vw - 40px);
  }
}

@media (max-width: 390px) {
  .auth-login-page .auth-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-password-feedback {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}

/* Trial interativo */
.auth-trial-page {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 7% 9%, rgba(124, 58, 237, .12), transparent 32rem),
    radial-gradient(circle at 94% 88%, rgba(249, 115, 22, .11), transparent 34rem),
    linear-gradient(145deg, #faf9ff 0%, #fbfbff 54%, #fff9f5 100%);
}

.auth-trial-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.auth-trial-orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(6px);
  opacity: .64;
  will-change: transform;
}

.auth-trial-orb--purple {
  top: -180px;
  left: -140px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at 60% 60%, rgba(124, 58, 237, .22), rgba(124, 58, 237, .04) 62%, transparent 72%);
  animation: auth-login-orbit-a 14s ease-in-out infinite;
}

.auth-trial-orb--orange {
  right: -190px;
  bottom: -210px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle at 35% 32%, rgba(249, 115, 22, .2), rgba(249, 115, 22, .035) 62%, transparent 72%);
  animation: auth-login-orbit-b 16s ease-in-out infinite;
}

.auth-trial-spark {
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(124, 58, 237, .07), 0 0 22px rgba(124, 58, 237, .36);
  animation: auth-login-spark 5.5s ease-in-out infinite;
}

.auth-trial-spark--1 { top: 16%; left: 5%; }
.auth-trial-spark--2 { top: 38%; right: 5%; animation-delay: -1.8s; }
.auth-trial-spark--3 { bottom: 15%; left: 46%; animation-delay: -3.6s; }

.auth-trial-page .auth-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  min-height: 100vh;
  padding: 28px 0 44px;
  grid-template-columns: minmax(0, .93fr) minmax(520px, 1.07fr);
  align-items: start;
  gap: 30px;
}

.auth-trial-page .auth-showcase {
  position: sticky;
  top: 28px;
  min-height: 790px;
  padding: 38px 42px;
  background:
    radial-gradient(circle at 18% 14%, rgba(124, 58, 237, .5), transparent 20rem),
    radial-gradient(circle at 88% 88%, rgba(249, 115, 22, .36), transparent 23rem),
    linear-gradient(145deg, #0f1731, #1c2142 58%, #241b3f);
  box-shadow: 0 40px 90px -44px rgba(15, 23, 42, .8);
  animation: auth-login-reveal-left .72s cubic-bezier(.2, .75, .25, 1) both;
}

.auth-trial-page .auth-showcase::after {
  position: absolute;
  inset: -40% auto -40% -32%;
  z-index: 0;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .09), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(16deg);
  animation: auth-login-sheen 8.5s ease-in-out 1.2s infinite;
}

.auth-trial-page .auth-brand,
.auth-trial-page .auth-mobile-brand {
  gap: 9px;
  transition: transform .22s ease, color .22s ease;
}

.auth-trial-page .auth-brand:hover,
.auth-trial-page .auth-mobile-brand:hover {
  transform: translateY(-2px);
}

.auth-trial-page .auth-showcase__content {
  margin-top: 54px;
}

.auth-trial-page .auth-showcase__content > *,
.auth-trial-page .auth-benefits li,
.auth-trial-page .auth-showcase__stat {
  animation: auth-login-rise .58s cubic-bezier(.2, .7, .25, 1) both;
}

.auth-trial-page .auth-showcase__content > .auth-kicker { animation-delay: .16s; }
.auth-trial-page .auth-showcase__content > h1 { animation-delay: .23s; }
.auth-trial-page .auth-showcase__content > p { animation-delay: .3s; }
.auth-trial-page .auth-benefits li:nth-child(1) { animation-delay: .38s; }
.auth-trial-page .auth-benefits li:nth-child(2) { animation-delay: .44s; }
.auth-trial-page .auth-benefits li:nth-child(3) { animation-delay: .5s; }
.auth-trial-page .auth-showcase__stat:nth-child(1) { animation-delay: .54s; }
.auth-trial-page .auth-showcase__stat:nth-child(2) { animation-delay: .6s; }
.auth-trial-page .auth-showcase__stat:nth-child(3) { animation-delay: .66s; }

.auth-trial-page .auth-showcase h1 {
  margin-top: 20px;
  font-size: clamp(35px, 3.55vw, 48px);
}

.auth-trial-page .auth-showcase h1 span {
  color: transparent;
  background: linear-gradient(90deg, #ff9a55, #ffd0a8, #ff9a55);
  background-size: 220% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: auth-login-text-shine 5s linear infinite;
}

.auth-trial-page .auth-benefits {
  margin-top: 26px;
}

.auth-trial-page .auth-benefits li {
  width: fit-content;
  padding: 4px 8px 4px 0;
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease;
}

.auth-trial-page .auth-benefits li:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateX(5px);
}

.auth-trial-page .auth-benefits i {
  transition: transform .22s ease, background .22s ease;
}

.auth-trial-page .auth-benefits li:hover i {
  background: rgba(14, 165, 160, .45);
  transform: scale(1.08) rotate(-5deg);
}

.auth-trial-page .auth-showcase__stats {
  margin-top: 28px;
}

.auth-trial-page .auth-showcase__stat {
  padding: 14px 12px;
  backdrop-filter: blur(8px);
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.auth-trial-page .auth-showcase__stat:hover {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .11);
  transform: translateY(-4px);
}

.auth-trial-page .auth-showcase__stat strong {
  font-size: 17px;
}

.auth-trial-page .auth-showcase__screen {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: 390px;
  margin: 24px auto 0;
  padding: 15px;
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .105);
  box-shadow: 0 25px 42px -24px rgba(0, 0, 0, .7);
  backdrop-filter: blur(15px);
  transform: translate3d(var(--trial-shift-x, 0), var(--trial-shift-y, 0), 0) rotate(-1.5deg);
  transition: transform .18s ease-out, border-color .22s ease, background .22s ease;
  animation: auth-trial-preview-in .82s cubic-bezier(.2, .75, .25, 1) .55s both;
}

.auth-trial-page .auth-showcase__screen:hover {
  border-color: rgba(255, 255, 255, .31);
  background: rgba(255, 255, 255, .14);
}

.auth-trial-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
  font-weight: 700;
}

.auth-trial-preview__header strong {
  padding: 4px 8px;
  border-radius: 99px;
  color: #b7f7df;
  background: rgba(16, 185, 129, .13);
  font-size: 9px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.auth-trial-page .auth-screen-line.is-purple {
  animation: auth-screen-bar 3.4s ease-in-out infinite;
}

.auth-trial-page .auth-screen-grid span {
  animation: auth-screen-cell 4s ease-in-out infinite;
}

.auth-trial-page .auth-screen-grid span:nth-child(2) { animation-delay: -.7s; }
.auth-trial-page .auth-screen-grid span:nth-child(3) { animation-delay: -1.4s; }
.auth-trial-page .auth-screen-grid span:nth-child(4) { animation-delay: -2.1s; }
.auth-trial-page .auth-screen-grid span:nth-child(5) { animation-delay: -2.8s; }
.auth-trial-page .auth-screen-grid span:nth-child(6) { animation-delay: -3.5s; }

.auth-trial-preview__live {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 11px;
  color: rgba(255, 255, 255, .6);
  font-size: 9.5px;
  font-weight: 600;
}

.auth-trial-preview__live i,
.auth-trial-secure i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .13);
  animation: auth-online-pulse 2s ease-in-out infinite;
}

.auth-trial-page .auth-panel--trial {
  position: relative;
  overflow: hidden;
  padding: 35px 40px 34px;
  background: rgba(255, 255, 255, .91);
  box-shadow: 0 36px 86px -48px rgba(15, 23, 42, .48);
  backdrop-filter: blur(18px);
  animation: auth-login-reveal-right .72s cubic-bezier(.2, .75, .25, 1) .08s both;
}

.auth-trial-page .auth-panel--trial::before {
  position: absolute;
  top: 0;
  right: 42px;
  left: 42px;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, transparent, var(--auth-purple), var(--auth-orange), transparent);
  content: "";
  opacity: .82;
}

.auth-trial-page .auth-panel--trial.is-shaking {
  animation: auth-login-shake .34s ease both;
}

.auth-trial-page .auth-panel__top {
  margin-bottom: 22px;
}

.auth-trial-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.auth-trial-secure {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4b5563;
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
}

.auth-trial-page .auth-panel__top .auth-kicker::before {
  animation: auth-kicker-pulse 2.4s ease-in-out infinite;
}

.auth-trial-progress {
  margin: 0 0 18px;
  padding: 14px 16px 13px;
  border: 1px solid #e8e3f4;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(248, 245, 255, .9), rgba(255, 249, 245, .8));
}

.auth-trial-progress__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 9px;
}

.auth-trial-progress__summary strong {
  color: var(--auth-navy-2);
  font-family: "Sora", sans-serif;
  font-size: 11px;
}

.auth-trial-progress__summary span {
  color: var(--auth-purple-dark);
  font-size: 10px;
  font-weight: 700;
}

.auth-trial-progress__track {
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: #e9e5f1;
}

.auth-trial-progress__track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--auth-purple), #a855f7, var(--auth-orange));
  box-shadow: 0 0 12px rgba(124, 58, 237, .3);
  transition: width .38s cubic-bezier(.2, .75, .25, 1);
}

.auth-trial-progress__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 11px;
}

.auth-trial-progress__steps button {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 6px 7px;
  border: 0;
  border-radius: 9px;
  color: #7b8496;
  background: transparent;
  font: inherit;
  font-size: 10.5px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.auth-trial-progress__steps button:hover {
  color: var(--auth-purple-dark);
  background: rgba(124, 58, 237, .06);
  transform: translateY(-1px);
}

.auth-trial-progress__steps button i {
  position: relative;
  display: grid;
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid #d9d3e5;
  border-radius: 50%;
  background: #fff;
  font-size: 9px;
  font-style: normal;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.auth-trial-progress__steps button.is-active {
  color: var(--auth-purple-dark);
  background: rgba(124, 58, 237, .06);
}

.auth-trial-progress__steps button.is-active i {
  border-color: var(--auth-purple);
  color: #fff;
  background: var(--auth-purple);
}

.auth-trial-progress__steps button.is-complete i {
  border-color: #16a36a;
  color: transparent;
  background: #16a36a;
}

.auth-trial-progress__steps button.is-complete i::after {
  position: absolute;
  color: #fff;
  content: "✓";
}

.auth-trial-page .auth-form {
  gap: 14px;
}

.auth-trial-page .auth-form-section {
  gap: 7px;
  padding: 18px;
  border-color: #e5e1ec;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(252, 251, 255, .94));
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}

.auth-trial-page .auth-form-section.is-active {
  border-color: #cbb8f2;
  background: linear-gradient(180deg, #fff, #fdfbff);
  box-shadow: 0 11px 28px -25px rgba(91, 33, 182, .58), 0 0 0 3px rgba(124, 58, 237, .045);
}

.auth-trial-page .auth-form-section.is-complete {
  border-color: #bce6cb;
}

.auth-form-section__heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  margin-bottom: 6px;
}

.auth-form-section__heading h3 {
  margin: 0 0 3px;
}

.auth-form-section__heading p {
  margin: 0;
  color: var(--auth-muted);
  font-size: 11px;
  line-height: 1.45;
}

.auth-form-section__number {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #d9cdf1;
  border-radius: 10px;
  color: var(--auth-purple-dark);
  background: var(--auth-purple-soft);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.auth-form-section__done {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #16a36a;
  font-size: 10px;
  opacity: 0;
  transform: scale(.72);
  transition: opacity .2s ease, transform .2s ease;
}

.auth-form-section.is-complete .auth-form-section__done {
  opacity: 1;
  transform: scale(1);
}

.auth-trial-page .auth-input-wrap > i {
  transition: color .18s ease, transform .18s ease;
}

.auth-trial-page .auth-input-wrap:focus-within > i {
  color: var(--auth-purple);
  transform: translateY(-50%) scale(1.08);
}

.auth-trial-page .auth-input,
.auth-trial-page .auth-input-wrap input {
  min-height: 50px;
  border-color: #dedbe8;
  background: rgba(255, 255, 255, .97);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

.auth-trial-page .auth-input-wrap input:hover:not(:focus) {
  border-color: #c9c3d9;
}

.auth-trial-page .auth-input-wrap input:focus {
  transform: translateY(-1px);
}

.auth-trial-page .auth-password-toggle {
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.auth-trial-page .auth-password-toggle:hover {
  transform: translateY(-50%) scale(1.06);
}

.auth-password-strength {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  height: 4px;
  margin-top: -2px;
}

.auth-password-strength span {
  border-radius: 99px;
  background: #e8e5ed;
  transition: background .24s ease, transform .24s ease;
}

.auth-password-strength[data-strength="1"] span:nth-child(1) { background: #ef4444; }
.auth-password-strength[data-strength="2"] span:nth-child(-n+2) { background: #f59e0b; }
.auth-password-strength[data-strength="3"] span:nth-child(-n+3) { background: #8b5cf6; }
.auth-password-strength[data-strength="4"] span { background: #16a36a; }

.auth-trial-page .auth-consent-wrap,
.auth-trial-page .auth-note {
  grid-column: 1 / -1;
}

.auth-consent-wrap {
  padding: 12px 13px 9px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: #faf9fc;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.auth-consent-wrap:hover {
  background: #f8f5fd;
}

.auth-consent-wrap.is-invalid {
  border-color: #f08b8b;
  background: #fffafa;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .06);
}

.auth-trial-page .auth-consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  appearance: none;
  border: 1.5px solid #b9b4c7;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.auth-trial-page .auth-consent input:checked {
  border-color: var(--auth-purple);
  background: var(--auth-purple);
  box-shadow: inset 0 0 0 3px #fff;
}

.auth-trial-page .auth-consent input:focus-visible {
  outline: 3px solid rgba(124, 58, 237, .16);
  outline-offset: 2px;
}

.auth-trial-page .auth-consent-wrap .auth-field__feedback {
  min-height: 0;
  margin-top: 5px;
}

.auth-trial-page .auth-submit {
  position: relative;
  isolation: isolate;
  min-height: 54px;
  overflow: hidden;
  margin-top: 0;
  font-size: 14.5px;
}

.auth-trial-page .auth-submit::before {
  position: absolute;
  inset: -60% auto -60% -34%;
  z-index: -1;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
  content: "";
  transform: rotate(18deg);
  transition: left .55s ease;
}

.auth-trial-page .auth-submit:hover::before {
  left: 112%;
}

.auth-trial-page .auth-submit:hover .auth-submit__arrow {
  transform: translateX(4px);
}

.auth-trial-page .auth-submit.is-loading .auth-submit__arrow {
  display: none;
}

.auth-trial-page .auth-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.auth-trial-page .auth-note i {
  color: var(--auth-teal);
}

.auth-trial-page .auth-back-link {
  transition: color .18s ease, transform .18s ease;
}

.auth-trial-page .auth-back-link:hover {
  transform: translateX(-3px);
}

.auth-trial-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: rgba(15, 23, 42, .72);
  backdrop-filter: blur(10px);
  transition: opacity .2s ease, visibility .2s ease;
}

.auth-trial-transition.is-visible {
  visibility: visible;
  opacity: 1;
}

.auth-trial-transition__content {
  min-width: 300px;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 24px;
  color: #fff;
  background: rgba(17, 24, 39, .86);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
  text-align: center;
  transform: translateY(12px) scale(.97);
  transition: transform .22s ease;
}

.auth-trial-transition.is-visible .auth-trial-transition__content {
  transform: translateY(0) scale(1);
}

.auth-trial-transition img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, .32));
  animation: auth-login-loader 1.8s ease-in-out infinite;
}

.auth-trial-transition strong {
  font-family: "Sora", sans-serif;
  font-size: 16px;
}

.auth-trial-transition span {
  color: rgba(255, 255, 255, .64);
  font-size: 11px;
}

@keyframes auth-trial-preview-in {
  from { opacity: 0; transform: translate3d(18px, 24px, 0) rotate(1deg) scale(.92); }
  to { opacity: 1; transform: translate3d(var(--trial-shift-x, 0), var(--trial-shift-y, 0), 0) rotate(-1.5deg) scale(1); }
}

@media (max-width: 1120px) and (min-width: 1021px) {
  .auth-trial-page .auth-shell {
    width: min(100% - 30px, 1100px);
    grid-template-columns: minmax(0, .86fr) minmax(510px, 1.14fr);
    gap: 22px;
  }

  .auth-trial-page .auth-showcase {
    padding: 34px;
  }

  .auth-trial-page .auth-showcase h1 {
    font-size: 39px;
  }
}

@media (max-width: 1020px) {
  .auth-trial-page .auth-shell {
    width: min(720px, calc(100% - 28px));
    padding: 22px 0 30px;
    grid-template-columns: 1fr;
  }

  .auth-trial-page .auth-panel--trial {
    padding: 39px 42px 34px;
  }

  .auth-trial-page .auth-panel__top .auth-mobile-brand {
    margin-bottom: 23px;
  }

  .auth-trial-page .auth-mobile-brand .auth-brand__logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
}

@media (max-width: 620px) {
  .auth-trial-page .auth-shell {
    width: min(100% - 20px, 560px);
    padding: 10px 0 20px;
  }

  .auth-trial-page .auth-panel--trial {
    padding: 28px 19px 24px;
  }

  .auth-trial-page .auth-panel--trial::before {
    right: 24px;
    left: 24px;
  }

  .auth-trial-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .auth-trial-page .auth-panel h2 {
    margin-top: 13px;
    font-size: 30px;
  }

  .auth-trial-progress {
    padding: 13px;
  }

  .auth-trial-progress__steps button span,
  .auth-trial-page .auth-field__label-row > span {
    display: none;
  }

  .auth-trial-progress__steps button {
    justify-content: center;
  }

  .auth-trial-page .auth-form-section {
    padding: 15px;
  }

  .auth-trial-transition__content {
    min-width: 0;
    width: calc(100vw - 40px);
  }
}

@media (max-width: 390px) {
  .auth-trial-progress__summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .auth-trial-page .auth-password-feedback {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}

/* Calendário vivo das telas de acesso */
.auth-calendar-card {
  display: grid;
  gap: 10px;
}

.auth-calendar-card .auth-showcase__screen-bar {
  margin-bottom: 0;
}

.auth-calendar-card__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
}

.auth-calendar-card__icon {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, rgba(124, 58, 237, .88), rgba(249, 115, 22, .82));
  box-shadow: 0 9px 18px -11px rgba(0, 0, 0, .75);
  font-size: 13px;
}

.auth-calendar-card__header > div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.auth-calendar-card__header small {
  overflow: hidden;
  color: rgba(255, 255, 255, .55);
  font-size: 8.5px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-calendar-card__header strong {
  overflow: hidden;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: capitalize;
  white-space: nowrap;
}

.auth-calendar-card__year {
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 7px;
  color: rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .07);
  font-size: 8px;
  font-weight: 800;
}

.auth-calendar-card__week {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
}

.auth-calendar-card__week > span {
  display: grid;
  min-width: 0;
  gap: 3px;
  place-items: center;
  padding: 6px 2px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 9px;
  color: rgba(255, 255, 255, .67);
  background: rgba(255, 255, 255, .055);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.auth-calendar-card__week > span small {
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.auth-calendar-card__week > span b {
  color: inherit;
  font-family: "Sora", sans-serif;
  font-size: 10px;
}

.auth-calendar-card__week > span.is-today {
  border-color: rgba(196, 181, 253, .58);
  color: #fff;
  background: linear-gradient(145deg, rgba(124, 58, 237, .92), rgba(139, 92, 246, .68));
  box-shadow: 0 8px 18px -12px rgba(124, 58, 237, .9);
  transform: translateY(-2px);
  animation: auth-calendar-today 2.8s ease-in-out infinite;
}

.auth-calendar-card__appointments {
  display: grid;
  gap: 5px;
}

.auth-calendar-card__appointments > div {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .055);
  font-size: 8px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.auth-calendar-card__appointments > div:hover {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .095);
  transform: translateX(3px);
}

.auth-calendar-card__appointments i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .06);
}

.auth-calendar-card__appointments i.is-purple { background: #a78bfa; }
.auth-calendar-card__appointments i.is-orange { background: #fb923c; }

.auth-calendar-card__appointments time {
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}

.auth-calendar-card__appointments span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-calendar-card .auth-screen-live,
.auth-calendar-card .auth-trial-preview__live {
  margin-top: 0;
}

.auth-calendar-card .auth-screen-live b,
.auth-calendar-card .auth-trial-preview__live b {
  color: rgba(255, 255, 255, .82);
  font-size: inherit;
}

.auth-login-page .auth-showcase__content {
  margin-top: 64px;
}

.auth-trial-page .auth-showcase__screen.auth-calendar-card {
  max-width: 390px;
}

.auth-trial-page .auth-calendar-card__header strong {
  font-size: 12px;
}

.auth-trial-page .auth-calendar-card__week > span {
  padding: 7px 3px;
}

.auth-trial-page .auth-calendar-card__appointments {
  grid-template-columns: 1fr 1fr;
}

@keyframes auth-calendar-today {
  0%, 100% { box-shadow: 0 8px 18px -12px rgba(124, 58, 237, .82); }
  50% { box-shadow: 0 8px 24px -8px rgba(167, 139, 250, .72); }
}

@media (max-width: 390px) {
  .auth-trial-page .auth-calendar-card__appointments {
    grid-template-columns: 1fr;
  }
}
