:root {
  --color-primary: #0b1f4d;
  --color-deep: #071735;
  --color-accent: #ffb800;
  --color-accent-hover: #e6a600;
  --color-surface: #ffffff;
  --color-soft: #f3f5f8;
  --color-soft-strong: #e9edf2;
  --color-text: #172033;
  --color-muted: #606a7c;
  --color-border: #e2e6ec;
  --color-success: #25d366;
  --shadow-ambient: 0 0.75rem 1.5rem rgba(7, 23, 53, 0.07);
  --radius-sm: 0.6rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.125rem;
  --container: 76rem;
  --header-height: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.1rem);
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-surface);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 0.2rem solid var(--color-accent);
  outline-offset: 0.22rem;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  min-height: 48px;
  padding: 0.72rem 1rem;
  color: var(--color-deep);
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 150ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.stitch-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 230, 236, 0.82);
  box-shadow: 0 0.2rem 0.75rem rgba(7, 23, 53, 0.025);
  backdrop-filter: blur(0.7rem);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-primary);
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  color: var(--color-primary);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.25rem;
  height: 0.12rem;
  background: currentColor;
  border-radius: 1rem;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-icon::before {
  transform: translateY(-0.38rem);
}

.menu-icon::after {
  transform: translateY(0.26rem);
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  transform: translateY(-0.12rem) rotate(-45deg);
}

.site-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  min-height: 48px;
  padding: 0.65rem 0.58rem;
  align-items: center;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  font-size: 0.69rem;
  font-weight: 720;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav .is-current {
  color: var(--color-primary);
}

.site-nav .is-current {
  border-color: var(--color-accent);
}

.site-nav .nav-cta {
  min-height: 2.25rem;
  margin-left: 0.7rem;
  padding: 0.55rem 0.9rem;
  color: var(--color-deep);
  background: var(--color-accent);
  border: 0;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-ambient);
  font-size: 0.68rem;
  font-weight: 800;
}

.site-nav .nav-cta:hover {
  color: var(--color-deep);
  background: var(--color-accent-hover);
}

.listing-section {
  padding-block: clamp(3.75rem, 7vw, 6.5rem);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.listing-section--first {
  padding-top: clamp(3.25rem, 7vw, 6rem);
}

.listing-section__inner {
  display: grid;
  align-items: center;
  gap: clamp(2.2rem, 5vw, 5rem);
}

.listing-copy {
  min-width: 0;
}

.listing-tags {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.listing-tags span {
  display: inline-flex;
  padding: 0.28rem 0.55rem;
  align-items: center;
  color: var(--color-primary);
  background: #edf2fb;
  border: 1px solid #dfe7f4;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 760;
}

.listing-tags span + span {
  color: #755100;
  background: #fff6df;
  border-color: #f4dfaa;
}

.listing-overline,
.section-label {
  margin: 0 0 0.7rem;
  color: var(--color-muted);
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.listing-overline span {
  color: #9ba4b4;
  padding-inline: 0.15rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-primary);
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.16;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4.4vw, 3.35rem);
}

h2 {
  max-width: 20ch;
  margin-bottom: 0.8rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.listing-lead {
  max-width: 36rem;
  margin-bottom: 1.25rem;
  color: var(--color-muted);
  font-size: clamp(0.93rem, 1.5vw, 1.02rem);
}

.details-card {
  max-width: 37rem;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--color-soft);
  border: 1px solid var(--color-soft-strong);
  border-radius: var(--radius-md);
}

.details-card h2,
.details-card h3 {
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-size: 0.65rem;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.details-grid {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.9rem;
}

.details-grid div {
  position: relative;
  min-width: 0;
  padding-left: 0.95rem;
}

.details-grid div::before {
  position: absolute;
  width: 0.34rem;
  height: 0.34rem;
  top: 0.42rem;
  left: 0;
  background: var(--color-primary);
  border-radius: 50%;
  content: "";
}

.details-grid dt {
  color: var(--color-muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.details-grid dd {
  margin: 0.08rem 0 0;
  color: var(--color-text);
  font-size: 0.74rem;
  font-weight: 760;
}

.listing-actions {
  display: flex;
  margin-top: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0.72rem 1.05rem;
  align-items: center;
  justify-content: center;
  color: var(--color-deep);
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-ambient);
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.button:hover {
  color: var(--color-deep);
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: 0 0.8rem 1.4rem rgba(7, 23, 53, 0.13);
  transform: translateY(-0.1rem);
}

.button-outline {
  color: var(--color-primary);
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: none;
}

.button-outline:hover {
  color: #ffffff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.button-whatsapp {
  color: #ffffff;
  background: var(--color-success);
  border-color: var(--color-success);
}

.button-whatsapp:hover {
  color: #ffffff;
  background: #1db456;
  border-color: #1db456;
}

.listing-photo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #dfe5ed;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-ambient);
}

.listing-photo picture,
.listing-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.listing-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.listing-photo:hover img {
  transform: scale(1.025);
}

.listing-photo--large img {
  aspect-ratio: 1 / 1;
}

.intro-panel,
.about-panel,
.faq-section {
  padding-block: 1rem;
  background: var(--color-soft);
}

.intro-panel__inner,
.about-panel__inner {
  padding: clamp(1.4rem, 3vw, 2rem);
  text-align: center;
}

.intro-panel__inner {
  border-radius: var(--radius-md);
}

.intro-panel h2,
.about-panel h2 {
  max-width: none;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.intro-panel p,
.about-panel p {
  max-width: 45rem;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 0.75rem;
}

.confirmation-section {
  padding: clamp(3rem, 6vw, 5.5rem) 1rem;
  background: #ffffff;
}

.confirmation-card {
  max-width: 35rem;
  margin-inline: auto;
  padding: 1.75rem 1.5rem;
  color: #ffffff;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-ambient);
  text-align: center;
}

.confirmation-card__icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.7rem;
  place-items: center;
  color: var(--color-deep);
  background: var(--color-accent);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.confirmation-card h2 {
  max-width: none;
  margin-bottom: 0.65rem;
  color: #ffffff;
  font-size: 1.06rem;
}

.confirmation-card p {
  max-width: 28rem;
  margin: 0 auto;
  color: #dfe8f8;
  font-size: 0.72rem;
}

.gallery-section {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: #ffffff;
}

.gallery-heading {
  display: flex;
  margin-bottom: 1.15rem;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-heading h2 {
  max-width: none;
  margin: 0;
  font-size: 1.08rem;
}

.gallery-link {
  display: inline-flex;
  min-height: 48px;
  padding: 0.55rem 0;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-primary);
  background: transparent;
  border: 0;
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  font-size: 0.68rem;
  font-weight: 780;
  cursor: pointer;
}

.gallery-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.gallery-item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #e2e8f0;
  border-radius: var(--radius-sm);
}

.gallery-item__link {
  display: block;
  color: inherit;
  cursor: zoom-in;
}

.gallery-item__link:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: -3px;
}

.gallery-item picture,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item:first-child {
  grid-column: span 2;
}

.gallery-item:first-child img {
  aspect-ratio: 2.15 / 1;
}

.about-panel {
  margin-top: 1rem;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.faq-section {
  margin-top: 1rem;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.faq-section__inner {
  max-width: 46rem;
}

.faq-section .section-label,
.faq-section h2 {
  text-align: center;
}

.faq-section h2 {
  max-width: none;
  margin: 0 auto 1.25rem;
  font-size: 1.1rem;
}

.faq-list {
  display: grid;
  gap: 0.55rem;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 0.35rem 0.9rem rgba(7, 23, 53, 0.035);
}

.faq-list summary {
  min-height: 48px;
  padding: 0.85rem 2.8rem 0.85rem 0.95rem;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 760;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 0.95rem 1rem;
  color: var(--color-muted);
  font-size: 0.72rem;
}

.site-footer {
  padding-top: 2.2rem;
  color: #ffffff;
  background: var(--color-deep);
}

.footer-grid {
  display: grid;
  gap: 1.8rem;
}

.footer-brand strong,
.footer-grid h2 {
  display: block;
  margin: 0 0 0.55rem;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: -0.01em;
}

.footer-brand p {
  max-width: 17rem;
  margin: 0;
  color: #c6d2e7;
  font-size: 0.66rem;
}

.footer-grid h2 {
  font-size: 0.64rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  min-height: 1.65rem;
  color: #d8e3f4;
  font-size: 0.66rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-bottom {
  display: flex;
  min-height: 3.5rem;
  margin-top: 1.9rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom p {
  margin: 0;
  color: #b8c6dc;
  font-size: 0.6rem;
}

.footer-chat {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  place-items: center;
  color: var(--color-deep);
  background: #ffffff;
  border-radius: 0.45rem;
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-chat:hover {
  background: var(--color-accent);
}

@media (max-width: 62rem) {
  .site-nav a {
    padding-inline: 0.38rem;
    font-size: 0.64rem;
  }

  .site-nav .nav-cta {
    margin-left: 0.3rem;
    padding-inline: 0.65rem;
  }
}

@media (max-width: 52rem) {
  .js .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav[data-open="true"] {
    display: block;
  }

  .site-nav ul {
    padding: 0.25rem 0 0.85rem;
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav li,
  .site-nav a {
    width: 100%;
  }

  .site-nav a {
    padding-inline: 0.75rem;
    font-size: 0.78rem;
  }

  .site-nav .nav-cta {
    margin: 0.25rem 0 0;
    justify-content: center;
  }

  .listing-actions .button {
    width: 100%;
  }

  .gallery-link {
    font-size: 0.62rem;
  }
}

@media (min-width: 40rem) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-item:first-child {
    grid-column: span 1;
  }

  .gallery-item:first-child img {
    aspect-ratio: 1.05 / 1;
  }

  .footer-grid {
    grid-template-columns: 1.8fr repeat(3, 1fr);
  }
}

@media (min-width: 53rem) {
  .listing-section__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "copy media";
  }

  .listing-section__inner > .listing-copy {
    grid-area: copy;
  }

  .listing-section__inner > .listing-photo {
    grid-area: media;
  }

  .listing-section--media-start .listing-section__inner {
    grid-template-areas: "media copy";
  }

  .listing-photo--large img {
    aspect-ratio: 4 / 5;
  }

  .gallery-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (forced-colors: active) {
  .button,
  .menu-toggle,
  .faq-list details {
    border: 2px solid ButtonText;
  }
}


/* Stitch reference fidelity: exact design-system scale and component treatment. */
:root {
  --container: 1280px;
  --header-height: 72px;
  --topbar-height: 36px;
  --site-header-total-height: calc(var(--header-height) + var(--topbar-height));
  --color-surface: #f7f9fc;
  --color-soft: #f2f4f7;
  --color-soft-strong: #e0e3e6;
  --color-text: #191c1e;
  --color-muted: #45464f;
  --color-border: #c5c6d0;
  --shadow-ambient: 0 12px 24px rgba(7, 23, 53, 0.06);
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
}

body {
  background: #f7f9fc;
  font-size: 16px;
  line-height: 24px;
}

.stitch-header {
  background: rgba(247, 249, 252, 0.9);
  box-shadow: 0 1px 8px rgba(7, 23, 53, 0.04);
}

.site-topbar {
  min-height: var(--topbar-height);
  color: #ffffff;
  background: #071735;
}

.site-topbar__inner {
  display: flex;
  min-height: var(--topbar-height);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-topbar p,
.site-topbar a {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.site-topbar p {
  color: rgba(255, 255, 255, 0.85);
}

.site-topbar a {
  display: inline-flex;
  min-height: 36px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
}

.site-topbar a:hover {
  color: #ffb800;
}

.site-topbar svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

html {
  scroll-padding-top: calc(var(--site-header-total-height) + 1.1rem);
}

.listing-section {
  scroll-margin-top: calc(var(--site-header-total-height) + 1rem);
}

.header-inner {
  min-height: 72px;
}

.brand {
  font-size: 24px;
  font-weight: 700;
}

.brand img {
  width: 2.3rem;
  height: 2.3rem;
}

.site-nav ul {
  gap: 1.25rem;
}

.site-nav a {
  min-height: 72px;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
}

.site-nav .nav-cta {
  min-height: 48px;
  margin-left: 0.25rem;
  padding: 0.75rem 1.5rem;
  font-size: 16px;
  font-weight: 600;
}

.listing-section {
  padding-block: 80px;
}

.listing-section--first {
  padding-top: 80px;
}

.listing-section__inner {
  gap: 48px;
}

.listing-tags {
  margin-bottom: 1.5rem;
  gap: 0.5rem;
}

.listing-tags span {
  padding: 0.25rem 0.75rem;
  font-size: 14px;
  font-weight: 600;
}

.listing-overline,
.section-label {
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.listing-overline--iconic {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.listing-overline--iconic .listing-overline__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: #45464f;
}

.listing-overline__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: #0b1f4d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: -0.01em;
}

h3,
.details-card h2,
.details-card h3 {
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 20px;
}

.listing-lead {
  max-width: 36rem;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 28px;
}

.details-card {
  max-width: none;
  margin-top: 0;
  padding: 24px;
  background: #eceef1;
  border-color: #e0e3e6;
  border-radius: 1rem;
}

.details-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 20px;
}

.details-grid div {
  padding-left: 0;
}

.details-grid div::before {
  display: none;
}

.details-grid dt {
  display: flex;
  min-height: 20px;
  align-items: center;
  gap: 8px;
  color: #45464f;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.detail-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: #0b1f4d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.details-grid dd {
  margin: 0.2rem 0 0 1.75rem;
  color: #191c1e;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenities-grid li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: #45464f;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.amenities-grid li span {
  min-width: 0;
}

.amenities-grid__wide {
  grid-column: span 2;
}

.amenity-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: #0b1f4d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.details-card__divider {
  height: 1px;
  margin: 24px 0;
  border: 0;
  background: #d9dce1;
}

.features-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #45464f;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
  fill: none;
  stroke: #0b1f4d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.amenities-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.listing-actions {
  margin-top: 24px;
  gap: 16px;
}

.button {
  min-height: 48px;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.listing-photo,
.listing-photo--large {
  border-radius: 1rem;
}

.listing-photo img,
.listing-photo--large img {
  aspect-ratio: 4 / 3;
}

.intro-panel,
.about-panel,
.faq-section {
  padding: 0 0 80px;
  background: transparent;
}

.intro-panel__inner,
.about-panel__inner {
  padding: 32px;
  background: #f2f4f7;
  border-radius: 0.75rem;
}

.intro-panel h2,
.about-panel h2 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.intro-panel p,
.about-panel p {
  font-size: 18px;
  line-height: 28px;
}

.confirmation-section {
  padding: 0 16px 80px;
}

.confirmation-card {
  max-width: 48rem;
  padding: 32px;
  border-radius: 1rem;
}

.confirmation-card__icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.confirmation-card h2 {
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
}

.confirmation-card p {
  font-size: 18px;
  line-height: 28px;
}

.gallery-section {
  padding-block: 80px;
  background: #f7f9fc;
}

.gallery-heading {
  margin-bottom: 32px;
}

.gallery-heading h2 {
  font-size: 30px;
  line-height: 38px;
}

.gallery-link {
  min-height: 48px;
  font-size: 16px;
  font-weight: 600;
}

.gallery-grid {
  display: block;
  column-count: 1;
  column-gap: 16px;
}

.gallery-item,
.gallery-item:first-child {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  break-inside: avoid;
  border-radius: 0.75rem;
}

.gallery-item img,
.gallery-item:first-child img {
  height: auto;
  aspect-ratio: auto;
}

.about-panel {
  margin-top: 0;
}

.faq-section {
  margin-top: 0;
}

.faq-section__inner {
  max-width: var(--container);
  padding: 80px 32px;
  background: #f2f4f7;
  border-radius: 0.75rem;
}

.faq-section h2 {
  margin-bottom: 32px;
  font-size: 30px;
  line-height: 38px;
}

.faq-list {
  max-width: 48rem;
  margin-inline: auto;
  gap: 16px;
}

.faq-list details {
  padding: 24px;
  border: 0;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-ambient);
}

.faq-list summary {
  min-height: 32px;
  padding: 0 2.25rem 0 0;
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.faq-list p {
  padding: 16px 0 0;
  font-size: 16px;
  line-height: 24px;
}

.site-footer {
  margin-top: 0;
  padding-top: 32px;
}

.footer-brand strong,
.footer-grid h2 {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 24px;
}

.footer-brand p,
.footer-grid a {
  font-size: 16px;
  line-height: 24px;
}

.footer-grid a {
  min-height: 2rem;
}

.footer-bottom {
  min-height: 4rem;
  margin-top: 32px;
}

.footer-bottom p {
  font-size: 14px;
  line-height: 20px;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 2rem;
  bottom: 2rem;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: #ffffff;
  background: #25d366;
  border-radius: 9999px;
  box-shadow: 0 0.75rem 1.5rem rgba(7, 23, 53, 0.2);
  transition: transform 150ms ease;
}

/* Experiencia de carga y movimiento progresivo. */
.page-loader {
  display: none;
}

.js .page-loader {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 184, 0, 0.12), transparent 18rem),
    linear-gradient(145deg, #071735 0%, #0b1f4d 62%, #102b64 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.js.is-loading,
.js.is-loading body {
  overflow: hidden;
}

.js.is-loading .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-loader__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  transform: translateY(0.75rem) scale(0.96);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-loading .page-loader__content {
  transform: translateY(0) scale(1);
}

.page-loader__brand {
  position: relative;
  display: grid;
  width: clamp(9.5rem, 26vw, 11.5rem);
  aspect-ratio: 1;
  place-items: center;
  padding: 1rem;
  isolation: isolate;
  background: linear-gradient(145deg, #ffffff 0%, #eef2f8 100%);
  border: 1px solid rgba(255, 184, 0, 0.48);
  border-radius: 50%;
  box-shadow:
    0 1.5rem 3.5rem rgba(0, 0, 0, 0.3),
    0 0 2.25rem rgba(255, 184, 0, 0.14);
}

.page-loader__brand img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0.35rem 0.65rem rgba(7, 23, 53, 0.14));
}

.page-loader__spinner {
  position: absolute;
  z-index: 2;
  inset: -0.65rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-top-color: var(--color-accent);
  border-right-color: rgba(255, 184, 0, 0.68);
  border-radius: 50%;
  filter: drop-shadow(0 0 0.45rem rgba(255, 184, 0, 0.38));
  animation: loader-orbit 1.15s linear infinite;
}

.page-loader__label {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Plus Jakarta Sans", Manrope, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.js .site-header {
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease;
}

.js.is-loading .site-header {
  opacity: 0;
  transform: translateY(-0.8rem);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(1.4rem);
  transition:
    opacity 620ms var(--reveal-delay, 0ms) ease,
    transform 620ms var(--reveal-delay, 0ms) cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.motion-image {
  opacity: 0.35;
  filter: blur(0.45rem) saturate(0.8);
  transform: scale(1.025);
  transition:
    opacity 650ms ease,
    filter 800ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-image.is-media-loaded {
  opacity: 1;
  filter: none;
  transform: scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .details-card,
  .place-card,
  .gallery-item {
    transition: transform 240ms ease, box-shadow 240ms ease;
  }

  .details-card:hover,
  .place-card:hover,
  .gallery-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 1rem 2.25rem rgba(7, 23, 53, 0.11);
  }

  .button {
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  }

  .button:hover {
    transform: translateY(-0.125rem);
  }
}

@keyframes loader-orbit {
  to {
    transform: rotate(1turn);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__spinner {
    animation: none !important;
  }

  .reveal-on-scroll,
  .motion-image {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: scale(1.08);
}

.whatsapp-float__icon {
  width: 24px;
  height: 28px;
  fill: currentColor;
}

@media (min-width: 48rem) {
  .container {
    width: min(calc(100% - 80px), var(--container));
  }

  .gallery-grid {
    column-count: 2;
  }
}

@media (min-width: 64rem) {
  .gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 52rem) {
  :root {
    --topbar-height: 64px;
  }

  .site-topbar__inner {
    padding-block: 8px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .site-topbar p,
  .site-topbar a {
    font-size: 12px;
    line-height: 16px;
  }

  .site-topbar a {
    min-height: 16px;
  }

  .brand {
    font-size: 18px;
  }

  h1 {
    font-size: 32px;
    line-height: 40px;
  }

  h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .listing-section,
  .listing-section--first {
    padding-block: 48px;
  }

  .listing-section__inner {
    gap: 32px;
  }

  .listing-lead,
  .intro-panel p,
  .about-panel p,
  .confirmation-card p {
    font-size: 16px;
    line-height: 24px;
  }

  .details-card,
  .intro-panel__inner,
  .about-panel__inner,
  .faq-section__inner,
  .confirmation-card {
    padding: 24px 16px;
  }

  .details-grid,
  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amenities-grid {
    gap: 12px 16px;
  }

  .amenities-grid li {
    font-size: 14px;
    line-height: 20px;
  }

  .amenities-grid__wide {
    grid-column: span 2;
  }

  .faq-section {
    padding-bottom: 48px;
  }

  .faq-list details {
    padding: 16px;
  }

  .faq-list summary {
    font-size: 16px;
    line-height: 24px;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }
}

/* Carruseles de las opciones de alojamiento */
.listing-photo {
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.listing-photo > picture {
  display: block;
  overflow: hidden;
  background: #dfe5ed;
  border-radius: 1rem;
  box-shadow: var(--shadow-ambient);
}

.listing-photo:hover .listing-carousel img {
  transform: none;
}

.listing-carousel {
  display: grid;
  margin-top: 0.75rem;
  grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
  align-items: center;
  gap: 0.5rem;
}

.listing-carousel__track {
  display: flex;
  min-width: 0;
  padding: 0.15rem;
  overflow-x: auto;
  gap: 0.5rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
}

.listing-carousel__item,
.listing-carousel__control {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.listing-carousel__item {
  flex: 0 0 5rem;
  width: 5rem;
  height: 4rem;
  padding: 0;
  overflow: hidden;
  scroll-snap-align: start;
  background: #dfe5ed;
  border: 2px solid transparent;
  border-radius: 0.55rem;
}

.listing-carousel__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-carousel__item:hover,
.listing-carousel__item:focus-visible {
  border-color: var(--color-accent);
}

.listing-carousel__control {
  display: grid;
  width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  place-items: center;
  color: var(--color-primary);
  background: #ffffff;
  border: 1px solid #d8e0eb;
  border-radius: 999px;
  box-shadow: 0 0.3rem 0.75rem rgba(7, 23, 53, 0.1);
}

.listing-carousel__icon {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.listing-carousel__control:hover,
.listing-carousel__control:focus-visible {
  color: #ffffff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}


@media (max-width: 39.99rem) {
  .listing-carousel__item {
    flex-basis: 4.5rem;
    width: 4.5rem;
    height: 3.6rem;
  }
}


@media (max-width: 30rem) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid__wide {
    grid-column: span 1;
  }
}
