:root {
  --orange: #fd4c01;
  --orange-dark: #d94800;
  --ink: #090909;
  --white: #f8f7f4;
  --paper: #edeae4;
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Archivo", Arial, sans-serif;
  --hero-height: min(74.3vw, 1080px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: var(--body);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: var(--hero-height);
  display: grid;
  grid-template-columns: 29.2% 42.6% 28.2%;
  background: var(--ink);
}

.hero__message,
.unit-panel,
.hero__photo {
  min-width: 0;
  min-height: var(--hero-height);
}

.hero__message {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 2.8vw, 40px) clamp(22px, 3vw, 44px) 24px;
  background: var(--ink);
}

.site-header {
  height: clamp(48px, 6vw, 70px);
}

.brand {
  display: block;
  width: min(16.9vw, 243px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__copy {
  margin-top: clamp(16px, 1.5vw, 22px);
}

.hero h1 {
  max-width: 4.05ch;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(5.2rem, 11.25vw, 10rem);
  font-weight: 400;
  line-height: 0.81;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 .accent {
  color: var(--orange);
}

.hero__copy p {
  margin: clamp(18px, 2.2vw, 30px) 0 18px;
  color: #e5e2dd;
  font-size: clamp(0.85rem, 1.15vw, 1.05rem);
  line-height: 1.45;
}

.hero__copy p strong {
  color: var(--orange);
  font-weight: 600;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--orange);
  font-size: 1.4rem;
}

.hero__photo {
  position: relative;
  overflow: hidden;
  background: #151515;
}

.hero__photo::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 18px 0 28px rgba(0, 0, 0, 0.12), inset -18px 0 28px rgba(0, 0, 0, 0.1);
}

.hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.unit-panel {
  position: relative;
  z-index: 2;
  color: var(--ink);
  background: var(--orange);
}

.menu-button {
  position: absolute;
  z-index: 6;
  top: clamp(24px, 3vw, 42px);
  right: clamp(24px, 3vw, 44px);
  width: 48px;
  height: 48px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 8px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 100%;
  height: 3px;
  display: block;
  background: currentColor;
}

.unit-panel__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: min(17.8vw, 256px) min(3.3vw, 48px) min(13vw, 188px);
}

.unit-panel h2 {
  max-width: none;
  margin: 0 0 clamp(24px, 3vw, 38px);
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.2vw, 4rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.unit-list {
  border-top: 2px solid rgba(9, 9, 9, 0.84);
}

.unit-option {
  min-height: min(12.7vw, 183px);
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(9, 9, 9, 0.28);
  text-decoration: none;
}

.unit-option svg {
  width: 32px;
  fill: currentColor;
}

.unit-option strong,
.unit-option small {
  display: block;
  text-transform: uppercase;
}

.unit-option strong {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.3vw, 2.2rem);
  font-weight: 400;
  line-height: 0.88;
}

.unit-option small {
  margin-top: 5px;
  font-size: clamp(0.6rem, 0.75vw, 0.72rem);
  font-weight: 700;
}

.unit-option b {
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.unit-option:hover b {
  transform: translateX(6px);
}

.primary-button {
  min-height: min(6.25vw, 90px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 0;
  padding: 0 clamp(20px, 2vw, 30px);
  color: #fff;
  background: var(--ink);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.primary-button:hover {
  color: var(--ink);
  background: #fff;
}

.primary-button span {
  font-size: 1.5rem;
}

.motion-strip {
  position: relative;
  z-index: 5;
  height: clamp(44px, 4.8vw, 58px);
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.15vw, 2rem);
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.motion-strip__track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
  padding-inline: 28px;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}

.motion-strip__track span:nth-of-type(4n + 2),
.motion-strip__track span:nth-of-type(4n + 4) {
  color: var(--orange);
}

.motion-strip__track i {
  font-family: var(--body);
  font-size: 1rem;
  font-style: normal;
}

.modalities {
  position: relative;
  color: #fff;
  background: var(--ink);
}

.modalities__hint {
  display: none;
}

.modalities__viewport {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: #0b0b0b;
}

.modalities__track {
  width: calc(100% + 70px);
  height: clamp(360px, 32vw, 520px);
  margin-inline: -35px;
  display: flex;
  overflow: hidden;
  background: #0b0b0b;
}

.modality {
  position: relative;
  min-width: 0;
  flex: 1 1 16.666%;
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.88);
  background: #111;
  transform: skewX(-8deg);
}

.modality:last-child {
  border-right: 0;
}

.modality::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
}

.modality img {
  position: absolute;
  width: calc(100% + 120px);
  max-width: none;
  height: 112%;
  left: -60px;
  top: -6%;
  display: block;
  object-fit: cover;
  object-position: center 38%;
  transform: skewX(8deg) scale(1.04);
}

.modality--cross img {
  object-position: 50% 44%;
}

.modality--funcional img {
  object-position: 52% 45%;
}

.modality--pilates img {
  object-position: 48% 42%;
}

.modality--aeroboxe img {
  object-position: 50% 35%;
}

.modality--zumba img {
  object-position: 49% 38%;
}

.modality h3 {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(24px, 3vw, 46px);
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%) skewX(8deg);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

.modality h3::after {
  content: "";
  width: 34px;
  height: 4px;
  display: block;
  margin: 10px auto 0;
  background: var(--orange);
}

.eyebrow {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.authentic-story {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(340px, 42%) 1fr;
  color: var(--ink);
  background: var(--paper);
}

.authentic-story__photo {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  background: #191919;
}

.authentic-story__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
}

.authentic-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 110px);
}

.authentic-story h2,
.contact h2 {
  max-width: 12ch;
  margin: 20px 0 28px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.4vw, 5.35rem);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.contact h2 {
  font-size: clamp(3.2rem, 6.2vw, 6rem);
  line-height: 0.92;
}

.authentic-story__copy > p {
  max-width: 52ch;
  margin: 0;
  color: #494642;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.7;
}

.authentic-story .eyebrow {
  color: #a93600;
}

.authentic-story ul {
  display: grid;
  gap: 12px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.authentic-story li::before {
  content: "—";
  margin-right: 12px;
  color: var(--orange);
}

.authentic-story .text-link {
  margin-top: 8px;
}

.locations {
  color: #fff;
  background: var(--ink);
}

.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #353535;
  border-bottom: 1px solid #353535;
}

.location {
  position: relative;
  min-height: clamp(360px, 29.5vw, 440px);
  display: grid;
  grid-template-columns: 1fr 52%;
  overflow: hidden;
}

.location[id] {
  scroll-margin-top: 72px;
}

.location:first-child {
  border-right: 1px solid #353535;
}

.location__copy {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 2.5vw, 38px) clamp(24px, 2.8vw, 40px);
  background: #080808;
}

.location__label {
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.location h3 {
  margin: 16px 0 20px;
  font-family: var(--display);
  font-size: clamp(3rem, 4.25vw, 4rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.location address {
  color: var(--soft-copy, #e5e2dd);
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-style: normal;
  line-height: 1.65;
}

.location__actions {
  display: grid;
  gap: 12px;
  margin-top: clamp(18px, 2vw, 28px);
}

.location__actions a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.location img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.location--morumbi img {
  object-position: 68% center;
}

.hours {
  min-height: 150px;
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(560px, 1.8fr);
  align-items: center;
  gap: 40px;
  padding: 30px clamp(28px, 5vw, 74px);
}

.hours__title {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--orange);
}

.hours__title svg {
  width: 52px;
  flex: 0 0 auto;
  fill: currentColor;
}

.hours h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.hours dl {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.65fr;
  margin: 0;
}

.hours dl div {
  padding: 4px 30px;
  border-left: 1px solid var(--orange);
}

.hours dt {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hours dd {
  margin: 6px 0 0;
  color: var(--soft-copy, #e5e2dd);
  font-size: 0.85rem;
}

.hours__note {
  grid-column: 2;
  margin: -24px 0 0 30px;
  color: var(--muted, #aba7a0);
  font-size: 0.68rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(560px, 1.15fr);
  gap: clamp(48px, 7vw, 110px);
  padding: clamp(64px, 8vw, 120px) clamp(28px, 6vw, 90px);
  color: #fff;
  background: var(--ink);
  border-top: 1px solid #2e2e2e;
}

.contact__intro p {
  max-width: 40ch;
  color: #c7c3bc;
  line-height: 1.7;
}

.contact__units {
  align-self: center;
  border-top: 1px solid #343434;
}

.contact-card {
  padding: 30px 0;
  border-bottom: 1px solid #343434;
}

.contact-card > span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 12px 0 22px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
}

.contact-card__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-card__actions a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid #3b3b3b;
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-card__actions a:first-child {
  color: var(--ink);
  border-color: var(--orange);
  background: var(--orange);
}

.contact-card__actions a:hover,
.contact-card__actions a:focus-visible {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}

/* Símbolos de canal: WhatsApp nos botões e e-mail/Instagram/Facebook no rodapé. */
.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.site-footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px 50px;
  padding: 34px clamp(28px, 6vw, 90px);
  color: #fff;
  background: #050505;
  border-top: 1px solid #282828;
}

.site-footer__brand {
  width: min(260px, 55vw);
}

.site-footer__brand img {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 26px;
}

.site-footer__links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: #a6a29b;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  padding: 80px clamp(28px, 7vw, 100px);
  color: #fff;
  background: var(--ink);
}

.mobile-menu:not([hidden]) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.mobile-menu a {
  width: fit-content;
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu a:hover {
  color: var(--orange);
}

.mobile-menu a:last-of-type {
  color: var(--orange);
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 52px;
  height: 52px;
  border: 0;
  color: #fff;
  background: transparent;
  font: 400 3rem/1 var(--body);
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  :root {
    --hero-height: auto;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
  }

  .menu-button {
    color: var(--ink);
    background: var(--orange);
  }

  .hero__message {
    min-height: 720px;
    padding: 28px clamp(24px, 5vw, 48px) 42px;
  }

  .hero__photo {
    min-height: 720px;
  }

  .unit-panel {
    min-height: 560px;
    grid-column: 1 / -1;
  }

  .unit-panel__content {
    padding: 80px clamp(28px, 7vw, 70px) 56px;
  }

  .unit-panel h2 {
    max-width: none;
    font-size: clamp(3.5rem, 9vw, 6rem);
  }

  .unit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .unit-option:first-child {
    border-right: 1px solid rgba(9, 9, 9, 0.28);
    padding-right: 28px;
  }

  .unit-option:last-child {
    padding-left: 28px;
  }

  .primary-button {
    width: min(360px, 100%);
    margin-top: 42px;
  }

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

  .authentic-story {
    grid-template-columns: 1fr 1fr;
  }

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

  .location:first-child {
    border-right: 0;
    border-bottom: 1px solid #353535;
  }

  .hours {
    grid-template-columns: 1fr;
    padding-block: 46px;
  }

  .hours__note {
    grid-column: 1;
    margin: 0;
  }
}

@media (max-width: 620px) {
  .motion-strip,
  .modalities {
    max-width: 100vw;
    overflow: hidden;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero__message {
    min-height: 590px;
    padding-top: 26px;
  }

  .site-header {
    height: auto;
  }

  .brand {
    width: 205px;
  }

  .hero__copy {
    margin-top: 42px;
  }

  .hero h1 {
    font-size: clamp(5.2rem, 25vw, 7.4rem);
  }

  .hero__copy p {
    max-width: 28ch;
    font-size: 0.92rem;
  }

  .hero__photo {
    order: 3;
    min-height: 0;
    aspect-ratio: 4 / 4.6;
  }

  .unit-panel {
    order: 2;
    min-height: 430px;
  }

  .menu-button {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    color: var(--ink);
    background: var(--orange);
    box-shadow: 8px 8px 0 rgba(9, 9, 9, 0.92);
  }

  .unit-panel__content {
    padding: 48px 24px 26px;
  }

  .unit-panel h2 {
    margin-bottom: 20px;
    font-size: clamp(3.35rem, 15vw, 4.6rem);
  }

  .unit-list {
    display: block;
  }

  .unit-option:first-child,
  .unit-option:last-child {
    border-right: 0;
    padding: 0;
  }

  .unit-option {
    grid-template-columns: 30px minmax(0, 1fr) minmax(64px, auto);
    gap: 12px;
  }

  .unit-option b {
    width: auto;
    max-width: 72px;
    white-space: normal;
  }

  .primary-button {
    min-height: 62px;
    margin-top: 22px;
  }

  .modalities__viewport {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--orange) #1a1a1a;
  }

  .modalities__hint {
    min-height: 48px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 24px;
    color: #f0ede7;
    background: #0b0b0b;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .modalities__track {
    width: 1520px;
    height: min(94vw, 390px);
    min-height: 330px;
    margin-inline: -24px;
  }

  .modality {
    flex: 0 0 246px;
    scroll-snap-align: start;
  }

  .modality img {
    width: calc(100% + 100px);
    left: -50px;
  }

  .modality h3 {
    bottom: 28px;
    font-size: 1.65rem;
  }

  .authentic-story {
    display: flex;
    flex-direction: column;
  }

  .authentic-story__photo {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .authentic-story__copy {
    padding: 56px 24px 64px;
  }

  .authentic-story h2,
  .contact h2 {
    font-size: clamp(3.5rem, 15vw, 5rem);
  }

  .location {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .location__copy {
    min-height: 430px;
    padding: 42px 24px;
  }

  .location h3 {
    font-size: 4.7rem;
  }

  .location img {
    height: auto;
    aspect-ratio: 1 / 0.92;
  }

  .hours {
    display: block;
    padding: 52px 24px;
  }

  .hours dl {
    display: block;
    margin-top: 38px;
  }

  .hours dl div {
    padding: 18px 0;
    border-top: 1px solid #333;
    border-left: 0;
  }

  .hours__note {
    margin-top: 26px;
  }

  .contact {
    display: block;
    padding: 64px 24px;
  }

  .contact__units {
    margin-top: 48px;
  }

  .contact-card__actions {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
    padding: 42px 24px;
  }

  .site-footer__links {
    display: grid;
    justify-content: start;
    margin: 34px 0;
  }

  .site-footer__links a {
    min-height: 48px;
  }
}

/* ==========================================================================
   Páginas de unidade (/unidade-morumbi/ e /unidade-jardim-america/)
   Reaproveitam os componentes da home; nada acima desta linha foi alterado.
   ========================================================================== */

.unit-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  flex-wrap: wrap;
  padding: 20px clamp(24px, 6vw, 90px);
  background: var(--ink);
  border-bottom: 1px solid #282828;
}

.unit-topbar .brand {
  width: min(205px, 46vw);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 10px;
  color: var(--orange);
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb [aria-current="page"] {
  color: #a6a29b;
}

.unit-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 46%);
  color: #fff;
  background: var(--ink);
}

.unit-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px) clamp(24px, 6vw, 90px);
}

.unit-hero h1 {
  margin: 18px 0 26px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.unit-hero h1 .accent {
  color: var(--orange);
}

.unit-hero address {
  margin: 0 0 8px;
  color: #e5e2dd;
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  font-style: normal;
  line-height: 1.65;
}

.unit-hero__lede {
  max-width: 46ch;
  margin: 0 0 30px;
  color: #c7c3bc;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
}

.unit-hero .contact-card__actions {
  grid-template-columns: 1fr 1fr;
}

.unit-hero .contact-card__actions a:first-child {
  grid-column: 1 / -1;
}

.unit-hero__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #151515;
}

.unit-hero__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.unit-hero__photo--morumbi img {
  object-position: 68% center;
}

.unit-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 5vw, 90px);
  padding: clamp(56px, 7vw, 100px) clamp(24px, 6vw, 90px);
  color: var(--ink);
  background: var(--paper);
}

.unit-facts h2 {
  margin: 14px 0 26px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.unit-facts .eyebrow {
  color: #a93600;
}

.unit-facts dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.unit-facts dt {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.unit-facts dd {
  margin: 6px 0 0;
  color: #494642;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.6;
}

.unit-facts dd a {
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

.unit-facts ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.unit-facts li::before {
  content: "—";
  margin-right: 12px;
  color: var(--orange);
}

.unit-facts__note {
  max-width: 46ch;
  margin: 0;
  color: #494642;
  font-size: 0.92rem;
  line-height: 1.65;
}

.unit-next {
  padding: clamp(48px, 6vw, 90px) clamp(24px, 6vw, 90px);
  color: var(--ink);
  background: var(--orange);
}

.unit-next h2 {
  max-width: 18ch;
  margin: 0 0 clamp(24px, 3vw, 38px);
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.unit-next .unit-list {
  max-width: 760px;
}

.unit-next .unit-option {
  min-height: 108px;
  grid-template-columns: 34px 1fr auto;
}

.unit-next .unit-option b {
  white-space: nowrap;
}

.unit-next .text-link {
  margin-top: 26px;
}

.unit-next .text-link span {
  color: var(--ink);
}

@media (max-width: 980px) {
  .unit-hero {
    grid-template-columns: 1fr;
  }

  .unit-hero__photo {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 620px) {
  .unit-topbar {
    padding: 18px 24px;
  }

  .unit-hero h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .unit-hero__photo {
    aspect-ratio: 4 / 3;
  }

  .unit-hero .contact-card__actions {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Aviso de cookies analíticos — sobreposto, nunca empurra o layout.
   Fica abaixo do menu mobile (z-index 90) e do skip-link (z-index 100).
   ========================================================================== */

/* Card no canto inferior esquerdo: deixa livre o painel laranja de unidades
   e o CTA "Falar com a equipe", que ficam à direita do hero. */
.consent {
  position: fixed;
  z-index: 80;
  left: clamp(20px, 2.5vw, 40px);
  right: auto;
  bottom: clamp(20px, 2.5vw, 36px);
  width: min(520px, 46vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px 22px;
  color: #fff;
  background: #0b0b0b;
  border: 1px solid #2e2e2e;
  border-top: 2px solid var(--orange);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Sem isto o [hidden] perde para o display:flex acima. */
.consent[hidden] {
  display: none;
}

.consent--visible {
  opacity: 1;
  transform: none;
}

.consent h2 {
  margin: 0 0 5px;
  color: var(--orange);
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consent p {
  max-width: 74ch;
  margin: 0;
  color: #c7c3bc;
  font-size: 0.82rem;
  line-height: 1.55;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.consent button {
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid #3b3b3b;
  color: #fff;
  background: transparent;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.consent button[data-consent="accept"] {
  color: var(--ink);
  border-color: var(--orange);
  background: var(--orange);
}

.consent button:hover,
.consent button:focus-visible {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}

/* Abaixo de 980px o hero empilha e nada crítico fica no rodapé da viewport:
   o aviso vira barra colada na base, mais previsível no toque. */
@media (max-width: 980px) {
  .consent {
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    padding: 16px clamp(24px, 5vw, 48px) 20px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    box-shadow: none;
  }
}

@media (max-width: 620px) {
  .consent__actions {
    width: 100%;
  }

  .consent__actions button {
    flex: 1 1 0;
  }
}

/* ==========================================================================
   Página de privacidade e cookies (/privacidade/)
   Reaproveita topbar, breadcrumb, ticker e rodapé das páginas de unidade.
   ========================================================================== */

.legal-hero {
  padding: clamp(48px, 6vw, 92px) clamp(24px, 6vw, 90px);
  color: #fff;
  background: var(--ink);
}

.legal-hero h1 {
  max-width: 16ch;
  margin: 18px 0 26px;
  font-family: var(--display);
  font-size: clamp(3rem, 5.4vw, 5rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.legal-hero h1 .accent {
  color: var(--orange);
}

.legal-hero__lede {
  max-width: 62ch;
  margin: 0;
  color: #c7c3bc;
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.7;
}

.legal-hero__lede strong {
  color: #fff;
  font-weight: 600;
}

.legal-hero__date {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid #2e2e2e;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal {
  padding: clamp(56px, 7vw, 100px) clamp(24px, 6vw, 90px);
  color: var(--ink);
  background: var(--paper);
}

.legal__inner {
  max-width: 76ch;
}

.legal__block + .legal__block {
  margin-top: clamp(40px, 4.5vw, 64px);
  padding-top: clamp(36px, 4vw, 56px);
  border-top: 1px solid #d8d4cd;
}

.legal h2 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.legal h2 b {
  flex: 0 0 auto;
  color: var(--orange);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.legal p {
  margin: 0 0 16px;
  color: #494642;
  font-size: clamp(0.95rem, 1.05vw, 1.02rem);
  line-height: 1.75;
}

.legal p:last-child {
  margin-bottom: 0;
}

.legal strong {
  color: var(--ink);
  font-weight: 600;
}

.legal a {
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

.legal ul {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.legal li {
  position: relative;
  padding-left: 28px;
  color: #494642;
  font-size: clamp(0.95rem, 1.05vw, 1.02rem);
  line-height: 1.7;
}

.legal li::before {
  position: absolute;
  left: 0;
  content: "—";
  color: var(--orange);
}

.legal__status {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-left: 2px solid var(--orange);
  background: #e4e0d9;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
}

.legal__manage {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 26px;
  border: 0;
  color: #fff;
  background: var(--ink);
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.legal__manage:hover,
.legal__manage:focus-visible {
  color: var(--ink);
  background: var(--orange);
}

.legal__manage span {
  font-size: 1.1rem;
}

.legal__note {
  margin-top: 18px;
  color: #6b6660;
  font-size: 0.85rem;
  line-height: 1.65;
}

/* Link "Saiba mais" dentro do aviso de cookies. */
.consent p a {
  color: #fff;
  font-weight: 700;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
  white-space: nowrap;
}

.consent p a:hover,
.consent p a:focus-visible {
  color: var(--orange);
}

@media (max-width: 620px) {
  .legal-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-strip__track {
    animation: none;
  }
}
