:root {
  color-scheme: light;
  --paper: #ffffff;
  --ink: #000000;
  --muted: #737373;
  --line: #e7e7e7;
  --soft-line: #f2f2f2;
  --sage: #667c6a;
  --clay: #9b6f58;
  --blue: #526f91;
  --amber: #9a7b40;
  --rose: #9a6671;
  --focus: #111111;
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.06);
  --grid-margin: 24px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --dock-height: 92px;
  --dock-icon-size: 30px;
  --dock-button-width: 74px;
  --dock-button-height: 68px;
  --control-height: 48px;
  --control-radius: 999px;
  --voce-card-radius: 36px;
  --control-border: 1.5px;
  --control-padding: 24px;
  --question-font-size: 20px;
  --question-line-height: 1.22;
  --answer-font-size: 18px;
  --answer-line-height: 1.24;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0;
}

html,
body,
.app-shell.is-immersive,
.app-shell.is-immersive .view-root {
  height: 100%;
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  grid-template-rows: 72px minmax(0, 1fr);
  background: var(--paper);
}

.topbar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 28px;
  border-bottom: 1px solid var(--soft-line);
  background: rgba(255, 255, 255, 0.94);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.brand-lockup {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.brand-mark {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.brand-line {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  font-weight: 300;
}

.top-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.icon-button {
  inline-size: 42px;
  block-size: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--ink);
  outline: 0;
}

.icon-button:active {
  transform: scale(0.96);
}

.window-nav {
  grid-column: 1;
  grid-row: 2;
  border-right: 1px solid var(--soft-line);
  padding: 38px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 72px;
  align-self: start;
  min-height: calc(100vh - 72px);
  background: var(--paper);
}

.nav-item {
  border: 0;
  background: transparent;
  padding: 12px 0;
  text-align: left;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.nav-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 1;
}

.nav-item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 2px;
  height: 0;
  transform: translateY(-50%);
  background: var(--ink);
  transition: height 180ms ease;
}

.nav-item.is-active {
  color: var(--ink);
}

.nav-item.is-active .nav-icon {
  opacity: 1;
}

.nav-item.is-active::before {
  height: 22px;
}

.view-root {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  min-height: calc(100vh - 72px);
}

.view {
  min-height: calc(100vh - 72px);
  padding: 42px clamp(24px, 5vw, 78px);
}

.view[data-center="true"] {
  display: grid;
  place-items: center;
}

.app-shell.is-immersive {
  display: block;
  min-height: 100vh;
}

.app-shell.is-immersive .topbar,
.app-shell.is-immersive .window-nav {
  display: none;
}

.app-shell.is-immersive .view-root {
  min-height: 100vh;
}

.fluxo-screen,
.respiro-screen {
  min-height: 100dvh;
  background: var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.fluxo-header {
  position: fixed;
  top: clamp(20px, 5.6vh, 52px);
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  justify-items: center;
  pointer-events: none;
}

.fluxo-logo {
  border: 0;
  background: transparent;
  color: var(--ink);
  width: clamp(92px, 11vw, 132px);
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
}

.fluxo-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.fluxo-time,
.fluxo-date {
  display: block;
  color: #666666;
  font-weight: 300;
  font-size: 9px;
  line-height: 1.2;
}

.fluxo-time {
  margin-top: 9px;
}

.fluxo-date {
  margin-top: 2px;
  text-transform: lowercase;
}

.self-question-button {
  position: fixed;
  top: clamp(28px, 6.2vh, 58px);
  right: clamp(20px, 5vw, 38px);
  z-index: 45;
  border: 0;
  background: transparent;
  color: #ffc4de;
  font-size: clamp(25px, 3.2vw, 32px);
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
}

.fluxo-pager {
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.fluxo-pager::-webkit-scrollbar {
  display: none;
}

.fluxo-page {
  height: 100dvh;
  width: 100%;
  display: grid;
  place-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 170px 0 132px;
}

.fluxo-question-area {
  position: relative;
  width: min(100%, 900px);
  min-height: 276px;
  display: grid;
  justify-items: center;
  align-content: center;
}

.fluxo-question-band {
  position: relative;
  width: 100%;
  min-height: 134px;
  display: grid;
  place-items: center;
}

.fluxo-blue-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(187, 224, 250, 0.15);
}

.fluxo-blue-line.top {
  top: calc(50% - 56px);
}

.fluxo-blue-line.middle {
  top: 50%;
}

.fluxo-blue-line.bottom {
  top: calc(50% + 56px);
}

.fluxo-pink-caret {
  position: absolute;
  left: clamp(24px, 5vw, 40px);
  top: calc(50% - 52px);
  width: 4px;
  height: 104px;
  border-radius: 999px;
  background: rgba(255, 196, 222, 0.8);
}

.fluxo-question {
  width: min(76%, 650px);
  margin: 0;
  text-align: center;
  color: var(--ink);
  font-size: clamp(22px, 2.35vw, 30px);
  line-height: 1.28;
  font-weight: 400;
}

.fluxo-answer-input,
.respiro-answer-input {
  width: min(82%, 720px);
  min-height: 122px;
  margin-top: 40px;
  border: 0;
  outline: 0;
  resize: none;
  background: transparent;
  color: var(--ink);
  text-align: center;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.32;
  font-weight: 200;
  font-style: italic;
}

.fluxo-answer-tools,
.respiro-answer-tools {
  width: min(82%, 720px);
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
}

.fluxo-submit {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 0 14px;
  color: var(--ink);
  cursor: pointer;
}

.fluxo-lock-button,
.fluxo-close-button {
  position: fixed;
  z-index: 45;
  border: 0;
  background: transparent;
  color: #a5a8ab;
  cursor: pointer;
}

.fluxo-lock-button {
  left: clamp(22px, 4vw, 34px);
  bottom: 112px;
  inline-size: 34px;
  block-size: 34px;
  display: grid;
  place-items: center;
}

.lock-shape {
  position: relative;
  display: block;
  width: 19px;
  height: 16px;
  border: 2px solid #a5a8ab;
  border-radius: 4px;
}

.lock-shape::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -12px;
  width: 9px;
  height: 12px;
  border: 2px solid #a5a8ab;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.fluxo-lock-button.is-active .lock-shape,
.fluxo-lock-button.is-active .lock-shape::before {
  border-color: var(--ink);
}

.fluxo-close-button {
  right: clamp(22px, 4vw, 34px);
  bottom: 108px;
  font-size: 32px;
  line-height: 1;
  font-weight: 200;
}

.fluxo-status-line {
  position: fixed;
  left: 50%;
  bottom: 116px;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 10px;
  z-index: 44;
  text-align: center;
  width: min(420px, calc(100vw - 170px));
}

.fluxo-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 103px;
  z-index: 42;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  padding: 4px clamp(10px, 8vw, 110px) 18px;
  background: var(--paper);
}

.dock-button {
  border: 0;
  background: transparent;
  inline-size: 74px;
  block-size: 68px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 2px;
  place-items: center;
  color: var(--ink);
  cursor: pointer;
  font-weight: 300;
}

.dock-icon {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.dock-icon-leituras {
  width: 31px;
  height: 33px;
}

.dock-icon-livre {
  width: 34px;
  height: 28px;
}

.dock-button span {
  font-size: 26px;
  line-height: 1;
}

.dock-center span {
  font-size: 28px;
}

.dock-button small {
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
}

.fluxo-limit-state {
  min-height: 100dvh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
  padding: 180px 24px 150px;
}

.fluxo-limit-state h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.04;
  font-weight: 360;
}

.fluxo-limit-state .fluxo-limit-message {
  display: grid;
  gap: 14px;
  max-width: 520px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.fluxo-limit-message > span {
  display: block;
}

.fluxo-limit-message .fluxo-limit-primary {
  font-size: clamp(20px, 2.1vw, 24px);
  line-height: 1.25;
  font-weight: 400;
}

.fluxo-limit-message .fluxo-limit-secondary {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.5;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  font-style: italic;
}

.fluxo-limit-state p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.fluxo-paused {
  display: grid;
  place-items: center;
  padding: 120px 24px;
}

.respiro-screen {
  min-height: 100dvh;
}

.respiro-shuffle {
  position: fixed;
  top: clamp(58px, 10vh, 116px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  border: 0;
  background: transparent;
  width: clamp(48px, 8vw, 68px);
  height: clamp(42px, 7vw, 58px);
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.respiro-shuffle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.respiro-topic-layer,
.respiro-question-layer,
.respiro-answer-layer {
  min-height: 100dvh;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 190px clamp(34px, 9vw, 120px) 118px;
}

.respiro-microcopy {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 15px;
}

.respiro-fade-list,
.respiro-question-list {
  width: min(820px, 100%);
  max-height: min(520px, 58vh);
  overflow-y: auto;
  padding: 26px 0;
  scrollbar-width: none;
  mask-image: linear-gradient(to bottom, transparent, black 13%, black 87%, transparent);
}

.respiro-fade-list::-webkit-scrollbar,
.respiro-question-list::-webkit-scrollbar {
  display: none;
}

.respiro-topic,
.respiro-question-choice {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  padding: 4px 0;
  font-weight: 400;
}

.respiro-topic {
  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.46;
}

.respiro-question-choice {
  margin-bottom: 20px;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.36;
}

.respiro-layer-name,
.respiro-footer-name {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 300;
}

.respiro-layer-name {
  margin-bottom: 28px;
  font-size: 15px;
}

.respiro-back-button {
  position: fixed;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 28;
  border: 0;
  background: transparent;
  color: #8c8c8c;
  cursor: pointer;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0;
}

.respiro-footer-name {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 25;
  font-size: 18px;
}

.respiro-answer-layer {
  justify-items: stretch;
}

.respiro-active-question {
  width: min(820px, 100%);
  margin: 0 0 35px;
  color: var(--ink);
  font-size: clamp(22px, 3.3vw, 32px);
  line-height: 1.32;
  font-weight: 400;
}

.respiro-answer-input {
  width: min(820px, 100%);
  text-align: left;
  margin-top: 0;
}

.respiro-answer-tools {
  width: min(820px, 100%);
  justify-content: flex-start;
}

.respiro-limit-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.umxum-modal {
  position: relative;
  width: min(620px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 34px;
}

.manifesto-modal {
  max-height: calc(100dvh - 48px - max(0px, calc(13.3vh - 48px)));
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: var(--voce-card-radius);
  transform: translateY(calc(6.65vh - 24px));
  box-sizing: border-box;
  padding-bottom: 34px !important;
  overscroll-behavior: contain;
}

.manifesto-modal .manifesto-institutional-title {
  color: #ff4fa3;
  font-weight: 700;
}

.manifesto-institutional-copy h3 {
  margin: 22px 0 4px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}

.manifesto-institutional-copy p {
  margin: 0 0 16px;
}

.manifesto-institutional-copy p:last-child {
  margin-bottom: 0;
}

.manifesto-umxum-highlight {
  position: relative;
  z-index: 0;
  isolation: isolate;
  white-space: nowrap;
}

.manifesto-umxum-highlight::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.08em;
  right: -0.11em;
  bottom: 0.08em;
  height: 0.58em;
  background: linear-gradient(96deg, rgba(255, 79, 163, 0.54), rgba(255, 196, 222, 0.78) 54%, rgba(255, 79, 163, 0.5));
  clip-path: polygon(1% 18%, 99% 2%, 97% 84%, 2% 100%);
  transform: rotate(-0.7deg);
  pointer-events: none;
}

.umxum-modal h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.08;
  font-weight: 380;
}

.umxum-modal p,
.umxum-modal li {
  color: var(--muted);
  line-height: 1.6;
}

.umxum-modal textarea {
  width: 100%;
  min-height: 120px;
  margin-top: 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
  resize: vertical;
  font-size: 20px;
  line-height: 1.32;
  font-weight: 200;
  font-style: italic;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
}

.modal-actions {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.toast-message {
  position: fixed;
  left: 50%;
  bottom: 132px;
  transform: translateX(-50%);
  z-index: 100;
  width: min(420px, calc(100vw - 34px));
  text-align: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 13px;
}

.readings-screen {
  min-height: 100dvh;
  background: #ffffff;
  color: #000000;
  position: relative;
  overflow: hidden;
}

.readings-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 32;
  padding: 28px clamp(22px, 5vw, 64px) 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.reading-topic-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 2px 16px;
  scrollbar-width: none;
}

.reading-topic-rail::-webkit-scrollbar {
  display: none;
}

.reading-topic {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  padding: 0;
  font-size: clamp(19px, 2.5vw, 26px);
  line-height: 1;
  font-weight: 200;
}

.reading-topic.is-active {
  font-weight: 400;
}

.readings-search-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  width: min(780px, 100%);
  margin: 0 auto;
}

.readings-search-input {
  width: 100%;
  height: 54px;
  border: 1.5px solid #000000;
  border-radius: 28px;
  background: #dcdddd;
  outline: 0;
  padding: 0 24px;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
}

.readings-search-input::placeholder {
  color: #ffffff;
  opacity: 1;
}

.readings-topic-toggle {
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  width: 46px;
  height: 42px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -2px;
  text-align: center;
}

.readings-topic-toggle.is-active {
  color: #ff4c9c;
}

.readings-feed {
  height: 100dvh;
  overflow-y: auto;
  padding: 144px clamp(22px, 5vw, 64px) 126px;
  scrollbar-width: none;
  transition: opacity 180ms ease;
}

.readings-feed::-webkit-scrollbar {
  display: none;
}

.readings-feed.has-overlay {
  opacity: 0.22;
}

.reading-card {
  width: min(900px, 100%);
  margin: 0 auto 34px;
  cursor: pointer;
  outline: 0;
}

.reading-card:focus-visible .reading-card-question {
  text-decoration: underline;
}

.reading-card-question {
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #000000;
  font-size: clamp(22px, 3.2vw, 29px);
  line-height: 1.18;
  font-weight: 400;
}

.reading-card-answer {
  margin: 2px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #000000;
  font-size: clamp(20px, 2.7vw, 25px);
  line-height: 1.25;
  font-weight: 200;
  font-style: italic;
}

.readings-empty {
  width: min(620px, 100%);
  margin: 18vh auto 0;
  text-align: center;
  color: #a5a8ab;
}

.readings-empty p {
  margin: 0 0 8px;
  color: #000000;
  font-size: 22px;
}

.readings-more {
  display: block;
  margin: 8px auto 26px;
  border: 0;
  background: transparent;
  color: #a5a8ab;
  cursor: pointer;
  font-size: 16px;
}

.reading-overlay,
.public-profile-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  align-items: center;
  padding: 118px clamp(28px, 7vw, 90px) 112px;
  background: rgba(255, 255, 255, 0.82);
}

.reading-overlay-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: default;
}

.reading-overlay-content,
.public-profile-content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  margin: 0 auto;
}

.overlay-close-button {
  position: absolute;
  top: -56px;
  right: 0;
  border: 0;
  background: transparent;
  color: #a5a8ab;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  font-weight: 200;
}

.reading-author-row {
  min-height: 54px;
  display: flex;
  align-items: center;
}

.reading-author-button {
  border: 0;
  background: transparent;
  color: #000000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  cursor: pointer;
  font-size: 18px;
}

.reading-avatar,
.public-profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--avatar, #ff4c9c);
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}

.reading-actions {
  position: absolute;
  top: 4px;
  right: 0;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 34px);
}

.reading-action {
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  font-size: 34px;
  line-height: 1;
  font-weight: 220;
}

.reading-action.is-active {
  color: #ff4c9c;
}

.reading-overlay-question {
  margin: 22px 0 0;
  color: #000000;
  font-size: clamp(24px, 3.6vw, 36px);
  line-height: 1.16;
  font-weight: 400;
  padding-right: 170px;
}

.reading-overlay-answer {
  margin: 8px 0 0;
  color: #000000;
  font-size: clamp(23px, 3.3vw, 34px);
  line-height: 1.34;
  font-weight: 200;
  font-style: italic;
}

.reading-overlay-note {
  margin: 28px 0 0;
  color: #a5a8ab;
  font-size: 14px;
}

.reaction-picker {
  position: absolute;
  top: 58px;
  right: 0;
  z-index: 5;
  display: grid;
  gap: 10px;
  min-width: 180px;
  border: 1px solid #000000;
  border-radius: 22px;
  background: #ffffff;
  padding: 16px;
}

.reaction-picker button {
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 300;
}

.public-profile-overlay {
  z-index: 70;
  align-items: start;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.97);
}

.public-profile-header {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.public-profile-avatar {
  width: 62px;
  height: 62px;
  font-size: 24px;
}

.public-profile-listening,
.public-profile-percent {
  margin: 0 0 6px;
  color: #a5a8ab;
  font-size: 14px;
}

.public-profile-header h1 {
  margin: 0;
  color: #000000;
  font-size: clamp(27px, 4vw, 44px);
  line-height: 1;
  font-weight: 380;
}

.public-profile-header p:last-child {
  max-width: 680px;
  margin: 10px 0 0;
  color: #000000;
  line-height: 1.5;
}

.public-profile-progress {
  width: min(680px, 100%);
  height: 5px;
  margin: 26px 0 8px;
  background: #dcdddd;
  border-radius: 999px;
  overflow: hidden;
}

.public-profile-progress span {
  display: block;
  height: 100%;
  background: #ff4c9c;
}

.public-profile-readings {
  margin-top: 30px;
  display: grid;
  gap: 22px;
}

.public-profile-readings article p {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}

.public-profile-readings article span {
  display: block;
  margin-top: 3px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 200;
  font-style: italic;
}

.readings-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  z-index: 55;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  padding: 4px clamp(10px, 8vw, 110px) 12px;
  background: #ffffff;
}

.voce-screen,
.nucleo-screen,
.voce-config-screen {
  min-height: 100dvh;
  background: #ffffff;
  color: #000000;
  position: relative;
  overflow: hidden;
}

.voce-header {
  background: #ffffff;
  padding: 24px clamp(18px, 5vw, 64px) 28px;
}

.voce-top-row,
.voce-identity-row {
  display: grid;
  align-items: center;
  width: min(920px, 100%);
  margin: 0 auto;
}

.voce-top-row {
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 14px;
}

.voce-identity-row {
  grid-template-columns: 74px minmax(180px, 300px) 74px;
  justify-content: center;
  gap: clamp(18px, 7vw, 76px);
  margin-top: 22px;
}

.voce-lock,
.voce-config-button,
.voce-mood,
.voce-user-button,
.voce-percent,
.voce-listening,
.voce-summary,
.voce-bottom-name,
.voce-sub-header button {
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
}

.voce-lock {
  inline-size: 54px;
  block-size: 54px;
  display: grid;
  place-items: center;
}

.voce-lock .lock-shape,
.voce-lock .lock-shape::before {
  border-color: #a5a8ab;
}

.voce-lock.is-active .lock-shape,
.voce-lock.is-active .lock-shape::before {
  border-color: #000000;
}

.voce-config-button {
  font-size: 24px;
  line-height: 1;
}

.voce-listening {
  overflow: hidden;
  min-height: 34px;
  display: grid;
  align-items: center;
  color: #000000;
  font-size: 13px;
  font-weight: 200;
  white-space: nowrap;
  text-align: center;
}

.voce-listening span {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.voce-listening.is-marquee span {
  display: inline-block;
  min-width: 100%;
  max-width: none;
  animation: listening-marquee 14s linear infinite;
}

@keyframes listening-marquee {
  from {
    transform: translateX(45%);
  }
  to {
    transform: translateX(-105%);
  }
}

.voce-mood {
  inline-size: 58px;
  block-size: 58px;
  border: 2px solid #ff57a2;
  border-radius: 50%;
  color: #ff57a2;
  display: grid;
  place-items: center;
  font-family: "Nunito", Inter, sans-serif;
  font-size: 18px;
}

.voce-user-button {
  min-height: 58px;
  border: 1.5px solid #000000;
  border-radius: 29px;
  padding: 0 24px;
  background: #ffffff;
  font-size: clamp(22px, 3.8vw, 29px);
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.voce-percent {
  inline-size: 58px;
  block-size: 58px;
  border: 1.5px solid #000000;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
}

.voce-summary {
  display: block;
  width: min(780px, 100%);
  margin: 24px auto 0;
  color: #000000;
  text-align: center;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 200;
  font-style: italic;
}

.voce-answer-list {
  height: calc(100dvh - 252px);
  overflow-y: auto;
  padding: 0 0 112px;
  scrollbar-width: none;
}

.voce-answer-list::-webkit-scrollbar {
  display: none;
}

.voce-answer-preview {
  position: relative;
  border-top: 1px solid rgba(218, 219, 219, 0.5);
  padding: 12px clamp(18px, 6vw, 72px);
  text-align: center;
  cursor: pointer;
}

.voce-answer-preview p {
  margin: 0;
  color: #000000;
  font-size: clamp(20px, 3.2vw, 26px);
  line-height: 1.22;
  font-weight: 400;
}

.voce-answer-preview span {
  display: block;
  margin-top: 2px;
  color: #000000;
  font-size: clamp(18px, 2.7vw, 23px);
  line-height: 1.24;
  font-weight: 200;
  font-style: italic;
}

.voce-answer-preview small {
  display: block;
  margin-top: 5px;
  color: #a5a8ab;
  font-size: 12px;
}

.voce-answer-preview.is-blocked {
  color: #a5a8ab;
}

.voce-answer-preview.is-blocked p,
.voce-answer-preview.is-blocked span,
.voce-answer-preview.is-blocked small {
  color: #a5a8ab;
}

.voce-block-hint,
.voce-empty {
  color: #a5a8ab;
  text-align: center;
  padding: 28px;
}

.voce-empty p {
  margin: 0 0 6px;
  color: #000000;
  font-size: 19px;
}

.voce-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  z-index: 42;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  padding: 3px clamp(10px, 8vw, 110px) 10px;
  background: #ffffff;
}

.voce-dock.is-nucleo {
  background: #dcdddd;
}

.voce-sub-header {
  height: 76px;
  display: grid;
  place-items: center;
  background: #ffffff;
}

.voce-sub-header button {
  font-size: 19px;
  font-weight: 300;
}

.voce-config-screen {
  overflow-y: auto;
  padding-bottom: 92px;
}

.voce-config-list {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 8px clamp(18px, 5vw, 46px) 54px;
}

.voce-config-row,
.voce-config-action {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(218, 219, 219, 0.5);
  color: #000000;
}

.voce-config-row.is-column {
  align-items: stretch;
  flex-direction: column;
}

.voce-config-row strong,
.voce-config-action {
  font-size: 15px;
  font-weight: 400;
}

.voce-config-row small,
.voce-config-action span {
  display: block;
  margin-top: 4px;
  color: #a5a8ab;
  font-size: 11px;
  font-weight: 300;
}

.voce-config-row select {
  border: 1px solid rgba(218, 219, 219, 0.9);
  border-radius: 999px;
  min-height: 38px;
  background: #ffffff;
  padding: 0 12px;
}

.voce-config-action {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.voce-bottom-name {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 28;
  font-size: 18px;
  font-weight: 300;
}

.nucleo-screen {
  background: #ffffff;
  overflow-y: auto;
  padding-bottom: 112px;
}

.nucleo-grid {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 46px) 34px;
}

.nucleo-item {
  min-height: 104px;
  border: 0;
  border-top: 1px solid rgba(218, 219, 219, 0.5);
  background: #ffffff;
  color: #000000;
  display: grid;
  align-content: center;
  text-align: left;
  padding: 18px;
  cursor: pointer;
}

.nucleo-item strong {
  font-size: 17px;
  font-weight: 400;
}

.nucleo-item span {
  margin-top: 7px;
  color: #a5a8ab;
  font-size: 13px;
  line-height: 1.35;
}

.nucleo-panel,
.voce-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
}

.nucleo-panel-content,
.voce-modal-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  max-height: calc(100dvh - 86px);
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid rgba(218, 219, 219, 0.7);
  border-radius: 8px;
  padding: 32px;
}

.nucleo-panel-content h2,
.voce-modal-content h2 {
  margin: 0 0 16px;
  color: #000000;
  font-size: clamp(23px, 4vw, 35px);
  line-height: 1.08;
  font-weight: 380;
}

.voce-modal-content p {
  margin: 0;
  text-align: center;
  font-size: clamp(20px, 3.2vw, 27px);
  line-height: 1.36;
  font-weight: 200;
  font-style: italic;
}

.voce-editor-input,
.nucleo-textarea {
  width: 100%;
  min-height: 148px;
  border: 0;
  border-bottom: 1px solid rgba(218, 219, 219, 0.9);
  outline: 0;
  resize: vertical;
  background: transparent;
  color: #000000;
  font-size: 20px;
  line-height: 1.34;
  font-weight: 200;
  font-style: italic;
}

.voce-listening-modal {
  border-radius: 36px;
}

.voce-listening-modal .voce-editor-input {
  resize: none;
}

.voce-modal-content.voce-listening-modal .fluxo-submit {
  width: 68px !important;
  min-width: 68px !important;
  max-width: 68px !important;
  height: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
  padding: 0 12px !important;
}

.voce-username-modal,
.voce-summary-modal {
  border-radius: 36px;
  padding-top: calc(48px + clamp(24.84px, 4.32vw, 37.8px));
  padding-bottom: 42px;
}

.voce-username-modal .voce-editor-input,
.voce-summary-modal .voce-editor-input {
  resize: none;
}

.voce-modal-content.voce-username-modal .fluxo-submit,
.voce-modal-content.voce-summary-modal .fluxo-submit {
  width: 68px !important;
  min-width: 68px !important;
  max-width: 68px !important;
  height: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
  padding: 0 12px !important;
}

.voce-curiosity-content,
.nucleo-panel-content:is(
  .nucleo-panel-nao-perguntei,
  .nucleo-panel-quarto,
  .nucleo-panel-vitalidade,
  .nucleo-panel-intimidade,
  .nucleo-panel-perguntei,
  .nucleo-panel-respostas,
  .nucleo-panel-leituras,
  .nucleo-panel-leitores,
  .nucleo-panel-reacoes,
  .nucleo-panel-lembrancas,
  .nucleo-panel-bloqueadas
) {
  border-radius: 36px;
}

.nucleo-panel-nao-perguntei #nucleoSelfQuestionInput {
  resize: none;
}

.nucleo-panel:has(.nucleo-panel-leitura) {
  z-index: 120;
  place-items: stretch;
  padding: 0;
  background: #ffffff;
}

.nucleo-panel:has(.nucleo-panel-leitura) > .reading-overlay-backdrop {
  display: block;
  background: #ffffff;
}

.nucleo-panel-content.nucleo-panel-leitura {
  position: fixed;
  inset: 0;
  width: 100%;
  max-height: none;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  padding: calc(6.65vh + 71px) 0 var(--safe-bottom);
  pointer-events: none;
}

.nucleo-panel-leitura > .overlay-close-button,
.nucleo-panel-leitura > .nucleo-reading {
  pointer-events: auto;
}

.nucleo-reading-header {
  background: #ffffff;
}

.nucleo-reading-logo {
  display: grid;
  place-items: center;
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.nucleo-panel-leitura .nucleo-reading {
  width: min(620px, calc(100vw - 64px));
  max-width: 100%;
  box-sizing: border-box;
  height: auto;
  min-height: 0;
  margin: auto;
  padding: 0;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #000000;
  font-weight: 300;
  font-style: italic;
  text-decoration: none;
  text-align: center;
  overflow-wrap: anywhere;
  white-space: normal;
}

.nucleo-panel-leitura .nucleo-reading-highlight {
  padding-inline: 0.08em;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: linear-gradient(96deg, rgba(255, 79, 163, 0.54), rgba(255, 196, 222, 0.78) 54%, rgba(255, 79, 163, 0.5)) 0 calc(100% - 0.08em) / 100% 0.58em no-repeat;
}

.nucleo-panel-leitura .nucleo-reading-highlight::before {
  content: none;
}

.nucleo-reading-author {
  display: inline-block;
  width: 100%;
  margin-top: 18px;
  color: #111111;
  font-size: 0.82em;
  font-style: normal;
  font-weight: 300;
  text-decoration: none;
  text-align: right;
}

.voce-progress-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.voce-progress-grid span {
  min-height: 96px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(218, 219, 219, 0.7);
  border-radius: 8px;
  color: #a5a8ab;
  text-align: center;
  font-size: 13px;
}

.voce-progress-grid strong {
  color: #000000;
  font-size: 27px;
  line-height: 1;
  font-weight: 500;
}

.nucleo-line {
  border-top: 1px solid rgba(218, 219, 219, 0.5);
  padding: 12px 0;
}

.nucleo-line strong,
.nucleo-line span {
  display: block;
}

.nucleo-line span {
  color: #a5a8ab;
  margin-top: 4px;
}

.nucleo-reading {
  color: #000000;
  font-size: 21px;
  line-height: 1.36;
  font-weight: 200;
  font-style: italic;
}

.nucleo-map,
.nucleo-slang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.nucleo-map span,
.nucleo-slang-list span {
  border: 1px solid rgba(218, 219, 219, 0.8);
  border-radius: 999px;
  padding: 8px 12px;
  color: #000000;
  font-size: 13px;
}

.fluxo-view {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-rows: auto minmax(420px, 1fr) auto;
  gap: 18px;
  padding-bottom: 34px;
}

.mode-row,
.section-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 44px;
}

.segmented {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--paper);
}

.segment-button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  min-width: 96px;
  padding: 9px 14px;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
}

.segment-button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.question-stage {
  width: min(900px, 100%);
  min-height: 440px;
  margin: 0 auto;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  position: relative;
}

.ghost-question {
  position: absolute;
  left: 50%;
  width: min(680px, 88%);
  transform: translateX(-50%);
  text-align: center;
  color: var(--ink);
  opacity: 0.05;
  filter: blur(1.5px);
  pointer-events: none;
  font-size: clamp(16px, 2.6vw, 27px);
  line-height: 1.25;
  font-weight: 400;
}

.ghost-question:nth-child(1) {
  top: 10%;
}

.ghost-question:nth-child(2) {
  bottom: 11%;
}

.question-copy {
  grid-row: 2;
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: clamp(24px, 4.4vw, 48px);
  line-height: 1.04;
  font-weight: 400;
}

.question-copy.is-answering {
  opacity: 0.15;
  transform: translateY(-38px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.answer-wrap {
  grid-row: 3;
  width: min(760px, 100%);
  transform: translateY(-20px);
}

.answer-input {
  width: 100%;
  min-height: 150px;
  border: 0;
  border-bottom: 1px solid var(--line);
  resize: vertical;
  outline: 0;
  text-align: center;
  font-size: clamp(20px, 3.2vw, 34px);
  line-height: 1.22;
  font-weight: 200;
  font-style: italic;
  color: var(--ink);
  background: transparent;
  padding: 16px 6px 20px;
}

.answer-input::placeholder {
  color: #b8b8b8;
}

.answer-meta {
  min-height: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  margin-top: 12px;
}

.flow-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.text-command,
.quiet-command,
.primary-command {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  cursor: pointer;
}

.text-command {
  border: 1px solid var(--line);
  background: var(--paper);
}

.quiet-command {
  border: 0;
  background: transparent;
  color: var(--muted);
}

.primary-command {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.primary-command:disabled {
  opacity: 0.26;
  cursor: not-allowed;
}

.content-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.content-grid.two {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: start;
}

.content-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-header {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.eyebrow {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.02;
  font-weight: 420;
}

.section-kicker {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.panel {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.panel-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 560;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin: 24px 0;
}

.search-input,
.small-input,
.select-input {
  border: 1px solid var(--line);
  background: var(--paper);
  min-height: 44px;
  border-radius: 999px;
  padding: 0 16px;
  outline: 0;
}

.search-input:focus,
.small-input:focus,
.select-input:focus,
.free-textarea:focus {
  border-color: var(--focus);
}

.reading-list,
.history-list,
.movement-list {
  display: grid;
  gap: 12px;
}

.reading-item,
.history-item,
.movement-item,
.stat-tile,
.word-tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper);
}

.reading-question,
.history-question {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--muted);
}

.reading-text,
.history-text {
  margin: 0;
  line-height: 1.55;
  font-size: 18px;
  font-weight: 260;
  font-style: italic;
}

.item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.inline-actions {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.tiny-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  min-height: 30px;
  padding: 0 10px;
  cursor: pointer;
  font-size: 12px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-tile {
  min-height: 116px;
  display: grid;
  align-content: space-between;
}

.stat-value {
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1;
  font-weight: 350;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
}

.mood-grid {
  display: grid;
  gap: 10px;
}

.mood-row {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.mood-track {
  height: 6px;
  background: var(--soft-line);
  border-radius: 999px;
  overflow: hidden;
}

.mood-fill {
  height: 100%;
  width: var(--size);
  background: var(--tone);
  border-radius: inherit;
}

.settings-row {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.switch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-line);
}

.switch-copy {
  display: grid;
  gap: 3px;
}

.switch-copy span:first-child {
  font-size: 14px;
}

.switch-copy span:last-child {
  color: var(--muted);
  font-size: 12px;
}

.toggle {
  position: relative;
  display: inline-flex;
  inline-size: 48px;
  block-size: 28px;
}

.toggle input {
  opacity: 0;
  inline-size: 0;
  block-size: 0;
}

.toggle span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
}

.toggle span::before {
  content: "";
  position: absolute;
  inline-size: 20px;
  block-size: 20px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: var(--muted);
  transition: transform 160ms ease, background 160ms ease;
}

.toggle input:checked + span::before {
  transform: translateX(20px);
  background: var(--ink);
}

.collective-wrap {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: center;
}

.world-canvas {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.movement-item {
  display: grid;
  gap: 6px;
}

.movement-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.movement-copy {
  margin: 0;
  line-height: 1.5;
}

.coletivo-screen {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #000000;
}

.coletivo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 36;
  padding: clamp(64px, 10vh, 120px) clamp(28px, 5vw, 66px) 26px;
  background: #ffffff;
}

.coletivo-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #a5a8ab;
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1;
  font-weight: 200;
}

.coletivo-tabs button {
  border: 0;
  background: transparent;
  color: #a5a8ab;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.coletivo-tabs button.is-active {
  color: #000000;
}

.coletivo-menu-button {
  position: absolute;
  top: clamp(64px, 10vh, 120px);
  right: clamp(28px, 5vw, 66px);
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  font-size: 31px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 500;
}

.coletivo-search {
  display: block;
  width: min(100%, 1120px);
  height: 64px;
  margin: 30px auto 0;
  border: 2px solid #122333;
  border-radius: 999px;
  outline: 0;
  padding: 0 36px;
  color: #000000;
  font-size: 22px;
  font-weight: 300;
}

.coletivo-search::placeholder {
  color: #ffffff;
  opacity: 1;
}

.coletivo-search.is-pink {
  background: #ffc4de;
}

.coletivo-search.is-gray {
  background: #dcdddd;
}

.coletivo-question-list {
  height: 100dvh;
  overflow-y: auto;
  padding: clamp(260px, 34vh, 340px) clamp(34px, 7vw, 90px) 132px;
  scrollbar-width: none;
}

.coletivo-question-list::-webkit-scrollbar,
.movimento-list::-webkit-scrollbar,
.jornal-feed::-webkit-scrollbar {
  display: none;
}

.coletivo-question-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 0 0 34px;
}

.coletivo-question-item span {
  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.2;
}

.coletivo-question-item p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0;
  overflow: hidden;
  color: #000000;
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1.18;
  font-weight: 300;
}

.coletivo-empty {
  color: #a5a8ab;
  text-align: center;
  font-size: 18px;
}

.movimento-header {
  padding-top: clamp(70px, 12vh, 138px);
}

.movimento-screen::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 41;
  height: 72px;
  background: #ffffff;
  pointer-events: none;
}

.movimento-list {
  height: 100dvh;
  overflow-y: auto;
  padding: clamp(318px, 42vh, 390px) 0 120px;
  scrollbar-width: none;
}

.movimento-item {
  min-height: 196px;
  display: grid;
  place-items: center;
  border-top: 1px solid rgba(255, 196, 222, 0.75);
  padding: 34px clamp(42px, 12vw, 220px);
  text-align: center;
}

.movimento-item:first-child {
  border-top: 0;
}

.movimento-item p {
  margin: 0;
  color: #000000;
  font-size: clamp(27px, 4.5vw, 42px);
  line-height: 1.2;
  font-weight: 300;
}

.jornal-screen {
  overflow: hidden;
}

.jornal-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 36;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: clamp(62px, 10vh, 112px) clamp(28px, 5vw, 66px) 26px;
  background: #ffffff;
}

.jornal-header time {
  color: #666666;
  font-size: 16px;
  font-weight: 250;
}

.jornal-logo {
  width: clamp(84px, 10vw, 120px);
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.jornal-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.jornal-header .coletivo-menu-button {
  position: static;
  justify-self: end;
}

.jornal-header .coletivo-search {
  grid-column: 1 / -1;
  margin-top: 28px;
}

.jornal-feed {
  position: absolute;
  top: clamp(260px, 34vh, 330px);
  right: 0;
  bottom: 104px;
  left: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  padding: 0;
  scrollbar-width: none;
}

.jornal-news,
.jornal-products {
  overflow-y: auto;
  padding: 0 clamp(34px, 5vw, 66px);
  scrollbar-width: none;
}

.jornal-products {
  margin-top: 0;
  border-top: 1px solid rgba(255, 76, 156, 0.6);
  padding-top: 34px;
}

.jornal-item {
  margin-bottom: 36px;
  color: #000000;
  font-size: clamp(24px, 3.8vw, 34px);
  line-height: 1.22;
  font-weight: 300;
}

.jornal-item span,
.jornal-item small {
  display: block;
  text-align: left;
}

.jornal-item span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.jornal-item small {
  margin-top: 4px;
  color: #000000;
  font: inherit;
  font-style: italic;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.coletivo-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 42;
  height: 104px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  padding: 8px clamp(10px, 8vw, 110px) 15px;
  background: #ffffff;
}

.coletivo-dock.is-muted {
  background: #dcdddd;
}

.coletivo-dock .dock-button {
  inline-size: 86px;
  block-size: 78px;
}

.coletivo-dock .dock-icon {
  width: 32px;
  height: 32px;
}

.coletivo-dock .dock-icon-leituras {
  width: 34px;
  height: 35px;
}

.coletivo-dock .dock-icon-livre {
  width: 36px;
  height: 30px;
}

.coletivo-dock .dock-button span {
  font-size: 30px;
}

.coletivo-dock .dock-center span {
  font-size: 33px;
}

.coletivo-dock .dock-button small {
  margin-top: -7px;
  font-size: 16px;
}

.coletivo-footer-name {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 42;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  font-size: 18px;
  font-weight: 300;
}

.ritmo-view {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  background-image: url("./assets/ritmo-wave-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ritmo-view::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.ritmo-center-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(46vw, 360px);
  max-width: calc(100vw - 80px);
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.22;
  pointer-events: none;
}

.free-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
  align-items: start;
}

.free-textarea {
  width: 100%;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(2px);
  resize: vertical;
  outline: 0;
  padding: 28px;
  font-size: clamp(22px, 3.8vw, 40px);
  line-height: 1.24;
  font-weight: 220;
  font-style: italic;
}

.free-side {
  display: grid;
  gap: 18px;
}

.word-grid {
  display: grid;
  gap: 10px;
}

.word-tile {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 54px;
}

.word-tile span:last-child {
  color: var(--muted);
  font-size: 12px;
}

.livre-screen {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #000000;
}

.livre-main-screen {
  display: grid;
  place-items: center;
  padding: var(--space-3);
}

.livre-clean-textarea {
  width: min(620px, calc(100vw - 48px));
  min-height: 180px;
  border: 0;
  outline: 0;
  resize: none;
  background: transparent;
  color: rgba(0, 0, 0, 0.42);
  text-align: center;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 200;
  font-style: italic;
}

.livre-clean-textarea::placeholder,
.mundo-question-input::placeholder {
  color: rgba(0, 0, 0, 0.28);
  opacity: 1;
}

#mundoPublicAnswerInput::placeholder {
  color: rgba(0, 0, 0, 0.2) !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 300 !important;
  font-style: italic !important;
  opacity: 1;
}

.mundo-screen:has(#mundoPublicAnswerInput) .answer-fixed-submit {
  width: 68px !important;
  min-width: 68px !important;
  max-width: 68px !important;
  height: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
  padding: 0 12px !important;
}

.palavras-screen {
  display: grid;
  place-items: center;
  padding: var(--space-5) var(--space-3);
}

.palavras-list {
  width: min(680px, 100%);
  display: grid;
  gap: 72px;
  text-align: center;
}

.palavras-list p {
  margin: 0;
  font-size: 24px;
  line-height: 1.32;
  font-weight: 200;
}

.ritmo-screen {
  display: grid;
  place-items: center;
  padding: var(--space-5) var(--space-3);
}

.ritmo-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("./assets/ritmo-wave-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}

.ritmo-shuffle-button {
  position: relative;
  z-index: 1;
  width: 128px;
  height: 128px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.ritmo-shuffle-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ritmo-question {
  position: absolute;
  left: 50%;
  top: calc(50% + 112px);
  z-index: 1;
  width: min(560px, calc(100vw - 48px));
  margin: 0;
  transform: translateX(-50%);
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 200;
  color: rgba(0, 0, 0, 0.5);
}

.mundo-screen {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: var(--space-5);
  padding: 76px var(--space-3) var(--space-5);
}

.mundo-question-input {
  width: min(760px, 100%);
  min-height: 112px;
  justify-self: center;
  border: 0;
  outline: 0;
  resize: none;
  background: transparent;
  color: #000000;
  text-align: center;
  font-size: 22px;
  line-height: 1.34;
  font-weight: 200;
  font-style: italic;
}

.mundo-reading-list {
  width: min(760px, 100%);
  justify-self: center;
  display: grid;
  align-content: start;
  gap: var(--space-4);
  overflow-y: auto;
  scrollbar-width: none;
  text-align: center;
}

.mundo-reading-list::-webkit-scrollbar {
  display: none;
}

.mundo-reading-list p {
  margin: 0;
  font-size: 21px;
  line-height: 1.42;
  font-weight: 200;
}

.notice {
  width: min(660px, 100%);
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 16px;
}

.notice h1 {
  margin: 0;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.03;
  font-weight: 380;
}

.notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.blocked-word {
  color: var(--muted);
  text-decoration: line-through;
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
    grid-template-rows: 66px minmax(0, 1fr) 66px;
  }

  .topbar {
    padding: 0 18px;
  }

  .brand-line {
    display: none;
  }

  .window-nav {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 30;
    min-height: 66px;
    height: 66px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 0 8px;
    border-right: 0;
    border-top: 1px solid var(--soft-line);
  }

  .nav-item {
    text-align: center;
    font-size: 12px;
    padding: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 30px auto;
    gap: 2px;
    justify-items: center;
    align-content: center;
  }

  .nav-icon {
    width: 24px;
    height: 24px;
  }

  .nav-item::before {
    left: 50%;
    top: 0;
    width: 20px;
    height: 2px;
    transform: translateX(-50%);
  }

  .nav-item.is-active::before {
    height: 2px;
  }

  .view-root {
    grid-column: 1;
    grid-row: 2;
    min-height: calc(100vh - 132px);
  }

  .view,
  .fluxo-view {
    min-height: calc(100vh - 132px);
    padding: 30px 18px 88px;
  }

  .content-grid.two,
  .content-grid.three,
  .collective-wrap,
  .free-layout {
    grid-template-columns: 1fr;
  }

  .question-stage {
    min-height: 400px;
  }

  .question-copy {
    font-size: clamp(26px, 8vw, 42px);
  }

  .answer-input {
    min-height: 130px;
  }
}

@media (max-width: 560px) {
  .fluxo-header {
    top: 22px;
  }

  .fluxo-logo {
    width: 94px;
  }

  .fluxo-time,
  .fluxo-date {
    font-size: 8px;
  }

  .fluxo-time {
    margin-top: 7px;
  }

  .self-question-button {
    top: 29px;
    right: 20px;
    font-size: 25px;
  }

  .fluxo-page {
    padding: 146px 0 126px;
  }

  .fluxo-question-area {
    min-height: 238px;
  }

  .fluxo-question-band {
    min-height: 112px;
  }

  .fluxo-blue-line.top {
    top: calc(50% - 48px);
  }

  .fluxo-blue-line.bottom {
    top: calc(50% + 48px);
  }

  .fluxo-pink-caret {
    left: 22px;
    top: calc(50% - 44px);
    height: 88px;
  }

  .fluxo-question {
    width: min(76%, 320px);
    font-size: 20px;
  }

  .fluxo-answer-input,
  .respiro-answer-input {
    font-size: 19px;
  }

  .fluxo-lock-button {
    left: 20px;
    bottom: 106px;
  }

  .fluxo-close-button {
    right: 20px;
    bottom: 101px;
    font-size: 29px;
  }

  .coletivo-header {
    padding: 72px 20px 20px;
  }

  .coletivo-tabs {
    gap: 12px;
    font-size: 28px;
  }

  .coletivo-menu-button {
    top: 74px;
    right: 22px;
    font-size: 28px;
  }

  .coletivo-search {
    height: 54px;
    margin-top: 26px;
    padding-inline: 26px;
    font-size: 20px;
  }

  .coletivo-question-list {
    padding: 238px 28px 112px;
  }

  .coletivo-question-item {
    gap: 10px;
    margin-bottom: 30px;
  }

  .coletivo-question-item span {
    font-size: 25px;
  }

  .coletivo-question-item p {
    font-size: 26px;
    line-height: 1.18;
  }

  .movimento-header {
    padding-top: 86px;
  }

  .movimento-list {
    padding-top: 308px;
  }

  .movimento-item {
    min-height: 160px;
    padding-inline: 42px;
  }

  .movimento-item p {
    font-size: 26px;
  }

  .jornal-header {
    padding: 72px 20px 20px;
  }

  .jornal-header time {
    font-size: 13px;
  }

  .jornal-logo {
    width: 86px;
  }

  .jornal-feed {
    top: 226px;
    bottom: 94px;
  }

  .jornal-news,
  .jornal-products {
    padding-inline: 28px;
  }

  .jornal-products {
    margin-top: 0;
    padding-top: 26px;
  }

  .jornal-item {
    margin-bottom: 28px;
    font-size: 24px;
  }

  .coletivo-dock {
    height: 94px;
    padding-bottom: 12px;
  }

  .coletivo-dock .dock-button span {
    font-size: 27px;
  }

  .coletivo-dock .dock-center span {
    font-size: 30px;
  }

  .coletivo-dock .dock-button small {
    font-size: 15px;
  }

  .coletivo-footer-name {
    bottom: 16px;
    font-size: 16px;
  }

  .top-actions {
    gap: 6px;
  }

  .icon-button {
    inline-size: 38px;
    block-size: 38px;
  }

  .segment-button {
    min-width: 84px;
    padding-inline: 10px;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .item-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .free-textarea {
    min-height: 340px;
    padding: 20px;
  }

  .ritmo-view {
    background-size: auto 100%;
  }

  .ritmo-center-icon {
    width: min(70vw, 260px);
    opacity: 0.2;
  }

  .readings-header {
    padding: 18px 22px 14px;
  }

  .reading-topic {
    font-size: 18px;
  }

  .readings-search-line {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .readings-search-input {
    height: 48px;
    padding-inline: 20px;
    font-size: 17px;
  }

  .readings-feed {
    padding: 112px 28px 112px;
  }

  .reading-card {
    margin-bottom: 30px;
  }

  .reading-card-question {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 20px;
  }

  .reading-card-answer {
    font-size: 20px;
  }

  .reading-overlay,
  .public-profile-overlay {
    align-items: start;
    overflow-y: auto;
    padding: 94px 28px 118px;
  }

  .reading-actions {
    position: static;
    margin: 18px 0 0;
    justify-content: space-between;
  }

  .reading-action {
    font-size: 30px;
  }

  .reading-overlay-question {
    padding-right: 0;
    font-size: 23px;
  }

  .reading-overlay-answer {
    font-size: 23px;
  }

  .reaction-picker {
    top: 116px;
    left: 0;
    right: auto;
  }

  .public-profile-header {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
  }

  .public-profile-avatar {
    width: 52px;
    height: 52px;
    font-size: 21px;
  }

  .public-profile-readings article p {
    font-size: 15px;
  }

  .public-profile-readings article span {
    font-size: 19px;
  }

  .voce-header {
    padding: 22px 18px 22px;
  }

  .voce-top-row {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 8px;
  }

  .voce-identity-row {
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    gap: 12px;
    margin-top: 18px;
  }

  .voce-lock,
  .voce-mood,
  .voce-percent {
    inline-size: 52px;
    block-size: 52px;
  }

  .voce-user-button {
    min-height: 54px;
    padding: 0 16px;
    font-size: 22px;
  }

  .voce-listening {
    font-size: 12px;
  }

  .voce-summary {
    margin-top: 20px;
    font-size: 14px;
  }

  .voce-answer-list {
    height: calc(100dvh - 244px);
  }

  .voce-answer-preview {
    padding: 12px 18px;
  }

  .voce-answer-preview p {
    font-size: 20px;
  }

  .voce-answer-preview span {
    font-size: 18px;
  }

  .voce-config-list {
    padding-inline: 20px;
  }

  .voce-config-row,
  .voce-config-action {
    align-items: flex-start;
  }

  .nucleo-grid {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  .nucleo-item {
    min-height: 86px;
  }

  .nucleo-panel,
  .voce-modal {
    align-items: start;
    overflow-y: auto;
    padding: 86px 18px 100px;
  }

  .nucleo-panel-content,
  .voce-modal-content {
    padding: 26px;
  }

  .voce-progress-grid {
    grid-template-columns: 1fr;
  }
}

/* Ajustes oficiais: geometria fixa, dock global e controles padronizados. */
.app-dock,
.fluxo-dock,
.readings-dock,
.voce-dock,
.coletivo-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  height: var(--dock-height) !important;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  padding: 4px clamp(10px, 8vw, 110px) 12px !important;
  background: #ffffff;
}

.app-dock.is-muted,
.voce-dock.is-nucleo,
.coletivo-dock.is-muted {
  background: #dcdddd;
}

.app-dock .dock-button,
.fluxo-dock .dock-button,
.readings-dock .dock-button,
.voce-dock .dock-button,
.coletivo-dock .dock-button {
  inline-size: var(--dock-button-width) !important;
  block-size: var(--dock-button-height) !important;
  display: grid;
  grid-template-rows: 34px;
  gap: 2px;
  align-content: center;
  justify-items: center;
}

.app-dock .dock-icon,
.fluxo-dock .dock-icon,
.readings-dock .dock-icon,
.voce-dock .dock-icon,
.coletivo-dock .dock-icon,
.app-dock .dock-icon-leituras,
.app-dock .dock-icon-livre,
.coletivo-dock .dock-icon,
.coletivo-dock .dock-icon-leituras,
.coletivo-dock .dock-icon-livre {
  width: var(--dock-icon-size) !important;
  height: var(--dock-icon-size) !important;
  object-fit: contain;
}

.app-dock .dock-button small,
.fluxo-dock .dock-button small,
.readings-dock .dock-button small,
.voce-dock .dock-button small,
.coletivo-dock .dock-button small {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1;
  font-weight: 300;
}

.app-dock .dock-button span,
.fluxo-dock .dock-button span,
.readings-dock .dock-button span,
.voce-dock .dock-button span,
.coletivo-dock .dock-button span,
.app-dock .dock-center span,
.fluxo-dock .dock-center span,
.readings-dock .dock-center span,
.voce-dock .dock-center span,
.coletivo-dock .dock-center span {
  font-size: 26px !important;
  line-height: 1;
}

.dock-current-name {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  color: #000000;
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  pointer-events: none;
}

.readings-search-line,
.voce-top-row,
.voce-identity-row {
  width: min(920px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.readings-search-input,
.coletivo-search,
.voce-user-button,
.search-input,
.small-input,
.select-input {
  height: var(--control-height) !important;
  min-height: var(--control-height) !important;
  border-width: var(--control-border) !important;
  border-radius: var(--control-radius) !important;
  padding-left: var(--control-padding) !important;
  padding-right: var(--control-padding) !important;
  font-size: 18px !important;
  line-height: 1;
}

.coletivo-search,
.readings-search-input {
  width: 100%;
  max-width: 920px;
}

.fluxo-submit,
.primary-command,
.text-command,
.quiet-command {
  min-height: var(--control-height) !important;
  border-radius: var(--control-radius) !important;
  padding-left: var(--control-padding) !important;
  padding-right: var(--control-padding) !important;
}

.fluxo-answer-tools,
.respiro-answer-tools {
  display: grid;
  justify-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--muted);
  font-size: 11px;
  font-weight: 200;
}

.respiro-answer-tools {
  justify-content: start;
  justify-items: start;
}

.fluxo-answer-tools span,
.respiro-answer-tools span {
  display: block;
  min-width: 72px;
  text-align: center;
}

.coletivo-search {
  margin-top: var(--space-4) !important;
}

.ritmo-view::before {
  background: rgba(255, 255, 255, 0.95);
}

/* Ajustes pontuais 02: uma superfície contínua guiada pelos prints. */
.fluxo-question,
.reading-card-question,
.voce-answer-preview p,
.coletivo-question-item p,
.jornal-item,
.movimento-item p,
.palavras-list button,
.mundo-question-input {
  font-weight: 400 !important;
}

.fluxo-answer-input,
.respiro-answer-input,
.reading-card-answer,
.voce-answer-preview span,
.palavra-answer-input,
.mundo-reading-list p,
.livre-clean-textarea {
  font-weight: 200 !important;
  font-style: italic;
}

.aba-footer-name,
.respiro-footer-name,
.voce-bottom-name,
.coletivo-footer-name {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
}

.app-dock {
  z-index: 58;
}

.fluxo-blue-line.top {
  top: calc(50% - 28px) !important;
}

.fluxo-blue-line.bottom {
  top: calc(50% + 28px) !important;
}

.fluxo-question-band {
  min-height: 92px !important;
}

.fluxo-question-area {
  transform: translateY(112px);
}

.fluxo-pink-caret {
  top: calc(50% - 34px) !important;
  height: 68px !important;
}

.fluxo-question {
  width: min(78%, 660px);
  font-size: 24px;
  line-height: 1.22;
}

.fluxo-answer-input {
  margin-top: 170px;
  font-size: 23px;
  opacity: 0.18;
  transition: opacity 160ms ease;
}

.fluxo-answer-input:focus,
.fluxo-answer-input.is-active,
.fluxo-answer-input:not(:placeholder-shown) {
  opacity: 1;
}

.fluxo-answer-tools {
  position: fixed;
  left: 50%;
  bottom: 112px;
  z-index: 50;
  width: 150px;
  transform: translateX(-50%);
}

.fluxo-submit {
  min-height: 34px !important;
  padding: 0 16px !important;
  border-color: rgba(218, 219, 219, 0.85);
  background: #ffffff;
  color: #222222;
  font-size: 11px;
  font-weight: 300;
}

.modal-actions .fluxo-submit,
.nucleo-panel-content .fluxo-submit,
.voce-modal-content .fluxo-submit,
.palavra-item .fluxo-submit,
.ritmo-question-panel .fluxo-submit,
.umxum-modal .fluxo-submit {
  min-height: 34px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(218, 219, 219, 0.85);
  border-radius: 999px;
  background: #ffffff;
  color: #222222;
  font-size: 11px;
  font-weight: 300;
}

.fluxo-lock-button {
  bottom: 111px;
}

.fluxo-close-button {
  bottom: 106px;
}

.readings-header {
  padding-top: 96px;
  padding-inline: 24px;
}

.readings-search-line {
  width: min(100%, 830px);
}

.readings-search-input,
.coletivo-search {
  height: 44px !important;
  min-height: 44px !important;
  padding-inline: 24px !important;
  font-size: 17px !important;
  border-width: 1.5px !important;
}

.readings-feed {
  padding-top: 238px;
}

.reading-topic {
  font-size: 25px;
}

.reading-card-question {
  font-size: 25px;
  line-height: 1.2;
}

.reading-card-answer {
  font-size: 23px;
  line-height: 1.22;
}

.coletivo-header,
.jornal-header {
  padding-inline: 24px;
}

.coletivo-header {
  padding-top: 76px;
}

.coletivo-tabs {
  font-size: 28px;
  gap: 11px;
}

.coletivo-menu-button {
  top: 78px;
  right: 24px;
  font-size: 28px;
}

.coletivo-question-list {
  padding: 240px 32px 118px;
}

.coletivo-question-item {
  gap: 10px;
  margin-bottom: 30px;
}

.coletivo-question-item span {
  font-size: 25px;
}

.coletivo-question-item p {
  font-size: 28px;
  line-height: 1.18;
}

.movimento-list {
  padding-top: 300px;
  padding-bottom: 88px;
}

.movimento-item {
  min-height: 172px;
}

.movimento-item p {
  font-size: 26px;
}

.jornal-header {
  padding-top: 76px;
}

.jornal-feed {
  top: 218px;
  bottom: 92px;
}

.jornal-item {
  font-size: 27px;
}

.livre-main-screen {
  padding-bottom: var(--dock-height);
}

.livre-clean-textarea {
  width: min(620px, calc(100vw - 48px));
  min-height: 130px;
  color: rgba(0, 0, 0, 0.32);
  font-size: 20px;
  line-height: 1.35;
}

.palavras-list {
  gap: 46px;
  transform: translateY(20px);
}

.palavra-item {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.palavras-list button {
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  font-size: 23px;
  line-height: 1.25;
}

.palavra-item.is-answered > button {
  color: #ff4c9c;
}

.palavra-answer-input {
  width: min(520px, calc(100vw - 48px));
  min-height: 88px;
  border: 0;
  outline: 0;
  resize: none;
  background: transparent;
  text-align: center;
  font-size: 19px;
  line-height: 1.32;
}

.quiet-save-button {
  min-height: 28px;
  border: 0;
  background: transparent;
  color: #a5a8ab;
  cursor: pointer;
  font-size: 12px;
  font-weight: 300;
}

.quiet-save-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.ritmo-screen::before {
  opacity: 0.14;
}

.ritmo-shuffle-button {
  width: 64px;
  height: 64px;
}

.ritmo-question-panel {
  position: absolute;
  left: 50%;
  top: calc(50% + 84px);
  z-index: 1;
  width: min(560px, calc(100vw - 48px));
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 16px;
}

.ritmo-question {
  position: static;
  width: 100%;
  margin: 0;
  transform: none;
  opacity: 1;
  color: #000000;
  pointer-events: auto;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 400;
}

.ritmo-answer-input {
  width: 100%;
  min-height: 96px;
  border: 0;
  outline: 0;
  resize: none;
  background: transparent;
  color: #000000;
  text-align: center;
  font-size: 21px;
  line-height: 1.32;
  font-weight: 200;
  font-style: italic;
}

.mundo-screen {
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 26px;
  padding: 82px 32px 74px;
}

.mundo-alert {
  position: fixed;
  top: 76px;
  left: 32px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 24px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #bfc2c4;
  color: #ff4c4c;
  font-size: 13px;
  font-weight: 500;
}

.mundo-question-input {
  min-height: 96px;
  color: rgba(0, 0, 0, 0.28);
  font-size: 24px;
}

.mundo-question-input:not(:placeholder-shown) {
  color: #000000;
}

.mundo-reading-list {
  gap: 0;
  border-top: 1px solid rgba(218, 219, 219, 0.75);
}

.mundo-reading-list p {
  padding: 10px 0;
  border-bottom: 1px solid rgba(218, 219, 219, 0.75);
  font-size: 22px;
  line-height: 1.28;
}

.simple-profile-header {
  min-height: 250px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 18px;
  padding: 54px 24px 0;
}

.simple-profile-header > span {
  color: rgba(0, 0, 0, 0.12);
  font-size: 26px;
  font-weight: 600;
}

.simple-profile-header > button,
.simple-pill {
  width: min(300px, calc(100vw - 112px));
  min-height: 48px;
  border: 1.5px solid #122333;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
}

.config-plain-list {
  width: min(760px, 100%);
  margin: 108px auto 0;
  padding: 0 34px 132px;
  display: grid;
  justify-items: start;
}

.config-plain-list button {
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  padding: 0;
  text-align: left;
  font-size: 23px;
  line-height: 1.22;
  font-weight: 200;
}

.nucleo-simple-header {
  min-height: 235px;
}

.nucleo-simple-row {
  width: min(690px, calc(100vw - 74px));
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 28px;
}

.nucleo-simple-row .simple-pill {
  width: 100%;
}

.nucleo-simple-row .voce-mood,
.nucleo-simple-row .voce-percent {
  inline-size: 58px;
  block-size: 58px;
}

.nucleo-plain-list {
  width: min(620px, 100%);
  margin: 104px auto 0;
  padding: 0 30px 128px;
  display: grid;
  justify-items: center;
  gap: 13px;
}

.nucleo-plain-list button {
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  padding: 0;
  text-align: center;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 200;
}

@media (max-width: 560px) {
  .fluxo-question {
    font-size: 25px;
  }

  .fluxo-answer-input {
    margin-top: 160px;
  }

  .readings-header {
    padding-top: 90px;
  }

  .readings-feed {
    padding-top: 220px;
  }

  .coletivo-tabs {
    font-size: 28px;
  }

  .coletivo-question-item p {
    font-size: 28px;
  }

  .simple-profile-header {
    min-height: 230px;
  }

  .simple-profile-header > span {
    font-size: 24px;
  }

  .simple-profile-header > button,
  .simple-pill {
    font-size: 29px;
  }

  .config-plain-list button,
  .nucleo-plain-list button {
    font-size: 23px;
  }

  .nucleo-plain-list {
    margin-top: 96px;
    gap: 12px;
  }
}

/* Padrão tipográfico Você: perguntas 20 Regular, respostas 18 ExtraLight Italic. */
.fluxo-question,
.respiro-topic,
.respiro-question-choice,
.respiro-active-question,
.reading-card-question,
.coletivo-question-item p,
.jornal-item,
.movimento-item p,
.palavras-list button,
.ritmo-question,
.mundo-question-input {
  font-size: var(--question-font-size) !important;
  line-height: var(--question-line-height) !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.fluxo-answer-input,
.respiro-answer-input,
.reading-card-answer,
.palavra-answer-input,
.ritmo-answer-input,
.mundo-reading-list p {
  font-size: var(--answer-font-size) !important;
  line-height: var(--answer-line-height) !important;
  font-weight: 200 !important;
  font-style: italic !important;
}

.coletivo-tabs {
  font-size: var(--question-font-size) !important;
  line-height: var(--question-line-height) !important;
  font-weight: 200;
}

/* Guia 17.35: moldura, topo, busca, identidade e dock em uma mesma régua. */
:root {
  --grid-margin: 24px;
  --guide-header-top: 72px;
  --guide-header-line: 116px;
  --guide-control-top: 122px;
  --guide-control-height: 42px;
  --guide-content-top: 198px;
  --dock-height: 64px;
  --dock-icon-size: 24px;
  --dock-button-width: 46px;
  --dock-button-height: 50px;
  --control-height: var(--guide-control-height);
  --control-padding: 18px;
}

.fluxo-screen,
.respiro-screen,
.readings-screen,
.voce-screen,
.nucleo-screen,
.voce-config-screen,
.coletivo-screen,
.livre-screen {
  border-left: 1px solid rgba(69, 166, 217, 0.55);
  border-right: 1px solid rgba(69, 166, 217, 0.55);
}

.app-dock,
.fluxo-dock,
.readings-dock,
.voce-dock,
.coletivo-dock {
  height: var(--dock-height) !important;
  padding: 0 var(--grid-margin) 6px !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  background: #ffffff;
}

.app-dock .dock-button,
.fluxo-dock .dock-button,
.readings-dock .dock-button,
.voce-dock .dock-button,
.coletivo-dock .dock-button {
  inline-size: var(--dock-button-width) !important;
  block-size: var(--dock-button-height) !important;
  grid-template-rows: 30px;
  gap: 0;
  align-content: center;
  justify-items: center;
}

.app-dock .dock-icon,
.fluxo-dock .dock-icon,
.readings-dock .dock-icon,
.voce-dock .dock-icon,
.coletivo-dock .dock-icon,
.app-dock .dock-icon-leituras,
.app-dock .dock-icon-livre,
.coletivo-dock .dock-icon-leituras,
.coletivo-dock .dock-icon-livre {
  width: var(--dock-icon-size) !important;
  height: var(--dock-icon-size) !important;
  object-fit: contain;
}

.dock-current-name {
  bottom: 7px;
  font-size: 12px;
  line-height: 1;
}

.app-dock.is-muted,
.voce-dock.is-nucleo,
.coletivo-dock.is-muted {
  background: #dcdddd;
}

.fluxo-header {
  top: 82px !important;
}

.fluxo-logo {
  width: 78px !important;
}

.fluxo-time,
.fluxo-date {
  font-size: 7px !important;
  line-height: 1.2;
}

.fluxo-time {
  margin-top: 8px !important;
}

.self-question-button {
  top: 80px !important;
  right: var(--grid-margin) !important;
  font-size: 25px !important;
}

.fluxo-page {
  padding: 150px 0 96px !important;
}

.fluxo-question-area {
  min-height: 236px !important;
  transform: translateY(92px) !important;
}

.fluxo-question-band {
  min-height: 78px !important;
}

.fluxo-blue-line.top {
  top: calc(50% - 24px) !important;
}

.fluxo-blue-line.bottom {
  top: calc(50% + 24px) !important;
}

.fluxo-pink-caret {
  left: var(--grid-margin) !important;
  top: calc(50% - 31px) !important;
  width: 4px !important;
  height: 62px !important;
}

.fluxo-question {
  width: min(80%, 640px) !important;
  font-size: var(--question-font-size) !important;
  line-height: var(--question-line-height) !important;
}

.fluxo-lock-button,
.fluxo-close-button {
  bottom: calc(var(--dock-height) + 36px) !important;
}

.fluxo-lock-button {
  left: var(--grid-margin) !important;
  inline-size: 28px !important;
  block-size: 28px !important;
}

.lock-shape {
  width: 16px !important;
  height: 14px !important;
  border-width: 1.5px !important;
}

.lock-shape::before {
  left: 3px !important;
  top: -10px !important;
  width: 8px !important;
  height: 10px !important;
  border-width: 1.5px !important;
}

.fluxo-close-button {
  right: var(--grid-margin) !important;
  font-size: 29px !important;
}

.fluxo-status-line,
.fluxo-answer-tools {
  bottom: calc(var(--dock-height) + 35px) !important;
}

.respiro-shuffle {
  top: 204px !important;
  width: 48px !important;
  height: 48px !important;
  opacity: 0.15;
}

.respiro-topic-layer,
.respiro-question-layer,
.respiro-answer-layer {
  padding: 300px var(--grid-margin) calc(var(--dock-height) + 42px) !important;
}

.respiro-fade-list,
.respiro-question-list {
  width: min(680px, 100%);
}

.respiro-footer-name,
.aba-footer-name,
.coletivo-footer-name,
.voce-bottom-name {
  bottom: calc(0.75vh + 10px) !important;
  font-size: 12px !important;
  line-height: 1;
}

.readings-header,
.coletivo-header {
  height: 172px;
  padding: var(--guide-header-top) var(--grid-margin) 0 !important;
  background: #ffffff;
  backdrop-filter: none;
}

.readings-search-line {
  position: absolute;
  left: calc(var(--grid-margin) + 4px);
  right: calc(var(--grid-margin) + 4px);
  top: var(--guide-control-top);
  width: auto !important;
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 8px;
}

.reading-topic-rail {
  height: 34px;
  padding: 0 0 10px !important;
  align-items: center;
}

.reading-topic {
  font-size: var(--question-font-size) !important;
  line-height: 1;
}

.readings-topic-toggle,
.coletivo-menu-button {
  width: 28px !important;
  height: 34px !important;
  font-size: 25px !important;
  letter-spacing: -2px;
}

.readings-search-input,
.coletivo-search {
  height: var(--guide-control-height) !important;
  min-height: var(--guide-control-height) !important;
  border: 1.5px solid #122333 !important;
  border-radius: 999px !important;
  padding: 0 18px !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

.readings-feed {
  padding: var(--guide-content-top) var(--grid-margin) calc(var(--dock-height) + 20px) !important;
}

.reading-card {
  width: 100%;
  margin-bottom: 31px !important;
}

.coletivo-tabs {
  height: 34px;
  gap: 9px !important;
  font-size: var(--question-font-size) !important;
}

.coletivo-menu-button {
  top: var(--guide-header-top) !important;
  right: var(--grid-margin) !important;
}

.coletivo-search {
  position: absolute;
  left: calc(var(--grid-margin) + 4px);
  right: calc(var(--grid-margin) + 4px);
  top: var(--guide-control-top);
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.coletivo-question-list {
  padding: var(--guide-content-top) var(--grid-margin) calc(var(--dock-height) + 22px) !important;
}

.coletivo-question-item {
  gap: 8px !important;
  margin-bottom: 28px !important;
}

.coletivo-question-item span {
  font-size: 20px !important;
  line-height: var(--question-line-height) !important;
}

.movimento-list {
  padding-top: 280px !important;
  padding-bottom: calc(var(--dock-height) + 24px) !important;
}

.movimento-item {
  min-height: 150px !important;
  padding: 28px var(--grid-margin) !important;
}

.jornal-header {
  height: 172px;
  padding: var(--guide-header-top) var(--grid-margin) 0 !important;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  background: #ffffff;
}

.jornal-header time {
  position: absolute;
  left: var(--grid-margin);
  top: 88px;
  font-size: 10px !important;
}

.jornal-logo {
  position: absolute;
  left: 50%;
  top: 86px;
  transform: translateX(-50%);
  width: 76px !important;
}

.jornal-header .coletivo-menu-button {
  position: absolute !important;
  top: 82px !important;
  right: var(--grid-margin) !important;
}

.jornal-header .coletivo-search {
  left: 4px !important;
  right: 4px !important;
  top: var(--guide-control-top);
}

.jornal-feed {
  top: var(--guide-content-top) !important;
  bottom: var(--dock-height) !important;
}

.jornal-news,
.jornal-products {
  padding: 28px var(--grid-margin) !important;
}

.jornal-item {
  margin-bottom: 28px !important;
}

.voce-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 36;
  height: 228px;
  padding: var(--guide-header-top) var(--grid-margin) 0 !important;
  background: #ffffff;
}

.voce-top-row,
.voce-identity-row {
  width: 100% !important;
  max-width: 920px;
}

.voce-top-row {
  grid-template-columns: 34px minmax(0, 1fr) 34px !important;
  gap: 10px !important;
  min-height: 34px;
}

.voce-lock,
.voce-config-button {
  inline-size: 34px !important;
  block-size: 34px !important;
}

.voce-config-button {
  font-size: 24px !important;
}

.voce-listening {
  min-height: 34px !important;
  font-size: 10px !important;
}

.voce-identity-row {
  grid-template-columns: 48px minmax(0, 238px) 48px !important;
  justify-content: center;
  gap: 18px !important;
  margin-top: 10px !important;
}

.voce-mood,
.voce-percent,
.nucleo-simple-row .voce-mood,
.nucleo-simple-row .voce-percent {
  inline-size: 48px !important;
  block-size: 48px !important;
}

.voce-mood {
  font-size: 15px !important;
  border-width: 1.5px !important;
}

.voce-user-button,
.simple-pill,
.simple-profile-header > button {
  height: 48px !important;
  min-height: 48px !important;
  border: 1.5px solid #122333 !important;
  border-radius: 999px !important;
  font-size: 23px !important;
  padding: 0 18px !important;
}

.voce-percent {
  font-size: 18px !important;
}

.voce-summary {
  width: min(760px, 100%);
  margin-top: 18px !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.voce-answer-list {
  height: 100dvh !important;
  padding: 286px 0 var(--dock-height) !important;
}

.voce-answer-preview {
  padding: 12px var(--grid-margin) !important;
}

.simple-profile-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 190px !important;
  align-content: end !important;
  gap: 14px !important;
  padding: var(--guide-header-top) var(--grid-margin) 18px !important;
  background: #ffffff;
}

.simple-profile-header > span {
  font-size: 23px !important;
}

.config-plain-list {
  margin-top: 142px !important;
  padding: 0 var(--grid-margin) calc(var(--dock-height) + 42px) !important;
}

.config-plain-list button,
.nucleo-plain-list button {
  font-size: var(--question-font-size) !important;
  line-height: 1.22 !important;
}

.nucleo-simple-header {
  min-height: 190px !important;
}

.nucleo-simple-row {
  width: min(690px, calc(100vw - 48px)) !important;
  grid-template-columns: 48px minmax(0, 238px) 48px !important;
  gap: 18px !important;
}

.nucleo-plain-list {
  margin-top: 122px !important;
  padding: 0 var(--grid-margin) calc(var(--dock-height) + 42px) !important;
  gap: 12px !important;
}

.livre-main-screen,
.palavras-screen,
.ritmo-screen,
.mundo-screen {
  padding-left: var(--grid-margin) !important;
  padding-right: var(--grid-margin) !important;
  padding-bottom: var(--dock-height) !important;
}

.livre-clean-textarea {
  width: min(620px, calc(100vw - 48px));
  font-size: var(--answer-font-size) !important;
}

.palavras-list {
  width: min(620px, 100%) !important;
  gap: 42px !important;
  transform: translateY(0) !important;
}

.ritmo-shuffle-button {
  width: 48px !important;
  height: 48px !important;
}

.ritmo-question-panel {
  top: calc(50% + 76px) !important;
  width: min(560px, calc(100vw - 48px)) !important;
}

.mundo-screen {
  padding-top: var(--guide-header-top) !important;
  gap: 22px !important;
}

.mundo-alert {
  top: var(--guide-header-top) !important;
  left: var(--grid-margin) !important;
}

.mundo-question-input {
  width: min(620px, calc(100vw - 48px)) !important;
  min-height: 96px !important;
}

.mundo-reading-list {
  width: min(680px, 100%) !important;
}

@media (max-width: 560px) {
  .fluxo-header {
    top: 82px !important;
  }

  .readings-header,
  .coletivo-header,
  .jornal-header {
    padding-top: var(--guide-header-top) !important;
  }

  .readings-feed,
  .coletivo-question-list {
    padding-top: var(--guide-content-top) !important;
  }

  .voce-header {
    height: 228px !important;
    padding-top: var(--guide-header-top) !important;
  }

  .voce-answer-list {
    height: 100dvh !important;
    padding-top: 286px !important;
  }
}

/* Correção: Leituras e Configuração mantêm a régua sem perder função. */
.readings-header {
  overflow: visible;
}

.reading-topic-rail {
  position: absolute;
  left: var(--grid-margin);
  right: calc(var(--grid-margin) + 38px);
  top: var(--guide-header-top);
  height: 34px;
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 !important;
  white-space: nowrap;
}

.reading-topic-rail.is-compact {
  overflow: hidden;
}

.reading-topic {
  flex: 0 0 auto;
  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: 200;
}

.reading-topic.is-active {
  font-weight: 400;
}

.readings-topic-toggle {
  position: absolute;
  top: var(--guide-header-top) !important;
  right: var(--grid-margin) !important;
  width: 28px !important;
  height: 34px !important;
  z-index: 2;
  font-size: 25px !important;
}

.readings-search-line {
  display: block !important;
  position: absolute;
  left: calc(var(--grid-margin) + 4px);
  right: calc(var(--grid-margin) + 4px);
  top: var(--guide-control-top);
  width: auto !important;
  height: var(--guide-control-height);
}

.readings-search-input {
  display: block;
  width: 100% !important;
  max-width: none !important;
}

.readings-feed.has-overlay {
  opacity: 0.05 !important;
}

.reading-overlay {
  align-items: start !important;
  padding: 250px var(--grid-margin) calc(var(--dock-height) + 38px) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.reading-overlay-content {
  width: min(760px, 100%);
}

.reading-overlay-question {
  margin: 34px 0 0 !important;
  padding-right: 0 !important;
  font-size: var(--question-font-size) !important;
  line-height: var(--question-line-height) !important;
  font-weight: 400 !important;
}

.reading-overlay-answer {
  margin-top: 6px !important;
  font-size: var(--answer-font-size) !important;
  line-height: var(--answer-line-height) !important;
  font-weight: 200 !important;
  font-style: italic !important;
}

.reading-author-row {
  min-height: 38px;
}

.reading-author-button {
  font-size: 15px;
}

.reading-avatar {
  width: 34px;
  height: 34px;
  font-size: 15px;
}

.reading-actions {
  top: 0 !important;
  gap: 22px !important;
}

.reading-action {
  min-width: 34px;
  min-height: 34px;
  font-size: 29px;
}

.reading-overlay-note {
  margin-top: 18px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.24);
}

.reading-overlay.jornal-article-overlay {
  align-items: center !important;
  padding: max(40px, env(safe-area-inset-top)) var(--grid-margin) max(calc(var(--dock-height) + 20px), env(safe-area-inset-bottom)) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

.jornal-article-card {
  box-sizing: border-box;
  width: min(760px, 100%);
  max-height: calc(100dvh - var(--dock-height) - 68px);
  margin: auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(44px, 7vw, 72px) clamp(28px, 7vw, 70px);
  border-radius: var(--voce-card-radius);
  background: #ffffff;
  color: #000000;
  text-align: center;
  scrollbar-width: none;
}

.jornal-article-card::-webkit-scrollbar {
  display: none;
}

.jornal-article-title {
  margin: 0;
  color: #000000;
  font-size: var(--question-font-size);
  line-height: var(--question-line-height);
  font-weight: 400;
  text-align: center;
}

.jornal-article-date {
  display: block;
  margin-top: 18px;
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

.jornal-article-content {
  margin: 30px 0 0;
  color: #000000;
  font-family: Inter, sans-serif;
  font-size: var(--answer-font-size);
  line-height: var(--answer-line-height);
  font-weight: 200;
  font-style: italic;
  text-align: center;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.jornal-article-source {
  margin: 30px 0 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

.voce-config-screen {
  overflow-y: auto !important;
  padding-bottom: 0 !important;
}

.config-functional-header {
  position: sticky !important;
  top: 0;
  min-height: 178px !important;
  padding: var(--guide-header-top) var(--grid-margin) 18px !important;
}

.config-functional-list {
  width: min(760px, 100%);
  margin: 0 auto !important;
  padding: 18px var(--grid-margin) calc(var(--dock-height) + 54px) !important;
  display: grid;
  gap: 0;
}

.config-functional-list .voce-config-row,
.config-functional-list .voce-config-action {
  min-height: 48px;
  padding: 11px 0;
}

.config-functional-list .voce-config-row strong,
.config-functional-list .voce-config-action {
  font-size: 16px;
  line-height: 1.22;
  font-weight: 300;
}

.config-functional-list .voce-config-row small {
  font-size: 10px;
  line-height: 1.25;
}

.config-functional-list .small-input,
.config-functional-list select {
  width: 100%;
  max-width: 240px;
  height: 34px !important;
  min-height: 34px !important;
  font-size: 13px !important;
}

.config-functional-list .voce-config-row.is-column {
  gap: 8px;
}

.config-functional-list .voce-config-row.is-column .small-input {
  max-width: none;
}

.config-functional-list .fluxo-submit {
  justify-self: start;
}

/* Ajustes funcionais 03: Respiro, menus III, Ritmo, Mundo e Configuração. */
.respiro-shuffle {
  top: 146px !important;
  opacity: 0.18;
}

.respiro-topic-layer,
.respiro-question-layer {
  align-content: start !important;
  justify-items: center !important;
  padding: 226px var(--grid-margin) calc(var(--dock-height) + 42px) !important;
  text-align: center;
}

.respiro-answer-layer {
  padding-top: 226px !important;
}

.respiro-fade-list,
.respiro-question-list {
  width: min(540px, calc(100vw - 48px)) !important;
  max-height: min(430px, 54vh);
  justify-self: center;
  text-align: center;
}

.respiro-topic,
.respiro-question-choice {
  text-align: center !important;
}

.respiro-layer-name {
  text-align: center;
}

.respiro-back-button {
  top: auto !important;
  left: var(--grid-margin) !important;
  bottom: calc(var(--dock-height) + 36px) !important;
  width: auto;
  height: 28px;
  font-size: 11px;
}

.respiro-main-back {
  position: fixed;
  left: var(--grid-margin);
  bottom: calc(var(--dock-height) + 36px);
  z-index: 60;
  height: 28px;
  border: 0;
  background: transparent;
  color: #a5a8ab;
  cursor: pointer;
  padding: 0;
  font-size: 11px;
  font-weight: 300;
}

.coletivo-menu-panel {
  position: absolute;
  top: calc(var(--guide-header-top) + 34px);
  right: var(--grid-margin);
  z-index: 4;
  width: min(210px, calc(100vw - 48px));
  display: grid;
  gap: 1px;
  padding: 8px 0;
  border: 1px solid rgba(18, 35, 51, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.coletivo-menu-panel button {
  min-height: 32px;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.48);
  cursor: pointer;
  padding: 0 14px;
  text-align: left;
  font-size: 13px;
  font-weight: 300;
}

.coletivo-menu-panel p {
  margin: 8px 14px 4px;
  color: rgba(0, 0, 0, 0.32);
  font-size: 10px;
  font-weight: 300;
}

.coletivo-menu-panel button.is-active {
  color: #000000;
  font-weight: 400;
}

.jornal-prefs-panel {
  width: 150px;
}

.jornal-feed.only-news,
.jornal-feed.only-products {
  grid-template-rows: minmax(0, 1fr);
}

.jornal-feed.only-news .jornal-products,
.jornal-feed.only-products .jornal-news,
.jornal-news.is-hidden,
.jornal-products.is-hidden {
  display: none;
}

.jornal-feed.only-products .jornal-products {
  border-top: 0;
}

.ritmo-question-panel {
  top: 50% !important;
}

.ritmo-question-panel .fluxo-submit {
  margin-top: 12px;
}

.mundo-alert {
  top: auto !important;
  left: var(--grid-margin) !important;
  bottom: calc(var(--dock-height) + 36px) !important;
  width: 28px !important;
  height: 28px !important;
  clip-path: none !important;
  border: 0;
  background: transparent !important;
  color: #ff4c4c !important;
  cursor: pointer;
  font-size: 25px !important;
  line-height: 1;
  font-weight: 400;
}

.config-functional-list .voce-config-action {
  align-items: center;
  color: #000000;
}

.config-functional-list .voce-config-action span {
  margin: 0;
}

.config-functional-list .voce-config-action strong {
  display: block;
}

.config-functional-list .voce-config-action small {
  display: block;
  margin-top: 3px;
  color: rgba(0, 0, 0, 0.34);
  font-size: 10px;
  line-height: 1.25;
  font-weight: 300;
}

.config-functional-list .voce-config-action em {
  color: rgba(0, 0, 0, 0.28);
  font-size: 20px;
  font-style: normal;
}

.livre-main-screen {
  align-content: center;
  justify-items: center;
  gap: 18px;
}

.livre-fixar-button {
  min-width: 72px;
}

.respiro-screen .aba-footer-name,
.palavras-screen .aba-footer-name,
.ritmo-screen .aba-footer-name,
.mundo-screen .aba-footer-name {
  cursor: pointer;
}

/* Ajustes funcionais 04: rolagem, overlays específicos e Livre fixado. */
.voce-config-screen {
  height: 100dvh !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
}

.voce-config-screen .aba-footer-name {
  position: sticky;
  bottom: 20px;
  z-index: 7;
  margin: 18px auto 0;
}

.coletivo-question-list.has-overlay,
.movimento-list.has-overlay,
.mundo-reading-list.has-overlay {
  opacity: 0.05;
  transition: opacity 160ms ease;
}

.mundo-thread-overlay {
  background: rgba(255, 255, 255, 0.04) !important;
}

.mundo-thread-content {
  display: grid;
  gap: 18px;
  text-align: center;
}

.mundo-thread-content .reading-overlay-question {
  margin-top: 0 !important;
}

.mundo-thread-responses {
  display: grid;
  gap: 1px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.mundo-thread-responses p {
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: #000000;
  font-size: var(--answer-font-size);
  line-height: var(--answer-line-height);
  font-weight: 200;
  font-style: italic;
}

.circular-answer-overlay .mundo-question-input,
.circular-thread-overlay .mundo-thread-responses p {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 300 !important;
  font-style: italic !important;
}

.mundo-thread-responses p:first-child {
  border-top: 0;
}

.livre-fixed-text {
  width: min(620px, calc(100vw - 48px));
  margin: 0;
  color: rgba(0, 0, 0, 0.42);
  text-align: center;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 200;
  font-style: italic;
  white-space: pre-wrap;
}

/* Primeira abertura: cadastro silencioso UMXUM. */
.onboarding-screen {
  min-height: 100dvh;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 40px var(--grid-margin);
  background: #ffffff;
  color: #000000;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  text-align: center;
  overflow-y: auto;
}

.onboarding-center,
.onboarding-panel,
.onboarding-question-screen {
  width: min(620px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
}

.onboarding-center {
  gap: 22px;
}

.onboarding-panel {
  gap: 18px;
}

.onboarding-logo {
  width: min(176px, 46vw);
  height: auto;
  display: block;
  object-fit: contain;
}

.onboarding-intro h1,
.onboarding-panel h1,
.onboarding-question-screen h1 {
  margin: 0;
  color: #000000;
  font-size: clamp(22px, 5.5vw, 34px);
  line-height: 1.22;
  font-weight: 400;
  text-align: center;
}

.onboarding-quote {
  width: min(480px, 100%);
  margin: 0;
  color: rgba(0, 0, 0, 0.42);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 300;
  text-align: center;
}

.onboarding-screen[data-onboarding-step="login"] .onboarding-quote,
.onboarding-screen[data-onboarding-step="video"] .onboarding-quote {
  justify-self: start;
  text-align: left;
}

.onboarding-screen[data-onboarding-step="photo"] .onboarding-quote,
.onboarding-screen[data-onboarding-step="interests"] .onboarding-quote {
  justify-self: end;
  text-align: right;
}

.onboarding-screen[data-onboarding-step="questions"] .onboarding-quote {
  transform: translateX(-18px);
}

.onboarding-panel label {
  width: min(420px, 100%);
  display: grid;
  gap: 7px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
  font-weight: 300;
}

.onboarding-panel input,
.onboarding-question-screen textarea {
  width: 100%;
  border: 1.5px solid rgba(18, 35, 51, 0.92);
  border-radius: 999px;
  outline: 0;
  background: #ffffff;
  color: #000000;
  font-size: 16px;
  font-weight: 300;
}

.onboarding-panel input {
  height: 42px;
  padding: 0 18px;
}

.onboarding-panel input:disabled {
  border-color: rgba(18, 35, 51, 0.14);
  color: rgba(0, 0, 0, 0.24);
  background: rgba(0, 0, 0, 0.025);
}

.onboarding-primary,
.onboarding-secondary,
.onboarding-file {
  min-width: 126px;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 20px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  text-align: center;
}

.onboarding-primary {
  border: 1.5px solid rgba(18, 35, 51, 0.92);
  background: #ffffff;
  color: #000000;
}

.onboarding-secondary,
.onboarding-file {
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.52);
}

.onboarding-file input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.onboarding-photo-ring {
  width: 118px;
  height: 118px;
  border: 1.5px solid #ff4c9c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ff4c9c;
  font-size: 13px;
  font-weight: 300;
}

.onboarding-photo-ring img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.onboarding-policy-copy {
  width: min(520px, 100%);
  max-height: min(48dvh, 420px);
  overflow-y: auto;
  color: rgba(0, 0, 0, 0.56);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 300;
  text-align: left;
}

.onboarding-policy-copy h2,
.onboarding-policy-copy h3 {
  margin: 22px 0 8px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.onboarding-policy-copy p,
.onboarding-policy-copy ul {
  margin: 0 0 12px;
}

.onboarding-policy-copy ul {
  padding-left: 20px;
}

.onboarding-policy-copy hr {
  margin: 22px 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.onboarding-treatment-fieldset {
  width: min(420px, 100%);
  margin: 0;
  padding: 0;
  border: 0;
}

.onboarding-treatment-fieldset legend {
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 12px;
  font-weight: 300;
  text-align: left;
}

.onboarding-birth-year-label {
  justify-self: center;
  width: 112px !important;
}

.onboarding-panel .onboarding-birth-year-input {
  width: 112px;
  padding-inline: 14px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.onboarding-user-field {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(18, 35, 51, 0.92);
  border-radius: 999px;
  background: #ffffff;
  overflow: hidden;
}

.onboarding-user-field span {
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.42);
  font-size: 16px;
  font-weight: 300;
}

.onboarding-panel .onboarding-user-field input {
  min-width: 0;
  padding-left: 2px;
  border: 0;
}

.onboarding-username-status {
  min-height: 17px;
  margin: 0;
  color: rgba(0, 0, 0, 0.48);
  font-size: 12px;
  font-weight: 300;
}

.onboarding-panel label.onboarding-photo-ring {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  color: #ff4c9c;
  text-align: center;
}

.onboarding-photo-ring input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.onboarding-photo-panel .onboarding-quote {
  min-height: 72px;
  display: grid;
  place-items: center;
  justify-self: center !important;
  text-align: center !important;
}

.onboarding-photo-ring.is-selected {
  border-color: #ff4c9c;
  color: #ff4c9c;
}

.onboarding-interest-panel {
  width: min(760px, 100%);
}

.onboarding-interest-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.onboarding-interest-grid button {
  min-height: 34px;
  border: 1px solid rgba(18, 35, 51, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: rgba(0, 0, 0, 0.46);
  padding: 0 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 300;
}

.onboarding-interest-grid button.is-selected {
  border-color: #ff4c9c;
  color: #000000;
}

.onboarding-treatment-options {
  width: min(420px, 100%);
  padding: 4px;
  border-radius: 999px;
}

.onboarding-treatment-options button {
  flex: 1 1 112px;
  border-radius: 999px;
  transition: border-color 120ms ease, background-color 120ms ease, transform 90ms ease-out;
}

.onboarding-treatment-options button.is-selected {
  border-color: #ff4c9c;
  background: rgba(255, 76, 156, 0.08);
}

.onboarding-treatment-options button:active {
  transform: scale(0.97);
}

.onboarding-video-frame {
  width: min(430px, 100%);
  aspect-ratio: 16 / 9;
  border: 1.5px solid rgba(18, 35, 51, 0.92);
  border-radius: 8px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
}

.onboarding-video-frame span {
  font-size: 34px;
  line-height: 1;
}

.onboarding-video-frame p,
.onboarding-video-copy,
.onboarding-extra-offer p {
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 300;
}

.onboarding-question-screen {
  gap: 20px;
  min-height: calc(100dvh - 80px);
  align-content: center;
}

.onboarding-progress {
  color: rgba(0, 0, 0, 0.42);
  font-size: 13px;
  font-weight: 300;
}

.onboarding-question-screen textarea {
  min-height: 142px;
  border-radius: 8px;
  padding: 16px;
  resize: none;
  text-align: center;
  line-height: 1.35;
}

.onboarding-question-round {
  width: min(680px, calc(100vw - 48px));
  min-height: min(430px, calc(100dvh - var(--dock-height) - 190px));
  border: 1px solid rgba(18, 35, 51, 0.24);
  border-radius: var(--voce-card-radius);
  padding: clamp(28px, 7vw, 54px);
  display: grid;
  align-content: center;
  gap: 14px;
  overflow: hidden;
  background: #ffffff;
  animation: onboarding-question-enter 180ms ease-out both;
  transition: opacity 140ms ease, transform 140ms ease;
}

.onboarding-question-round.is-leaving {
  opacity: 0;
  transform: translateY(4px);
}

.onboarding-question-round textarea {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.onboarding-question-round h1 {
  width: min(560px, 100%);
  font-size: var(--question-font-size);
  line-height: var(--question-line-height);
  font-weight: 300;
  white-space: pre-line;
}

.onboarding-question-screen .answer-fixed-tools {
  bottom: calc(var(--dock-height) + 20px) !important;
  gap: 4px !important;
}

.onboarding-question-screen .answer-fixed-count {
  min-height: 12px !important;
  font-size: 10px !important;
}

@keyframes onboarding-question-enter {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .onboarding-question-round,
  .onboarding-treatment-options button {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* Fluxo: área ampla para responder, sempre abaixo da pergunta. */
.fluxo-question-area {
  cursor: text;
}

.fluxo-question-area .fluxo-question-band {
  cursor: text;
}

.fluxo-page {
  opacity: 1;
  animation: fluxo-question-fade-in 320ms ease both;
  transition: opacity 320ms ease;
}

.fluxo-page.is-answering-out {
  animation: none;
  opacity: 0;
  pointer-events: none;
}

@keyframes fluxo-question-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fluxo-question-area .fluxo-answer-input {
  display: block !important;
  width: min(82%, 680px) !important;
  min-height: 156px !important;
  margin-top: 12px !important;
  padding: 18px 10px 28px !important;
  cursor: text;
}

.fluxo-question-area .fluxo-answer-tools {
  position: static !important;
  width: min(82%, 680px) !important;
  margin-top: 0 !important;
}

.fluxo-page .fluxo-question-area {
  min-height: 390px !important;
  align-content: center !important;
  gap: 0 !important;
}

/* Padrão único de ação para respostas: botão acima, contador abaixo. */
.answer-fixed-tools {
  position: fixed !important;
  left: 50% !important;
  bottom: calc(var(--dock-height) + 13px) !important;
  z-index: 70;
  width: min(220px, calc(100vw - 160px));
  transform: translateX(-50%);
  display: grid !important;
  justify-items: center;
  gap: 7px;
  pointer-events: none;
}

.answer-fixed-submit {
  min-width: 74px;
  min-height: 28px;
  padding: 0 14px;
  pointer-events: auto;
}

.answer-fixed-count {
  min-height: 16px;
  color: rgba(0, 0, 0, 0.46);
  font-size: 11px;
  line-height: 1;
  font-weight: 300;
  pointer-events: none;
}

.answer-fixed-submit:disabled {
  opacity: 0.32;
  cursor: default;
}

.question-fixed-answer {
  width: min(82%, 680px);
  margin: 14px auto 0;
  color: #000000;
  text-align: center;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: var(--answer-font-size);
  line-height: var(--answer-line-height);
  font-weight: 200;
  font-style: italic;
  white-space: pre-wrap;
}

.mundo-report-hint {
  position: fixed;
  left: var(--grid-margin);
  bottom: calc(var(--dock-height) + 70px);
  z-index: 6;
  margin: 0;
  color: rgba(255, 76, 76, 0.7);
  font-size: 11px;
  line-height: 1;
  font-weight: 300;
}

.mundo-screen.is-reporting .mundo-reading-list p {
  cursor: pointer;
}

.respiro-answer-input,
.palavra-answer-input,
.ritmo-answer-input,
.mundo-question-input,
.nucleo-textarea,
#selfQuestionInput {
  min-height: 150px !important;
  padding: 18px 10px 30px !important;
  cursor: text;
}

.palavra-item.is-active,
.ritmo-question-panel,
.respiro-answer-layer,
.mundo-screen,
.nucleo-panel-content,
.umxum-modal {
  padding-bottom: calc(var(--dock-height) + 96px) !important;
}

.nucleo-question-panel {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  text-align: center;
}

.nucleo-question-text {
  width: min(560px, 100%);
  margin: 0 auto;
  color: #000000;
  font-size: var(--question-font-size);
  line-height: var(--question-line-height);
  font-weight: 300;
}

.nucleo-shuffle-button {
  min-width: 82px;
  min-height: 30px;
  border: 1px solid rgba(18, 35, 51, 0.92);
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 300;
}

.jornal-header .jornal-logo.fluxo-logo {
  position: fixed !important;
  left: 50% !important;
  top: 6.65vh !important;
  width: 78px !important;
  transform: translateX(-50%) !important;
}

/* Guia Fluxo: só reposicionamento interno da Janela Fluxo. */
.fluxo-header {
  top: 62px !important;
}

.self-question-button {
  top: 62px !important;
}

.fluxo-page {
  padding: 150px 0 118px !important;
}

.fluxo-page .fluxo-question-area {
  min-height: 392px !important;
  transform: translateY(128px) !important;
  align-content: start !important;
}

.fluxo-question-band {
  min-height: 76px !important;
}

.fluxo-blue-line.top {
  top: calc(50% - 23px) !important;
}

.fluxo-blue-line.middle {
  top: 50% !important;
}

.fluxo-blue-line.bottom {
  top: calc(50% + 23px) !important;
}

.fluxo-pink-caret {
  left: var(--grid-margin) !important;
  top: calc(50% - 30px) !important;
  width: 4px !important;
  height: 60px !important;
}

.fluxo-question-area .fluxo-answer-input {
  width: min(78%, 620px) !important;
  min-height: 108px !important;
  margin-top: 38px !important;
  padding: 0 10px !important;
}

.fluxo-page .question-fixed-answer {
  width: min(78%, 620px) !important;
  margin-top: 38px !important;
}

.fluxo-screen .answer-fixed-tools {
  bottom: calc(var(--dock-height) + 20px) !important;
  gap: 4px !important;
}

.fluxo-screen .answer-fixed-submit {
  min-height: 26px !important;
  min-width: 68px !important;
  padding: 0 12px !important;
}

.fluxo-screen .answer-fixed-count {
  min-height: 12px !important;
  font-size: 10px !important;
}

.fluxo-status-line {
  bottom: calc(var(--dock-height) + 26px) !important;
}

/* Guia Fluxo 430x932: posições fechadas dos ícones e controles do Fluxo. */
.fluxo-screen .fluxo-header,
.nucleo-reading-header {
  top: 6.65vh !important;
}

.fluxo-screen .fluxo-logo,
.nucleo-reading-header .nucleo-reading-logo {
  width: 78px !important;
}

.fluxo-screen .self-question-button {
  top: 6.65vh !important;
  right: 5.35vw !important;
  font-size: 25px !important;
}

.fluxo-screen .fluxo-page {
  position: relative !important;
  display: block !important;
  padding: 0 !important;
}

.fluxo-screen .fluxo-page .fluxo-question-area {
  position: absolute !important;
  left: 0 !important;
  top: 47.35vh !important;
  width: 100% !important;
  min-height: 0 !important;
  transform: none !important;
  display: grid !important;
  justify-items: center !important;
  align-content: start !important;
}

.fluxo-screen .fluxo-question-band {
  width: 100% !important;
  min-height: 58px !important;
}

.fluxo-screen .fluxo-blue-line.top {
  top: calc(50% - 23px) !important;
}

.fluxo-screen .fluxo-blue-line.middle {
  top: 50% !important;
}

.fluxo-screen .fluxo-blue-line.bottom {
  top: calc(50% + 23px) !important;
}

.fluxo-screen .fluxo-pink-caret {
  left: 5.35vw !important;
  top: calc(50% - 30px) !important;
  width: 4px !important;
  height: 60px !important;
}

.fluxo-screen .fluxo-question {
  width: min(80%, 640px) !important;
  font-size: var(--question-font-size) !important;
  line-height: var(--question-line-height) !important;
}

.fluxo-screen .fluxo-question-area .fluxo-answer-input,
.fluxo-screen .fluxo-page .question-fixed-answer {
  width: min(78%, 620px) !important;
  min-height: 104px !important;
  margin-top: 38px !important;
  padding: 0 10px !important;
}

/* PADRAO IMUTAVEL: guardar/contador do Fluxo guia todas as outras janelas. */
.fluxo-screen .answer-fixed-tools {
  bottom: 11.5vh !important;
  gap: 4px !important;
}

.fluxo-screen .answer-fixed-submit {
  min-width: 68px !important;
  min-height: 24px !important;
  padding: 0 12px !important;
}

.fluxo-screen .answer-fixed-count {
  min-height: 12px !important;
  font-size: 10px !important;
  line-height: 1 !important;
}

/* Respiro segue exatamente o guia imutavel do Fluxo para guardar/contador. */
.respiro-screen .answer-fixed-tools {
  bottom: 11.5vh !important;
  gap: 4px !important;
}

.respiro-screen .answer-fixed-submit {
  min-width: 68px !important;
  min-height: 24px !important;
  padding: 0 12px !important;
}

.respiro-screen .answer-fixed-count {
  display: none !important;
}

.palavras-screen .answer-fixed-tools,
.ritmo-screen .answer-fixed-tools,
.mundo-screen .answer-fixed-tools {
  bottom: 11.5vh !important;
  gap: 4px !important;
}

.palavras-screen .answer-fixed-submit,
.ritmo-screen .answer-fixed-submit,
.mundo-screen .answer-fixed-submit {
  min-width: 68px !important;
  min-height: 24px !important;
  padding: 0 12px !important;
}

.respiro-screen .respiro-answer-layer {
  align-content: center !important;
  justify-items: center !important;
  text-align: center !important;
}

.respiro-screen .respiro-active-question,
.respiro-screen .respiro-answer-input,
.respiro-screen .question-fixed-answer {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* Respiro v2: seletor vertical silencioso. A dock global permanece imutavel. */
.respiro-screen {
  position: relative !important;
  min-height: 100dvh !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

.respiro-title {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 64;
  margin: 0;
  color: #000000;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0;
  text-align: center;
  pointer-events: none;
}

.respiro-title span {
  display: block;
}

.respiro-screen .respiro-shuffle {
  position: fixed !important;
  top: 207px !important;
  left: 50% !important;
  z-index: 64 !important;
  width: 59px !important;
  height: 50px !important;
  transform: translateX(-50%) !important;
  opacity: 0.2 !important;
  background: transparent !important;
}

.respiro-screen .respiro-shuffle img {
  width: 59px !important;
  height: 50px !important;
  object-fit: contain;
  filter: grayscale(1);
}

.respiro-topic-layer {
  position: fixed !important;
  top: 342px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 44 !important;
  display: block !important;
  min-height: 0 !important;
  height: 242px !important;
  padding: 0 28px !important;
  text-align: center;
  background: transparent !important;
}

.respiro-selector-frame {
  position: relative;
  width: min(373px, calc(100vw - 56px));
  height: 242px;
  margin: 0 auto;
  overflow: hidden;
}

.respiro-selector-frame::before,
.respiro-selector-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  height: 48px;
  pointer-events: none;
}

.respiro-selector-frame::before {
  top: 0;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0));
}

.respiro-selector-frame::after {
  bottom: 0;
  background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0));
}

.respiro-selected-pill {
  position: absolute;
  left: 0;
  right: 0;
  top: 105px;
  z-index: 1;
  height: 37px;
  border-radius: 19px;
  background: #ffc4de;
  pointer-events: none;
}

.respiro-screen .respiro-fade-list {
  position: relative;
  z-index: 2;
  width: 100% !important;
  height: 242px !important;
  max-height: none !important;
  overflow-y: auto;
  padding: 102px 0 !important;
  scroll-snap-type: y proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  touch-action: pan-y;
  scrollbar-width: none;
  mask-image: none !important;
  text-align: center !important;
}

.respiro-screen .respiro-fade-list::-webkit-scrollbar {
  display: none;
}

.respiro-screen .respiro-topic {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: 37px;
  padding: 0 !important;
  scroll-snap-align: center;
  border: 0;
  background: transparent !important;
  color: #111111;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px !important;
  font-weight: 300;
  line-height: 37px !important;
  letter-spacing: 0;
  text-align: center !important;
}

.respiro-screen .respiro-topic.is-selected {
  color: #ffffff;
  font-weight: 400;
}

.respiro-question-layer {
  position: fixed !important;
  inset: 0 !important;
  z-index: 42 !important;
  display: grid !important;
  align-content: center !important;
  justify-items: center !important;
  min-height: 100dvh !important;
  padding: 260px 28px calc(var(--dock-height) + 122px) !important;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    #ffffff !important;
}

.respiro-question-layer .respiro-layer-name {
  margin: 0 0 28px !important;
  color: rgba(0, 0, 0, 0.55);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

.respiro-screen .respiro-question-list {
  width: min(373px, calc(100vw - 56px)) !important;
  max-height: min(330px, 38vh) !important;
  padding: 26px 0 !important;
  text-align: center !important;
}

.respiro-screen .respiro-question-choice {
  text-align: center !important;
}

.respiro-main-back,
.respiro-back-button {
  position: fixed !important;
  top: auto !important;
  left: 24px !important;
  bottom: calc(var(--dock-height) + 34px) !important;
  z-index: 72 !important;
  width: auto !important;
  height: 22px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(0, 0, 0, 0.7) !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px !important;
  font-weight: 300 !important;
  letter-spacing: 0;
  line-height: 1 !important;
}

.respiro-screen > .aba-footer-name {
  display: none !important;
}

.respiro-screen .app-dock {
  z-index: 70;
}

/* Quarto, Intimidade, Vitalidade e O que não te perguntei seguem exatamente o guia imutavel do Fluxo. */
.nucleo-panel-content:has(#saveQuarto) .answer-fixed-tools,
.nucleo-panel-content:has(#saveIntimidade) .answer-fixed-tools,
.nucleo-panel-content:has(#saveVitalidade) .answer-fixed-tools,
.nucleo-panel-content:has(#saveNucleoSelfQuestion) .answer-fixed-tools {
  bottom: 11.5vh !important;
  gap: 4px !important;
}

.nucleo-panel-content:has(#saveQuarto) .answer-fixed-submit,
.nucleo-panel-content:has(#saveIntimidade) .answer-fixed-submit,
.nucleo-panel-content:has(#saveVitalidade) .answer-fixed-submit,
.nucleo-panel-content:has(#saveNucleoSelfQuestion) .answer-fixed-submit {
  min-width: 68px !important;
  min-height: 24px !important;
  padding: 0 12px !important;
}

.nucleo-panel-content:has(#saveQuarto) .answer-fixed-count,
.nucleo-panel-content:has(#saveIntimidade) .answer-fixed-count,
.nucleo-panel-content:has(#saveVitalidade) .answer-fixed-count,
.nucleo-panel-content:has(#saveNucleoSelfQuestion) .answer-fixed-count {
  min-height: 12px !important;
  font-size: 10px !important;
  line-height: 1 !important;
}

.nucleo-panel-content:has(#saveNucleoSelfQuestion) .answer-fixed-tools {
  bottom: 10.5vh !important;
}

.fluxo-screen .fluxo-status-line {
  bottom: 10.25vh !important;
}

.fluxo-screen .fluxo-lock-button,
.fluxo-screen .fluxo-close-button {
  bottom: 10.1vh !important;
}

.fluxo-screen .fluxo-lock-button {
  left: 5.35vw !important;
  inline-size: 28px !important;
  block-size: 28px !important;
}

.fluxo-screen .fluxo-close-button {
  right: 5.35vw !important;
  font-size: 29px !important;
}

/* Fluxo: ações secundárias aparecem somente ao pressionar e segurar a pergunta. */
.fluxo-screen .fluxo-question {
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.fluxo-screen .answer-fixed-count {
  display: none !important;
}

.fluxo-question-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: transparent;
}

.fluxo-question-menu-backdrop.is-contextual-long-press {
  display: block;
  touch-action: pan-y;
}

.is-contextual-long-press .fluxo-question-menu {
  position: fixed;
  left: var(--context-menu-left);
  top: var(--context-menu-top);
  opacity: 0;
  transform: scale(0.96);
  transform-origin: center;
  transition: opacity 90ms ease-out, transform 90ms ease-out;
}

.is-contextual-long-press.is-open .fluxo-question-menu {
  opacity: 1;
  transform: scale(1);
}

.is-contextual-long-press.is-closing .fluxo-question-menu {
  opacity: 0;
}

.fluxo-question-menu {
  width: min(196px, 48vw);
  aspect-ratio: 1;
  border: 1px solid rgba(18, 35, 51, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(18, 35, 51, 0.14);
  display: grid;
  align-content: center;
  padding: 38px 28px;
}

.fluxo-question-menu button {
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 300;
  cursor: pointer;
}

.fluxo-question-menu button + button {
  border-top: 1px solid rgba(18, 35, 51, 0.12);
}

.fluxo-question-menu .fluxo-block-button {
  width: 100%;
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #000000;
  font: inherit;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
}

.fluxo-screen .fluxo-dock {
  bottom: -4px !important;
  height: 7.75vh !important;
  padding: 0 5.35vw 1.1vh !important;
}

.fluxo-screen .fluxo-dock .dock-icon {
  width: 24px !important;
  height: 24px !important;
}

.fluxo-screen .fluxo-dock .dock-button {
  inline-size: 14vw !important;
  block-size: 6.8vh !important;
}

.fluxo-screen .dock-current-name {
  bottom: calc(0.75vh + 15px) !important;
}

/* DOCK IMUTAVEL: nao alterar posicao, icones, nomes, tamanhos, cores ou funcoes. */
/* Dock única do sistema: a dock do Fluxo é o padrão fechado. */
.app-dock,
.fluxo-dock,
.readings-dock,
.voce-dock,
.coletivo-dock,
.app-dock.is-muted,
.voce-dock.is-nucleo,
.coletivo-dock.is-muted {
  bottom: -4px !important;
  height: 7.75vh !important;
  padding: 0 5.35vw 1.1vh !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: center !important;
  justify-items: center !important;
}

.app-dock .dock-button,
.fluxo-dock .dock-button,
.readings-dock .dock-button,
.voce-dock .dock-button,
.coletivo-dock .dock-button {
  inline-size: 14vw !important;
  block-size: 6.8vh !important;
  grid-template-rows: 24px !important;
  gap: 0 !important;
  align-content: center !important;
  justify-items: center !important;
}

.app-dock .dock-icon,
.fluxo-dock .dock-icon,
.readings-dock .dock-icon,
.voce-dock .dock-icon,
.coletivo-dock .dock-icon,
.app-dock .dock-icon-leituras,
.app-dock .dock-icon-livre,
.coletivo-dock .dock-icon-leituras,
.coletivo-dock .dock-icon-livre {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain !important;
  transform: translateY(-12px) !important;
}

.app-dock .dock-button small,
.fluxo-dock .dock-button small,
.readings-dock .dock-button small,
.voce-dock .dock-button small,
.coletivo-dock .dock-button small,
.dock-current-name {
  bottom: calc(0.75vh + 15px) !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 300 !important;
}

/* Janela Você guia 430x932: somente posições dos botões superiores. */
.voce-screen .voce-header {
  width: 430px !important;
  max-width: 430px !important;
  height: 252px !important;
  padding: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
}

.voce-screen .voce-top-row,
.voce-screen .voce-identity-row {
  display: contents !important;
}

.voce-screen .voce-lock {
  position: absolute !important;
  left: 17px !important;
  top: 72px !important;
  inline-size: 34px !important;
  block-size: 34px !important;
  min-inline-size: 34px !important;
  min-block-size: 34px !important;
  max-inline-size: 34px !important;
  max-block-size: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.voce-screen .voce-config-button {
  position: absolute !important;
  left: 380px !important;
  top: 65px !important;
  inline-size: 34px !important;
  block-size: 34px !important;
  min-inline-size: 34px !important;
  min-block-size: 34px !important;
  max-inline-size: 34px !important;
  max-block-size: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.voce-screen .voce-listening {
  position: absolute !important;
  left: 109px !important;
  top: 70px !important;
  width: 212px !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 !important;
  display: block !important;
  line-height: 34px !important;
  text-align: center !important;
}

.voce-screen .voce-listening span {
  width: 100% !important;
  height: 34px !important;
  display: block !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: none !important;
  line-height: 34px !important;
  text-align: center !important;
}

.voce-screen .voce-mood {
  position: absolute !important;
  left: 53px !important;
  top: 104px !important;
  inline-size: 40px !important;
  block-size: 40px !important;
  min-inline-size: 40px !important;
  min-block-size: 40px !important;
  max-inline-size: 40px !important;
  max-block-size: 40px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  font-size: 17px !important;
}

.voce-screen .voce-user-button {
  position: absolute !important;
  left: 108px !important;
  top: 104px !important;
  width: 214px !important;
  height: 42px !important;
  min-height: 42px !important;
  min-width: 214px !important;
  max-width: 214px !important;
  max-height: 42px !important;
  margin: 0 !important;
  transform: none !important;
  font-size: 23px !important;
}

.voce-screen .voce-percent {
  position: absolute !important;
  left: 337px !important;
  top: 104px !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
  inline-size: 40px !important;
  block-size: 40px !important;
  font-size: 18px !important;
}

.voce-screen .voce-summary {
  position: absolute !important;
  left: 55px !important;
  top: 166px !important;
  width: 320px !important;
  height: 90px !important;
  min-width: 320px !important;
  max-width: 320px !important;
  min-height: 90px !important;
  max-height: 90px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  white-space: normal !important;
  text-overflow: clip !important;
  font-size: 15px !important;
  line-height: 22.5px !important;
}

.voce-screen .voce-summary-text {
  width: 320px !important;
  max-width: 320px !important;
  max-height: 90px !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 4 !important;
  overflow: hidden !important;
  white-space: normal !important;
  text-align: center !important;
  overflow-wrap: break-word !important;
  line-height: 22.5px !important;
}

.voce-progress-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

/* Janela Você imutável: não mover estes elementos. */
.voce-screen {
  min-height: 100dvh !important;
  background: #ffffff !important;
  color: #000000 !important;
  position: relative !important;
  overflow: hidden !important;
}

.voce-screen .voce-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  width: 430px !important;
  max-width: 430px !important;
  height: 252px !important;
  padding: 0 !important;
  margin: 0 !important;
  transform: none !important;
  background: #ffffff !important;
}

.voce-screen .voce-top-row,
.voce-screen .voce-identity-row {
  display: contents !important;
}

.voce-screen .voce-lock {
  position: absolute !important;
  left: 17px !important;
  top: 72px !important;
  inline-size: 34px !important;
  block-size: 34px !important;
  min-inline-size: 34px !important;
  min-block-size: 34px !important;
  max-inline-size: 34px !important;
  max-block-size: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.voce-screen .voce-config-button {
  position: absolute !important;
  left: 380px !important;
  top: 65px !important;
  inline-size: 34px !important;
  block-size: 34px !important;
  min-inline-size: 34px !important;
  min-block-size: 34px !important;
  max-inline-size: 34px !important;
  max-block-size: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.voce-screen .voce-listening {
  position: absolute !important;
  left: 109px !important;
  top: 70px !important;
  width: 212px !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  padding: 0 !important;
  margin: 0 !important;
  transform: none !important;
  display: block !important;
  line-height: 34px !important;
  text-align: center !important;
}

.voce-screen .voce-listening span {
  width: 100% !important;
  height: 34px !important;
  display: block !important;
  margin: 0 !important;
  transform: none !important;
  line-height: 34px !important;
  text-align: center !important;
}

.voce-screen .voce-mood {
  position: absolute !important;
  left: 53px !important;
  top: 104px !important;
  inline-size: 40px !important;
  block-size: 40px !important;
  min-inline-size: 40px !important;
  min-block-size: 40px !important;
  max-inline-size: 40px !important;
  max-block-size: 40px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  font-size: 17px !important;
}

.voce-screen .voce-user-button {
  position: absolute !important;
  left: 108px !important;
  top: 104px !important;
  width: 214px !important;
  height: 42px !important;
  min-width: 214px !important;
  max-width: 214px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  margin: 0 !important;
  transform: none !important;
  font-size: 23px !important;
}

.voce-screen .voce-percent {
  position: absolute !important;
  left: 337px !important;
  top: 104px !important;
  inline-size: 40px !important;
  block-size: 40px !important;
  min-inline-size: 40px !important;
  min-block-size: 40px !important;
  max-inline-size: 40px !important;
  max-block-size: 40px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  font-size: 18px !important;
}

.voce-screen .voce-summary {
  position: absolute !important;
  left: 55px !important;
  top: 166px !important;
  width: 320px !important;
  height: 90px !important;
  min-width: 320px !important;
  max-width: 320px !important;
  min-height: 90px !important;
  max-height: 90px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  white-space: normal !important;
  text-overflow: clip !important;
  font-size: 15px !important;
  line-height: 22.5px !important;
}

.voce-screen .voce-summary-text {
  width: 320px !important;
  max-width: 320px !important;
  max-height: 90px !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 4 !important;
  overflow: hidden !important;
  white-space: normal !important;
  text-align: center !important;
  overflow-wrap: break-word !important;
  line-height: 22.5px !important;
}

.voce-screen .voce-answer-list {
  height: 100dvh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 286px 0 var(--dock-height) !important;
  scrollbar-width: none !important;
}

.voce-screen .voce-answer-preview {
  position: relative !important;
  padding: 12px var(--grid-margin) !important;
  text-align: center !important;
  border-top: 1px solid rgba(218, 219, 219, 0.5) !important;
}

/* Janela Você — novo padrão visual 430x932. Não altera Dock global. */
.voce-screen.voce-screen-v2 {
  width: 100% !important;
  min-height: 100dvh !important;
  height: 100dvh !important;
  overflow-y: hidden !important;
  overflow-x: hidden !important;
  background: #ffffff !important;
  color: #000000 !important;
  padding: 0 !important;
  scrollbar-width: none !important;
}

.voce-screen.voce-screen-v2::-webkit-scrollbar {
  display: none !important;
}

.voce-screen.voce-screen-v2 .voce-header {
  position: fixed !important;
  inset: 0 auto auto 50% !important;
  width: 430px !important;
  max-width: 100vw !important;
  height: 84px !important;
  padding: 0 !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  background: #ffffff !important;
  z-index: 40 !important;
  pointer-events: none !important;
}

.voce-screen.voce-screen-v2 .voce-top-row,
.voce-screen.voce-screen-v2 .voce-identity-row {
  display: contents !important;
}

.voce-mode-dot {
  position: fixed !important;
  left: calc(50% - 215px + 23px) !important;
  top: 55px !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 75 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.voce-screen.voce-screen-v2 .voce-listening {
  position: absolute !important;
  left: 110px !important;
  top: 56px !important;
  width: 211px !important;
  height: 16px !important;
  min-height: 16px !important;
  max-height: 16px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(0, 0, 0, 0.7) !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 16px !important;
  text-align: center !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  pointer-events: auto !important;
  z-index: 76 !important;
}

.voce-screen.voce-screen-v2 .voce-listening span {
  display: block !important;
  width: 100% !important;
  height: 16px !important;
  line-height: 16px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  transform: none !important;
}

.voce-screen.voce-screen-v2 .voce-config-button {
  position: absolute !important;
  left: 384px !important;
  top: 55px !important;
  width: 24px !important;
  height: 20px !important;
  min-width: 24px !important;
  min-height: 20px !important;
  max-width: 24px !important;
  max-height: 20px !important;
  border: 0 !important;
  background: transparent !important;
  color: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 25px !important;
  line-height: 18px !important;
  pointer-events: auto !important;
  z-index: 76 !important;
}

.voce-screen.voce-screen-v2 .voce-scroll {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 100dvh !important;
  min-height: 100dvh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 84px 0 132px !important;
  margin: 0 !important;
  scrollbar-width: none !important;
}

.voce-screen.voce-screen-v2 .voce-scroll::-webkit-scrollbar {
  display: none !important;
}

.voce-screen.voce-screen-v2 .voce-profile-card {
  position: relative !important;
  width: 371px !important;
  height: 453px !important;
  margin: 0 0 0 30px !important;
  padding: 0 !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 31px !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
}

.voce-screen.voce-screen-v2 .voce-card-smile {
  position: absolute !important;
  left: 111px !important;
  top: 36px !important;
  width: 150px !important;
  height: 150px !important;
  min-width: 150px !important;
  min-height: 150px !important;
  max-width: 150px !important;
  max-height: 150px !important;
  border: 3px solid #ff4fa3 !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #ff4fa3 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  display: grid !important;
  place-items: center !important;
  font-family: Nunito, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 72px !important;
  font-weight: 400 !important;
  line-height: 76px !important;
  text-align: center !important;
}

.voce-screen.voce-screen-v2 .voce-mood-state {
  display: block !important;
  width: 130px !important;
  max-width: 130px !important;
  color: #ff4fa3 !important;
  font-family: Nunito, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 72px !important;
  font-weight: 400 !important;
  line-height: 76px !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.voce-screen.voce-screen-v2 .voce-smile-drawing {
  position: relative !important;
  display: block !important;
  width: 108px !important;
  height: 82px !important;
}

.voce-screen.voce-screen-v2 .voce-smile-drawing i {
  position: absolute !important;
  top: 14px !important;
  width: 15px !important;
  height: 15px !important;
  border-radius: 50% !important;
  background: #ff4fa3 !important;
}

.voce-screen.voce-screen-v2 .voce-smile-drawing i:first-child {
  left: 22px !important;
}

.voce-screen.voce-screen-v2 .voce-smile-drawing i:nth-child(2) {
  right: 22px !important;
}

.voce-screen.voce-screen-v2 .voce-smile-drawing b {
  position: absolute !important;
  left: 10px !important;
  right: 10px !important;
  top: 43px !important;
  height: 22px !important;
  border-bottom: 9px solid #ff4fa3 !important;
  border-radius: 0 0 80px 80px !important;
}

.voce-screen.voce-screen-v2 .voce-profile-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.voce-screen.voce-screen-v2 .voce-card-username {
  position: absolute !important;
  left: 49px !important;
  top: 216px !important;
  width: 272px !important;
  height: 48px !important;
  min-width: 272px !important;
  max-width: 272px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  border: 0 !important;
  background: transparent !important;
  color: #ededed !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  text-align: center !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 48px !important;
  letter-spacing: 0 !important;
}

.voce-screen.voce-screen-v2 .voce-card-summary {
  position: absolute !important;
  left: 23px !important;
  top: 296px !important;
  width: 322px !important;
  height: 83px !important;
  min-width: 322px !important;
  max-width: 322px !important;
  min-height: 83px !important;
  max-height: 83px !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  display: grid !important;
  place-items: center !important;
  color: #000000 !important;
  font-size: 15px !important;
  font-style: italic !important;
  font-weight: 200 !important;
  line-height: 22px !important;
}

.voce-screen.voce-screen-v2 .voce-card-summary .voce-summary-text {
  display: -webkit-box !important;
  width: 322px !important;
  max-width: 322px !important;
  max-height: 83px !important;
  overflow: hidden !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical !important;
  white-space: pre-line !important;
  overflow-wrap: break-word !important;
  text-align: center !important;
  line-height: 22px !important;
}

.voce-screen.voce-screen-v2 .voce-card-percent {
  position: absolute !important;
  left: 325px !important;
  top: 410px !important;
  width: 32px !important;
  height: 22px !important;
  min-width: 32px !important;
  min-height: 22px !important;
  max-width: 32px !important;
  max-height: 22px !important;
  border: 0 !important;
  background: transparent !important;
  color: #e0e0e0 !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 22px !important;
  text-align: center !important;
}

.voce-screen.voce-screen-v2 .voce-answer-list {
  height: auto !important;
  overflow: visible !important;
  padding: 27px 0 0 !important;
  margin: 0 !important;
}

.voce-screen.voce-screen-v2 .voce-answer-preview {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  min-height: 91px !important;
  padding: 25px 28px 18px !important;
  border: 0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
  background: transparent !important;
  text-align: center !important;
}

.voce-screen.voce-screen-v2 .voce-answer-preview p {
  margin: 0 0 6px !important;
  color: #000000 !important;
  font-size: 23px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  text-align: center !important;
}

.voce-screen.voce-screen-v2 .voce-answer-preview span {
  display: block !important;
  margin: 0 !important;
  color: #000000 !important;
  font-size: 21px !important;
  font-style: italic !important;
  font-weight: 200 !important;
  line-height: 22px !important;
  text-align: center !important;
}

.voce-screen.voce-screen-v2 .voce-empty {
  padding: 32px 36px !important;
  text-align: center !important;
}

.voce-photo-modal .voce-mood-options {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 16px 0 !important;
}

.voce-photo-modal .voce-mood-options button,
.voce-photo-option {
  min-width: 48px !important;
  min-height: 40px !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #000000 !important;
  display: inline-grid !important;
  place-items: center !important;
  padding: 0 14px !important;
  font-size: 16px !important;
}

.voce-photo-option {
  width: fit-content !important;
  margin: 0 auto 12px !important;
  cursor: pointer !important;
}

.voce-photo-option input {
  display: none !important;
}

.voce-path-modal {
  width: 86.8564vw !important;
  height: 48.875dvh !important;
  max-height: 48.875dvh !important;
  border-radius: 36px !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
  text-align: center !important;
  display: grid !important;
  justify-items: center !important;
}

.voce-path-modal h2 {
  margin: 0 0 28px !important;
  color: #000000 !important;
  font-size: 24px !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

.voce-path-icons {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  grid-template-rows: repeat(2, auto) !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 22px 34px !important;
}

.voce-path-icons span {
  width: 58px !important;
  height: 58px !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  display: grid !important;
  place-items: center !important;
  color: #000000 !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  text-align: center !important;
}

.voce-path-icons strong {
  color: #000000 !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
}

/* Aba Núcleo — novo padrão visual 430x932. Não altera Dock global. */
.nucleo-screen {
  position: relative !important;
  width: 100% !important;
  min-height: 100dvh !important;
  height: 100dvh !important;
  overflow: hidden !important;
  background: #ffffff !important;
  color: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
  scrollbar-width: none !important;
}

.nucleo-screen::-webkit-scrollbar {
  display: none !important;
}

.nucleo-screen .voce-mode-dot {
  position: fixed !important;
  left: 3.9309vw !important;
  top: 6.0625dvh !important;
  width: 3.9309vw !important;
  height: 1.8125dvh !important;
  min-width: 3.9309vw !important;
  min-height: 1.8125dvh !important;
  max-width: 3.9309vw !important;
  max-height: 1.8125dvh !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 75 !important;
}

.nucleo-top-username {
  position: fixed !important;
  left: calc(50% - 215px + 164px) !important;
  top: 73px !important;
  width: 103px !important;
  height: 20px !important;
  overflow: hidden !important;
  color: #e0e0e0 !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 20px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  white-space: nowrap !important;
  pointer-events: none !important;
  z-index: 60 !important;
}

.nucleo-title-pill {
  position: fixed !important;
  left: calc(50% - 215px + 110px) !important;
  top: 106px !important;
  width: 211px !important;
  height: 40px !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  color: #bdbdbd !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 23px !important;
  font-weight: 300 !important;
  line-height: 40px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  pointer-events: none !important;
  z-index: 60 !important;
}

.nucleo-button-list {
  position: fixed !important;
  left: calc(50% - 215px + 26px) !important;
  top: 171px !important;
  width: 375px !important;
  max-height: calc(100dvh - 171px - var(--dock-height)) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  scrollbar-width: none !important;
  z-index: 20 !important;
}

.nucleo-button-list::-webkit-scrollbar {
  display: none !important;
}

.nucleo-list-button {
  width: 375px !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  border: 1px solid #dadada !important;
  border-radius: 19px !important;
  background: #ffffff !important;
  color: #555555 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 22px !important;
  font-weight: 300 !important;
  line-height: 38px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  cursor: pointer !important;
  transform: scale(1) !important;
  opacity: 1 !important;
  transition: transform 90ms ease, opacity 90ms ease !important;
}

.nucleo-list-button:active {
  transform: scale(0.985) !important;
  opacity: 0.75 !important;
}

/* Aba Configuração — novo padrão visual 430x932. Não altera Dock global. */
.voce-config-screen {
  position: relative !important;
  width: 100% !important;
  min-height: 100dvh !important;
  height: 100dvh !important;
  overflow: hidden !important;
  background: #ffffff !important;
  color: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
  scrollbar-width: none !important;
}

.voce-config-screen::-webkit-scrollbar {
  display: none !important;
}

.voce-config-screen .voce-mode-dot {
  position: fixed !important;
  left: 3.9309vw !important;
  top: 6.0625dvh !important;
  width: 3.9309vw !important;
  height: 1.8125dvh !important;
  min-width: 3.9309vw !important;
  min-height: 1.8125dvh !important;
  max-width: 3.9309vw !important;
  max-height: 1.8125dvh !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 75 !important;
}

.config-top-username {
  position: fixed !important;
  left: calc(50% - 215px + 162px) !important;
  top: 73px !important;
  width: 106px !important;
  height: 22px !important;
  overflow: hidden !important;
  color: #e0e0e0 !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 22px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  white-space: nowrap !important;
  pointer-events: none !important;
  z-index: 60 !important;
}

.config-title-pill {
  position: fixed !important;
  left: calc(50% - 215px + 110px) !important;
  top: 106px !important;
  width: 211px !important;
  height: 40px !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  color: #bdbdbd !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 23px !important;
  font-weight: 300 !important;
  line-height: 40px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  pointer-events: none !important;
  z-index: 60 !important;
}

.config-card-layout {
  position: fixed !important;
  inset: 0 auto auto 50% !important;
  width: 430px !important;
  max-width: 100vw !important;
  height: 100dvh !important;
  transform: translateX(-50%) !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.config-section-title {
  position: absolute !important;
  height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #000000 !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 18px !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

.config-privacy-title {
  left: 46px !important;
  top: 171px !important;
  width: 92px !important;
}

.config-personalization-title {
  left: 46px !important;
  top: 432px !important;
  width: 130px !important;
}

.config-card {
  position: absolute !important;
  left: 30px !important;
  width: 371px !important;
  border: 1px solid #dadada !important;
  border-radius: 28px !important;
  background: #ffffff !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

.config-privacy-card {
  top: 193px !important;
  height: 222px !important;
  overflow-y: auto !important;
}

.config-personalization-card {
  top: 454px !important;
  height: 221px !important;
  overflow-y: auto !important;
}

.config-privacy-row {
  position: absolute !important;
  left: 16px !important;
  width: 338px !important;
  height: 45px !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
  transform: scale(1) !important;
  opacity: 1 !important;
  transition: transform 90ms ease, opacity 90ms ease !important;
}

.config-privacy-row:nth-child(1) {
  top: 18px !important;
}

.config-privacy-row:nth-child(2) {
  top: 71px !important;
}

.config-privacy-row:nth-child(3) {
  top: 124px !important;
}

.config-privacy-row:nth-child(4) {
  top: 177px !important;
}

.config-privacy-row:nth-child(5) {
  top: 230px !important;
}

.config-privacy-row.is-disabled {
  cursor: default !important;
  opacity: 0.45 !important;
}

.config-personalization-row:active,
.config-ghost-button:active,
.config-logout-button:active {
  transform: scale(0.985) !important;
  opacity: 0.75 !important;
}

.config-privacy-row strong {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 280px !important;
  height: 20px !important;
  overflow: hidden !important;
  color: #000000 !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.config-privacy-row small {
  position: absolute !important;
  left: 0 !important;
  top: 23px !important;
  width: 276px !important;
  height: 13px !important;
  overflow: hidden !important;
  color: #cfcfcf !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 11px !important;
  font-weight: 300 !important;
  line-height: 13px !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.config-toggle {
  position: absolute !important;
  right: 0 !important;
  top: -1px !important;
  width: 40px !important;
  height: 25px !important;
  display: block !important;
}

.config-toggle input {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 2 !important;
}

.config-toggle i {
  position: absolute !important;
  inset: 0 !important;
  width: 40px !important;
  height: 25px !important;
  border-radius: 13px !important;
  background: #d9d9d9 !important;
}

.config-toggle i::before {
  content: "" !important;
  position: absolute !important;
  left: 2px !important;
  top: 2px !important;
  width: 21px !important;
  height: 21px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  transition: transform 120ms ease !important;
}

.config-toggle input:checked + i {
  background: #ff5fa8 !important;
}

.config-toggle input:checked + i::before {
  transform: translateX(15px) !important;
}

.config-personalization-row {
  position: absolute !important;
  left: 16px !important;
  width: 339px !important;
  height: 31px !important;
  border: 0 !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #000000 !important;
  cursor: pointer !important;
  transform: scale(1) !important;
  opacity: 1 !important;
  transition: transform 90ms ease, opacity 90ms ease !important;
}

.config-personalization-row:nth-child(1) {
  top: 16px !important;
}

.config-personalization-row:nth-child(2) {
  top: 48px !important;
}

.config-personalization-row:nth-child(3) {
  top: 81px !important;
}

.config-personalization-row:nth-child(4) {
  top: 114px !important;
}

.config-personalization-row:nth-child(5) {
  top: 148px !important;
}

.config-personalization-row:nth-child(6) {
  top: 180px !important;
}

.config-personalization-row:nth-child(7) {
  top: 212px !important;
}

.config-personalization-row span {
  color: #000000 !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

.config-personalization-row em {
  min-width: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 13px !important;
  color: #8a8a8a !important;
  font-style: normal !important;
}

.config-personalization-row strong {
  color: #ff5fa8 !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 12px !important;
}

.config-personalization-row i {
  color: #8a8a8a !important;
  font-size: 21px !important;
  font-style: normal !important;
  font-weight: 300 !important;
  line-height: 1 !important;
}

.config-ghost-button,
.config-logout-button {
  position: absolute !important;
  border-radius: 20px !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 17px !important;
  font-weight: 300 !important;
  line-height: 39px !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  padding: 0 18px !important;
  margin: 0 !important;
  cursor: pointer !important;
  transform: scale(1) !important;
  opacity: 1 !important;
  transition: transform 90ms ease, opacity 90ms ease !important;
}

.config-ghost-button {
  left: 27px !important;
  top: 701px !important;
  width: 377px !important;
  height: 39px !important;
  border: 0 !important;
  background: #4a4a4a !important;
  color: #bdbdbd !important;
}

.config-logout-button {
  left: 27px !important;
  top: 753px !important;
  width: 377px !important;
  height: 40px !important;
  border: 1px solid #dadada !important;
  background: #ffffff !important;
  color: #000000 !important;
}

/* Configuração: telas internas reutilizam a geometria, tipografia e cartões existentes. */
.config-detail-layout {
  position: fixed !important;
  inset: 0 auto auto 50% !important;
  width: 430px !important;
  max-width: 100vw !important;
  height: 100dvh !important;
  transform: translateX(-50%) !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.config-detail-card {
  top: 171px !important;
  height: 145px !important;
}

.config-detail-card .config-personalization-row.is-destructive span {
  color: #000000 !important;
}

.config-detail-back {
  z-index: 76 !important;
}

.config-legal-screen .config-title-pill {
  font-size: 18px !important;
}

.config-legal-document {
  position: fixed !important;
  left: 50% !important;
  top: 171px !important;
  bottom: calc(var(--dock-height) + var(--safe-bottom) + 76px) !important;
  width: 371px !important;
  max-width: calc(100vw - 60px) !important;
  transform: translateX(-50%) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  padding: 24px 18px 36px !important;
  border: 1px solid #dadada !important;
  border-radius: 28px !important;
  background: #ffffff !important;
  color: #000000 !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
}

.config-legal-document::-webkit-scrollbar {
  display: none !important;
}

.config-legal-document section + section {
  margin-top: 24px !important;
}

.config-legal-document h2 {
  margin: 0 0 8px !important;
  color: #000000 !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  text-align: left !important;
}

.config-legal-document h3 {
  margin: 18px 0 8px !important;
  color: #000000 !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  text-align: left !important;
}

.config-legal-document p {
  margin: 0 !important;
  color: #6f6f6f !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 1.55 !important;
  text-align: left !important;
  overflow-wrap: anywhere !important;
}

.config-legal-document p + p {
  margin-top: 12px !important;
}

.config-legal-document ul {
  margin: 8px 0 16px !important;
  padding-left: 20px !important;
  color: #6f6f6f !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 1.55 !important;
}

.config-legal-document hr {
  margin: 24px 0 !important;
  border: 0 !important;
  border-top: 1px solid #ededed !important;
}

@media (max-width: 429px) {
  .voce-mode-dot {
    left: 23px !important;
  }

  .voce-screen.voce-screen-v2 .voce-header {
    left: 0 !important;
    transform: none !important;
  }

  .nucleo-screen .voce-mode-dot {
    left: 23px !important;
  }

  .nucleo-top-username {
    left: 164px !important;
  }

  .nucleo-title-pill {
    left: 110px !important;
  }

  .nucleo-button-list {
    left: 26px !important;
  }

  .voce-config-screen .voce-mode-dot {
    left: 23px !important;
  }

  .config-card-layout {
    left: 0 !important;
    transform: none !important;
  }

  .config-detail-layout {
    left: 0 !important;
    transform: none !important;
  }

  .config-top-username {
    left: 162px !important;
  }

  .config-title-pill {
    left: 110px !important;
  }
}

/* Leituras: busca clara e reações contextuais sem ações permanentes nos cards. */
.readings-screen .readings-search-input {
  background: #ffffff !important;
}

.readings-screen .readings-search-input::placeholder {
  color: #a5a8ab !important;
}

.readings-screen .reading-card {
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.reading-reaction-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
}

.reading-reaction-menu {
  width: min(210px, 52vw);
  aspect-ratio: 1;
  border: 1px solid rgba(18, 35, 51, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(18, 35, 51, 0.14);
  display: grid;
  place-items: center;
  padding: 28px;
}

.reading-reaction-menu .reaction-picker {
  position: static;
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  gap: 0;
}

.reading-reaction-menu .reaction-picker button {
  min-height: 34px;
  text-align: center;
  font-size: 13px;
}

.reading-reaction-menu .reaction-picker button + button {
  border-top: 1px solid rgba(18, 35, 51, 0.1);
}

/* Fluxo: restaura rolagem interna sem alterar dock, pergunta, campo ou ação. */
.fluxo-screen {
  overflow: hidden !important;
}

.fluxo-screen .fluxo-pager {
  height: 100dvh !important;
  min-height: 100dvh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scroll-snap-type: y mandatory !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  touch-action: pan-y;
}

.fluxo-screen .fluxo-page,
.fluxo-screen .fluxo-question-area {
  touch-action: pan-y;
}

.fluxo-screen .fluxo-blue-line,
.fluxo-screen .fluxo-pink-caret {
  pointer-events: none;
}

.fluxo-screen .fluxo-page {
  height: auto !important;
  min-height: 100dvh !important;
  padding: 0 0 calc(var(--dock-height) + 140px) !important;
}

.fluxo-screen .fluxo-page .fluxo-question-area {
  position: relative !important;
  top: auto !important;
  min-height: 0 !important;
  padding-top: 47.35vh !important;
}

/* Livre: ajustes pontuais sem alterar fluxo, dock ou endpoints. */
.livre-clean-textarea.has-free-intro::placeholder {
  animation: livre-intro-fade 900ms ease-out both;
}

@keyframes livre-intro-fade {
  from {
    color: rgba(0, 0, 0, 0);
  }

  to {
    color: rgba(0, 0, 0, 0.28);
  }
}

.livre-screen .answer-fixed-tools {
  bottom: 11.5vh !important;
  gap: 4px !important;
}

.livre-screen .answer-fixed-submit {
  min-width: 68px !important;
  min-height: 24px !important;
  padding: 0 12px !important;
}

.livre-screen .answer-fixed-count {
  display: none !important;
}

.palavras-screen .answer-fixed-tools {
  bottom: 11.5vh !important;
  gap: 4px !important;
}

.palavras-screen .answer-fixed-submit {
  min-width: 68px !important;
  min-height: 24px !important;
  padding: 0 12px !important;
}

.palavra-item {
  transition: opacity 180ms ease, transform 180ms ease;
}

.palavras-screen .palavras-list {
  align-self: center;
  justify-self: center;
  gap: 36px !important;
  transform: none !important;
}

.palavra-item.is-dimmed {
  opacity: 0.05;
}

.palavra-item.is-active {
  opacity: 1;
  transform: translateX(var(--palavra-center-offset, 0));
}

.palavras-screen .palavra-item.is-answered:not(.is-active) .question-fixed-answer {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.palavras-screen .palavra-item.is-answered.is-active .question-fixed-answer {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.voce-dock.is-nucleo {
  background: #ffffff !important;
}

.nucleo-panel:has(.nucleo-panel-content.is-ghost-panel) {
  padding: 0 !important;
  background: #000000 !important;
}

.nucleo-panel:has(.nucleo-panel-content.is-ghost-panel) .reading-overlay-backdrop {
  background: #000000 !important;
}

.nucleo-panel-content.is-ghost-panel {
  width: 100vw !important;
  max-width: none !important;
  min-height: 100dvh !important;
  max-height: none !important;
  display: grid !important;
  align-content: start !important;
  gap: 34px !important;
  overflow-y: auto !important;
  padding: 64px clamp(28px, 9vw, 104px) 96px !important;
  background: #000000 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

.nucleo-panel-content.is-ghost-panel h2,
.nucleo-panel-content.is-ghost-panel .fantasma-line strong {
  color: #ffffff !important;
}

.nucleo-panel-content.is-ghost-panel h2 {
  margin: 0 !important;
  text-align: center !important;
}

.nucleo-panel-content.is-ghost-panel .overlay-close-button,
.nucleo-panel-content.is-ghost-panel .fantasma-line span,
.nucleo-panel-content.is-ghost-panel .fantasma-empty,
.nucleo-panel-content.is-ghost-panel .answer-fixed-count {
  color: #8f8f8f !important;
}

.nucleo-panel-content.is-ghost-panel .fantasma-back-button {
  color: #ffffff !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.nucleo-panel-content.is-ghost-panel .fantasma-list {
  width: min(680px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 42px;
}

.nucleo-panel-content.is-ghost-panel .fantasma-list.is-question-list {
  width: min(680px, 100%);
  gap: 0;
}

.nucleo-panel-content.is-ghost-panel .fantasma-list-item {
  width: 100%;
  min-height: 91px;
  padding: 25px 28px 18px;
  display: grid;
  place-items: center;
  gap: 7px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.nucleo-panel-content.is-ghost-panel .fantasma-list-item strong {
  color: #ffffff;
  font-size: 23px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.nucleo-panel-content.is-ghost-panel .fantasma-list-item span {
  color: #8f8f8f;
  font-size: 12px;
  font-weight: 300;
}

.nucleo-panel-content.is-ghost-panel .fantasma-line {
  display: grid;
  justify-items: center;
  gap: 14px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.nucleo-panel-content.is-ghost-panel .fantasma-line.is-open {
  width: min(680px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 7vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  border-radius: var(--voce-card-radius) !important;
}

.nucleo-panel-content.is-ghost-panel .fantasma-line strong {
  font-size: clamp(24px, 6vw, 48px);
  line-height: 1.05;
  font-weight: 360;
  text-align: center;
}

.nucleo-panel-content.is-ghost-panel .fantasma-answer-input {
  width: min(620px, 100%);
  min-height: 112px;
  resize: none;
  overflow-y: auto;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  font: 300 18px/1.45 Inter, ui-sans-serif, system-ui, sans-serif;
  text-align: center;
}

.nucleo-panel-content.is-ghost-panel .fantasma-answer-input::placeholder {
  color: #6f6f6f !important;
}

.nucleo-panel-content.is-ghost-panel .answer-fixed-tools {
  position: static !important;
  width: auto !important;
  transform: none !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
}

.nucleo-panel-content.is-ghost-panel .answer-fixed-count {
  order: -1;
}

.nucleo-panel-content.is-ghost-panel .fantasma-line.is-open:not(.is-answering) .answer-fixed-tools {
  display: none !important;
}

.nucleo-panel-content.is-ghost-panel .fantasma-line.is-open.is-answering .answer-fixed-tools {
  display: flex !important;
}

.nucleo-panel-content.is-ghost-panel .answer-fixed-submit {
  min-width: 68px !important;
  min-height: 24px !important;
  padding: 0 12px !important;
  border-color: rgba(255, 255, 255, 0.62) !important;
  background: transparent !important;
  color: #ffffff !important;
}

/* Você: visualização do Livre pelo botão cinza, com experiência branca e sem card. */
.voce-livre-preview-modal {
  padding: 0 !important;
  background: #ffffff !important;
  place-items: stretch !important;
}

.voce-livre-preview-modal .reading-overlay-backdrop {
  background: transparent !important;
}

.voce-livre-preview-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.voce-livre-preview-content p {
  width: min(620px, calc(100vw - 48px));
  margin: 0;
  color: rgba(0, 0, 0, 0.42);
  text-align: center;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 200;
  font-style: italic;
  white-space: pre-wrap;
}

/* Respiro: rolagem fluida sem redesenhar a janela. */
.respiro-screen {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-width: none;
}

.respiro-screen::-webkit-scrollbar {
  display: none;
}

.respiro-screen .respiro-fade-list,
.respiro-screen .respiro-question-list,
.respiro-screen .respiro-answer-layer {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

/* Janela Você + Mundo no card — baseline proporcional do print 738×1600. */
.voce-screen.voce-screen-v2 .voce-header {
  width: 100vw !important;
  max-width: 100vw !important;
  height: 8.875dvh !important;
}

.voce-screen.voce-screen-v2 .voce-mode-dot {
  left: 3.9309vw !important;
  top: 6.0625dvh !important;
  width: 3.9309vw !important;
  height: 1.8125dvh !important;
  min-width: 3.9309vw !important;
  min-height: 1.8125dvh !important;
  max-width: 3.9309vw !important;
  max-height: 1.8125dvh !important;
}

.voce-screen.voce-screen-v2 .voce-listening {
  left: 26.6938vw !important;
  top: 6.1875dvh !important;
  width: 46.3415vw !important;
  height: 1.625dvh !important;
  min-height: 1.625dvh !important;
  max-height: 1.625dvh !important;
}

.voce-screen.voce-screen-v2 .voce-scroll {
  padding-top: 8.875dvh !important;
}

.voce-screen.voce-screen-v2 .voce-profile-card {
  width: 86.8564vw !important;
  height: 48.875dvh !important;
  margin-left: 6.5041vw !important;
  border-radius: 50px !important;
}

.voce-screen.voce-screen-v2 .voce-card-smile {
  left: 25.8808vw !important;
  top: 3.3125dvh !important;
  width: 34.6883vw !important;
  height: 16.0625dvh !important;
  min-width: 34.6883vw !important;
  min-height: 16.0625dvh !important;
  max-width: 34.6883vw !important;
  max-height: 16.0625dvh !important;
}

.voce-screen.voce-screen-v2 .voce-card-username {
  left: 13.5501vw !important;
  top: 22.875dvh !important;
  width: 60.5691vw !important;
  height: 5.625dvh !important;
  min-width: 60.5691vw !important;
  max-width: 60.5691vw !important;
  min-height: 5.625dvh !important;
  max-height: 5.625dvh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 5.625dvh !important;
  overflow: visible !important;
}

.voce-screen.voce-screen-v2 .voce-card-summary {
  left: 6.9106vw !important;
  top: 31.375dvh !important;
  width: 72.3577vw !important;
  height: 9.75dvh !important;
  min-width: 72.3577vw !important;
  max-width: 72.3577vw !important;
  min-height: 9.75dvh !important;
  max-height: 9.75dvh !important;
  overflow: visible !important;
}

.voce-screen.voce-screen-v2 .voce-card-summary .voce-summary-text {
  width: 72.3577vw !important;
  max-width: 72.3577vw !important;
  max-height: 9.75dvh !important;
  line-height: 23px !important;
  overflow: visible !important;
}

.voce-card-world-button {
  position: absolute !important;
  left: 21.4092vw !important;
  top: 43.6875dvh !important;
  width: 43.7669vw !important;
  height: 3.8125dvh !important;
  min-width: 43.7669vw !important;
  min-height: 3.8125dvh !important;
  max-width: 43.7669vw !important;
  max-height: 3.8125dvh !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(220, 220, 220, 0.82) !important;
  color: rgba(0, 0, 0, 0.62) !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 3.8125dvh !important;
  text-align: center !important;
}

.voce-screen.voce-screen-v2 .voce-card-percent {
  left: 76.8293vw !important;
  top: 44.125dvh !important;
  width: 2.5745vw !important;
  height: 1.625dvh !important;
}

.voce-screen.voce-screen-v2 .voce-empty {
  padding-top: 6.375dvh !important;
}

.public-profile-world-button {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  min-width: 120px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(220, 220, 220, 0.82);
  color: rgba(0, 0, 0, 0.66);
  font-size: 15px;
  font-weight: 300;
}

.mundo-empty,
.mundo-history-list {
  width: min(760px, 100%);
  justify-self: center;
  text-align: center;
}

.mundo-history-question {
  display: block;
  width: min(620px, calc(100vw - 48px));
  margin: 12px auto 0;
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.72);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.mundo-history-question:last-child {
  border-bottom: 0;
}

.mundo-reading-list .mundo-question-line {
  font-style: normal !important;
  font-weight: 400 !important;
}

/* Mobile readiness: safe area, teclado e hit area sem redesenhar a interface aprovada. */
:root {
  --app-height: 100vh;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --keyboard-inset: 0px;
  --mobile-touch-target: 44px;
}

@supports (height: 100dvh) {
  :root {
    --app-height: 100dvh;
  }
}

html,
body,
.app-shell,
.app-shell.is-immersive,
.app-shell.is-immersive .view-root,
.fluxo-screen,
.respiro-screen,
.voce-screen.voce-screen-v2,
.livre-screen,
.mundo-screen,
.nucleo-screen,
.onboarding-shell {
  min-height: var(--app-height) !important;
}

body {
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
  overscroll-behavior-y: none;
}

.topbar {
  padding-top: var(--safe-top) !important;
  min-height: calc(72px + var(--safe-top)) !important;
}

.window-nav,
.app-dock,
.fluxo-dock {
  padding-bottom: calc(12px + var(--safe-bottom)) !important;
  bottom: 0 !important;
}

.app-shell:not(.is-immersive) .view-root,
.view,
.fluxo-view,
.coletivo-screen,
.readings-screen,
.livre-screen,
.nucleo-screen,
.mundo-screen,
.palavras-screen,
.ritmo-screen {
  padding-bottom: calc(var(--dock-height) + var(--safe-bottom) + 28px) !important;
}

.fluxo-header,
.voce-screen.voce-screen-v2 .voce-header,
.nucleo-header,
.coletivo-header,
.readings-header {
  padding-top: var(--safe-top) !important;
}

.self-question-button,
.voce-screen.voce-screen-v2 .voce-mode-dot,
.voce-screen.voce-screen-v2 .voce-config-button,
.nucleo-close,
.fantasma-back-button {
  touch-action: manipulation;
}

.icon-button,
.brand-lockup,
.nav-item,
.dock-button,
.fluxo-logo,
.self-question-button,
.fluxo-submit,
.answer-fixed-submit,
.fluxo-question-menu button,
.voce-mode-dot,
.voce-config-button,
.voce-card-world-button,
.public-profile-world-button,
.config-logout-button,
.config-ghost-button,
.config-personalization-row,
.config-privacy-row,
.config-toggle,
.reading-card,
.palavra-item button,
.respiro-topic-button,
.respiro-selected-pill,
.mundo-response-card,
.fantasma-back-button,
.nucleo-close {
  min-width: var(--mobile-touch-target);
  min-height: var(--mobile-touch-target);
  touch-action: manipulation;
}

textarea,
input,
select {
  font-size: max(16px, 1em);
  scroll-margin-bottom: calc(var(--keyboard-inset) + var(--dock-height) + var(--safe-bottom) + 32px);
}

body.keyboard-open {
  overscroll-behavior-y: contain;
}

body.keyboard-open .answer-fixed-tools {
  bottom: calc(var(--keyboard-inset) + var(--safe-bottom) + 12px) !important;
}

body.keyboard-open .window-nav,
body.keyboard-open .app-dock,
body.keyboard-open .fluxo-dock {
  transform: translateY(calc(var(--dock-height) + var(--safe-bottom))) !important;
  pointer-events: none !important;
}

body.keyboard-open .fluxo-pager,
body.keyboard-open .respiro-screen,
body.keyboard-open .voce-screen.voce-screen-v2 .voce-scroll,
body.keyboard-open .nucleo-panel-content,
body.keyboard-open .mundo-screen,
body.keyboard-open .livre-screen,
body.keyboard-open .onboarding-screen {
  padding-bottom: calc(var(--keyboard-inset) + var(--safe-bottom) + 96px) !important;
  -webkit-overflow-scrolling: touch;
}

body.keyboard-open .onboarding-screen[data-auth-screen] {
  padding-bottom: 40px !important;
}

/* Fluxo: deslocamentos verticais pontuais aprovados. */
.fluxo-screen .fluxo-question-band {
  transform: translateY(-10px);
}

.fluxo-screen .fluxo-dock {
  bottom: 0 !important;
  transform: none;
}

.fluxo-screen .fluxo-time,
.fluxo-screen .fluxo-date,
.nucleo-reading-header .fluxo-time,
.nucleo-reading-header .fluxo-date {
  transform: translateY(-2px);
}

/* Respiro: ajustes verticais pontuais aprovados. */
.respiro-screen .respiro-main-back,
.respiro-screen .respiro-back-button {
  transform: none;
}

.respiro-screen .respiro-title {
  transform: translateY(2px);
}

.respiro-screen .respiro-selected-pill {
  display: none;
}

.respiro-screen .respiro-topic.is-selected {
  color: #ffc4de;
}

.respiro-screen .respiro-question-list {
  transform: translateY(55px);
}

/* Respiro vazio e Leituras: ajustes pontuais aprovados. */
.respiro-screen .respiro-question-layer:has(.respiro-question-list > .respiro-limit-copy) > .respiro-layer-name {
  transform: translateY(35px);
}

.respiro-screen .respiro-question-layer > .respiro-question-list > .respiro-limit-copy {
  transform: translateY(488px);
}

.readings-screen #toggleReadingTopics {
  transform: none;
}

/* Janela Você: ajustes pontuais aprovados. */
.voce-screen.voce-screen-v2,
.nucleo-screen,
.voce-config-screen {
  --voce-action-press-scale: 0.91;
  --voce-action-press-in-duration: 90ms;
  --voce-action-press-out-duration: 150ms;
  --voce-action-press-easing: ease-out;
}

.voce-screen.voce-screen-v2 {
  --voce-card-action-size: 16px;
  --voce-card-action-border-width: 1px;
  --voce-card-action-gray-outline: #b5b5b5;
  --voce-card-action-pink-outline: #e99abc;
}

.voce-screen.voce-screen-v2 .voce-profile-card {
  border-radius: var(--voce-card-radius) !important;
}

.fluxo-logo,
.nucleo-panel-content.nucleo-panel-girias,
.nucleo-panel-content.nucleo-panel-mapa {
  border-radius: var(--voce-card-radius) !important;
}

.ritmo-shuffle-button {
  transform-origin: center;
  transition: transform var(--voce-action-press-out-duration, 150ms) var(--voce-action-press-easing, ease-out);
  will-change: transform;
}

.ritmo-shuffle-button:active {
  transform: scale(var(--voce-action-press-scale, 0.92));
  transition-duration: var(--voce-action-press-in-duration, 90ms);
}

@media (prefers-reduced-motion: reduce) {
  .ritmo-shuffle-button {
    transition: none;
  }
}

.voce-screen.voce-screen-v2 .voce-mode-dot,
.nucleo-screen .voce-mode-dot,
.voce-config-screen .voce-mode-dot {
  left: calc(50% - 215px + 18px) !important;
  top: 62px !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
}

.nucleo-screen .voce-mode-dot,
.voce-config-screen .voce-mode-dot {
  left: max(18px, calc(50% - 215px + 18px)) !important;
}

.nucleo-button-list,
.nucleo-list-button {
  width: min(375px, calc(100vw - 52px)) !important;
}

.voce-screen.voce-screen-v2 .voce-card-curiosity {
  position: absolute !important;
  right: 22px !important;
  top: calc(45.5625dvh - 8px) !important;
  bottom: auto !important;
  z-index: 2;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #ffc4de !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

.public-profile-curiosity-button {
  position: absolute;
  right: 20px;
  bottom: 26px;
  z-index: 3;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: #ffc4de;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.voce-curiosity-content {
  width: min(560px, 100%);
  min-height: min(720px, calc(100dvh - 48px));
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
}

.voce-curiosity-list {
  display: grid;
  grid-template-columns: repeat(3, 52px);
  grid-auto-rows: 52px;
  justify-content: center;
  gap: 22px 34px;
  width: 100%;
  margin: auto 0;
  padding: 24px 0;
}

.voce-curiosity-circle {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  border: 1px solid rgba(218, 219, 219, 0.75);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.voce-curiosity-circle span {
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 50%;
  background: #d8d8d8;
}

.voce-curiosity-circle.is-public {
  border-color: #ffc4de;
}

.voce-curiosity-circle.is-public span,
.voce-curiosity-circle.is-revealed span {
  background: #ffc4de;
}

.voce-curiosity-content .voce-curiosity-empty,
.voce-curiosity-content .voce-curiosity-status,
.voce-curiosity-reveal {
  margin: 0;
  text-align: center;
  color: #000000;
  font-size: 16px;
  line-height: 1.4;
  font-style: normal;
  font-weight: 300;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.voce-curiosity-reveal-slot {
  width: min(420px, 100%);
  height: 108px;
  min-height: 108px;
  margin: 18px auto 0;
  overflow-y: auto;
}

.voce-curiosity-reveal {
  width: 100%;
  margin: 0;
}

.voce-curiosity-add {
  margin: 18px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000000;
  font-size: 13px;
}

.voce-curiosity-editor {
  flex: 1;
  width: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.voce-curiosity-editor textarea {
  width: min(430px, 100%);
  min-height: 124px;
  padding: 0;
  resize: none;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  color: #000000;
  text-align: center;
  font: 300 16px/1.4 Inter, system-ui, sans-serif;
}

.voce-curiosity-editor textarea::placeholder {
  color: #a5a8ab;
  text-align: center;
  opacity: 1;
}

.voce-curiosity-editor > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.voce-curiosity-editor button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #000000;
  font-size: 13px;
}

.voce-curiosity-editor span,
.voce-curiosity-limit {
  color: #a5a8ab;
  font-size: 12px;
}

.voce-curiosity-publish.is-active {
  color: #ff4c9c;
}

.voce-curiosity-limit {
  display: block;
  margin-top: auto;
}

.voce-screen.voce-screen-v2 .voce-card-percent {
  left: auto !important;
  right: 13px !important;
  top: 16px !important;
}

/* Buscas Coletivo, Movimento e Jornal: somente o fundo acompanha Leituras. */
.coletivo-screen .coletivo-search {
  background: #ffffff !important;
}

/* Reposicionamentos pontuais: preservam dimensões e áreas clicáveis. */
.coletivo-screen:not(.jornal-screen) .coletivo-tabs {
  transform: translateY(46px);
}

/* Janela Você: refinamentos visuais cirúrgicos do card e densidade do feed. */
.voce-screen.voce-screen-v2 .voce-profile-card {
  height: calc(32.5dvh + min(32.9539vw, 15.2594dvh) - 45px) !important;
  margin-bottom: calc(8.1875dvh - min(16.47695vw, 7.6297dvh) + 6px) !important;
}

.voce-screen.voce-screen-v2 .voce-card-smile {
  left: 50% !important;
  top: calc(3.3125dvh - 15px) !important;
  width: min(32.9539vw, 15.2594dvh) !important;
  height: min(32.9539vw, 15.2594dvh) !important;
  min-width: min(32.9539vw, 15.2594dvh) !important;
  min-height: min(32.9539vw, 15.2594dvh) !important;
  max-width: min(32.9539vw, 15.2594dvh) !important;
  max-height: min(32.9539vw, 15.2594dvh) !important;
  border-width: 2.5px !important;
  transform: translateX(-50%) !important;
}

.voce-screen.voce-screen-v2 .voce-card-smile .voce-mood-state {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  line-height: 1 !important;
}

.voce-screen.voce-screen-v2 .voce-card-username {
  top: calc(6.1875dvh + min(32.9539vw, 15.2594dvh) - 20px) !important;
  color: #a5a8ab !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  touch-action: pan-y !important;
}

.voce-screen.voce-screen-v2 .voce-card-username > span {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  animation: none !important;
  transform: none !important;
}

.public-profile-header h1 > [data-fit-username] {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.voce-screen.voce-screen-v2 .voce-card-summary {
  top: calc(14.6875dvh + min(32.9539vw, 15.2594dvh) - 30px) !important;
}

.voce-screen.voce-screen-v2 .voce-card-world-button {
  top: calc(27.3125dvh + min(32.9539vw, 15.2594dvh) - 40px) !important;
  border: 1px solid #d8d8d8 !important;
  background: #ffffff !important;
  color: #000000 !important;
}

.voce-screen.voce-screen-v2 .voce-card-public {
  top: calc(28.1875dvh + min(32.9539vw, 15.2594dvh) - 40px) !important;
}

.voce-screen.voce-screen-v2 .voce-card-curiosity {
  top: calc(29.1875dvh + min(32.9539vw, 15.2594dvh) - 48px) !important;
}

.voce-screen.voce-screen-v2 .voce-card-percent {
  color: transparent !important;
  font-size: 0 !important;
}

.voce-screen.voce-screen-v2 .voce-card-percent::before {
  content: "%";
  color: #dcdcdc;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

.voce-screen.voce-screen-v2 .voce-answer-list {
  padding-top: 18px !important;
}

.voce-screen.voce-screen-v2 .voce-answer-preview {
  min-height: 0 !important;
  padding: 10px 28px 11px !important;
  border-bottom: 1px solid #f0f0f0 !important;
}

.voce-screen.voce-screen-v2 .voce-answer-preview p {
  margin-bottom: 6px !important;
}

.voce-screen.voce-screen-v2 .voce-answer-preview span {
  margin: 0 !important;
  font-style: italic !important;
  font-weight: 200 !important;
}

.voce-screen.voce-screen-v2 .voce-answer-preview small {
  margin-top: 4px !important;
  line-height: 14px !important;
}

.voce-screen.voce-screen-v2 .voce-answer-preview.is-blocked p,
.voce-screen.voce-screen-v2 .voce-answer-preview.is-blocked span,
.voce-screen.voce-screen-v2 .voce-answer-preview.is-blocked small {
  color: #a5a8ab !important;
}

.voce-screen.voce-screen-v2 .voce-card-public,
.voce-screen.voce-screen-v2 .voce-card-world-button,
.voce-screen.voce-screen-v2 .voce-card-percent,
.voce-screen.voce-screen-v2 .voce-card-curiosity {
  transform-origin: center !important;
  transition: transform 120ms ease, opacity 120ms ease !important;
  will-change: transform;
}

.voce-screen.voce-screen-v2 .voce-card-public:active,
.voce-screen.voce-screen-v2 .voce-card-world-button:active,
.voce-screen.voce-screen-v2 .voce-card-percent:active,
.voce-screen.voce-screen-v2 .voce-card-curiosity:active {
  transform: scale(0.975) !important;
  opacity: 0.88 !important;
}

/* Janela Você: crossfade do texto superior guiado pela visibilidade real do card. */
.voce-feed-transition-sentinel,
.public-profile-feed-transition-sentinel {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: -1px;
  pointer-events: none;
}

.voce-screen.voce-screen-v2 .voce-listening-layer {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease !important;
}

.voce-screen.voce-screen-v2 .voce-listening-original {
  opacity: 1;
}

.voce-screen.voce-screen-v2 .voce-listening-between {
  opacity: 0;
  animation: none !important;
}

.voce-screen.voce-screen-v2 .voce-listening.is-card-hidden .voce-listening-original {
  opacity: 0;
}

.voce-screen.voce-screen-v2 .voce-listening.is-card-hidden .voce-listening-between {
  opacity: 1;
}

.voce-screen.voce-screen-v2 #editListening[aria-disabled="true"] {
  pointer-events: auto !important;
  cursor: default !important;
}

.voce-screen.voce-screen-v2 .voce-answer-expanded {
  overflow-x: hidden;
  border-radius: var(--voce-card-radius);
}

/* Perfil visitado: reutiliza a geometria canônica da janela Você em modo somente leitura. */
.public-profile-overlay:has(.public-profile-voce) {
  align-items: start;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  z-index: 80;
}

.public-profile-content.public-profile-voce {
  width: min(430px, 100%);
  max-width: 430px;
  height: 100dvh;
  margin: 0 auto;
}

.public-profile-voce > .overlay-close-button {
  position: fixed;
  top: calc(6.96875dvh - 15px);
  right: max(18px, calc((100vw - 430px) / 2 + 18px));
  z-index: 78;
}

.public-profile-voce .voce-card-smile[aria-label="Emoticon"],
.public-profile-voce .voce-card-username,
.public-profile-voce .voce-card-summary {
  cursor: default !important;
}

.voce-profile-follow-control {
  display: block;
  margin: 10px auto 0;
  border: 0;
  background: transparent;
  color: #a5a8ab;
  font-size: 14px;
  font-weight: 300;
}

.public-profile-readonly-feed .voce-answer-preview {
  cursor: pointer;
}

.mundo-response-line:not(.is-expanded) {
  display: -webkit-box !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 1 !important;
}

.mundo-response-line.is-expanded {
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
}

.mundo-thread-responses .mundo-response-line {
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  cursor: pointer;
}

/* Janela Você: botões circulares inferiores com geometria compartilhada. */
.voce-screen.voce-screen-v2 #openLivrePublicPreview,
.voce-screen.voce-screen-v2 #openVoceCuriosity {
  box-sizing: border-box !important;
  width: var(--voce-card-action-size) !important;
  height: var(--voce-card-action-size) !important;
  min-width: var(--voce-card-action-size) !important;
  min-height: var(--voce-card-action-size) !important;
  max-width: var(--voce-card-action-size) !important;
  max-height: var(--voce-card-action-size) !important;
  border-width: var(--voce-card-action-border-width) !important;
  border-style: solid !important;
  border-radius: 50% !important;
}

.voce-screen.voce-screen-v2 #openLivrePublicPreview,
.voce-screen.voce-screen-v2 #openVoceCuriosity,
.voce-screen.voce-screen-v2 .voce-mode-dot,
.nucleo-screen .voce-mode-dot,
.voce-config-screen .voce-mode-dot {
  transform: scale(1) !important;
  transform-origin: center !important;
  transition:
    transform var(--voce-action-press-out-duration) var(--voce-action-press-easing),
    border-color var(--voce-action-press-out-duration) var(--voce-action-press-easing),
    opacity var(--voce-action-press-out-duration) var(--voce-action-press-easing) !important;
  will-change: transform;
}

.voce-screen.voce-screen-v2 #openLivrePublicPreview {
  border-color: var(--voce-card-action-gray-outline) !important;
}

.voce-screen.voce-screen-v2 #openVoceCuriosity {
  border-color: var(--voce-card-action-pink-outline) !important;
}

.voce-screen.voce-screen-v2 #openLivrePublicPreview:active,
.voce-screen.voce-screen-v2 #openVoceCuriosity:active,
.voce-screen.voce-screen-v2 .voce-mode-dot:active,
.nucleo-screen .voce-mode-dot:active,
.voce-config-screen .voce-mode-dot:active {
  transform: scale(var(--voce-action-press-scale)) !important;
  opacity: 0.92 !important;
  transition-duration: var(--voce-action-press-in-duration) !important;
}

.voce-screen.voce-screen-v2 #openLivrePublicPreview:active {
  border-color: #9f9f9f !important;
}

.voce-screen.voce-screen-v2 #openVoceCuriosity:active {
  border-color: #d978a3 !important;
}

@media (prefers-reduced-motion: reduce) {
  .voce-screen.voce-screen-v2 #openLivrePublicPreview,
  .voce-screen.voce-screen-v2 #openVoceCuriosity,
  .voce-screen.voce-screen-v2 .voce-mode-dot,
  .nucleo-screen .voce-mode-dot,
  .voce-config-screen .voce-mode-dot {
    transition-duration: 0.01ms !important;
  }
}

/* Núcleo: integra a Dock compartilhada no mesmo eixo inferior do padrão global. */
.nucleo-screen .voce-dock.is-nucleo {
  bottom: 0 !important;
}

/* Ajustes cirúrgicos: Vitalidade usa a estrutura aberta do Fantasma em variante clara. */
.nucleo-panel-content.nucleo-panel-vitalidade .nucleo-question-panel,
.nucleo-panel-content.nucleo-panel-intimidade .nucleo-question-panel {
  min-height: min(520px, calc(100dvh - var(--dock-height) - 150px));
  align-content: center;
}

.nucleo-panel-content.nucleo-panel-vitalidade:has(.vitalidade-question-card),
.nucleo-panel-content.nucleo-panel-intimidade:has(.intimidade-question-card) {
  border: 0;
}

.nucleo-panel-vitalidade .vitalidade-question-detail,
.nucleo-panel-intimidade .intimidade-question-detail {
  width: min(680px, 100%);
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.nucleo-panel-vitalidade .vitalidade-question-card,
.nucleo-panel-intimidade .intimidade-question-card {
  width: min(680px, 100%);
  min-height: min(430px, calc(100dvh - var(--dock-height) - 190px));
  margin: 0 auto;
  padding: clamp(28px, 7vw, 54px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(18, 35, 51, 0.24);
  border-radius: var(--voce-card-radius);
  background: #ffffff;
  box-shadow: none;
  color: #000000;
}

.nucleo-panel-vitalidade .vitalidade-question-card strong,
.nucleo-panel-intimidade .intimidade-question-card strong {
  width: min(560px, 100%);
  color: #000000;
  font-size: var(--question-font-size);
  line-height: var(--question-line-height);
  font-weight: 300;
  text-align: center;
}

.nucleo-panel-vitalidade .vitalidade-answer-input,
.nucleo-panel-intimidade .intimidade-answer-input {
  width: min(620px, 100%);
  min-height: 112px;
  resize: none;
  overflow-y: auto;
  padding: 18px 10px 30px;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: #000000;
  font-size: 20px;
  line-height: 1.34;
  font-weight: 200;
  font-style: italic;
  text-align: center;
}

.nucleo-panel-vitalidade .vitalidade-question-card .answer-fixed-tools,
.nucleo-panel-intimidade .intimidade-question-card .answer-fixed-tools {
  position: static !important;
  width: auto;
  transform: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px !important;
}

.nucleo-panel-vitalidade .vitalidade-question-card:not(.is-answering) .answer-fixed-tools,
.nucleo-panel-intimidade .intimidade-question-card:not(.is-answering) .answer-fixed-tools {
  visibility: hidden !important;
  pointer-events: none !important;
}

.nucleo-panel-vitalidade .vitalidade-question-card.is-answering .answer-fixed-tools,
.nucleo-panel-intimidade .intimidade-question-card.is-answering .answer-fixed-tools {
  display: flex !important;
  visibility: visible !important;
}

.nucleo-panel-vitalidade .vitalidade-question-card .answer-fixed-count,
.nucleo-panel-intimidade .intimidade-question-card .answer-fixed-count {
  order: -1;
}

/* Ajustes cirúrgicos: apresentação principal e calendário do Quarto. */
.nucleo-panel-content.nucleo-panel-quarto > h2,
.nucleo-panel-quarto .quarto-main-copy,
.nucleo-panel-quarto .quarto-selected-date,
.nucleo-panel-quarto > .nucleo-reading {
  text-align: center;
}

.nucleo-panel-quarto .quarto-selected-date {
  margin: 10px 0 0;
}

.nucleo-panel-quarto .quarto-calendar-trigger-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 18px 0 24px;
}

.nucleo-panel-quarto .quarto-calendar-trigger {
  margin: 0 auto;
}

.nucleo-panel-content.nucleo-panel-quarto:not(.is-calendar-open) {
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: calc(100dvh - 56px);
  overflow-y: auto;
  box-sizing: border-box;
}

@media (max-width: 720px) {
  .nucleo-panel-content.nucleo-panel-quarto:not(.is-calendar-open) {
    max-height: calc(100dvh - 186px);
  }
}

.nucleo-panel-quarto:not(.is-calendar-open) .question-fixed-answer {
  flex: 0 0 auto;
  overflow-wrap: anywhere;
}

.nucleo-panel-content.nucleo-panel-quarto:not(.is-calendar-open):has(#saveQuarto) .answer-fixed-tools {
  position: static !important;
  flex: 0 0 auto;
  transform: none !important;
  margin: 18px auto 0;
}

.nucleo-panel:has(.nucleo-panel-quarto.is-calendar-open) {
  place-items: center;
  padding:
    max(28px, env(safe-area-inset-top))
    28px
    calc(var(--dock-height) + max(28px, env(safe-area-inset-bottom)));
}

.nucleo-panel-content.nucleo-panel-quarto.is-calendar-open {
  width: min(344px, calc(100vw - 40px));
  height: 480px;
  min-height: 480px;
  max-height: 480px;
  padding: 24px !important;
  display: grid;
  align-content: center;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: var(--voce-card-radius);
}

.nucleo-panel-quarto .quarto-calendar-window {
  width: 100%;
  height: 336px;
  display: grid;
  grid-template-rows: 36px 250px 30px;
  gap: 10px;
}

.nucleo-panel-quarto .quarto-calendar-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 8px;
}

.nucleo-panel-quarto .quarto-calendar-nav,
.nucleo-panel-quarto .quarto-calendar-month {
  min-height: 36px;
  border: 0;
  background: transparent;
  color: #000000;
  font: inherit;
  cursor: pointer;
}

.nucleo-panel-quarto .quarto-calendar-nav {
  font-size: 26px;
  font-weight: 200;
}

.nucleo-panel-quarto .quarto-calendar-nav:disabled {
  opacity: 0.2;
  cursor: default;
}

.nucleo-panel-quarto .quarto-calendar-month {
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.nucleo-panel-quarto .quarto-calendar-body {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.nucleo-panel-quarto .quarto-calendar-days {
  width: 100%;
  height: 250px;
  display: grid;
  grid-template-rows: 12px 230px;
  gap: 8px;
}

.nucleo-panel-quarto .quarto-calendar-weekdays,
.nucleo-panel-quarto .quarto-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  column-gap: 4px;
}

.nucleo-panel-quarto .quarto-calendar-grid {
  height: 230px;
  grid-template-rows: repeat(6, 35px);
  row-gap: 4px;
}

.nucleo-panel-quarto .quarto-calendar-weekdays span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 400;
  text-align: center;
}

.nucleo-panel-quarto .quarto-calendar-spacer,
.nucleo-panel-quarto .quarto-calendar-day {
  width: 100%;
  height: 35px;
}

.nucleo-panel-quarto .quarto-calendar-day {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #000000;
  font: inherit;
  cursor: pointer;
}

.nucleo-panel-quarto .quarto-calendar-day:disabled {
  opacity: 0.2;
  cursor: default;
}

.nucleo-panel-quarto .quarto-calendar-day.is-today {
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nucleo-panel-quarto .quarto-calendar-day.is-selected {
  border-color: rgba(18, 35, 51, 0.52);
}

.nucleo-panel-quarto .quarto-calendar-day span {
  position: relative;
  z-index: 0;
  isolation: isolate;
}

.nucleo-panel-quarto .quarto-calendar-day.has-entry span::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.18em;
  right: -0.2em;
  bottom: 0.08em;
  height: 0.58em;
  background: linear-gradient(96deg, rgba(255, 79, 163, 0.54), rgba(255, 196, 222, 0.78) 54%, rgba(255, 79, 163, 0.5));
  clip-path: polygon(1% 18%, 99% 2%, 97% 84%, 2% 100%);
  transform: rotate(-0.7deg);
  pointer-events: none;
}

.nucleo-panel-quarto .quarto-calendar-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nucleo-panel-quarto .quarto-calendar-today,
.nucleo-panel-quarto .quarto-calendar-period-apply {
  min-width: 54px;
  min-height: 28px;
  border: 1px solid rgba(18, 35, 51, 0.72);
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  padding: 0 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 300;
  cursor: pointer;
}

.nucleo-panel-quarto .quarto-calendar-period-picker {
  width: 100%;
  height: 250px;
  display: grid;
  grid-template-rows: 126px 44px 30px;
  align-content: center;
  gap: 10px;
}

.nucleo-panel-quarto .quarto-calendar-month-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, 38px);
  gap: 6px;
}

.nucleo-panel-quarto .quarto-calendar-month-option {
  min-width: 0;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #000000;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.nucleo-panel-quarto .quarto-calendar-month-option.is-selected {
  border-color: rgba(18, 35, 51, 0.52);
}

.nucleo-panel-quarto .quarto-calendar-month-option:disabled {
  opacity: 0.2;
  cursor: default;
}

.nucleo-panel-quarto .quarto-calendar-year-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #000000;
  font-size: 12px;
}

.nucleo-panel-quarto .quarto-calendar-year-picker select {
  min-width: 96px;
  height: 36px;
  border: 1px solid rgba(18, 35, 51, 0.52);
  border-radius: 10px;
  background: #ffffff;
  color: #000000;
  padding: 0 10px;
  font: inherit;
  font-size: 13px;
}

.nucleo-panel-quarto .quarto-calendar-period-apply {
  justify-self: center;
}

/* Humano ocupa somente a janela acima de Livre e reutiliza a linguagem de Palavras. */
.humano-screen {
  overflow-y: auto;
  background: #ffffff;
  padding: 145px 24px 150px;
  scrollbar-width: none;
}

.humano-screen::-webkit-scrollbar {
  display: none;
}

.humano-weekly-title {
  width: min(680px, calc(100vw - 48px));
  margin-left: auto;
  margin-right: auto;
}

.humano-scroll-fade {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 63;
  height: 44px;
  pointer-events: none;
}

.humano-scroll-fade-top {
  top: 112px;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.humano-scroll-fade-bottom {
  bottom: 43px;
  background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.humano-focus-backdrop {
  position: fixed;
  inset: 0;
  z-index: 65;
  border: 0;
  background: rgba(255, 255, 255, 0.05);
  cursor: default;
}

.humano-list {
  width: min(680px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 34px;
  text-align: center;
}

.humano-question > button {
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  font-size: var(--question-font-size);
  line-height: var(--question-line-height);
  font-weight: 400;
  user-select: none;
  touch-action: pan-y;
}

.humano-question > button:disabled {
  cursor: default;
  opacity: 0.42;
}

.humano-question.is-answered > button {
  color: #000000;
}

.humano-question {
  position: relative;
  gap: 6px;
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform var(--voce-action-press-out-duration, 150ms) var(--voce-action-press-easing, ease-out);
}

.humano-question.is-active {
  z-index: 66;
  width: 100%;
  justify-self: center;
  animation: humano-question-approach var(--voce-action-press-out-duration, 150ms) var(--voce-action-press-easing, ease-out);
}

.humano-question.is-active:active {
  transform: scale(var(--voce-action-press-scale, 0.92));
  transition-duration: var(--voce-action-press-in-duration, 90ms);
}

.humano-question.is-answered:not(.is-active) .question-fixed-answer {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.humano-question.is-active .question-fixed-answer {
  display: block;
  overflow: visible;
}

@keyframes humano-question-approach {
  from { transform: scale(var(--voce-action-press-scale, 0.92)); }
  to { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .humano-question,
  .humano-question.is-active {
    animation: none;
    transition: opacity 180ms ease;
  }
}

.humano-question .question-fixed-answer {
  margin-top: 0;
}

.palavras-screen .question-fixed-answer,
.palavras-screen .palavra-answer-input {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: var(--answer-font-size) !important;
  line-height: var(--answer-line-height) !important;
  font-weight: 200 !important;
  font-style: italic !important;
  letter-spacing: normal;
}

/* Correção tipográfica pontual: respostas iniciais do Coletivo. */
.coletivo-question-answer,
.movimento-item p,
.mundo-reading-list p {
  font-weight: 300 !important;
  font-style: italic !important;
}

.coletivo-question-answer {
  font-size: inherit;
  line-height: inherit;
}

.movimento-screen > .aba-footer-name,
.palavras-screen > .aba-footer-name,
.ritmo-screen > .aba-footer-name,
.humano-screen > .aba-footer-name {
  bottom: calc(0.75vh + 15px) !important;
  padding: 0 !important;
}

.humano-state-message {
  margin: 0;
  color: rgba(0, 0, 0, 0.48);
  font-size: 14px;
  font-weight: 200;
}

[data-respiro-favorite-question] {
  user-select: none;
  touch-action: pan-y;
}

.humano-screen .answer-fixed-tools {
  bottom: 11.5vh !important;
  gap: 4px !important;
}

.humano-screen .answer-fixed-submit {
  min-width: 68px !important;
  min-height: 24px !important;
  padding: 0 12px !important;
}

/* Padrão canônico e restrito de Fixar/Guardar/Salvar: dimensões reais do Fluxo. */
.fluxo-screen .answer-fixed-submit,
.nucleo-panel-vitalidade .answer-fixed-submit,
.nucleo-panel-intimidade .answer-fixed-submit,
.respiro-screen .answer-fixed-submit,
.livre-main-screen .answer-fixed-submit,
.ritmo-screen .answer-fixed-submit,
.nucleo-panel-content.is-ghost-panel .answer-fixed-submit,
.humano-screen .answer-fixed-submit,
.palavras-screen .answer-fixed-submit,
.onboarding-question-screen .answer-fixed-submit,
.voce-feed-edit-content .answer-fixed-submit,
.reading-overlay-content:has(#saveCircularAnswer) .answer-fixed-submit {
  width: 68px !important;
  min-width: 68px !important;
  max-width: 68px !important;
  height: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
  padding: 0 12px !important;
  border: 1px solid rgba(218, 219, 219, 0.85) !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  font-size: 11px !important;
  line-height: normal !important;
  transform-origin: center;
  transition: transform 90ms ease-out;
}

.reading-overlay-content:has(#saveCircularAnswer) .answer-fixed-tools {
  bottom: 11.5vh !important;
  gap: 4px !important;
}

.fluxo-screen .answer-fixed-submit:active:not(:disabled),
.nucleo-panel-vitalidade .answer-fixed-submit:active:not(:disabled),
.nucleo-panel-intimidade .answer-fixed-submit:active:not(:disabled),
.respiro-screen .answer-fixed-submit:active:not(:disabled),
.livre-main-screen .answer-fixed-submit:active:not(:disabled),
.ritmo-screen .answer-fixed-submit:active:not(:disabled),
.nucleo-panel-content.is-ghost-panel .answer-fixed-submit:active:not(:disabled),
.humano-screen .answer-fixed-submit:active:not(:disabled),
.palavras-screen .answer-fixed-submit:active:not(:disabled),
.onboarding-question-screen .answer-fixed-submit:active:not(:disabled),
.voce-feed-edit-content .answer-fixed-submit:active:not(:disabled),
.reading-overlay-content:has(#saveCircularAnswer) .answer-fixed-submit:active:not(:disabled) {
  transform: scale(0.97);
}

.answer-fixed-tools.is-input-conditional {
  visibility: hidden;
  opacity: 0;
  transition: opacity 90ms ease-out, visibility 0s linear 90ms;
}

.answer-fixed-tools.is-input-conditional.is-visible {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.respiro-screen .answer-fixed-count,
.livre-main-screen .answer-fixed-count,
.ritmo-screen .answer-fixed-count,
.nucleo-panel-content.is-ghost-panel .answer-fixed-count,
.humano-screen .answer-fixed-count,
.palavras-screen .answer-fixed-count,
.onboarding-question-screen .answer-fixed-count,
.reading-overlay-content:has(#saveCircularAnswer) .answer-fixed-count,
.nucleo-panel-vitalidade .answer-fixed-count,
.nucleo-panel-intimidade .answer-fixed-count {
  display: block !important;
  min-height: 12px !important;
  font-size: 10px !important;
  line-height: 1 !important;
  order: -1;
}

@media (max-height: 640px) {
  .nucleo-panel-content.nucleo-panel-quarto.is-calendar-open {
    height: 420px;
    min-height: 420px;
    max-height: 420px;
    padding: 18px 12px !important;
  }

  .nucleo-panel-quarto .quarto-calendar-window {
    height: 316px;
    grid-template-rows: 32px 236px 28px;
    gap: 10px;
  }

  .nucleo-panel-quarto .quarto-calendar-body,
  .nucleo-panel-quarto .quarto-calendar-days,
  .nucleo-panel-quarto .quarto-calendar-period-picker {
    height: 236px;
  }

  .nucleo-panel-quarto .quarto-calendar-days {
    grid-template-rows: 12px 218px;
    gap: 6px;
  }

  .nucleo-panel-quarto .quarto-calendar-grid {
    height: 218px;
    grid-template-rows: repeat(6, 33px);
  }

  .nucleo-panel-quarto .quarto-calendar-spacer,
  .nucleo-panel-quarto .quarto-calendar-day {
    height: 33px;
  }

  .nucleo-panel-quarto .quarto-calendar-period-picker {
    grid-template-rows: 114px 42px 28px;
    gap: 8px;
  }

  .nucleo-panel-quarto .quarto-calendar-month-grid {
    grid-template-rows: repeat(3, 34px);
  }

  .nucleo-panel-quarto .quarto-calendar-month-option {
    min-height: 34px;
  }
}

/* Feed Você: edição usa o centro útil e os mesmos tokens de resposta/Guardar do Fluxo. */
.voce-screen.voce-screen-v2 .voce-modal.voce-feed-edit-modal {
  align-items: center;
  place-items: center;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable both-edges;
  padding-block-start: calc(28px + var(--safe-top));
  padding-block-end: calc(28px + var(--dock-height) + var(--safe-bottom));
}

.voce-screen.voce-screen-v2 .voce-feed-edit-content {
  width: min(720px, 100%);
  min-width: 0;
  max-width: 720px;
  margin-block: auto;
  box-sizing: border-box;
  overflow-x: hidden;
}

.voce-screen.voce-screen-v2 .voce-feed-edit-content h2 {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  text-align: center;
}

.voce-screen.voce-screen-v2 .voce-feed-edit-content #voceFeedEditInput {
  display: block;
  width: 100% !important;
  min-width: 0;
  max-width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  word-break: normal;
  resize: none;
  border: 0;
  outline: 0;
  box-shadow: none;
  transform: none;
  color: #000000;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: var(--answer-font-size) !important;
  line-height: var(--answer-line-height) !important;
  font-weight: 200 !important;
  font-style: italic !important;
}

.voce-screen.voce-screen-v2 .voce-feed-edit-content #voceFeedEditInput:focus,
.voce-screen.voce-screen-v2 .voce-feed-edit-content #voceFeedEditInput:focus-visible {
  width: 100% !important;
  max-width: 100%;
  border: 0;
  outline: 0;
  box-shadow: none;
  transform: none;
}

/* Responsive composition: 430px remains the visual reference without becoming a rigid canvas. */
body {
  overflow-x: hidden;
}

.app-shell,
.app-shell.is-immersive {
  width: 100%;
  max-width: 430px;
  min-width: 0;
  min-height: var(--app-height, 100dvh);
  margin-inline: auto;
  position: relative;
  container-type: inline-size;
}

.app-shell.is-immersive {
  display: block;
}

.app-shell.is-immersive .view-root {
  width: 100%;
  min-width: 0;
  min-height: var(--app-height, 100dvh);
  overflow-x: hidden;
}

.app-dock,
.fluxo-dock,
.readings-dock,
.voce-dock,
.coletivo-dock {
  left: max(0px, calc(50% - 215px)) !important;
  right: auto !important;
  width: min(100vw, 430px) !important;
  max-width: 430px !important;
  height: min(7.75dvh, 72.23px) !important;
  padding-inline: min(5.35vw, 23px) !important;
  padding-bottom: min(1.1dvh, 10.25px) !important;
}

.app-dock .dock-button,
.fluxo-dock .dock-button,
.readings-dock .dock-button,
.voce-dock .dock-button,
.coletivo-dock .dock-button {
  inline-size: min(14vw, 60px) !important;
  block-size: min(6.8dvh, 63.38px) !important;
}

.fluxo-header,
.readings-header,
.coletivo-header,
.nucleo-header,
.voce-screen.voce-screen-v2 .voce-header {
  left: max(0px, calc(50% - 215px)) !important;
  right: auto !important;
  width: min(100vw, 430px) !important;
  max-width: 430px !important;
  transform: none !important;
}

.self-question-button {
  right: max(clamp(20px, 5vw, 38px), calc((100vw - 430px) / 2 + 20px));
}

.voce-screen.voce-screen-v2 .voce-mode-dot {
  left: max(18px, calc(50% - 215px + 18px)) !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
}

.voce-screen.voce-screen-v2 .voce-listening {
  left: 26.6938cqw !important;
  top: min(6.1875dvh, 57.66px) !important;
  width: 46.3415cqw !important;
}

.voce-screen.voce-screen-v2 .voce-scroll {
  padding-top: min(8.875dvh, 82.72px) !important;
}

.voce-screen.voce-screen-v2 .voce-profile-card {
  width: 86.8564cqw !important;
  max-width: calc(100% - 24px) !important;
  margin-left: 6.5041cqw !important;
}

.voce-screen.voce-screen-v2 .voce-card-smile {
  top: calc(min(3.3125dvh, 30.87px) - 15px) !important;
  width: min(32.9539cqw, 15.2594dvh) !important;
  height: min(32.9539cqw, 15.2594dvh) !important;
  min-width: min(32.9539cqw, 15.2594dvh) !important;
  min-height: min(32.9539cqw, 15.2594dvh) !important;
  max-width: min(32.9539cqw, 15.2594dvh) !important;
  max-height: min(32.9539cqw, 15.2594dvh) !important;
}

.voce-screen.voce-screen-v2 .voce-card-username {
  left: 13.5501cqw !important;
  top: calc(min(6.1875dvh, 57.66px) + min(32.9539cqw, 15.2594dvh, 142.22px) - 20px) !important;
  width: 60.5691cqw !important;
  min-width: 0 !important;
  max-width: 60.5691cqw !important;
}

.voce-screen.voce-screen-v2 .voce-card-summary {
  left: 6.9106cqw !important;
  top: calc(min(14.6875dvh, 136.89px) + min(32.9539cqw, 15.2594dvh, 142.22px) - 30px) !important;
  width: 72.3577cqw !important;
  min-width: 0 !important;
  max-width: 72.3577cqw !important;
}

.voce-screen.voce-screen-v2 .voce-card-summary .voce-summary-text {
  width: 72.3577cqw !important;
  max-width: 72.3577cqw !important;
}

.voce-screen.voce-screen-v2 .voce-profile-card {
  height: calc(min(32.5dvh, 302.9px) + min(32.9539cqw, 15.2594dvh, 142.22px) - 45px) !important;
  margin-bottom: calc(min(8.1875dvh, 76.31px) - min(16.47695cqw, 7.6297dvh, 71.11px) + 6px) !important;
}

.voce-screen.voce-screen-v2 .voce-card-world-button {
  left: 21.4092cqw !important;
  top: calc(min(27.3125dvh, 254.55px) + min(32.9539cqw, 15.2594dvh, 142.22px) - 40px) !important;
  width: 43.7669cqw !important;
  height: min(3.8125dvh, 35.53px) !important;
  min-width: 0 !important;
  min-height: min(3.8125dvh, 35.53px) !important;
  max-width: 43.7669cqw !important;
  max-height: min(3.8125dvh, 35.53px) !important;
}

.voce-screen.voce-screen-v2 .voce-card-public {
  top: calc(min(28.1875dvh, 262.71px) + min(32.9539cqw, 15.2594dvh, 142.22px) - 40px) !important;
}

.voce-screen.voce-screen-v2 .voce-card-curiosity {
  top: calc(min(29.1875dvh, 272.03px) + min(32.9539cqw, 15.2594dvh, 142.22px) - 48px) !important;
}

.voce-screen.voce-screen-v2 .voce-card-percent {
  left: auto !important;
  right: 13px !important;
}

.humano-scroll-fade,
.palavras-scroll-fade,
.ritmo-scroll-fade {
  left: max(0px, calc(50% - 215px));
  right: auto;
  width: min(100vw, 430px);
}

.livre-clean-textarea {
  width: min(620px, calc(100cqw - 48px));
  max-width: calc(100% - 48px);
}

@media (max-width: 429px) {
  :root {
    --grid-margin: clamp(16px, 5.58vw, 24px);
  }

  .voce-screen.voce-screen-v2 .voce-profile-card {
    max-width: calc(100% - 20px) !important;
  }

  .config-card {
    width: calc(100vw - 60px) !important;
  }

  .config-privacy-row,
  .config-personalization-row {
    width: calc(100% - 32px) !important;
  }

  .config-privacy-row strong,
  .config-privacy-row small {
    width: calc(100% - 58px) !important;
  }

  .config-ghost-button,
  .config-logout-button {
    width: calc(100vw - 54px) !important;
  }
}
