/* ==========================================================
   San Ignacio Suite Apartments & Departamentos Pontoni
   Hoja de estilos general — replica del sitio original (Framer)
   Tipografía: Manrope · Botones pill · Paleta neutra blanco/negro
   ========================================================== */

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-bg: #f2f4f7;
  --color-gray-text: #747474;
  --color-yellow: #feb600;
  --radius-pill: 999px;
  --radius-card: 16px;
  --max-width: 1200px;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 5px solid var(--color-black);
  display: inline-block;
}

h1, h2, h3, h4 { font-weight: 600; margin: 0; }
h1 { font-size: 50px; line-height: 1.08; font-weight: 600; }
h2 { font-size: 34px; line-height: 1.2; font-weight: 500; }
h3 { font-size: 26px; line-height: 1.25; font-weight: 500; }
p { margin: 0; }

.section { padding: 90px 0; }
.section--gray { background: var(--color-gray-bg); }
.section--black { background: var(--color-black); color: var(--color-white); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head__text { max-width: 620px; color: var(--color-gray-text); font-size: 16px; }
.section-head--center { text-align: center; justify-content: center; flex-direction: column; align-items: center; }
.section-head--center .section-head__text { max-width: 560px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { opacity: 0.85; }
.btn--solid { background: var(--color-black); color: var(--color-white); }
.btn--outline { background: transparent; color: var(--color-black); border-color: var(--color-black); }
.btn--white { background: var(--color-white); color: var(--color-black); }
.btn--yellow { background: var(--color-yellow); color: var(--color-black); }
.btn--blue { background: #2563eb; color: var(--color-white); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand__logo { height: 44px; width: auto; display: block; }

.site-nav-desktop { display: flex; align-items: center; gap: 30px; }
.site-nav-desktop a { font-size: 15px; font-weight: 500; color: var(--color-gray-text); text-decoration: none; white-space: nowrap; transition: color .15s ease; }
.site-nav-desktop a:hover { color: var(--color-black); }
.site-nav-desktop a.is-current { color: var(--color-black); font-weight: 700; }

.site-header__actions { display: flex; align-items: center; gap: 10px; }

.lang-switch { display: flex; align-items: center; gap: 3px; background: var(--color-gray-bg); border-radius: var(--radius-pill); padding: 4px; }
.lang-switch__btn {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; border: none; background: transparent;
  font-size: 16px; line-height: 1; cursor: pointer; padding: 0;
  filter: grayscale(65%); opacity: 0.55; transition: opacity .15s ease, filter .15s ease, background .15s ease, transform .15s ease;
}
.lang-switch__btn:hover { opacity: 0.9; filter: grayscale(20%); transform: translateY(-1px); }
.lang-switch__btn.is-active { opacity: 1; filter: grayscale(0%); background: var(--color-white); box-shadow: 0 1px 3px rgba(0,0,0,0.12); }
.nav-overlay__lang { display: flex; gap: 10px; margin-top: 28px; }
.nav-overlay__lang .lang-switch__btn { width: 42px; height: 42px; font-size: 20px; }

.lang-switch--floating {
  display: none;
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 400;
  width: 44px;
  height: 44px;
}
@media (max-width: 860px) {
  .lang-switch--floating { display: block; }
}
.lang-switch--floating .lang-switch__btn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 6px 16px rgba(0,0,0,0.22);
  font-size: 20px;
  opacity: 0;
  pointer-events: none;
  filter: none;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), opacity .18s ease;
}
.lang-switch--floating .lang-switch__btn.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.lang-switch--floating.is-open .lang-switch__btn {
  opacity: 1;
  pointer-events: auto;
}
.lang-switch--floating .lang-switch__btn:hover { opacity: 1; filter: none; }

/* ---------- Burbuja flotante de WhatsApp (visible en toda la página, todas las pantallas) ---------- */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 400;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.16);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa-fab::before { animation: none; } }
.wa-fab:hover { transform: scale(1.07); box-shadow: 0 14px 32px rgba(0,0,0,0.32), 0 2px 8px rgba(0,0,0,0.18); }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab__tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--color-black);
  color: var(--color-white);
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.wa-fab:hover .wa-fab__tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 860px) {
  .wa-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .wa-fab svg { width: 27px; height: 27px; }
  .wa-fab__tooltip { display: none; }
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 210;
}
.menu-toggle span { width: 26px; height: 2px; background: var(--color-black); display: block; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 90px 24px 40px;
  transform: translateY(-100%);
  transition: transform .35s ease;
}
.nav-overlay.is-open { transform: translateY(0); }
.nav-overlay__inner { max-width: var(--max-width); margin: 0 auto; width: 100%; }
.nav-overlay a {
  display: block;
  font-size: 34px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: var(--color-black);
}
.nav-overlay a.is-current { color: var(--color-black); font-weight: 700; }
.nav-overlay a:not(.is-current) { color: #9a9a9a; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 40px; text-align: center; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-pill);
  padding: 6px 16px 6px 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__badge .star {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.hero h1 { max-width: 900px; margin: 0 auto 20px; }
.hero__sub { max-width: 620px; margin: 0 auto 32px; color: var(--color-gray-text); font-size: 16px; }
.hero .btn-row { justify-content: center; margin-bottom: 48px; }
.hero__media { border-radius: 24px; overflow: hidden; max-width: var(--max-width); margin: 0 auto; }
.hero__media img, .hero__media video { width: 100%; display: block; }

/* ---------- Grillas ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.location-card, .property-card {
  background: var(--color-white);
  display: block;
  position: relative;
}
/* El redondeado va solo en la foto (no en toda la tarjeta) para que el
   texto de abajo nunca quede recortado por la curva de la esquina. */
.location-card__img { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-card); }
.location-card__img img { width: 100%; height: 100%; object-fit: cover; }
.location-card__name { font-size: 20px; font-weight: 600; margin-top: 16px; }
.location-card__count { color: var(--color-gray-text); font-size: 14px; margin-top: 4px; }

.property-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}
.property-card__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.property-card__img img { width: 100%; height: 100%; object-fit: cover; }
.property-card__badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  background: var(--color-black);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.badge--light { background: var(--color-white); color: var(--color-black); }
.property-card__body { padding: 20px; }
.property-card__zone { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--color-gray-text); margin-bottom: 8px; }
.property-card__title { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.property-card__address { font-size: 14px; color: var(--color-gray-text); }
.property-card__meta { display: flex; gap: 18px; font-size: 14px; color: var(--color-gray-text); margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,0.08); }
.property-card__host { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 14px; font-weight: 600; }
.property-card__host .avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--color-black); color: var(--color-white); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }

/* ---------- Reserva (pasos) ---------- */
.steps-block { display: grid; grid-template-columns: 1fr; gap: 0; border-radius: 24px; overflow: hidden; }
.steps-block__text { background: var(--color-white); padding: 56px; }
.steps-block__img { min-height: 100%; }
.steps-block__img img { width: 100%; height: 100%; object-fit: cover; }
.step { display: flex; gap: 20px; padding: 20px 0; border-top: 1px solid rgba(0,0,0,0.08); }
.step:first-of-type { border-top: none; }
.step__number { font-size: 26px; font-weight: 500; color: var(--color-gray-text); min-width: 40px; }
.step__title { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.step__text { color: var(--color-gray-text); font-size: 15px; }

/* ---------- Reseñas (marquee) ---------- */
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: 20px; width: max-content; animation: scroll-left 47s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee--drag { overflow-x: auto; overflow-y: hidden; cursor: grab; touch-action: none; user-select: none; scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: auto; }
/* Refuerzo por CSS (además del preventDefault en "dragstart" del JS):
   links e imágenes dentro de una cinta arrastrable no deben iniciar el
   drag nativo del navegador. */
.marquee--drag a, .marquee--drag img { -webkit-user-drag: none; user-drag: none; }
.marquee--drag::-webkit-scrollbar { display: none; }
.marquee--drag.is-dragging { cursor: grabbing; }
.marquee__track--static { animation: none !important; }

/* ---------- Fotos tours (marquee) ---------- */
.photo-marquee__item { flex: none; height: 340px; border-radius: 16px; overflow: hidden; }
.photo-marquee__item img { height: 100%; width: auto; max-width: none; display: block; object-fit: cover; -webkit-user-drag: none; user-drag: none; }

/* ---------- Ubicaciones (marquee) ---------- */
.location-card { width: 300px; flex-shrink: 0; }
.location-card img { -webkit-user-drag: none; user-drag: none; }

.review-card {
  background: #FFFFFF;
  border: none;
  box-shadow: none;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-card__stars { display: flex; gap: 2px; color: #FFA800; font-size: 14px; line-height: 1; letter-spacing: 1px; }
.review-card__title { font-size: 16px; font-weight: 700; color: #111; }
.review-card__text { color: #333333; font-size: 14px; line-height: 1.5; }
.review-card__author { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; color: #111; }
.flag { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--color-gray-bg); display: flex; align-items: center; justify-content: center; font-size: 20px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stats__item { padding: 40px; border-left: 1px solid rgba(255,255,255,0.15); }
.stats__item:first-child { border-left: none; }
.stats__number { font-size: 42px; font-weight: 500; margin-bottom: 12px; }
.stats__title { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.stats__text { color: #b8b8b8; font-size: 14px; }
.stats__text strong { color: var(--color-white); }

/* ---------- Reseña Google ---------- */
.google-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.google-card { border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius-card); padding: 36px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.google-card__title { font-size: 20px; font-weight: 600; }

/* ---------- Tours ---------- */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.tour-card { border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius-card); padding: 34px 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.marquee__track .tour-card { width: 300px; flex-shrink: 0; background: var(--color-white); }
.tour-card__icon { font-size: 36px; line-height: 1; }
.tour-card__title { font-size: 18px; font-weight: 700; }
.tour-card__text { color: var(--color-gray-text); font-size: 14.5px; margin-bottom: 8px; }

/* ---------- Banda WhatsApp ---------- */
.whatsapp-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 24px 130px;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
}
.whatsapp-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.62) 55%, var(--color-black) 100%); }
.whatsapp-band > * { position: relative; z-index: 1; }
.whatsapp-band h2 { margin-bottom: 16px; }
.whatsapp-band p { max-width: 520px; margin: 0 auto 32px; opacity: 0.9; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-black); color: var(--color-white); padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-grid h4 { font-size: 20px; margin-bottom: 18px; }
.footer-grid li, .footer-grid a { display: block; padding: 6px 0; color: #cfcfcf; font-size: 15px; }
.footer-grid a:hover { color: var(--color-white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 22px; font-size: 13px; color: #a0a0a0; }

/* ---------- Página Departamentos: filtros ---------- */
.filter-box { border: 1px solid rgba(0,0,0,0.12); border-radius: 20px; margin-bottom: 56px; overflow: hidden; }
.filter-box__toggle { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; font-size: 20px; cursor: pointer; font-family: var(--font); }
.filter-box__toggle .chevron { transition: transform .25s ease; }
.filter-box.is-open .chevron { transform: rotate(180deg); }
.filter-box__panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 28px; }
.filter-box.is-open .filter-box__panel { max-height: 500px; padding-bottom: 28px; }
.filter-group { margin-bottom: 20px; }
.filter-group h5 { font-size: 14px; text-transform: uppercase; letter-spacing: .05em; color: var(--color-gray-text); margin-bottom: 12px; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-pill { border: 1px solid rgba(0,0,0,0.15); border-radius: var(--radius-pill); padding: 8px 16px; font-size: 14px; cursor: pointer; background: var(--color-white); font-family: var(--font); }
.filter-pill.is-active { background: var(--color-black); color: var(--color-white); border-color: var(--color-black); }
.filter-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.filter-clear { font-size: 13px; text-decoration: underline; color: var(--color-gray-text); background: none; border: none; cursor: pointer; padding: 0; font-family: var(--font); }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
.faq-layout__img { border-radius: 20px; overflow: hidden; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-item__q { width: 100%; background: none; border: none; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-size: 18px; font-weight: 600; cursor: pointer; font-family: var(--font); }
.faq-item__icon { font-size: 20px; flex-shrink: 0; width: 20px; text-align: center; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--color-gray-text); font-size: 15px; padding: 0; }
.faq-item.is-open .faq-item__a { max-height: 220px; padding-bottom: 22px; }

/* ---------- Nosotros ---------- */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 48px; }
.about-hero__text { color: var(--color-gray-text); font-size: 17px; }
.about-hero__text strong { color: var(--color-black); }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-photos img { border-radius: 20px; width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-photos img.about-photo--wide { aspect-ratio: 1200/618; }

/* ---------- Ficha de depto ---------- */
.detail-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; padding-top: 40px; margin-bottom: 24px; }
.detail-head .badges { display: flex; gap: 10px; margin-bottom: 16px; }
.detail-rating { font-weight: 600; }
.detail-meta { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid rgba(0,0,0,0.1); border-bottom: 1px solid rgba(0,0,0,0.1); margin-bottom: 32px; }
.detail-meta__group h5 { font-size: 13px; text-transform: uppercase; color: var(--color-gray-text); margin-bottom: 10px; }
.detail-meta__row { display: flex; gap: 24px; font-size: 15px; }
.detail-hero-img { border-radius: 20px; overflow: hidden; margin-bottom: 48px; }
.detail-hero-img img { width: 100%; max-height: 520px; object-fit: cover; }
.detail-section { margin-bottom: 48px; }
.detail-section h2 { margin-bottom: 20px; }
.detail-description p { color: var(--color-gray-text); font-size: 16px; margin-bottom: 18px; }
.bullet-list li { position: relative; padding-left: 22px; margin-bottom: 10px; font-size: 15px; color: var(--color-black); }
.bullet-list li::before { content: "•"; position: absolute; left: 0; font-weight: 700; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.spec-row { display: flex; align-items: center; gap: 12px; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.08); font-size: 15px; }
.spec-row__label { display: flex; align-items: center; gap: 10px; color: var(--color-black); }
.spec-row__value { color: var(--color-gray-text); font-weight: 600; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gallery-grid img { border-radius: 14px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.host-card { display: flex; align-items: center; gap: 20px; background: var(--color-gray-bg); border-radius: 20px; padding: 28px; flex-wrap: wrap; }
.host-card .avatar-lg { width: 64px; height: 64px; border-radius: 50%; background: var(--color-black); color: var(--color-white); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 600; }
.host-card__info { flex: 1; min-width: 200px; }
.host-card__name { font-size: 18px; font-weight: 700; }
.host-card__role { color: var(--color-gray-text); font-size: 14px; margin-bottom: 10px; }
.host-card__contact { font-size: 14px; color: var(--color-gray-text); }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ---------- Utilidades ---------- */
.mt-8 { margin-top: 8px; }
.text-center { text-align: center; }
.hide-mobile { display: block; }
.show-mobile { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .stats, .footer-grid, .google-cards, .steps-block, .faq-layout,
  .about-hero, .about-photos, .spec-grid, .related-grid, .filter-groups, .tours-grid {
    grid-template-columns: 1fr;
  }
  .stats__item { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); }
  .stats__item:first-child { border-top: none; }
  .brand__logo { height: 34px; }
  .nav-overlay a { font-size: 26px; }
  .site-header__actions .lang-switch { display: none; }
  .detail-meta { flex-direction: column; gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
  .site-nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .photo-marquee__item { height: 220px; }
}
