/* La Clau — detail layer based on the supplied identity guide. */

:root {
  --identity-deep: #222622;
  --identity-deep-hover: #171a18;
  --identity-gold: #b8905a;
  --identity-gold-soft: rgba(184, 144, 90, 0.18);
  --identity-surface: rgba(252, 250, 246, 0.98);
  --identity-line: rgba(102, 82, 59, 0.16);
  --identity-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hero facts — rounded, dimensional and quietly animated. */
.hero-facts {
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(238, 226, 208, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(76, 63, 50, 0.34), rgba(38, 35, 30, 0.2)),
    rgba(43, 39, 34, 0.1);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px) saturate(0.86) brightness(0.88);
  -webkit-backdrop-filter: blur(12px) saturate(0.86) brightness(0.88);
}

.hero-facts::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -140% auto -140% -32%;
  width: 22%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  animation: la-clau-fact-sheen 8s var(--identity-ease) infinite;
  pointer-events: none;
}

.hero-fact {
  position: relative;
  border-right-color: rgba(238, 226, 208, 0.16);
  transition:
    transform 260ms var(--identity-ease),
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.hero-fact::after {
  content: "";
  position: absolute;
  right: 24%;
  bottom: 10px;
  left: 24%;
  height: 1px;
  transform: scaleX(0);
  background: linear-gradient(90deg, transparent, #d7b27b, transparent);
  transition: transform 260ms var(--identity-ease);
}

.hero-fact strong {
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.38);
  transition: transform 260ms var(--identity-ease), color 260ms ease;
}

.hero-fact span {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.34);
}

@media (hover: hover) {
  .hero-fact:hover {
    z-index: 1;
    transform: translateY(-4px);
    background: rgba(184, 144, 90, 0.12);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  }

  .hero-fact:hover::after {
    transform: scaleX(1);
  }

  .hero-fact:hover strong {
    transform: translateY(-1px) scale(1.04);
    color: #f6dfbd;
  }
}

@keyframes la-clau-fact-sheen {
  0%, 36% { left: -32%; opacity: 0; }
  44% { opacity: 1; }
  62%, 100% { left: 112%; opacity: 0; }
}

/* Availability panel — compact premium booking card. */
.booking-strip {
  position: relative;
  z-index: 5;
  margin-top: -52px;
  padding: 0 0 clamp(48px, 6vw, 84px);
}

.booking-strip .container {
  width: min(1180px, calc(100% - 40px));
}

.booking-panel {
  display: block;
  max-width: 1160px;
  margin-inline: auto;
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid rgba(184, 144, 90, 0.20);
  border-radius: 18px;
  background: var(--identity-surface);
  box-shadow:
    0 30px 74px rgba(62, 48, 32, 0.14),
    0 3px 10px rgba(62, 48, 32, 0.05);
}

.booking-panel > div:first-child {
  width: 100%;
}

.booking-panel > .hero-actions {
  display: none;
}

.booking-panel .section-label {
  justify-content: center;
  margin-bottom: 10px;
  text-align: center;
}

.booking-panel h2 {
  max-width: 760px;
  margin: 0 auto 10px;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.18;
  text-align: center;
}

.booking-panel .booking-intro {
  max-width: 720px;
  margin: 0 auto 26px;
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: center;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr auto;
  gap: 0;
  width: min(1060px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.booking-panel .booking-field {
  position: relative;
  min-width: 0;
  min-height: 76px;
  padding: 14px 48px 12px 16px;
  border: 1px solid var(--identity-line);
  background: #ffffff;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.booking-panel .booking-field + .booking-field {
  margin-left: -1px;
}

.booking-panel .booking-field:first-child {
  border-radius: 7px 0 0 7px;
}

.booking-panel .booking-field label {
  display: block;
  margin-bottom: 8px;
  color: #756f68;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-panel .booking-field input,
.booking-panel .booking-field select {
  width: 100%;
  min-height: 27px;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
}

.booking-panel .booking-field input:focus,
.booking-panel .booking-field select:focus {
  border: 0;
  box-shadow: none;
}

.booking-panel .booking-field:focus-within {
  z-index: 2;
  border-color: var(--identity-gold);
  background: #fffdfa;
  box-shadow: 0 0 0 3px rgba(184, 144, 90, 0.11);
}

.booking-panel .booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.booking-panel .booking-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.booking-field-icon {
  position: absolute;
  right: 16px;
  bottom: 20px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #9a7950;
  pointer-events: none;
}

.booking-field-icon svg,
.trust-icon svg,
.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-panel .booking-submit {
  min-width: 208px;
  min-height: 76px;
  margin-left: 14px;
  padding-inline: 24px;
  border-color: var(--identity-deep);
  border-radius: 7px;
  background: var(--identity-deep);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(28, 32, 29, 0.17);
  white-space: nowrap;
}

.booking-panel .booking-submit:hover {
  transform: translateY(-2px);
  border-color: var(--identity-deep-hover);
  background: var(--identity-deep-hover);
  box-shadow: 0 18px 34px rgba(28, 32, 29, 0.22);
}

.booking-panel .booking-submit:focus-visible {
  outline: 3px solid rgba(184, 144, 90, 0.45);
  outline-offset: 3px;
}

.booking-status:not(:empty) {
  width: min(1060px, 100%);
  margin: 14px auto 0;
}

.booking-panel .trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(930px, 100%);
  margin: 28px auto 0;
}

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #5f5a54;
}

.trust-icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(184, 144, 90, 0.28);
  border-radius: 50%;
  color: var(--identity-gold);
  background: rgba(184, 144, 90, 0.05);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
}

.trust-copy {
  display: grid;
  gap: 4px;
}

.trust-copy strong {
  color: #4b4742;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.trust-copy small {
  color: #837c74;
  font-size: 0.67rem;
  line-height: 1.35;
}

/* Gold key dividers from the identity guide. */
.key-divider {
  position: relative;
  width: 132px;
  height: 20px;
  margin: 22px auto 34px;
  background: url("icons/la-clau-key.svg") center / 34px 14px no-repeat;
}

.key-divider::before,
.key-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 144, 90, 0.52));
}

.key-divider::before {
  left: 0;
}

.key-divider::after {
  right: 0;
  transform: rotate(180deg);
}

.destination-band .key-divider::before,
.destination-band .key-divider::after {
  background: linear-gradient(90deg, transparent, rgba(215, 178, 123, 0.66));
}

/* Services — six icon-led benefits, matching the guide's rhythm. */
.services-section {
  display: block;
}

.services-heading {
  position: static;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.services-heading .section-label {
  justify-content: center;
}

.services-heading h2 {
  max-width: 760px;
  margin-inline: auto;
}

.services-heading .lead {
  max-width: 720px;
  margin-inline: auto;
}

.services-heading .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid var(--identity-line);
  border-bottom: 1px solid var(--identity-line);
}

.service-row {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 174px;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  align-content: start;
  padding: 34px 28px;
  border: 0;
  border-right: 1px solid var(--identity-line);
  border-bottom: 1px solid var(--identity-line);
  background: rgba(255, 255, 255, 0.18);
  transition:
    transform 260ms var(--identity-ease),
    background 220ms ease,
    box-shadow 260ms ease;
}

.service-row:nth-child(3n) {
  border-right: 0;
}

.service-row:nth-child(n + 4) {
  border-bottom: 0;
}

.service-row .service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(184, 144, 90, 0.48);
  border-radius: 50%;
  color: var(--identity-gold);
  background: rgba(184, 144, 90, 0.04);
  transition: transform 260ms var(--identity-ease), background 220ms ease, color 220ms ease;
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-row strong {
  display: block;
  margin: 2px 0 8px;
  color: var(--ink);
  font-family: var(--heading);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 500;
  line-height: 1.25;
}

.service-row > div > span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

@media (hover: hover) {
  .service-row:hover {
    z-index: 1;
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 20px 42px rgba(62, 48, 32, 0.10);
  }

  .service-row:hover .service-icon {
    transform: rotate(-4deg) scale(1.06);
    background: var(--identity-gold);
    color: #ffffff;
  }
}

@media (max-width: 980px) {
  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .booking-panel .booking-field,
  .booking-panel .booking-field:first-child {
    margin-left: 0;
    border-radius: 7px;
  }

  .booking-panel .booking-submit {
    grid-column: 1 / -1;
    min-height: 58px;
    margin-left: 0;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-row:nth-child(3n) {
    border-right: 1px solid var(--identity-line);
  }

  .service-row:nth-child(2n) {
    border-right: 0;
  }

  .service-row:nth-child(n + 4) {
    border-bottom: 1px solid var(--identity-line);
  }

  .service-row:nth-child(n + 5) {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .hero-facts {
    border-radius: 14px;
  }

  .hero-fact::after {
    display: none;
  }

  .booking-strip {
    margin-top: -26px;
    padding-bottom: 52px;
  }

  .booking-strip .container {
    width: min(100% - 24px, 1180px);
  }

  .booking-panel {
    padding: 24px 16px 22px;
    border-radius: 14px;
  }

  .booking-panel .section-label {
    font-size: 0.6rem;
  }

  .booking-panel h2 {
    font-size: clamp(1.4rem, 7vw, 1.85rem);
  }

  .booking-panel .booking-intro {
    margin-bottom: 20px;
    font-size: 0.82rem;
  }

  .booking-form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .booking-panel .booking-field {
    min-height: 70px;
  }

  .booking-panel .booking-submit {
    grid-column: auto;
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .booking-panel .trust-row {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .trust-item {
    justify-content: flex-start;
    padding-inline: 4px;
  }

  .key-divider {
    margin-top: 18px;
    margin-bottom: 26px;
  }

  .services-heading .hero-actions {
    justify-content: stretch;
  }

  .services-heading .hero-actions .btn {
    flex: 1 1 100%;
  }

  .service-list {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .service-row,
  .service-row:nth-child(2n),
  .service-row:nth-child(3n),
  .service-row:nth-child(n + 4),
  .service-row:nth-child(n + 5) {
    min-height: 0;
    padding: 26px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--identity-line);
  }

  .service-row:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-facts::before {
    animation: none;
  }

  .hero-fact,
  .service-row,
  .service-icon,
  .booking-panel .booking-submit {
    transition: none;
  }
}

/* Apartment catalogue — editorial cards inspired by the supplied guide. */
#apartamentos {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 28%, rgba(184, 144, 90, 0.09), transparent 24rem),
    radial-gradient(circle at 94% 78%, rgba(201, 183, 156, 0.11), transparent 28rem),
    linear-gradient(180deg, rgba(252, 250, 246, 0.9), rgba(246, 242, 236, 0.96));
}

#apartamentos::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -9rem;
  width: 22rem;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 144, 90, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

#apartamentos .container {
  position: relative;
}

#apartamentos .apartments-head {
  display: block;
  max-width: 780px;
  margin: 0 auto clamp(22px, 3vw, 34px);
  border-bottom: 0;
  text-align: center;
}

#apartamentos .section-label {
  justify-content: center;
}

#apartamentos .apartments-head h2 {
  max-width: 720px;
  margin-inline: auto;
}

#apartamentos .apartments-head .lead {
  max-width: 700px;
  margin: 18px auto 0;
  color: #6f675f;
}

#apartamentos > .container > .key-divider {
  margin: 0 auto clamp(32px, 4.5vw, 54px);
}

#apartamentos .apartment-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

#apartamentos .apartment-card-listing {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(102, 82, 59, 0.16);
  border-radius: 10px;
  background: rgba(255, 254, 251, 0.96);
  box-shadow:
    0 18px 46px rgba(65, 49, 32, 0.08),
    0 2px 8px rgba(65, 49, 32, 0.04);
  transform-origin: center bottom;
  transition:
    transform 280ms var(--identity-ease),
    border-color 240ms ease,
    box-shadow 280ms ease;
}

#apartamentos .apartment-card-listing.motion-card::before {
  z-index: 3;
  background: radial-gradient(
    circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
    rgba(215, 178, 125, 0.2),
    transparent 38%
  );
  pointer-events: none;
}

#apartamentos .apartment-card-listing.reveal {
  opacity: 0;
  filter: none;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 520ms ease,
    transform 620ms var(--identity-ease),
    border-color 240ms ease,
    box-shadow 280ms ease;
}

#apartamentos .apartment-card-listing.reveal:nth-child(1) { transition-delay: 40ms; }
#apartamentos .apartment-card-listing.reveal:nth-child(2) { transition-delay: 90ms; }
#apartamentos .apartment-card-listing.reveal:nth-child(3) { transition-delay: 140ms; }

#apartamentos .apartment-card-listing.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#apartamentos .apartment-link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
}

#apartamentos .apartment-card-listing .apartment-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ded4c6;
}

#apartamentos .apartment-card-listing .apartment-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 24, 20, 0.04), transparent 52%),
    linear-gradient(0deg, rgba(34, 28, 22, 0.24), transparent 38%);
  pointer-events: none;
}

#apartamentos .apartment-card-listing .apartment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition:
    transform 650ms var(--identity-ease),
    filter 300ms ease;
}

#apartamentos .apartment-badge {
  top: 18px;
  left: 18px;
  z-index: 2;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(42, 36, 30, 0.48);
  color: #fffdf8;
  box-shadow: 0 8px 20px rgba(24, 20, 16, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#apartamentos .apartment-card-listing .apartment-body {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  align-content: initial;
  gap: 14px;
  padding: clamp(22px, 2.2vw, 30px);
}

#apartamentos .apartment-title-row {
  display: contents;
}

#apartamentos .apartment-title-row h3 {
  order: 0;
  max-width: 100%;
  margin: 0;
  color: #27231f;
  font-size: clamp(1.65rem, 2vw, 2.05rem);
  line-height: 1.02;
  text-wrap: balance;
}

#apartamentos .apartment-card-listing .apartment-body > p {
  order: 1;
  min-height: 3.15em;
  margin: 0;
  color: #6f675f;
  font-size: 0.88rem;
  line-height: 1.58;
}

#apartamentos .apartment-specs {
  order: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(102, 82, 59, 0.14);
}

#apartamentos .apartment-specs .apartment-spec {
  min-width: 0;
  min-height: 64px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 7px;
  padding: 0 10px;
  border: 0;
  border-right: 1px solid rgba(102, 82, 59, 0.12);
  border-radius: 0;
  background: transparent;
  color: #5f574f;
  font-size: 0.64rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

#apartamentos .apartment-specs .apartment-spec:first-child {
  padding-left: 0;
}

#apartamentos .apartment-specs .apartment-spec:last-child {
  padding-right: 0;
  border-right: 0;
}

#apartamentos .apartment-spec svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--identity-gold);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#apartamentos .apartment-card-cta {
  order: 3;
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 2px;
  color: #8b6840;
  font-family: var(--font-montserrat, "Montserrat", sans-serif);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 220ms ease, gap 280ms var(--identity-ease);
}

#apartamentos .apartment-card-cta::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width 280ms var(--identity-ease);
}

#apartamentos .apartment-card-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 280ms var(--identity-ease);
}

#apartamentos .apartment-link:focus-visible {
  outline: 3px solid rgba(184, 144, 90, 0.72);
  outline-offset: -3px;
}

@media (hover: hover) and (pointer: fine) {
  #apartamentos .apartment-card-listing.motion-card.reveal.is-visible:hover {
    transform: translate3d(0, -8px, 0);
    border-color: rgba(184, 144, 90, 0.38);
    box-shadow:
      0 30px 68px rgba(65, 49, 32, 0.15),
      0 4px 12px rgba(65, 49, 32, 0.06);
  }

  #apartamentos .apartment-card-listing:hover .apartment-media img {
    transform: scale(1.055);
    filter: saturate(1.03) contrast(1.02);
  }

  #apartamentos .apartment-card-listing:hover .apartment-card-cta {
    gap: 12px;
    color: #5f452b;
  }

  #apartamentos .apartment-card-listing:hover .apartment-card-cta::before {
    width: 30px;
  }

  #apartamentos .apartment-card-listing:hover .apartment-card-cta svg {
    transform: translateX(3px);
  }
}

@media (min-width: 720px) and (max-width: 1023px) {
  #apartamentos .apartment-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #apartamentos .apartment-card-listing:last-child {
    grid-column: 1 / -1;
  }

  #apartamentos .apartment-card-listing:last-child .apartment-link {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  #apartamentos .apartment-card-listing:last-child .apartment-media {
    min-height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 719px) {
  #apartamentos::before {
    display: none;
  }

  #apartamentos .apartments-head {
    margin-bottom: 18px;
  }

  #apartamentos .apartments-head .lead {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  #apartamentos > .container > .key-divider {
    margin-bottom: 30px;
  }

  #apartamentos .apartment-catalog {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #apartamentos .apartment-card-listing .apartment-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  #apartamentos .apartment-card-listing .apartment-body {
    gap: 12px;
    padding: 22px 20px 18px;
  }

  #apartamentos .apartment-title-row h3 {
    font-size: clamp(1.62rem, 7.7vw, 2rem);
  }

  #apartamentos .apartment-card-listing .apartment-body > p {
    min-height: 0;
  }

  #apartamentos .apartment-specs {
    padding-top: 14px;
  }

  #apartamentos .apartment-specs .apartment-spec {
    min-height: 58px;
    padding-inline: 8px;
    font-size: 0.61rem;
  }

  #apartamentos .apartment-spec svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #apartamentos .apartment-card-listing,
  #apartamentos .apartment-card-listing.reveal,
  #apartamentos .apartment-card-listing.reveal.is-visible,
  #apartamentos .apartment-card-listing .apartment-media img,
  #apartamentos .apartment-card-cta,
  #apartamentos .apartment-card-cta::before,
  #apartamentos .apartment-card-cta svg {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
