/* ==========================================================================
   Hogariza — hoja de estilos principal
   Réplica fiel del diseño original (WordPress + Elementor) en CSS plano.
   Breakpoints: escritorio > 1024px · tablet ≤ 1024px · móvil ≤ 767px
   ========================================================================== */

:root {
  --c-red: #DB504A;
  --c-red-dark: #E23125;
  --c-pink: #F8DEDD;
  --c-pink-light: #F9E0E2;
  --c-ice: #E5FCFF;
  --c-peach: #FFBA7B;
  --c-ink: #212121;
  --c-ink-2: #222222;
  --c-ink-3: #171515;
  --c-slate: #3F444B;
  --c-icon: #29332F;
  --c-link: #CC3366;
  --font: "Poppins", sans-serif;
  --font-alt: "Inter", sans-serif;
  --shadow-bar: 0 10px 15px -3px rgba(0, 0, 0, .10), 0 4px 6px -2px rgba(0, 0, 0, .05);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-ink);
  background: #fff;
}
h1, h2, h3, h4, h5, h6, p, figure { margin: 0; font-weight: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
cite { font-style: normal; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 5px; z-index: 1000;
  padding: 12px 24px; background: #eee; color: #333;
}
.skip-link:focus { left: 5px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 20px 40px;
  transition: all .3s;
  cursor: pointer;
}
.btn__inner { display: flex; justify-content: center; align-items: center; gap: 5px; }
.btn__icon { display: block; width: 1em; height: 1em; fill: currentColor; }

.btn--primary {
  color: var(--c-ice);
  fill: var(--c-ice);
  background: var(--c-red);
  border: 2px solid var(--c-red);
  border-radius: 60px;
  padding: 15px 30px;
  letter-spacing: -.2px;
}
.btn--primary:hover, .btn--primary:focus { color: var(--c-red); fill: var(--c-red); background: #fff; }

.btn--outline { color: #000; background: transparent; border-color: var(--c-ink); }
.btn--outline:hover, .btn--outline:focus { color: #000; background: transparent; border-color: #000; }
.btn--outline-black { border-color: #000; }
.btn--wide { padding: 20px 50px; }

.btn--link {
  font-style: italic;
  color: var(--c-ink);
  fill: var(--c-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-ink);
  border-radius: 0;
  padding: 0 0 1px;
}
.btn--link:hover, .btn--link:focus { border-bottom-color: var(--c-ink); }
.btn--link-red { color: var(--c-red); fill: var(--c-red); border-bottom-color: var(--c-red); }
.btn--link-red .btn__inner { flex-direction: row-reverse; }
.btn--link-red:hover, .btn--link-red:focus { border-bottom-color: var(--c-ink); }

/* Animaciones hover (equivalentes a hover.css "grow" y "float") */
.btn--grow:hover, .btn--grow:focus { transform: scale(1.1); }
.btn--float { transition: all .3s ease-out; }
.btn--float:hover, .btn--float:focus { transform: translateY(-8px); }

/* ---------- Cabecera ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  min-height: 110px;
  padding: 0 5%;
}
.site-header__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 1% 2%;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-bar);
}
.site-header__logo { display: block; line-height: 0; }
.site-header__logo img { display: inline-block; height: 21px; width: auto; object-fit: contain; }

.nav { position: relative; display: flex; flex-direction: column; }
.nav__list { display: flex; flex-wrap: wrap; }
.nav__link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 3px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1em;
  color: var(--c-red);
  fill: var(--c-red);
  transition: .4s;
}
.nav__item:not(:first-child) .nav__link { margin-left: 26px; }
.nav__item:not(:last-child) .nav__link { margin-right: 26px; }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--c-red-dark);
  opacity: 0;
  transition: .3s;
}
.nav__link:hover, .nav__link:focus, .nav__link--active { color: var(--c-red-dark); fill: var(--c-red-dark); }
.nav__link:hover::after, .nav__link:focus::after, .nav__link--active::after { opacity: 1; }

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: .25em;
  font-size: 25px;
  color: var(--c-red-dark);
  background: transparent;
  border-radius: 3px;
}
.nav__toggle svg { width: 1em; height: 1em; fill: var(--c-red-dark); }
.nav__toggle-close { display: none; }
.nav__toggle[aria-expanded="true"] .nav__toggle-open { display: none; }
.nav__toggle[aria-expanded="true"] .nav__toggle-close { display: block; }

.nav__dropdown {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  z-index: 98;
  overflow: hidden;
  max-height: 0;
  background: var(--c-pink-light);
  border: 0 solid var(--c-red-dark);
  border-bottom-width: 1px;
  transition: max-height .3s ease;
}
.nav__dropdown.is-open { max-height: 320px; }
.nav__dropdown li:not(:last-child) { border-bottom: 1px solid var(--c-red-dark); }
.nav__dropdown a {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-alt);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.2px;
  text-transform: capitalize;
  color: var(--c-red-dark);
}
.nav__dropdown a:hover, .nav__dropdown a.nav__link--active { background: transparent; }

/* ---------- Secciones ---------- */
.section {
  position: relative;
  display: flex;
  width: 100%;
  padding: 5%;
}
.section--boxed { padding-top: 0; padding-bottom: 0; }
.section__inner { width: 100%; max-width: 1140px; margin: 0 auto; padding: 5% 0; }

.eyebrow {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1em;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-ink-2);
}
.h2 {
  font-size: 2.5vw;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: -2px;
  color: var(--c-ink-2);
}
.section-head { display: flex; flex-direction: column; gap: 10px; width: 100%; margin: 0 auto; }
.section-head--center { text-align: center; }

.divider { display: flex; }
.divider__sep { display: flex; border-top: 1px solid var(--c-ink); }

/* Manchas de color difuminadas (efecto "blur" de Elementor) */
.blob {
  position: absolute;
  width: 456px; height: 456px;
  border-radius: 300px;
  background: linear-gradient(180deg, var(--c-peach) 0%, #fff 100%);
  pointer-events: none;
  will-change: filter;
}
.blob--left { left: -30%; top: 10%; z-index: 1; }
.blob--right { right: -30%; top: -5%; z-index: 0; }

/* ---------- Hero ---------- */
.hero {
  min-height: 75vh;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 5%;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 50%, var(--c-pink) 100%);
}
.hero__col {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 1 50%;
  min-width: 0;
}
.hero__col--media { flex-direction: row; justify-content: center; align-items: stretch; }
.hero__cta { position: relative; z-index: 2; text-align: left; }
.hero__title {
  font-size: 3.7vw;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: -2px;
  color: var(--c-slate);
  margin-bottom: 22px;
}
.hero__desc {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4em;
  color: var(--c-ink-3);
  margin-bottom: 38px;
}
.hero__img { align-self: center; width: 100%; }
.hero__img img { display: block; width: 100%; height: auto; }

/* Iconos decorativos del hero de Propietarios */
.hero__icons { position: relative; z-index: 1; }
.icon { display: block; line-height: 1.5; }
.icon__wrap { display: inline-block; vertical-align: baseline; transition: transform .4s; }
.icon svg { display: block; fill: #000; width: auto; }
.icon--right { text-align: right; }
.icon--left { text-align: left; }
.icon--center { text-align: center; }
.icon--sparkle svg { height: 35px; }
.icon--big svg { height: 180px; }
.icon--scale-11:hover .icon__wrap { transform: scale(1.1); }
.icon--scale-12:hover .icon__wrap { transform: scale(1.2); }
.icon--rotate:hover .icon__wrap { transform: rotateZ(15deg) scale(1.1); }
.icon--down:hover .icon__wrap { transform: translateY(15px); }

/* ---------- Inicio: "Aumentamos la satisfacción" ---------- */
.intro {
  min-height: 70vh;
  flex-direction: column;
  gap: 100px;
  background: linear-gradient(180deg, var(--c-pink) 10%, #fff 50%);
}
.intro__row { display: flex; flex-wrap: wrap; gap: 20px; width: 100%; }
.intro__divider { width: 100%; margin-bottom: 2%; }
.intro__divider .divider__sep { width: 200px; }
.intro__title {
  width: 45%;
  font-size: 3.7vw;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: -2px;
  color: var(--c-ink);
  text-align: left;
}
.intro__text {
  width: 45%;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5em;
  color: var(--c-ink-2);
}
.intro__text p { margin: 1% 0 0 12%; }

.features { display: flex; gap: 10%; width: 100%; max-width: 1200px; margin: 0 auto; }
.feature { flex: 1 1 0; min-width: 0; text-align: left; }
.feature__title { font-size: 24px; font-weight: 600; line-height: 1.1em; color: var(--c-ink); margin: 8px 0 16px; }
.feature__text { font-size: 16px; font-weight: 300; line-height: 1.5em; color: var(--c-ink); }

/* ---------- Inicio: Propiedades ---------- */
.properties {
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  gap: 65px;
  background: linear-gradient(180deg, #fff 70%, var(--c-pink) 100%);
}
.properties__head { max-width: 650px; }
.properties__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.prop { display: flex; flex-direction: column; justify-content: space-between; width: 30%; }
.prop__cta { display: flex; flex-direction: column; overflow: hidden; }
.prop__media { position: relative; min-height: 400px; overflow: hidden; }
.prop__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: 50% 50%;
  transition: transform 1.5s, filter 1.5s;
}
.prop__cta:hover .prop__bg { transform: scale(1.2); }
.prop__content { padding: 10% 35% 0 0; text-align: left; }
.prop__title { font-size: 24px; font-weight: 600; line-height: 1em; letter-spacing: -1px; color: var(--c-ink); margin-bottom: 16px; }
.prop__desc { font-size: 16px; font-weight: 300; line-height: 24px; color: var(--c-ink); }
.prop__btn { margin-top: 16px; }
.prop--text { justify-content: flex-start; }
.prop--text .prop__content { padding: 0 0 0 35%; text-align: right; }
.prop--text .prop__title { line-height: 1.2em; }
.prop--text .prop__btn { text-align: right; }

/* ---------- Inicio: Testimonios ---------- */
.testimonials {
  min-height: 60vh;
  background: linear-gradient(180deg, var(--c-pink) 0%, #fff 40%);
}
.testimonials .section__inner { display: flex; flex-direction: column; gap: 15px; text-align: center; }
.testimonials .eyebrow { color: var(--c-ink); }
.testimonials .h2 { line-height: 1.2em; }
.divider--center { padding: 20px 0; text-align: center; }
.divider--center .divider__sep { width: 70%; margin: 0 auto; border-top: .5px solid #000; }

.carousel-wrap { position: relative; width: 100%; }
.carousel { position: relative; width: 80%; margin: 0 auto; padding-bottom: 40px; overflow: hidden; }
.carousel__track { display: flex; transition: transform .5s; }
.carousel__track.no-transition { transition: none; }
.carousel__slide { flex: 0 0 100%; min-width: 0; margin-right: 10px; padding: 24px 0 60px; }
.testimonial { text-align: center; }
.testimonial__text { font-size: 22px; font-weight: 300; line-height: 1.3em; color: var(--c-ink); }
.testimonial__footer { display: flex; justify-content: center; align-items: center; margin-top: 66px; }
.testimonial__cite { display: flex; flex-direction: column; }
.testimonial__name { font-size: 24px; font-weight: 500; line-height: 2em; text-transform: capitalize; color: var(--c-ink); }
.testimonial__role { font-size: 16px; font-weight: 400; line-height: 1.1em; text-transform: capitalize; color: var(--c-ink); }
.carousel__dots {
  position: absolute; left: 0; right: 0; bottom: 5px;
  display: flex; justify-content: center; align-items: center;
  height: 24px;
  z-index: 10;
}
.carousel__dot {
  display: inline-block;
  width: 9px; height: 9px;
  margin: 0 6px;
  border-radius: 50%;
  background: #000;
  opacity: .2;
  cursor: pointer;
  transition: opacity .3s;
}
.carousel__dot--active { opacity: 1; }

/* ---------- Pie / Contacto ---------- */
.site-footer {
  min-height: 80vh;
  flex-direction: column;
  gap: 65px;
  background: linear-gradient(180deg, #fff 10%, var(--c-pink) 50%);
}
.footer__intro { width: 50%; text-align: left; }
.footer__title { font-size: 2.5vw; font-weight: 500; line-height: 1.1em; letter-spacing: -2px; color: var(--c-ink); margin: 8px 0 22px; }
.footer__text { font-size: 22px; font-weight: 300; line-height: 1.5em; color: var(--c-ink-2); }
.footer__cols { display: flex; width: 100%; }
.footer__contact { display: flex; flex-direction: column; justify-content: flex-start; gap: 45px; width: 50%; }
.footer__form { display: flex; flex-direction: column; justify-content: flex-start; width: 50%; }
.contact-item { text-align: left; }
.contact-item__title { font-size: 24px; font-weight: 600; line-height: 1.1em; text-transform: capitalize; color: var(--c-ink); margin: 8px 0 16px; }
.contact-item__text { font-size: 16px; font-weight: 300; line-height: 1.5em; color: var(--c-ink); }

.form__fields { display: flex; flex-wrap: wrap; margin: 0 -18.5px -50px; }
.form__group {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center;
  width: 100%;
  min-height: 1px;
  padding: 0 18.5px;
  margin-bottom: 50px;
}
.form__group--half { width: 50%; }
.form__field {
  flex-grow: 1;
  width: 100%;
  max-width: 100%;
  min-height: 40px;
  padding: 8px 16px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3em;
  color: var(--c-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-ink);
  border-radius: 0;
  vertical-align: middle;
}
textarea.form__field { padding: 5px 14px; resize: vertical; }
.form__field::placeholder { color: inherit; font-family: inherit; opacity: .6; }
.form__field:focus { outline: 0; box-shadow: 0 0 0 1px rgba(0, 0, 0, .1); }
/* Trampa antispam: invisible para las personas, tentadora para los robots */
.form__trap {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form__buttons {
  display: flex; flex-wrap: wrap;
  justify-content: flex-end; align-items: flex-end;
  width: 100%;
  padding: 0 18.5px;
  margin-bottom: 50px;
}
.form__submit { min-height: 47px; }
.form__message { width: 100%; margin-top: 10px; font-size: 14px; font-weight: 300; line-height: 1.3em; color: var(--c-ink); }
.form__message:empty { display: none; }

/* ---------- Propietarios: "Aumentamos la satisfacción" ---------- */
.owners-intro {
  min-height: 80vh;
  background: linear-gradient(180deg, var(--c-pink) 30%, #fff 70%);
}
.owners-intro__inner {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 50px;
  max-width: 1400px;
}
.owners-intro__lead { display: flex; flex-direction: column; gap: 38px; flex: 0 1 45%; min-width: 0; }
.owners-intro__title { text-align: left; margin-right: 10%; }
.owners-intro__col { display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; flex: 0 1 30%; min-width: 0; }

.divider--text { width: 90%; max-width: 90%; padding: 15px 0; text-align: left; }
.divider--text .divider__sep { align-items: center; width: 80%; margin: 0; border-top: 0; }
.divider--text .divider__sep::after { content: ""; display: block; flex-grow: 1; border-top: 1px solid var(--c-ink-2); }
.divider__text {
  padding-right: 30px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
  text-transform: capitalize;
  color: var(--c-ink-2);
}
.owner-feature { width: 100%; margin: 32px 0 72px; text-align: left; }
.owner-feature__title { font-size: 24px; font-weight: 600; line-height: 1.1em; color: var(--c-ink); margin: 0 0 16px; }
.owner-feature__text { font-size: 16px; font-weight: 300; line-height: 1.3em; color: var(--c-ink); }

/* ---------- Propietarios: Servicios ---------- */
.services {
  min-height: 75vh;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 50px;
  background: #fff;
}
.services__head { max-width: 1400px; }
.services__head .h2 { font-size: 55px; }
.services__grid {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: flex-start;
  gap: 35px;
  width: 100%; max-width: 1400px;
  margin: 0 auto;
}
.service { width: 30%; text-align: center; }
.service__icon { display: block; width: 50px; height: 56px; margin: 0 auto 23px; }
.service__icon svg { display: block; width: 50px; height: 50px; }
.service__title { font-size: 28px; font-weight: 600; line-height: 1.1em; color: var(--c-ink); margin: 8px 0 16px; }
.service__text { font-size: 16px; font-weight: 300; line-height: 1.5em; color: var(--c-ink); }

/* ---------- Propietarios: FAQ ---------- */
.faq {
  min-height: 65vh;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  background: linear-gradient(180deg, #fff 0%, var(--c-pink) 30%);
}
.faq__head { display: flex; flex-direction: column; gap: 10px; width: 50%; text-align: left; }
.faq__head .eyebrow { color: var(--c-ink); }
.faq__head .h2 { line-height: 1.2em; }
.faq__list { width: 50%; max-width: 50%; }
.faq__item h5 { font-size: 20px; line-height: 1; }
.faq__q {
  display: block;
  width: 100%;
  padding: 6% 0;
  border-bottom: .5px solid var(--c-ink);
  text-align: left;
  cursor: pointer;
}
.faq__q::after { content: ""; display: table; clear: both; }
.faq__q[aria-expanded="true"] { border-bottom: 0; }
.faq__q-text { font-size: 24px; font-weight: 600; line-height: 1em; color: var(--c-ink); }
.faq__icon { float: right; display: inline-block; width: 1em; text-align: right; line-height: 0; color: var(--c-ink); }
.faq__icon svg { display: inline-block; width: 1em; height: 1em; margin-left: -5px; fill: var(--c-ink); }
.faq__icon .faq__icon-open { display: none; }
.faq__q[aria-expanded="true"] .faq__icon .faq__icon-closed { display: none; }
.faq__q[aria-expanded="true"] .faq__icon .faq__icon-open { display: inline-block; }
.faq__a {
  display: none;
  padding: 0 50% 3% 0;
  border-bottom: .5px solid var(--c-ink);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  color: var(--c-ink);
}
.faq__a.is-open { display: block; }

/* ---------- Propietarios: CTA final ---------- */
.cta-final {
  min-height: 68vh;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(180deg, var(--c-pink) 30%, #fff 70%);
}
.cta-final__icon { flex: 0 1 25%; max-width: 25%; z-index: 2; text-align: center; }
.cta-final__icon .icon__wrap { transition: transform 1s; }
.cta-final__icon svg { display: block; height: 35px; width: auto; fill: var(--c-ink); }
.cta-final__icon:hover .icon__wrap { transform: scale(1.3); }
.cta-final__icon--start { align-self: flex-start; }
.cta-final__icon--center { align-self: center; }
.cta-final__content {
  display: flex; flex-direction: column; justify-content: center;
  gap: 30px;
  flex: 0 1 850px;
  min-width: 0;
  text-align: center;
}
.cta-final .eyebrow { position: relative; z-index: 1; color: var(--c-ink); }
.cta-final .h2 { font-size: 60px; color: var(--c-ink); }
.cta-final__text { font-size: 22px; font-weight: 300; line-height: 1.5em; color: var(--c-ink); }

/* ---------- Nosotros ---------- */
.about {
  min-height: 75vh;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5%;
  padding: 5% 5% 0;
  background: linear-gradient(40deg, #fff 10%, #fff 30%);
}
.about__col { display: flex; flex-direction: column; justify-content: space-between; flex: 0 1 50%; min-width: 0; }
.about__col--media { flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: center; }
.about__divider { padding: 2px 0; margin-bottom: 2%; }
.about__divider .divider__sep { width: 105px; }
.about__title {
  font-size: 3.7vw;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: -2px;
  color: var(--c-ink);
  text-align: left;
  margin-bottom: 10%;
}
.about__badge { width: 100%; text-align: left; }
.about__badge img { display: block; background: #fff; }
.about__photo { width: 50%; max-width: 50%; padding-right: 12px; order: -1; }
.about__photo img { display: block; width: 100%; border-radius: 200px; }
.about__text {
  width: 100%;
  margin: 5% 10% 0 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 32px;
  color: var(--c-ink-2);
}
.about__text p { margin-bottom: .9rem; }
.about__text a { color: var(--c-link); text-decoration: underline; }

/* ---------- Página 404 ---------- */
.notfound { min-height: 60vh; flex-direction: column; justify-content: center; align-items: center; gap: 24px; text-align: center; }

/* ---------- Animaciones de entrada (equivalentes a animate.css) ---------- */
.anim { visibility: hidden; }
.anim.is-visible {
  visibility: visible;
  animation-name: var(--anim, fadeIn);
  animation-duration: 1.25s;
  animation-fill-mode: both;
  animation-delay: var(--anim-delay, 0s);
}
.anim--slow.is-visible { animation-duration: 2s; }
[data-anim="fadeIn"] { --anim: fadeIn; }
[data-anim="fadeInUp"] { --anim: fadeInUp; }
[data-anim="fadeInDown"] { --anim: fadeInDown; }
[data-anim="fadeInLeft"] { --anim: fadeInLeft; }
[data-anim="rotateIn"] { --anim: rotateIn; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translate3d(0, 100%, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeInDown { from { opacity: 0; transform: translate3d(0, -100%, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeInLeft { from { opacity: 0; transform: translate3d(-100%, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes rotateIn {
  from { transform-origin: center; transform: rotate3d(0, 0, 1, -200deg); opacity: 0; }
  to { transform-origin: center; transform: none; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .anim { visibility: visible; }
  .anim.is-visible { animation: none; }
  .carousel__track, .btn, .icon__wrap, .prop__bg { transition: none; }
}

/* ==========================================================================
   Escritorio ≥ 768px (anchos de columna)
   ========================================================================== */
@media (min-width: 768px) {
  .hero__col { flex-basis: 50%; }
}

/* ==========================================================================
   Tablet ≤ 1024px
   ========================================================================== */
@media (max-width: 1024px) {
  /* Cabecera */
  .site-header { min-height: 90px; padding: 0 2%; }
  .site-header__bar { padding: 2%; }
  .site-header__logo img { height: 16px; }
  .nav__link { font-size: 14px; }
  .nav__item:not(:first-child) .nav__link { margin-left: 15px; }
  .nav__item:not(:last-child) .nav__link { margin-right: 15px; }
  .nav__dropdown a { font-size: 14px; }
  .btn--primary { font-size: 14px; }

  /* Hero */
  .hero { min-height: 80vh; flex-direction: column; align-items: center; padding: 15% 5% 0; }
  .hero__col { flex-basis: auto; width: 100%; }
  .hero__col--media { width: 70%; justify-content: space-around; }
  .hero__cta { text-align: center; }
  .hero__title { font-size: 45px; }
  .hero__desc { font-size: 20px; }
  .hero__cta .btn { font-size: 14px; }
  .hero__img img { width: 100%; height: 400px; object-fit: contain; }
  .blob { width: 280px; height: 280px; }
  .blob--left, .blob--right { top: -20%; }
  .icon--sparkle svg { height: 30px; }
  .icon--big svg { height: 120px; }

  /* Inicio */
  .intro { min-height: 600px; padding: 10% 5%; }
  .intro__divider .divider__sep { width: 105px; }
  .intro__title { width: 100%; font-size: 50px; }
  .intro__text { width: 100%; font-size: 18px; line-height: 1.5em; }
  .intro__text p { margin: 3% 0 0; }
  .feature__title { font-size: 20px; }

  .properties { min-height: 75vh; padding: 10% 5%; }
  .properties__head .h2 { font-size: 40px; }
  .properties__grid { margin-top: 8%; }
  .prop { justify-content: space-between; }
  .prop__media { min-height: 150px; }
  .prop__content { padding: 10% 5% 0 0; }
  .prop__title { font-size: 20px; }
  .prop__desc { line-height: 20px; }
  .prop--text .prop__content { padding: 10% 5% 0 0; }

  .testimonials .section__inner { padding: 10% 0; }
  .testimonials .h2 { font-size: 40px; }
  .divider--center .divider__sep { width: 100%; }
  .carousel { width: 100%; }
  .testimonial__text { font-size: 18px; }
  .testimonial__name { font-size: 20px; }

  /* Pie */
  .site-footer { min-height: 600px; padding: 10% 5%; }
  .footer__intro { width: 100%; }
  .footer__title { font-size: 40px; }
  .footer__text { font-size: 18px; }
  .footer__contact { gap: 35px; }
  .contact-item__title { font-size: 20px; }
  .form__submit { font-size: 14px; }

  /* Propietarios */
  .owners-intro__inner { gap: 20px; flex-wrap: wrap; padding: 10% 0 5%; }
  .owners-intro__lead { flex-basis: 100%; justify-content: center; gap: 28px; }
  .owners-intro__title { font-size: 40px; margin-right: 30%; }
  .owners-intro__lead .btn { font-size: 14px; }
  .owners-intro__col { flex-basis: 45%; }
  .divider__text { font-size: 30px; }
  .owner-feature__title { font-size: 20px; }

  .services { padding: 10% 5%; }
  .services__head .h2 { font-size: 40px; }
  .service { width: 29%; }
  .service:first-child { width: 30%; }
  .service__title { font-size: 22px; letter-spacing: 0; }

  .faq { min-height: 80vh; flex-direction: column; }
  .faq__head { width: 100%; margin-bottom: 5%; }
  .faq__head .h2 { font-size: 40px; }
  .faq__list { width: 100%; max-width: 100%; }
  .faq__q-text { font-size: 20px; }
  .faq__a { padding: 0 45% 3% 0; }

  .cta-final { min-height: 50vh; padding: 10% 5%; }
  .cta-final__icon { flex-basis: 15%; max-width: 15%; }
  .cta-final__content { flex-basis: 70%; }
  .cta-final .h2 { font-size: 45px; }
  .cta-final__text { font-size: 20px; }
  .cta-final .btn { font-size: 14px; }

  /* Nosotros */
  .about { min-height: 600px; align-items: stretch; flex-wrap: wrap; gap: 20px; padding: 10% 5%; }
  .about__col { flex-basis: 100%; }
  .about__title { font-size: 50px; }
  .about__badge { text-align: center; }
  .about__badge img { width: 100%; }
  .about__text { font-size: 18px; line-height: 1.5em; margin: 5% 0 0; }
}

/* ==========================================================================
   Móvil ≤ 767px
   ========================================================================== */
@media (max-width: 767px) {
  /* Cabecera */
  .site-header { min-height: 60px; gap: 15px; padding: 0; }
  .site-header__bar { padding: 3%; }
  .nav { flex-grow: 1; flex-shrink: 0; }
  .nav__list { display: none; }
  .nav__toggle { display: flex; }
  .nav__dropdown { display: block; }
  .nav__dropdown a { padding-top: 12px; padding-bottom: 12px; }
  .btn--primary { font-size: 14px; padding: 10px 18px; }

  /* Hero */
  .hero { min-height: 80vh; }
  .hero__col--media { width: 100%; }
  .hero__cta { padding-top: 40px; }
  .hero__title { font-size: 35px; line-height: 1.2em; }
  .hero__desc { font-size: 18px; }
  .hero__cta .btn { letter-spacing: 2px; }
  .hero__img img { height: 300px; }
  .blob { width: 180px; height: 180px; }
  .blob--left { top: 5%; }
  .blob--right { top: 5%; right: -20%; }
  .icon--sparkle svg { height: 25px; }
  .icon--big svg { height: 90px; }

  /* Inicio */
  .intro { gap: 50px; padding: 20% 5%; }
  .intro__divider { margin-bottom: 4%; }
  .intro__title { font-size: 30px; line-height: 1.2em; }
  .intro__text { font-size: 16px; }
  .intro__text p { margin: 5% 0 0; }
  .features { flex-wrap: wrap; gap: 35px; }
  .feature { flex-basis: 100%; }

  .properties { padding: 20% 5%; }
  .properties__head .eyebrow { font-size: 13px; }
  .properties__head .h2 { font-size: 30px; margin-top: 4%; }
  .properties__grid { flex-wrap: wrap; margin-top: 15%; }
  .prop { width: 100%; }
  .prop + .prop { margin: 15% 0; }
  .prop__media { min-height: 200px; }
  .prop__content, .prop--text .prop__content { padding: 5% 0 0; }
  .prop__desc { line-height: 22px; }

  .testimonials { min-height: 600px; }
  .testimonials .section__inner { padding: 20% 0; }
  .testimonials .eyebrow { font-size: 13px; }
  .testimonials .h2 { font-size: 30px; }
  .testimonial__footer { margin-top: 40px; }
  .testimonial__text { font-size: 16px; }
  .testimonial__role { font-size: 14px; }

  /* Pie */
  .site-footer { padding: 15% 5%; }
  .footer__intro { text-align: center; }
  .footer__title { font-size: 30px; }
  .footer__text { font-size: 16px; }
  .footer__cols { flex-direction: column-reverse; gap: 65px; }
  .footer__contact, .footer__form { width: 100%; }
  .contact-item { text-align: center; }
  .contact-item--phone { margin: 0 8px 8px 0; }
  .form__group--half { width: 100%; }
  .form__buttons { justify-content: center; }
  .form__submit { letter-spacing: 2px; }

  /* Propietarios */
  .owners-intro__inner { padding: 20% 0; }
  .owners-intro__title { font-size: 30px; margin-right: 0; }
  .owners-intro__lead .btn { letter-spacing: 2px; padding: 15px 30px; }
  .owners-intro__col { flex-basis: 100%; }
  .divider--text { width: 100%; max-width: 100%; }
  .divider--text .divider__sep { width: 100%; }
  .divider__text { font-size: 28px; line-height: 1.1em; }
  .owner-feature { margin: 22px 0 50px; }

  .services { gap: 0; padding: 20% 5%; }
  .services__head .eyebrow { font-size: 13px; }
  .services__head .h2 { font-size: 30px; margin-top: 4%; }
  .services__grid { gap: 50px; margin-top: 15%; }
  .service, .service:first-child { width: 100%; }
  .service__icon { margin-bottom: 25px; }
  .service__title { font-size: 20px; }

  .faq { padding: 10%; }
  .faq__head .eyebrow { font-size: 13px; }
  .faq__head .h2 { font-size: 30px; }
  .faq__q { padding: 10% 0; }
  .faq__q-text { font-size: 18px; line-height: 1.3em; }
  .faq__a { padding: 0 10% 5% 0; }

  .cta-final { min-height: 80vh; flex-direction: column; justify-content: center; align-items: center; padding: 15% 5%; }
  .cta-final__icon--start { align-self: center; }
  .cta-final__content { flex-basis: auto; width: 100%; margin: 15% 0; }
  .cta-final .eyebrow { font-size: 13px; }
  .cta-final .h2 { font-size: 30px; }
  .cta-final__text { font-size: 18px; }
  .cta-final .btn { letter-spacing: 2px; padding: 15px 30px; }
  .cta-final__btn { margin-top: 8%; }
  .cta-final__icon--center { flex-basis: auto; max-width: none; }

  /* Nosotros */
  .about { gap: 0; padding: 15% 5%; }
  .about__divider { margin-bottom: 3%; }
  .about__title { font-size: 30px; line-height: 1.2em; }
  .about__badge { margin-bottom: 12px; }
  .about__photo { padding-right: 6px; }
  .about__text { font-size: 16px; margin-top: 10%; }
}

/* ==========================================================================
   Reservas: catálogo de viviendas y petición con documentación
   ========================================================================== */
.catalogo {
  flex-direction: column;
  gap: 65px;
  background: linear-gradient(180deg, #fff 60%, var(--c-pink) 100%);
}
.catalogo__head { max-width: 650px; }
.catalogo__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.catalogo__estado { grid-column: 1 / -1; text-align: center; font-size: 18px; font-weight: 300; color: var(--c-ink); }
.aloja { display: flex; flex-direction: column; background: #fff; border-radius: 12px; box-shadow: var(--shadow-bar); overflow: hidden; }
.aloja__media { position: relative; aspect-ratio: 4 / 3; background: var(--c-pink); }
.aloja__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.aloja__badge {
  position: absolute; left: 16px; top: 16px;
  padding: 6px 12px;
  border-radius: 60px;
  font-size: 13px; font-weight: 500;
  background: #fff; color: var(--c-ink);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}
.aloja__badge--ok { background: var(--c-red); color: #fff; }
.aloja__body { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: 22px 24px 24px; }
.aloja__zona { font-size: 13px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--c-ink-2); }
.aloja__titulo { font-size: 24px; font-weight: 600; line-height: 1.1em; letter-spacing: -1px; color: var(--c-ink); }
.aloja__meta { font-size: 16px; font-weight: 300; line-height: 1.5em; color: var(--c-ink); }
.aloja__habs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.hab { font-size: 13px; font-weight: 400; padding: 4px 10px; border-radius: 60px; border: 1px solid var(--c-ink); color: var(--c-ink); }
.hab--disponible { background: var(--c-pink); border-color: transparent; }
.hab--ocupada { opacity: .4; }
.hab--consultar { border-style: dashed; }
.aloja__accion { margin-top: auto; padding-top: 10px; }

.solicitud { background: linear-gradient(180deg, var(--c-pink) 0%, #fff 45%); }
.solicitud .section__inner { max-width: 960px; }
.solicitud .h2 { margin-top: 10px; }
.solicitud__intro { margin: 16px 0 44px; font-size: 18px; font-weight: 300; line-height: 1.5em; color: var(--c-ink); }
.form__bloque { border: 0; padding: 0; margin: 0 0 44px; min-width: 0; }
.form__leyenda { padding: 0; margin-bottom: 22px; font-size: 24px; font-weight: 600; letter-spacing: -1px; color: var(--c-ink); }
.form__rejilla { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 37px; }
.form__campo { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form__campo--ancho { grid-column: 1 / -1; }
.form__campo--oculto { display: none; }
.form__label { font-size: 14px; font-weight: 500; color: var(--c-ink); }
.form__req { color: var(--c-red); }
.form__ayuda { margin-bottom: 18px; font-size: 14px; font-weight: 300; line-height: 1.5em; color: var(--c-ink); }
select.form__field {
  appearance: none; -webkit-appearance: none;
  padding-right: 34px;
  cursor: pointer;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23212121' stroke-width='1.6'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 8px center / 18px;
}
select.form__field:disabled { opacity: .5; cursor: not-allowed; }
input[type="date"].form__field, input[type="number"].form__field { min-height: 40px; }
.form__archivo {
  width: 100%; min-height: 40px;
  padding: 6px 0;
  font-family: var(--font); font-size: 14px; font-weight: 300; color: var(--c-ink);
  border: 0; border-bottom: 1px solid var(--c-ink); background: transparent;
}
.form__archivo::file-selector-button {
  margin-right: 12px;
  padding: 7px 16px;
  font: inherit; font-weight: 500;
  color: var(--c-ink); background: #fff;
  border: 1px solid var(--c-ink); border-radius: 50px;
  cursor: pointer;
}
.form__check { display: flex; align-items: flex-start; gap: 12px; margin-top: 16px; font-size: 14px; font-weight: 300; line-height: 1.5em; color: var(--c-ink); cursor: pointer; }
.form__check input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--c-red); }
.form__check a { text-decoration: underline; color: var(--c-red); }
.form__envio { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.form__progreso { width: 100%; max-width: 440px; display: flex; flex-direction: column; gap: 8px; }
.form__progreso-barra { position: relative; height: 6px; border-radius: 6px; background: var(--c-pink); overflow: hidden; }
.form__progreso-barra::after { content: ""; position: absolute; inset: 0; width: var(--p, 0%); background: var(--c-red); transition: width .2s; }
.form__progreso-texto { font-size: 13px; font-weight: 300; }
.form__message--reserva { margin: 0; font-size: 15px; font-weight: 400; }
.form__message--error { color: var(--c-red-dark); }
.form__field--error { border-bottom-color: var(--c-red-dark); box-shadow: 0 1px 0 var(--c-red-dark); }
.solicitud__ok {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  padding: 40px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-bar);
  font-size: 18px; font-weight: 300; line-height: 1.5em; color: var(--c-ink);
}
.solicitud__ok-titulo { font-size: 32px; font-weight: 600; letter-spacing: -1px; }

/* Textos legales */
.legal { flex-direction: column; align-items: stretch; gap: 20px; max-width: 900px; margin: 0 auto; font-weight: 300; line-height: 1.6em; color: var(--c-ink); }
.legal h1 { font-size: 40px; font-weight: 500; letter-spacing: -2px; line-height: 1.1em; }
.legal h2 { margin-top: 18px; font-size: 24px; font-weight: 600; letter-spacing: -1px; }
.legal p, .legal li { font-size: 17px; }
.legal ul { padding-left: 22px; list-style: disc; display: flex; flex-direction: column; gap: 6px; }
.legal a { color: var(--c-red); text-decoration: underline; }
.legal__aviso { padding: 16px 20px; border-left: 3px solid var(--c-red); background: var(--c-pink-light); font-size: 15px; }

@media (max-width: 1024px) {
  .catalogo__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalogo__head .h2, .solicitud .h2 { font-size: 40px; }
  .solicitud .section__inner { padding: 10% 0; }
}
@media (max-width: 767px) {
  .catalogo { padding: 20% 5%; gap: 40px; }
  .catalogo__grid { grid-template-columns: 1fr; gap: 24px; }
  .catalogo__head .eyebrow, .solicitud .eyebrow { font-size: 13px; }
  .catalogo__head .h2, .solicitud .h2 { font-size: 30px; }
  .form__rejilla { grid-template-columns: 1fr; gap: 22px; }
  .form__bloque { margin-bottom: 36px; }
  .solicitud .section__inner { padding: 20% 0; }
  .solicitud__ok { padding: 28px 22px; }
  .legal h1 { font-size: 30px; }
}

/* ---------- Reservas: anuncios, galería y ampliación ---------- */
.aloja__foto { cursor: zoom-in; }
.galeria__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9); color: var(--c-ink);
  font-size: 26px; line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
  opacity: 0; transition: opacity .2s, background .2s;
}
.galeria__btn--prev { left: 12px; }
.galeria__btn--next { right: 12px; }
.galeria:hover .galeria__btn, .galeria:focus-within .galeria__btn { opacity: 1; }
.galeria__btn:hover { background: #fff; }
.galeria__contador {
  position: absolute; right: 12px; bottom: 12px;
  padding: 3px 9px;
  border-radius: 60px;
  background: rgba(33, 33, 33, .7); color: #fff;
  font-size: 12px; font-weight: 500; letter-spacing: .5px;
}
.aloja__precio { font-size: 16px; font-weight: 300; color: var(--c-ink); }
.aloja__precio strong { font-size: 26px; font-weight: 600; letter-spacing: -1px; }
.aloja__precio span { font-size: 14px; }
.aloja__condiciones { font-size: 14px; font-weight: 300; color: var(--c-ink); }
.aloja__desc {
  font-size: 15px; font-weight: 300; line-height: 1.5em; color: var(--c-ink);
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.sin-scroll { overflow: hidden; }
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(17, 15, 15, .92);
}
.lightbox__figura { max-width: min(1400px, 92vw); max-height: 90vh; margin: 0; text-align: center; }
.lightbox__img { max-width: 100%; max-height: 82vh; width: auto; height: auto; border-radius: 8px; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); }
.lightbox__pie { margin-top: 12px; font-size: 14px; color: #fff; letter-spacing: 1px; }
.lightbox__btn, .lightbox__cerrar {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12); color: #fff;
  font-size: 36px; line-height: 1;
  transition: background .2s;
}
.lightbox__btn:hover, .lightbox__cerrar:hover { background: rgba(255, 255, 255, .28); }
.lightbox__btn--prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__cerrar { right: 18px; top: 18px; font-size: 32px; }
@media (max-width: 767px) {
  .galeria__btn { opacity: 1; width: 32px; height: 32px; font-size: 22px; }
  .lightbox { padding: 12px; }
  .lightbox__btn { width: 40px; height: 40px; font-size: 28px; }
  .lightbox__btn--prev { left: 6px; }
  .lightbox__btn--next { right: 6px; }
  .lightbox__cerrar { right: 8px; top: 8px; }
}

/* ==========================================================================
   Flujo de solicitud de reserva (cuatro pasos, móvil primero)
   ========================================================================== */
.btn--tarjeta { padding: 14px 26px; font-size: 15px; }
.cta-reserva { background: linear-gradient(180deg, var(--c-pink) 0%, #fff 70%); min-height: 0; padding: 5%; justify-content: center; }
.cta-reserva .cta-final__content { flex: 0 1 760px; }
.cta-reserva .h2 { font-size: 2.5vw; }
.enlace { padding: 0; font: inherit; font-weight: 500; color: var(--c-red); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

.flujo {
  position: fixed; inset: 0; z-index: 150;
  display: flex; align-items: stretch; justify-content: center;
  background: rgba(17, 15, 15, .55);
}
.flujo__panel {
  display: flex; flex-direction: column;
  width: 100%; height: 100%;
  background: #fff;
  color: var(--c-ink);
}
.flujo__cabecera {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid #ececec;
}
.flujo__titulos { flex: 1; min-width: 0; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.flujo__titulo { font-size: 20px; font-weight: 600; letter-spacing: -.5px; line-height: 1.2; }
.flujo__paso { font-size: 13px; font-weight: 400; color: #6b6b6b; }
.flujo__atras, .flujo__cerrar {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex: 0 0 auto;
  border-radius: 50%;
  color: var(--c-ink);
  transition: background .2s;
}
.flujo__atras:hover, .flujo__cerrar:hover { background: var(--c-pink-light); }
.flujo__atras svg, .flujo__cerrar svg { width: 22px; height: 22px; }
.flujo__progreso { height: 3px; background: #f3e4e3; }
.flujo__progreso span { display: block; height: 100%; width: 25%; background: var(--c-red); transition: width .3s ease; }
.flujo__form { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.flujo__cuerpo { flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 18px 16px 28px; }
.flujo__pie {
  display: flex; flex-direction: column; gap: 8px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid #ececec;
  background: #fff;
}
.flujo__acciones { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.flujo__nota { flex: 1; font-size: 13px; font-weight: 300; line-height: 1.35; color: #555; }
.flujo__continuar { flex: 0 0 auto; min-width: 150px; }
.flujo__continuar:disabled { opacity: .6; cursor: wait; }
.flujo__progreso-envio { display: flex; flex-direction: column; gap: 6px; }
.flujo .form__message--reserva { margin: 0; }
.flujo .form__message:empty { display: none; }

.paso { display: flex; flex-direction: column; gap: 18px; }
.paso__titulo { font-size: 22px; font-weight: 600; letter-spacing: -.5px; line-height: 1.2; }
.paso__intro { font-size: 15px; font-weight: 300; line-height: 1.5; color: #444; }
.paso--ok { align-items: center; text-align: center; padding-top: 24px; }
.ok__icono { width: 72px; height: 72px; color: var(--c-red); }
.ok__icono svg { width: 100%; height: 100%; }

.flujo__campo { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.flujo__campo.form__campo--oculto { display: none; }
.flujo__ayuda { font-size: 13px; font-weight: 300; color: #666; }
.flujo .form__label { font-size: 15px; font-weight: 500; }
.flujo .form__field {
  min-height: 48px;
  padding: 11px 14px;
  font-size: 16px;
  border: 1px solid #cfcfcf; border-radius: 8px;
  background: #fff;
}
.flujo select.form__field { background-color: #fff; background-position: right 12px center; }
.flujo textarea.form__field { min-height: 90px; padding: 11px 14px; }
.flujo .form__field:focus { border-color: var(--c-ink); box-shadow: 0 0 0 3px rgba(219, 80, 74, .15); }
.flujo .form__field--error { border-color: var(--c-red-dark); box-shadow: 0 0 0 3px rgba(226, 49, 37, .12); }
.flujo .form__archivo { border: 1px dashed #bdbdbd; border-radius: 8px; padding: 10px 12px; min-height: 48px; }
.flujo .form__rejilla { gap: 14px; }
.flujo .form__check { margin-top: 0; }
.form__check--tarjeta { padding: 14px; border: 1px solid #e3e3e3; border-radius: 10px; background: #fafafa; }
.form__check--tarjeta strong { font-weight: 600; }

.ayuda { border: 1px solid #ececec; border-radius: 10px; padding: 0 14px; }
.ayuda summary { display: flex; align-items: center; gap: 8px; padding: 12px 0; font-weight: 500; font-size: 15px; cursor: pointer; list-style: none; }
.ayuda summary::-webkit-details-marker { display: none; }
.ayuda__icono {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--c-red); color: #fff;
  font-size: 12px; font-weight: 600; font-style: italic;
}
.ayuda__lista { padding: 0 0 14px 20px; list-style: decimal; display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 300; line-height: 1.5; }

.elegido { display: flex; gap: 14px; align-items: flex-start; }
.elegido__foto { width: 96px; height: 96px; flex: 0 0 auto; border-radius: 8px; object-fit: cover; background: var(--c-pink); }
.elegido__texto { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.elegido__titulo { font-weight: 600; color: var(--c-red); text-decoration: underline; text-underline-offset: 3px; line-height: 1.3; }
.elegido__sub { font-size: 14px; font-weight: 300; color: #555; }
.elegido__cambiar { align-self: flex-start; font-size: 13px; font-weight: 500; color: var(--c-ink); text-decoration: underline; text-underline-offset: 3px; }

.precio { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; }
.precio__titulo { font-size: 20px; font-weight: 600; letter-spacing: -.5px; }
.precio__subtitulo { margin-top: 10px; font-size: 18px; font-weight: 600; letter-spacing: -.5px; line-height: 1.3; }
.precio__lista { display: flex; flex-direction: column; gap: 8px; margin: 0; }
.precio__fila { display: flex; justify-content: space-between; gap: 16px; font-size: 16px; font-weight: 300; }
.precio__fila dd { margin: 0; white-space: nowrap; }
.precio__fila--total { font-weight: 600; }
.precio__texto { font-size: 15px; font-weight: 300; line-height: 1.55; color: #444; }
.precio__consultar { padding: 12px 14px; border-radius: 8px; background: var(--c-pink-light); font-size: 14px; font-weight: 300; }

.garantias { display: flex; flex-direction: column; padding-top: 10px; }
.garantias__titulo { font-size: 20px; font-weight: 600; letter-spacing: -.5px; margin-bottom: 6px; }
.garantia { border-bottom: 1px solid #e6e6e6; }
.garantia summary { display: flex; align-items: center; gap: 12px; padding: 14px 0; font-size: 15px; font-weight: 500; cursor: pointer; list-style: none; }
.garantia summary::-webkit-details-marker { display: none; }
.garantia summary svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--c-ink); }
.garantia summary::after { content: ""; margin-left: auto; width: 9px; height: 9px; border-right: 2px solid var(--c-ink); border-bottom: 2px solid var(--c-ink); transform: rotate(45deg); transition: transform .2s; }
.garantia[open] summary::after { transform: rotate(-135deg); }
.garantia p { padding: 0 0 14px 34px; font-size: 14px; font-weight: 300; line-height: 1.5; color: #444; }

.resumen__lista { display: flex; flex-direction: column; margin: 0; border: 1px solid #e6e6e6; border-radius: 10px; overflow: hidden; }
.resumen__fila { display: grid; grid-template-columns: 96px 1fr auto; gap: 10px; align-items: start; padding: 10px 12px; border-bottom: 1px solid #efefef; font-size: 14px; }
.resumen__fila:last-child { border-bottom: 0; }
.resumen__fila dt { font-weight: 500; color: #555; }
.resumen__fila dd { margin: 0; font-weight: 300; overflow-wrap: anywhere; }
.resumen__editar { font-size: 13px; font-weight: 500; color: var(--c-red); text-decoration: underline; text-underline-offset: 3px; }

/* Desglose de costes y mensualidades */
.desglose {
  position: fixed; inset: 0; z-index: 160;
  display: flex; align-items: stretch; justify-content: center;
  background: rgba(17, 15, 15, .55);
}
.desglose__panel { display: flex; flex-direction: column; width: 100%; height: 100%; background: #fff; }
.desglose__cabecera { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 16px; border-bottom: 1px solid #ececec; }
.desglose__titulo { font-size: 20px; font-weight: 600; letter-spacing: -.5px; }
.desglose__cuerpo { flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 16px; display: flex; flex-direction: column; gap: 14px; background: #fafafa; }
.desglose__bloque { padding: 16px; border: 1px solid #e6e6e6; border-radius: 10px; background: #fff; }
.desglose__bloque h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.desglose__bloque > p { font-size: 14px; font-weight: 300; line-height: 1.5; color: #444; margin-bottom: 8px; }
.desglose__fila { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid #efefef; font-size: 15px; }
.desglose__concepto { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.desglose__concepto small { font-size: 13px; font-weight: 300; color: #777; }
.desglose__importe { white-space: nowrap; font-weight: 500; }
.desglose__importe--tachado { text-decoration: line-through; color: #999; font-weight: 300; }
.desglose__vacio { font-size: 14px; font-weight: 300; color: #666; padding: 6px 0; }
.desglose__nota { padding: 16px; border-radius: 10px; background: var(--c-pink-light); }
.desglose__nota h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.desglose__nota p { font-size: 14px; font-weight: 300; line-height: 1.55; }

@media (min-width: 768px) {
  .desglose { align-items: center; padding: 24px; }
  .desglose__panel { width: 100%; max-width: 640px; height: auto; max-height: 92vh; border-radius: 16px; box-shadow: 0 30px 80px rgba(0, 0, 0, .35); overflow: hidden; }
  .desglose__cabecera { padding: 16px 24px; }
  .desglose__cuerpo { padding: 20px 24px; }
  .desglose__titulo { font-size: 24px; }
  /* El flujo ocupa toda la pantalla, como una página de pago */
  .flujo { background: #fff; }
  .flujo__cabecera { padding: 14px 5%; }
  .flujo__titulo { font-size: 24px; }
  .flujo__cuerpo { padding: 0; }
  .flujo__columnas { max-width: 1180px; margin: 0 auto; padding: 32px 5% 56px; }
  .flujo__pie { padding: 14px 5%; }
  .flujo__pie-inner { max-width: 1180px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
  .resumen__fila { grid-template-columns: 120px 1fr auto; }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flujo__columnas, .flujo__pie-inner { max-width: 760px; }
  .flujo__lateral { display: none; }
}
@media (min-width: 1025px) {
  .flujo__columnas { display: grid; grid-template-columns: minmax(0, 1fr) 400px; column-gap: 56px; align-items: start; }
  .flujo__pie-inner { display: grid; grid-template-columns: minmax(0, 1fr) 400px; column-gap: 56px; }
  .flujo__pie-inner > * { grid-column: 1; }
  .flujo__lateral { position: sticky; top: 0; }
  .flujo .paso[data-paso="1"] .precio, .flujo .paso[data-paso="1"] .precio__consultar { display: none; }
  .flujo--final .flujo__lateral { visibility: hidden; }
}
@media (max-width: 767px) {
  .flujo__lateral { display: none; }
  .flujo__pie-inner { display: flex; flex-direction: column; gap: 8px; }
}

/* Resumen lateral del flujo (escritorio) */
.lateral { display: flex; flex-direction: column; gap: 14px; padding: 22px; border: 1px solid #e6e6e6; border-radius: 16px; background: #fff; box-shadow: 0 12px 32px rgba(0, 0, 0, .08); }
.lateral__aloja { display: flex; gap: 14px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid #efefef; }
.lateral__foto { width: 88px; height: 72px; border-radius: 10px; object-fit: cover; flex: 0 0 auto; background: var(--c-pink); }
.lateral__aloja-texto { min-width: 0; }
.lateral__titulo { font-size: 16px; font-weight: 600; line-height: 1.3; overflow-wrap: anywhere; }
.lateral__sub { font-size: 13px; font-weight: 300; color: #555; }
.lateral__lista { display: flex; flex-direction: column; gap: 8px; margin: 0; }
.lateral__fila { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; font-weight: 300; }
.lateral__fila dd { margin: 0; font-weight: 500; white-space: nowrap; }
.lateral__fila--total { padding-top: 10px; border-top: 1px solid #eee; font-weight: 600; }
.lateral__fila--total dd { font-weight: 600; }
.lateral__dispo { font-size: 13px; line-height: 1.4; padding: 9px 12px; border-radius: 8px; background: #f3f3f3; }
.lateral__dispo:empty { display: none; }
.lateral__dispo--ok { background: #e8f5e9; color: #1b5e20; }
.lateral__dispo--no { background: var(--c-pink-light); color: var(--c-red-dark); }
.lateral .enlace { align-self: flex-start; font-size: 14px; }
.lateral__nota { display: flex; gap: 8px; align-items: flex-start; font-size: 12px; font-weight: 300; line-height: 1.45; color: #555; }
.lateral__nota svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--c-red); margin-top: 1px; }

/* Campo de fechas y calendario de disponibilidad */
.fechas { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fechas__btn {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  min-height: 52px; padding: 8px 12px;
  border: 1px solid #cfcfcf; border-radius: 8px; background: #fff;
  text-align: left; transition: border-color .2s, box-shadow .2s;
}
.fechas__btn:hover { border-color: var(--c-ink); }
.fechas__btn--activo { border-color: var(--c-ink); box-shadow: 0 0 0 3px rgba(219, 80, 74, .15); }
.fechas--error .fechas__btn { border-color: var(--c-red-dark); box-shadow: 0 0 0 3px rgba(226, 49, 37, .12); }
.fechas__etq { font-size: 11px; font-weight: 500; letter-spacing: .4px; text-transform: uppercase; color: #666; }
.fechas__val { font-size: 15px; font-weight: 500; }
.fechas__btn--vacio .fechas__val { font-weight: 300; color: #888; }
.tarjeta__ayuda { font-size: 12px; font-weight: 300; color: #666; line-height: 1.4; }
.calendario {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 60;
  width: 620px; max-width: calc(100vw - 32px);
  padding: 16px; background: #fff;
  border: 1px solid #e6e6e6; border-radius: 14px; box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}
.calendario--derecha { left: auto; right: 0; }
.calendario__cabecera { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.calendario__titulo { font-size: 15px; font-weight: 600; }
.calendario__nav { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; font-size: 26px; line-height: 1; padding-bottom: 3px; }
.calendario__nav:hover { background: var(--c-pink-light); }
.calendario__nav:disabled { opacity: .3; cursor: default; background: none; }
.calendario__meses { display: grid; gap: 20px; }
.calendario__meses--2 { grid-template-columns: 1fr 1fr; }
.mes__titulo { text-align: center; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.mes__semana, .mes__dias { display: grid; grid-template-columns: repeat(7, 1fr); }
.mes__semana span { text-align: center; font-size: 11px; font-weight: 500; color: #888; padding: 4px 0; }
.dia { position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 14px; border-radius: 50%; margin: 1px; }
.dia:not(:disabled):hover { background: var(--c-pink); }
.dia--vacio { visibility: hidden; }
.dia--pasado { color: #c8c8c8; cursor: default; }
.dia--bloqueado { color: #b0b0b0; text-decoration: line-through; cursor: not-allowed; border-radius: 6px; background: repeating-linear-gradient(135deg, #f1f1f1 0 3px, #fff 3px 7px); }
.dia--hoy { font-weight: 600; }
.dia--rango, .dia--previo { background: var(--c-pink); border-radius: 0; }
.dia--entrada, .dia--salida { background: var(--c-red) !important; color: #fff; font-weight: 600; }
.calendario__pie { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 10px; padding-top: 10px; border-top: 1px solid #eee; font-size: 13px; }
.calendario__leyenda { display: flex; align-items: center; gap: 6px; color: #666; font-weight: 300; }
.calendario__leyenda i { width: 14px; height: 14px; border: 1px solid #ddd; border-radius: 3px; background: repeating-linear-gradient(135deg, #e3e3e3 0 3px, #fff 3px 6px); }
.calendario__ayuda { font-weight: 300; color: #444; }
.calendario--aviso .calendario__ayuda { color: var(--c-red-dark); font-weight: 500; }
.calendario__botones { display: flex; gap: 8px; align-items: center; margin-left: auto; }
.calendario__borrar { padding: 6px 8px; text-decoration: underline; text-underline-offset: 3px; }
.calendario__listo { padding: 8px 16px; border-radius: 60px; background: var(--c-ink); color: #fff; font-weight: 500; }
.calendario__fondo { position: fixed; inset: 0; z-index: 180; background: rgba(0, 0, 0, .45); }
@media (max-width: 767px) {
  .calendario {
    position: fixed; top: auto; left: 0; right: 0; bottom: 0; z-index: 190;
    width: auto; max-width: none; max-height: 86vh; overflow-y: auto;
    border-radius: 16px 16px 0 0; padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
  }
  .calendario__meses--2 { grid-template-columns: 1fr; }
  .calendario__pie { position: sticky; bottom: 0; background: #fff; padding-bottom: 4px; }
  .sin-scroll-calendario { overflow: hidden; }
}
@media (max-width: 767px) {
  .cta-reserva .h2 { font-size: 30px; }
  .flujo__nota { font-size: 12px; }
  .flujo__continuar { min-width: 0; padding-left: 22px; padding-right: 22px; }
  .flujo .form__rejilla--2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) and (min-width: 768px) { .cta-reserva .h2 { font-size: 40px; } }

/* ==========================================================================
   Ficha de anuncio (/anuncio/<id>)
   ========================================================================== */
.ficha { max-width: 1200px; margin: 0 auto; padding: 14px 5% 48px; }
.migas { padding: 6px 0 16px; }
.migas ul { display: flex; flex-wrap: wrap; gap: 4px 8px; font-size: 13px; font-weight: 300; color: #666; }
.migas a { color: var(--c-ink); }
.migas a:hover { text-decoration: underline; }
.migas li + li::before { content: "›"; margin-right: 8px; color: #999; }
.migas li[aria-current] { color: #666; max-width: 320px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ficha__estado { padding: 70px 0 90px; text-align: center; font-size: 18px; font-weight: 300; display: flex; flex-direction: column; gap: 22px; align-items: center; }
.ficha__estado p { margin: 0; }

.galeria-ficha { display: flex; flex-direction: column; gap: 10px; }
.galeria-ficha__principal { position: relative; aspect-ratio: 2 / 1; max-height: 560px; border-radius: 16px; overflow: hidden; background: var(--c-pink); }
.galeria-ficha__img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; }
.galeria-ficha__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .92); color: var(--c-ink);
  font-size: 30px; line-height: 1; padding-bottom: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
  transition: background .2s, transform .2s;
}
.galeria-ficha__btn:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.galeria-ficha__btn--prev { left: 16px; }
.galeria-ficha__btn--next { right: 16px; }
.galeria-ficha__badge { position: absolute; top: 16px; left: 16px; padding: 7px 14px; border-radius: 60px; background: rgba(255, 255, 255, .95); font-size: 13px; font-weight: 500; box-shadow: 0 2px 8px rgba(0, 0, 0, .15); }
.galeria-ficha__badge--ok { background: var(--c-red); color: #fff; }
.galeria-ficha__badge:empty { display: none; }
.galeria-ficha__mapa {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 60px;
  background: rgba(255, 255, 255, .95); color: var(--c-ink);
  font-size: 14px; font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}
.galeria-ficha__mapa svg { width: 18px; height: 18px; color: var(--c-red); }
.galeria-ficha__contador { position: absolute; right: 16px; bottom: 16px; padding: 5px 12px; border-radius: 60px; background: rgba(0, 0, 0, .6); color: #fff; font-size: 13px; }
.galeria-ficha__miniaturas { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.galeria-ficha__mini { position: relative; aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden; background: var(--c-pink); cursor: pointer; }
.galeria-ficha__mini img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.galeria-ficha__mini:hover img { transform: scale(1.05); }
.galeria-ficha__mini--activa { outline: 3px solid var(--c-red); outline-offset: -3px; }
.galeria-ficha__mini--mas::after {
  content: attr(data-texto); position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, .55); color: #fff;
  font-size: 14px; font-weight: 600; line-height: 1.25; text-align: center; white-space: pre-line; padding: 6px;
}

.ficha__cols {
  display: grid; grid-template-columns: minmax(0, 1fr) 372px; grid-template-areas: "intro aside" "main aside";
  column-gap: 48px; margin-top: 28px; align-items: start;
}
.ficha__intro { grid-area: intro; padding-bottom: 26px; border-bottom: 1px solid #ececec; }
.ficha__main { grid-area: main; display: flex; flex-direction: column; gap: 34px; min-width: 0; padding-top: 26px; }
.ficha__aside { grid-area: aside; min-width: 0; }
.ficha__titulo { font-size: 34px; font-weight: 600; letter-spacing: -1px; line-height: 1.15; }
.ficha__lugar { font-size: 16px; font-weight: 300; color: #555; margin-top: 8px; }
.ficha__precio { font-size: 26px; font-weight: 600; margin-top: 16px; letter-spacing: -.5px; }
.ficha__precio small { font-size: 15px; font-weight: 300; color: #555; margin-left: 8px; letter-spacing: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chips li { padding: 6px 12px; border: 1px solid #dcdcdc; border-radius: 60px; font-size: 13px; font-weight: 400; }
.aviso-ficha { display: flex; gap: 12px; padding: 16px 18px; border-radius: 12px; background: var(--c-pink-light); font-size: 14px; font-weight: 300; line-height: 1.5; }
.aviso-ficha svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--c-red); margin-top: 1px; }
.aviso-ficha strong { font-weight: 600; }
.ficha__seccion h2 { font-size: 21px; font-weight: 600; letter-spacing: -.5px; margin-bottom: 14px; }
.ficha__texto { font-size: 16px; font-weight: 300; line-height: 1.6; display: flex; flex-direction: column; gap: 12px; }
p.ficha__texto { display: block; margin-bottom: 10px; }
.ficha__texto--recortado { max-height: 190px; overflow: hidden; position: relative; }
.ficha__texto--recortado::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 80px; background: linear-gradient(rgba(255, 255, 255, 0), #fff); }
.ficha__mas { margin-top: 12px; font-size: 15px; font-weight: 500; color: var(--c-ink); text-decoration: underline; text-underline-offset: 4px; }
.ficha__mas:hover { color: var(--c-red); }
.equip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; }
.equip li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 300; }
.equip svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--c-red); }
.habs-ficha { display: flex; flex-wrap: wrap; gap: 8px; }
.mapa { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 9; max-height: 380px; background: #eee; }
.mapa iframe { width: 100%; height: 100%; border: 0; display: block; }
.mapa__zona { position: absolute; left: 50%; top: 50%; width: 190px; height: 190px; transform: translate(-50%, -50%); border-radius: 50%; background: rgba(219, 80, 74, .2); border: 2px solid rgba(219, 80, 74, .75); pointer-events: none; }
.mapa__pie { margin-top: 10px; font-size: 13px; font-weight: 300; color: #666; }
.condiciones { display: flex; flex-direction: column; margin: 0; border: 1px solid #e6e6e6; border-radius: 12px; overflow: hidden; }
.condiciones div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 16px; border-bottom: 1px solid #efefef; font-size: 15px; }
.condiciones div:last-child { border-bottom: 0; }
.condiciones dt { font-weight: 300; color: #444; }
.condiciones dd { margin: 0; font-weight: 500; text-align: right; }
.docs { display: flex; flex-direction: column; gap: 16px; padding: 18px 20px; border: 1px solid #e6e6e6; border-radius: 12px; }
.docs__item { display: flex; gap: 14px; }
.docs__item svg { width: 24px; height: 24px; flex: 0 0 auto; color: var(--c-ink); margin-top: 2px; }
.docs__item strong { display: block; font-size: 15px; font-weight: 600; }
.docs__item p { font-size: 14px; font-weight: 300; line-height: 1.5; color: #555; }
.gestor { display: flex; gap: 18px; align-items: flex-start; padding: 20px; border: 1px solid #e6e6e6; border-radius: 12px; }
.gestor__logo { width: 64px; height: 64px; border-radius: 50%; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; background: var(--c-pink); overflow: hidden; }
.gestor__logo img { width: 42px; height: 42px; border-radius: 50%; }
.gestor h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.gestor p { font-size: 14px; font-weight: 300; line-height: 1.5; color: #444; }
.gestor__datos { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 10px; font-weight: 400; }
.gestor__datos a { text-decoration: underline; text-underline-offset: 3px; }
.gestor__datos span:empty { display: none; }
.faq-ficha details { border-bottom: 1px solid #e6e6e6; }
.faq-ficha summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 0; font-size: 15px; font-weight: 500; cursor: pointer; list-style: none; }
.faq-ficha summary::-webkit-details-marker { display: none; }
.faq-ficha summary::after { content: "+"; font-size: 22px; font-weight: 300; line-height: 1; color: var(--c-red); }
.faq-ficha details[open] summary::after { content: "–"; }
.faq-ficha p { padding: 0 0 16px; font-size: 14px; font-weight: 300; line-height: 1.55; color: #444; }

.tarjeta {
  position: sticky; top: 132px;
  display: flex; flex-direction: column; gap: 14px;
  padding: 22px; border: 1px solid #e6e6e6; border-radius: 16px;
  background: #fff; box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}
.tarjeta__cabecera { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid #efefef; }
.tarjeta__avatar { width: 48px; height: 48px; border-radius: 50%; flex: 0 0 auto; }
.tarjeta__nombre { font-size: 16px; font-weight: 600; }
.tarjeta__sub { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 400; color: #2e7d32; }
.tarjeta__sub svg { width: 15px; height: 15px; }
.tarjeta__precio { font-size: 24px; font-weight: 600; letter-spacing: -.5px; }
.tarjeta__precio small { font-size: 14px; font-weight: 300; color: #555; letter-spacing: 0; margin-left: 2px; }
.tarjeta__fechas { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tarjeta__fechas label { display: flex; flex-direction: column; gap: 4px; font-size: 12px; font-weight: 500; color: #555; min-width: 0; }
.tarjeta .form__field { min-height: 44px; padding: 8px 10px; font-size: 15px; border: 1px solid #cfcfcf; border-radius: 8px; background: #fff; width: 100%; }
.tarjeta .form__field:focus { border-color: var(--c-ink); box-shadow: 0 0 0 3px rgba(219, 80, 74, .15); }
.tarjeta__dispo { font-size: 13px; font-weight: 400; line-height: 1.4; padding: 9px 12px; border-radius: 8px; background: #f3f3f3; }
.tarjeta__dispo:empty { display: none; }
.tarjeta__dispo--ok { background: #e8f5e9; color: #1b5e20; }
.tarjeta__dispo--no { background: var(--c-pink-light); }
.tarjeta__lista { display: flex; flex-direction: column; gap: 8px; margin: 0; }
.tarjeta__fila { display: flex; justify-content: space-between; gap: 12px; font-size: 15px; font-weight: 300; }
.tarjeta__fila dd { margin: 0; font-weight: 500; white-space: nowrap; }
.tarjeta__fila--total { padding-top: 10px; border-top: 1px solid #eee; font-weight: 600; }
.tarjeta__fila--total dd { font-weight: 600; }
.tarjeta .enlace { align-self: flex-start; font-size: 14px; }
.tarjeta__cta { width: 100%; text-align: center; padding: 16px 20px; }
.tarjeta__nota { font-size: 12px; font-weight: 300; color: #555; text-align: center; }
.tarjeta__pie { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 10px; background: var(--c-pink-light); font-size: 13px; font-weight: 400; }
.tarjeta__pie svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--c-red); }
.barra { display: none; }

@media (max-width: 1024px) {
  .ficha__cols { grid-template-columns: 1fr; grid-template-areas: "intro" "aside" "main"; }
  .ficha__intro { border-bottom: 0; padding-bottom: 8px; }
  .tarjeta { position: static; margin-top: 14px; }
  .ficha__main { padding-top: 34px; }
  .galeria-ficha__miniaturas { grid-template-columns: repeat(5, 1fr); }
  .galeria-ficha__mini:nth-child(6) { display: none; }
}
@media (max-width: 767px) {
  .ficha { padding: 6px 4% 110px; }
  .migas ul { font-size: 12px; }
  .galeria-ficha__principal { aspect-ratio: 4 / 3; border-radius: 12px; }
  .galeria-ficha__miniaturas { display: none; }
  .galeria-ficha__btn { width: 40px; height: 40px; font-size: 26px; }
  .ficha__titulo { font-size: 25px; }
  .ficha__precio { font-size: 22px; }
  .ficha__precio small { display: block; margin: 2px 0 0; }
  .ficha__seccion h2 { font-size: 19px; }
  .equip { grid-template-columns: 1fr; }
  .tarjeta { padding: 18px; box-shadow: none; }
  .tarjeta__cta { display: none; }
  .condiciones div { flex-direction: column; gap: 2px; }
  .condiciones dd { text-align: left; }
  .gestor { flex-direction: column; }
  .barra {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    align-items: center; justify-content: space-between; gap: 14px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: #fff; border-top: 1px solid #e6e6e6; box-shadow: 0 -8px 24px rgba(0, 0, 0, .08);
  }
  .barra[hidden] { display: none; }
  .barra__precio { font-size: 19px; font-weight: 600; }
  .barra__precio small { font-size: 13px; font-weight: 300; color: #555; }
  .barra .btn { padding: 14px 24px; font-size: 15px; }
  .sin-scroll .barra { display: none; }
}
.aloja__accion--doble { display: flex; flex-wrap: wrap; gap: 10px; }
.aloja__accion--doble .btn { flex: 1 1 auto; text-align: center; }
.aloja__titulo a:hover { color: var(--c-red); }
.ficha__texto--recortado p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Listado de anuncios en fila (/reservas) y esqueleto de carga de la ficha
   ========================================================================== */
.catalogo__grid { display: flex; flex-direction: column; gap: 16px; max-width: 1080px; }
.catalogo__estado { padding: 30px 0; }
.aloja {
  display: grid; grid-template-columns: 320px minmax(0, 1fr);
  border: 1px solid #ececec; border-radius: 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
  transition: box-shadow .2s ease, transform .2s ease;
}
.aloja:hover { box-shadow: 0 12px 28px rgba(0, 0, 0, .12); transform: translateY(-2px); }
.aloja__media { aspect-ratio: auto; min-height: 236px; }
.aloja__badge { left: 12px; top: 12px; font-size: 12px; padding: 5px 11px; }
.aloja__body { padding: 18px 22px 14px; gap: 8px; }
.aloja__titulo { font-size: 19px; font-weight: 600; letter-spacing: -.2px; line-height: 1.3; }
.aloja__titulo a { color: var(--c-red); }
.aloja__titulo a:hover { color: var(--c-red-dark); text-decoration: underline; text-underline-offset: 3px; }
.aloja--anuncio .aloja__precio { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; }
.aloja--anuncio .aloja__precio strong { font-size: 30px; font-weight: 600; letter-spacing: -1px; }
.aloja__precio small { font-size: 15px; font-weight: 300; color: #555; }
.aloja__descuento { padding: 2px 9px; border-radius: 6px; background: var(--c-pink); color: var(--c-red-dark); font-size: 13px; font-weight: 500; }
.aloja__datos { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; margin: 0; font-size: 14px; font-weight: 300; color: #444; }
.aloja__datos li { display: flex; align-items: center; }
.aloja__datos li:not(:first-child):not(.aloja__etiqueta)::before { content: "·"; margin-right: 10px; color: #bbb; }
.aloja__etiqueta { padding: 3px 10px; border-radius: 6px; background: var(--c-pink); color: var(--c-ink); font-size: 13px; font-weight: 400; }
.aloja__desc { -webkit-line-clamp: 2; line-clamp: 2; font-size: 14px; line-height: 1.5; color: #555; }
.aloja__condiciones { font-size: 13px; color: #666; }
.aloja__habs .hab { font-size: 12px; padding: 3px 9px; }
.aloja__acciones { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid #f1f1f1; }
.aloja__solicitar { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: var(--c-red); }
.aloja__solicitar svg { width: 18px; height: 18px; }
.aloja__solicitar:hover { color: var(--c-red-dark); text-decoration: underline; text-underline-offset: 4px; }
.aloja__ver { font-size: 14px; font-weight: 500; color: var(--c-ink); text-decoration: underline; text-underline-offset: 3px; }
.aloja__ver:hover { color: var(--c-red); }
@media (max-width: 1024px) {
  .aloja { grid-template-columns: 250px minmax(0, 1fr); }
  .aloja__media { min-height: 210px; }
}
@media (max-width: 767px) {
  .catalogo__grid { gap: 20px; }
  .aloja { grid-template-columns: 1fr; }
  .aloja__media { aspect-ratio: 4 / 3; min-height: 0; }
  .aloja--anuncio .aloja__precio strong { font-size: 26px; }
  .aloja__acciones { flex-wrap: wrap; }
}

/* Esqueleto: se muestra mientras se carga la ficha del anuncio */
.esqueleto__bloque, .esqueleto__linea {
  background: linear-gradient(100deg, #ececec 30%, #f7f7f7 50%, #ececec 70%);
  background-size: 200% 100%;
  animation: esqueleto 1.3s ease-in-out infinite;
  border-radius: 10px;
}
@keyframes esqueleto { from { background-position: 150% 0; } to { background-position: -50% 0; } }
.esqueleto__galeria { aspect-ratio: 2 / 1; max-height: 560px; border-radius: 16px; }
.esqueleto__miniaturas { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 10px; }
.esqueleto__miniaturas .esqueleto__bloque { aspect-ratio: 4 / 3; }
.esqueleto__cols { display: grid; grid-template-columns: minmax(0, 1fr) 372px; column-gap: 48px; align-items: start; margin-top: 28px; }
.esqueleto__linea { height: 14px; margin-bottom: 12px; }
.esqueleto__linea--titulo { height: 32px; width: 62%; margin-bottom: 16px; }
.esqueleto__linea--corta { width: 38%; }
.esqueleto__linea--media { width: 72%; }
.esqueleto__linea--precio { height: 26px; width: 30%; margin-bottom: 18px; }
.esqueleto__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.esqueleto__chip { height: 30px; width: 116px; border-radius: 60px; }
.esqueleto__chip--ancho { width: 170px; }
.esqueleto__tarjeta { height: 420px; border-radius: 16px; }
@media (max-width: 1024px) {
  .esqueleto__cols { grid-template-columns: 1fr; }
  .esqueleto__tarjeta { height: 320px; margin-top: 22px; }
  .esqueleto__miniaturas { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 767px) {
  .esqueleto__galeria { aspect-ratio: 4 / 3; border-radius: 12px; }
  .esqueleto__miniaturas { display: none; }
  .esqueleto__linea--titulo { width: 80%; }
}
@media (prefers-reduced-motion: reduce) {
  .esqueleto__bloque, .esqueleto__linea { animation: none; }
}
.dia--corto { color: #c9c9c9; cursor: not-allowed; }
.calendario__minimo { font-weight: 400; color: var(--c-red); }

/* La tarjeta del listado no cambia de tamaño según la foto: caja de proporción fija y la imagen recortada dentro */
.aloja__media { aspect-ratio: 4 / 3; overflow: hidden; }
.aloja__media .aloja__foto { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* En escritorio la foto ocupa todo el alto de la tarjeta (con proporción fija la rejilla no la estiraba) */
@media (min-width: 768px) {
  .aloja__media { aspect-ratio: auto; align-self: stretch; min-height: 240px; }
}

/* ==========================================================================
   Buscador de alojamientos (/reservas)
   ========================================================================== */
.page-buscador { background: #f6f5f3; }
.buscador {
  display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 32px; align-items: start;
  max-width: 1400px; margin: 0 auto; padding: 24px 5% 64px;
}
.buscador__lateral { background: #fff; border: 1px solid #ebe9e6; border-radius: 14px; padding: 18px; min-width: 0; }
.lateral-cabecera, .lateral-pie { display: none; }
.buscador__mapa { margin-bottom: 20px; }
.mapa-mini { position: relative; z-index: 0; height: 220px; border: 1px solid #e3e3e3; border-radius: 10px; overflow: hidden; background: #eef0f2; }
.buscador__ver-mapa {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 8px; padding: 10px;
  border: 1px solid var(--c-ink); border-radius: 8px; background: #fff; font-size: 15px; font-weight: 500;
}
.buscador__ver-mapa:hover { background: var(--c-pink-light); }
.buscador__ver-mapa svg { width: 18px; height: 18px; color: var(--c-red); }

.filtros { display: flex; flex-direction: column; gap: 20px; }
.filtro { display: flex; flex-direction: column; gap: 8px; min-width: 0; margin: 0; padding: 0; border: 0; }
.filtro__titulo { padding: 0; font-size: 15px; font-weight: 600; color: var(--c-ink); }
.filtro .form__field { width: 100%; min-height: 44px; padding: 8px 12px; font-size: 15px; border: 1px solid #cfcfcf; border-radius: 8px; background-color: #fff; }
.filtro .form__field:focus { border-color: var(--c-ink); box-shadow: 0 0 0 3px rgba(219, 80, 74, .15); }
.filtro__par { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.filtro__check { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 300; cursor: pointer; }
.filtro__check input { width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--c-red); }
.filtro__ayuda { font-size: 12px; font-weight: 300; line-height: 1.4; color: #666; }
.filtros__borrar { align-self: flex-start; font-size: 14px; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.filtros__borrar { color: var(--c-red); }
.filtro .fechas { grid-template-columns: 1fr 1fr; }

.buscador__resultados { min-width: 0; }
.resultados__cabecera { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 6px 16px; margin-bottom: 12px; }
.resultados__titulo { width: 100%; font-size: 30px; font-weight: 600; letter-spacing: -1px; line-height: 1.15; }
.resultados__fechas { font-size: 15px; font-weight: 300; color: #555; }
.resultados__botones-movil { display: none; gap: 8px; }
.resultados__boton { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border: 1px solid var(--c-ink); border-radius: 60px; background: #fff; font-size: 14px; font-weight: 500; }
.resultados__boton span { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 60px; background: var(--c-red); color: #fff; font-size: 12px; }
.resultados__barra { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0 16px; border-top: 1px solid #e6e4e0; }
.resultados__total { font-size: 15px; font-weight: 500; }
.orden { display: flex; flex-wrap: wrap; align-items: center; }
.orden__etiqueta { margin-right: 10px; font-size: 14px; font-weight: 300; }
.orden__opcion {
  position: relative; margin-left: -1px; padding: 8px 14px; border: 1px solid #cfcfcf; background: #fff;
  font-size: 14px; font-weight: 400; color: var(--c-ink); cursor: pointer; list-style: none;
}
.orden > .orden__opcion:first-of-type { margin-left: 0; border-radius: 8px 0 0 8px; }
.orden__mas { position: relative; }
.orden__mas > summary { display: flex; align-items: center; gap: 8px; border-radius: 0 8px 8px 0; }
.orden__mas > summary::-webkit-details-marker { display: none; }
.orden__mas > summary::after { content: ""; margin-top: 5px; border: 4px solid transparent; border-top-color: currentColor; }
.orden__opcion--activa { z-index: 1; border-color: var(--c-red); background: var(--c-pink-light); color: var(--c-red); font-weight: 500; }
.orden__menu {
  position: absolute; top: calc(100% + 6px); right: 0; z-index: 30; display: flex; flex-direction: column; min-width: 170px; padding: 6px;
  background: #fff; border: 1px solid #e3e3e3; border-radius: 10px; box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}
.orden__menu button { padding: 9px 10px; border-radius: 6px; text-align: left; font-size: 14px; }
.orden__menu button:hover, .orden__menu button[aria-pressed="true"] { background: var(--c-pink-light); color: var(--c-red); }

.page-buscador .catalogo__grid { max-width: none; margin: 0; }
.aloja--resaltada { box-shadow: 0 0 0 2px var(--c-red), 0 12px 28px rgba(0, 0, 0, .12); }
.resultados__vacio { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 44px 24px; text-align: center; background: #fff; border: 1px dashed #d6d6d6; border-radius: 14px; }
.resultados__vacio strong { font-size: 18px; font-weight: 600; }
.resultados__vacio p { font-size: 15px; font-weight: 300; color: #555; }

.aloja-esqueleto { display: grid; grid-template-columns: 320px minmax(0, 1fr); min-height: 240px; overflow: hidden; background: #fff; border: 1px solid #ececec; border-radius: 14px; }
.aloja-esqueleto__foto { border-radius: 0; }
.aloja-esqueleto__cuerpo { padding: 20px 22px; }

/* Marcadores y mapa ampliado */
.marcador { background: none; border: 0; }
.marcador__precio {
  display: inline-block; transform: translate(-50%, -50%); padding: 4px 9px; white-space: nowrap;
  border: 1px solid #ddd; border-radius: 60px; background: #fff; color: var(--c-ink);
  font: 600 13px/1.2 var(--font); box-shadow: 0 2px 8px rgba(0, 0, 0, .25); cursor: pointer;
}
.marcador--activo .marcador__precio { border-color: var(--c-red); background: var(--c-red); color: #fff; }
.mapa-grande { position: fixed; inset: 0; z-index: 170; display: flex; flex-direction: column; background: #fff; }
.mapa-grande__cabecera { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 5%; border-bottom: 1px solid #ececec; }
.mapa-grande__titulo { font-size: 18px; font-weight: 600; }
.mapa-grande__lienzo { flex: 1; min-height: 0; }
.mapa-grande__nota { padding: 8px 5%; font-size: 12px; font-weight: 300; color: #666; }
.popup-aloja { display: flex; gap: 10px; width: 240px; font-family: var(--font); }
.popup-aloja img { width: 84px; height: 66px; flex: 0 0 auto; border-radius: 6px; object-fit: cover; }
.popup-aloja strong { display: block; font-size: 13px; font-weight: 600; line-height: 1.3; color: var(--c-ink); }
.popup-aloja span { display: block; margin-top: 4px; font-size: 14px; font-weight: 600; color: var(--c-ink); }
.popup-aloja a { display: inline-block; margin-top: 4px; font-size: 13px; color: var(--c-red); text-decoration: underline; }

@media (max-width: 1024px) {
  .buscador { grid-template-columns: 1fr; gap: 0; padding: 16px 4% 48px; }
  .buscador__lateral { position: fixed; inset: 0; z-index: 160; display: none; flex-direction: column; padding: 0; border: 0; border-radius: 0; }
  .buscador__lateral--abierto { display: flex; }
  .lateral-cabecera { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid #ececec; }
  .lateral-cabecera__titulo { font-size: 18px; font-weight: 600; }
  .buscador__lateral .buscador__mapa { display: none; }
  .filtros { flex: 1; min-height: 0; overflow-y: auto; padding: 18px 16px 28px; }
  .lateral-pie { display: block; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); border-top: 1px solid #ececec; }
  .lateral-pie__ver { width: 100%; }
  .resultados__botones-movil { display: flex; }
  .resultados__titulo { font-size: 24px; }
  .buscador__lateral .calendario {
    position: fixed; top: auto; left: 0; right: 0; bottom: 0; z-index: 190; width: auto; max-width: none;
    max-height: 86vh; overflow-y: auto; border-radius: 16px 16px 0 0;
  }
}
@media (max-width: 767px) {
  .resultados__barra { align-items: flex-start; flex-direction: column; }
  .orden__etiqueta { width: 100%; margin-bottom: 6px; }
  .aloja-esqueleto { grid-template-columns: 1fr; }
  .aloja-esqueleto__foto { aspect-ratio: 4 / 3; }
  .sin-scroll-filtros { overflow: hidden; }
}
/* Datos de la tarjeta separados por espacio: con puntos, al saltar de línea quedaba uno colgando */
.aloja__datos { gap: 4px 16px; }
.aloja__datos li:not(:first-child):not(.aloja__etiqueta)::before { content: none; }
@media (max-width: 767px) {
  .orden { flex-wrap: nowrap; }
  .orden__opcion { padding: 7px 10px; font-size: 13px; }
}
@media (max-width: 767px) {
  .orden__etiqueta { display: none; }
}

/* En móvil el botón «Contáctanos» sobra: «Contacto» ya está en el menú desplegable */
@media (max-width: 767px) {
  .site-header__bar > .btn { display: none; }
}

/* ---------- Baño privado (tarjetas del buscador y ficha) ---------- */
.aloja__etiqueta--destacada { display: inline-flex; align-items: center; gap: 5px; background: #B8352F; color: #fff; font-weight: 600; }
.aloja__etiqueta--destacada svg { width: 15px; height: 15px; }
.chips li.chip--destacado { display: inline-flex; align-items: center; gap: 6px; background: #B8352F; border-color: transparent; color: #fff; font-weight: 600; }
.chips li.chip--destacado svg { width: 16px; height: 16px; }
.ficha__destacado { display: flex; gap: 12px; align-items: flex-start; margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: var(--c-pink); font-size: 14px; line-height: 1.45; }
.ficha__destacado[hidden] { display: none; }
.ficha__destacado svg { flex: none; width: 24px; height: 24px; color: #B8352F; }
.ficha__destacado strong { display: block; font-size: 15px; }

/* ---------- Aviso «próximamente» (solicitudes retiradas temporalmente) ---------- */
.proximamente { position: fixed; inset: 0; z-index: 160; display: flex; align-items: center; justify-content: center; padding: 16px; background: rgba(17, 15, 15, .55); }
.proximamente[hidden] { display: none; }
.proximamente__panel { position: relative; width: 100%; max-width: 480px; padding: 32px 28px 28px; border-radius: 16px; background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.proximamente__cerrar { position: absolute; top: 12px; right: 12px; }
.proximamente__etiqueta { margin: 0 0 8px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--c-red); }
.proximamente__titulo { margin: 0 0 12px; font-size: 22px; line-height: 1.25; }
.proximamente__texto { margin: 0 0 20px; font-size: 15px; line-height: 1.5; color: var(--c-slate); }
.proximamente__acciones { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.proximamente__seguir { background: none; border: 0; padding: 0; font: inherit; cursor: pointer; }

/* ---------- Aviso de cookies ---------- */
.cookies { position: fixed; left: 0; right: 0; bottom: 0; z-index: 170; padding: 12px; }
.cookies[hidden] { display: none; }
.cookies__panel { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; padding: 18px 22px; border-radius: 14px; background: #fff; box-shadow: 0 12px 40px rgba(0,0,0,.22); }
.cookies__texto { flex: 1 1 380px; }
.cookies__titulo { margin: 0 0 6px; font-size: 16px; }
.cookies__texto p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--c-slate); }
.cookies__enlace { margin-top: 6px !important; }
.cookies__enlace a { color: var(--c-red); }
.cookies__acciones { display: flex; gap: 10px; flex-wrap: wrap; }
.cookies__acciones .btn { white-space: nowrap; }
.cookies__ajustes { margin: 12px 0 0; text-align: center; font-size: 13px; }
@media (max-width: 600px) {
  .cookies__panel { padding: 16px; }
  .cookies__acciones { width: 100%; }
  .cookies__acciones .btn { flex: 1 1 auto; }
}

/* ---------- Páginas de cuenta (entrar, registro, recuperar) ---------- */
.cuenta { display: flex; justify-content: center; padding: 48px 16px 72px; }
.cuenta__caja { width: 100%; max-width: 460px; }
.cuenta__titulo { margin: 0 0 8px; font-size: 28px; line-height: 1.2; }
.cuenta__intro { margin: 0 0 22px; font-size: 15px; line-height: 1.5; color: var(--c-slate); }
.cuenta__campo { display: block; margin-bottom: 16px; }
.cuenta__campo .label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 500; }
.cuenta__campo .form__field { width: 100%; }
.cuenta__aviso { margin: 0 0 18px; padding: 12px 14px; border-radius: 10px; font-size: 14px; line-height: 1.45; }
.cuenta__aviso:empty { display: none; }
.cuenta__aviso--error { background: #fdecea; color: #8a1f14; }
.cuenta__aviso--ok { background: #e8f5e9; color: #1b5e20; }
.cuenta__proveedores { margin-bottom: 8px; }
.cuenta__o { position: relative; margin: 20px 0; text-align: center; font-size: 13px; color: var(--c-slate); }
.cuenta__o::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: #e4e4e4; }
.cuenta__o span { position: relative; padding: 0 12px; background: #fff; }
.cuenta__enlaces { margin: 14px 0 0; font-size: 14px; text-align: center; }
.cuenta__enlaces a, .cuenta__pie a { color: var(--c-red); }
.cuenta__legal { margin: 12px 0 0; font-size: 12.5px; line-height: 1.45; color: var(--c-slate); }
.cuenta__legal a { color: var(--c-red); }
.cuenta__pie { margin: 26px 0 0; padding-top: 18px; border-top: 1px solid #ececec; font-size: 14px; text-align: center; }
.page-cuenta .site-footer { margin-top: 0; }
