/* Vacante Cero — sistema visual */

:root {
  --bone: #fdfaf6;
  --bone-2: #f6efe6;
  --bone-3: #ede2d4;
  --ink: #17110c;
  --ink-2: #4a3f36;
  --ink-3: #8a7b6d;
  --flame: #e8562a;
  --flame-deep: #b53d17;
  --flame-soft: #fbe6dc;
  --line: rgba(23, 17, 12, 0.09);

  --shell: 1180px;
  --r-lg: 2rem;
  --r-md: 1.25rem;
  --r-sm: 0.75rem;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  background: var(--bone);
  color: var(--ink);
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Bricolage Grotesque", "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--flame);
  color: #fff;
}

/* ---------- estructura ---------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

section {
  padding-block: clamp(4.5rem, 11vw, 8.5rem);
  position: relative;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flame-deep);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 1rem 0 auto;
  z-index: 60;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 3vw, 2rem);
  background: rgba(253, 250, 246, 0.94);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.35rem;
  box-shadow: 0 10px 30px -18px rgba(23, 17, 12, 0.4);
  max-width: calc(100vw - 2rem);
}

.brand {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand em {
  font-style: normal;
  color: var(--flame);
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-2);
}

.nav__links a {
  transition: color 0.3s var(--ease);
}

.nav__links a:hover {
  color: var(--flame);
}

/* ---------- botones ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.7rem 0.7rem 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
    box-shadow 0.4s var(--ease), color 0.4s var(--ease);
}

.btn:active {
  transform: scale(0.975);
}

.btn__ico {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  transition: transform 0.5s var(--ease-out), background 0.4s var(--ease);
  flex: none;
}

.btn__ico svg {
  width: 0.95rem;
  height: 0.95rem;
}

.btn--flame {
  background: var(--flame);
  color: #fff;
  box-shadow: 0 12px 28px -14px rgba(232, 86, 42, 0.9);
}

.btn--flame:hover {
  background: var(--flame-deep);
  box-shadow: 0 18px 34px -14px rgba(181, 61, 23, 0.85);
}

.btn--flame:hover .btn__ico {
  transform: translate(3px, -3px) scale(1.08);
  background: rgba(255, 255, 255, 0.32);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--ghost .btn__ico {
  background: rgba(23, 17, 12, 0.06);
}

.btn--ghost:hover {
  background: rgba(23, 17, 12, 0.04);
}

.btn--ghost:hover .btn__ico {
  transform: translate(3px, -3px) scale(1.08);
}

.btn--sm {
  font-size: 0.875rem;
  padding: 0.5rem 0.5rem 0.5rem 1.1rem;
}

.btn--sm .btn__ico {
  width: 1.6rem;
  height: 1.6rem;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--flame);
  outline-offset: 3px;
  border-radius: 999px;
}

/* ---------- hero ---------- */

.hero {
  padding-top: clamp(7.5rem, 16vw, 11rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -28%;
  right: -12%;
  width: min(58rem, 90vw);
  aspect-ratio: 1;
  background: radial-gradient(
    circle at center,
    rgba(232, 86, 42, 0.13),
    rgba(232, 86, 42, 0) 62%
  );
  pointer-events: none;
  z-index: 0;
}

.hero .shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(3rem, 6vw, 4.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}

.hero__title {
  font-size: clamp(2.65rem, 7.4vw, 5.15rem);
}

.hero__title span {
  color: var(--flame);
  display: block;
}

.hero__sub {
  margin-top: 1.75rem;
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  color: var(--ink-2);
  max-width: 34rem;
}

.hero__cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.6rem;
  font-size: 0.9rem;
  color: var(--ink-3);
}

.hero__trust span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__trust svg {
  width: 1rem;
  height: 1rem;
  color: var(--flame);
  flex: none;
}

/* tarjeta apilada del hero */
.stack {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 27rem;
  width: 100%;
  margin-inline: auto;
}

.stack__card {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bone-3);
  box-shadow: 0 30px 60px -30px rgba(23, 17, 12, 0.45);
}

.stack__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack__card--back {
  transform: rotate(-5deg) translate(-4%, 2%) scale(0.94);
  filter: saturate(0.7) brightness(1.02);
  opacity: 0.75;
}

.stack__card--mid {
  transform: rotate(3.5deg) translate(3%, -1%) scale(0.97);
  opacity: 0.9;
}

.stack__badge {
  position: absolute;
  z-index: 3;
  left: -0.75rem;
  bottom: 1.75rem;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.9rem 1.15rem;
  box-shadow: 0 20px 40px -22px rgba(23, 17, 12, 0.5);
}

.stack__badge b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  display: block;
}

.stack__badge small {
  font-size: 0.75rem;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- bandas ---------- */

.band {
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.band h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  max-width: 22ch;
}

.band .eyebrow {
  color: var(--flame);
}

.band p {
  color: rgba(253, 250, 246, 0.66);
  max-width: 46ch;
  margin-top: 1.5rem;
}

.band__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-top: 3.5rem;
}

.band__stat b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--flame);
  letter-spacing: -0.04em;
  display: block;
  line-height: 1;
}

.band__stat p {
  margin-top: 0.85rem;
  font-size: 0.98rem;
}

/* ---------- pasos ---------- */

.head {
  max-width: 46rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.head h2 {
  font-size: clamp(2rem, 5vw, 3.35rem);
}

.head p {
  margin-top: 1.35rem;
  color: var(--ink-2);
  font-size: 1.08rem;
  max-width: 40rem;
}

.steps {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.step {
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 44px -30px rgba(23, 17, 12, 0.45);
}

.step__n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--flame-deep);
  background: rgba(232, 86, 42, 0.12);
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.step p {
  color: var(--ink-2);
  font-size: 0.99rem;
}

/* ---------- propiedades ---------- */

.props {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.prop {
  display: block;
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0.5rem;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.prop:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 55px -32px rgba(23, 17, 12, 0.5);
}

.prop__media {
  position: relative;
  border-radius: calc(var(--r-lg) - 0.4rem);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  background: var(--bone-3);
}

.prop__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transition: transform 0.9s var(--ease-out);
}

.prop:hover .prop__media img {
  transform: scale(1.05);
}

.tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(253, 250, 246, 0.93);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tag::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #24a148;
  box-shadow: 0 0 0 3px rgba(36, 161, 72, 0.2);
}

.prop__body {
  padding: 1.5rem 1.15rem 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.prop__body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.prop__meta {
  color: var(--ink-3);
  font-size: 0.92rem;
}

.prop__price {
  text-align: right;
  flex: none;
}

.prop__price b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  display: block;
  line-height: 1.1;
}

.prop__price small {
  font-size: 0.78rem;
  color: var(--ink-3);
}

.prop--soon {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1.75rem;
  border-style: dashed;
  border-color: rgba(23, 17, 12, 0.16);
  background: transparent;
  min-height: 18rem;
}

.prop--soon:hover {
  transform: none;
  box-shadow: none;
}

.prop--soon h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.prop--soon p {
  color: var(--ink-3);
  font-size: 0.95rem;
  max-width: 24ch;
  margin-inline: auto;
}

/* ---------- precio / oferta ---------- */

.offer {
  background: var(--flame-soft);
  border: 1px solid rgba(232, 86, 42, 0.22);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.offer h2 {
  font-size: clamp(1.85rem, 4.4vw, 2.9rem);
}

.offer p {
  margin-top: 1.25rem;
  color: var(--ink-2);
}

.offer__price {
  background: var(--bone);
  border-radius: var(--r-md);
  padding: 1.85rem;
  border: 1px solid rgba(232, 86, 42, 0.18);
}

.offer__price b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 2.9rem);
  letter-spacing: -0.04em;
  display: block;
  line-height: 1;
  color: var(--flame-deep);
}

.offer__price small {
  display: block;
  margin-top: 0.7rem;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.offer__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  font-size: 0.95rem;
}

.offer__list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--ink-2);
}

.offer__list svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--flame);
  flex: none;
  margin-top: 0.24rem;
}

/* ---------- faq ---------- */

.faq {
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
  padding-block: 1.5rem;
}

.faq__item h3 {
  font-size: 1.13rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.faq__item p {
  color: var(--ink-2);
  font-size: 0.99rem;
  max-width: 60ch;
}

/* ---------- footer ---------- */

.foot {
  background: var(--ink);
  color: rgba(253, 250, 246, 0.55);
  padding-block: 3.5rem 6.5rem;
  font-size: 0.9rem;
}

.foot .brand {
  color: var(--bone);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.foot a:hover {
  color: var(--flame);
}

.foot__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-end;
}

/* ---------- whatsapp flotante ---------- */

.wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #1fab53;
  color: #fff;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 16px 34px -14px rgba(31, 171, 83, 0.75);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.wa:hover {
  background: #179144;
  transform: translateY(-2px);
}

.wa:active {
  transform: scale(0.97);
}

.wa svg {
  width: 1.3rem;
  height: 1.3rem;
  flex: none;
}

/* ---------- ficha de propiedad ---------- */

.sheet {
  padding-top: clamp(6.5rem, 14vw, 9rem);
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-3);
  margin-bottom: 2rem;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}

.back:hover {
  color: var(--flame);
  gap: 0.75rem;
}

.back svg {
  width: 0.9rem;
  height: 0.9rem;
}

.sheet__title {
  font-size: clamp(2.15rem, 5.6vw, 3.75rem);
  max-width: 18ch;
}

.sheet__loc {
  margin-top: 1.1rem;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
}

.sheet__loc svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--flame);
}

.sheet__bar {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2.5rem;
  padding: 1.5rem 0;
  border-block: 1px solid var(--line);
}

.sheet__price b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 5vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}

.sheet__price small {
  color: var(--ink-3);
  font-size: 0.85rem;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.25rem;
  margin-left: auto;
}

.fact b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  display: block;
  line-height: 1.15;
}

.fact small {
  color: var(--ink-3);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* galería vertical */
.gal {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
}

.gal figure {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bone-3);
  aspect-ratio: 3 / 4;
  cursor: zoom-in;
}

.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 0.9s var(--ease-out);
}

.gal figure:hover img {
  transform: scale(1.04);
}


/* lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(23, 17, 12, 0.94);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.lb.is-open {
  opacity: 1;
  visibility: visible;
}

.lb img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--r-md);
  object-fit: contain;
}

.lb__x {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(253, 250, 246, 0.25);
  background: rgba(253, 250, 246, 0.08);
  color: var(--bone);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.lb__x:hover {
  background: rgba(253, 250, 246, 0.2);
}

.lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  border: 1px solid rgba(253, 250, 246, 0.25);
  background: rgba(253, 250, 246, 0.08);
  color: var(--bone);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.lb__nav:hover {
  background: rgba(253, 250, 246, 0.2);
}

.lb__nav--prev {
  left: 1rem;
}

.lb__nav--next {
  right: 1rem;
}

/* detalle: dos columnas */
.detail {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  margin-top: clamp(3.5rem, 8vw, 5.5rem);
}

.detail h2 {
  font-size: clamp(1.65rem, 3.6vw, 2.3rem);
  margin-bottom: 1.5rem;
}

.detail > div > p {
  color: var(--ink-2);
  margin-bottom: 1.15rem;
}

.specs {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.05rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.specs li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  color: var(--ink-2);
  font-size: 0.97rem;
  border-bottom: 1px solid var(--line);
}

.specs svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--flame);
  flex: none;
  margin-top: 0.22rem;
}

.aside {
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.85rem;
  align-self: start;
}

.aside h3 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.aside p {
  color: var(--ink-2);
  font-size: 0.96rem;
  margin-bottom: 1.5rem;
}

.aside .btn {
  width: 100%;
  justify-content: space-between;
}

.aside__note {
  margin-top: 1.15rem;
  font-size: 0.83rem;
  color: var(--ink-3);
  text-align: center;
}

/* ---------- reveal ---------- */

.rv {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out),
    filter 0.9s var(--ease-out);
}

.rv.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* entrada al cargar (contenido above the fold, sin observer) */
.rise {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  animation: rise 0.95s var(--ease-out) forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .rv,
  .rise {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- breakpoints ---------- */

@media (min-width: 640px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .props {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .hero .shell {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .band__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .offer {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
  .detail {
    grid-template-columns: 1.5fr 0.85fr;
    gap: 4rem;
  }
  .foot {
    padding-bottom: 3.5rem;
  }
}

@media (max-width: 899px) {
  .stack {
    max-width: 22rem;
  }
}

@media (max-width: 639px) {
  .nav__links {
    display: none;
  }
  .wa span {
    display: none;
  }
  .wa {
    padding: 1rem;
  }
  .hero__cta .btn {
    flex: 1 1 100%;
    justify-content: space-between;
  }
  .prop__body {
    flex-direction: column;
    align-items: flex-start;
  }
  .prop__price {
    text-align: left;
  }
  .facts {
    margin-left: 0;
  }
}
