/* Home — estilo Holidu */

/* Navbar home: sticky + buscador flotante */
.home-page .site-header,
.home-page .site-header-mobile {
  position: sticky;
  top: 0;
  z-index: 110;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #ebebeb;
}

.home-sticky-search {
  position: fixed;
  top: var(--home-header-h, 4.5rem);
  left: 0;
  right: 0;
  z-index: 105;
  padding: 0.65rem 1rem;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.home-sticky-search.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.home-sticky-search__inner {
  max-width: 980px;
  margin: 0 auto;
}

.home-sticky-search .holidu-search__bar {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.home-sticky-search .abnb-search-meta {
  display: none;
}

.home-page .site-header__nav a,
.home-page .site-header__auth-btn--ghost,
.home-page .site-header-mobile__brand,
.home-page .site-header-mobile__menu {
  color: #374151;
  text-shadow: none;
}

.home-page .site-header__cta--ghost {
  background: #fff;
  border-color: #e5e7eb;
  color: #374151;
}

.home-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 5rem;
}

.home-content > .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .home-content {
    gap: 5rem;
    margin-bottom: 6rem;
  }
}

/* Hero — foto detrás del buscador */
.home-hero {
  position: relative;
  z-index: 40;
  width: 100%;
  padding: 2.5rem 0 3.5rem;
  overflow: visible;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 0;
}

.home-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 0.65s ease;
}

.home-hero__slide.is-active {
  opacity: 1;
}

.home-hero__slide--fallback {
  background: linear-gradient(135deg, #2d7a45 0%, #3ea35d 45%, #1e5631 100%);
}

.home-hero__carousel-ui {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transform: translateX(-50%);
  pointer-events: auto;
}

.home-hero__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  color: #374151;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.home-hero__nav svg {
  width: 1.1rem;
  height: 1.1rem;
}

.home-hero__nav:hover {
  transform: scale(1.05);
  border-color: var(--brand);
  color: var(--brand-dark);
}

.home-hero__dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.home-hero__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: #d1d5db;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.home-hero__dot.is-active {
  transform: scale(1.2);
  background: var(--brand);
}

.home-hero__dot:hover {
  background: var(--brand-muted);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.35) 38%,
    rgba(255, 255, 255, 0.5) 72%,
    rgba(240, 248, 243, 0.78) 100%
  );
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .home-hero {
    padding: 3rem 0 3.5rem;
  }

  .home-hero__inner {
    padding: 0 2rem;
  }
}

.home-hero__copy {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 0.75rem;
  color: #111;
}

.home-hero__title {
  margin: 0;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
  text-shadow: 0 2px 24px rgba(255, 255, 255, 0.95);
}

.home-hero__search-wrap {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

.abnb-search--hero .abnb-search-meta {
  margin-top: 1rem;
  justify-content: center;
}

.abnb-search--hero .abnb-search-meta--hero {
  margin-top: 0.85rem;
}

.abnb-search--hero .abnb-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.95);
  color: #1f2937;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.abnb-search--hero .abnb-map-link:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: #fff;
  box-shadow: 0 8px 22px rgba(62, 163, 93, 0.18);
  transform: translateY(-1px);
}

/* —— Holidu search bar —— */
.holidu-search {
  position: relative;
  z-index: 50;
}

.holidu-mobile-pill {
  display: none;
}

.holidu-mobile-backdrop,
.holidu-mobile-sheet-head {
  display: none;
}

@media (max-width: 767px) {
  .holidu-mobile-pill {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 9999px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
  }

  .holidu-mobile-pill:hover,
  .holidu-mobile-pill[aria-expanded="true"] {
    border-color: var(--brand-muted);
    box-shadow: 0 6px 24px rgba(62, 163, 93, 0.14);
  }

  .holidu-mobile-pill__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    flex-shrink: 0;
  }

  .holidu-mobile-pill__icon svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .holidu-mobile-pill__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1;
  }

  .holidu-mobile-pill__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .holidu-mobile-pill__sub {
    font-size: 0.8125rem;
    color: #717171;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .holidu-search__shell {
    display: none;
  }

  .holidu-search.is-mobile-open .holidu-mobile-pill {
    display: none;
  }

  .holidu-search.is-mobile-open .holidu-mobile-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10060;
    background: rgba(0, 0, 0, 0.45);
  }

  .holidu-search.is-mobile-open .holidu-search__shell {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 10065;
    background: #fff;
    animation: holidu-sheet-in 0.28s ease;
  }

  @keyframes holidu-sheet-in {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  .holidu-mobile-sheet-head {
    display: grid;
    grid-template-columns: 2.5rem 1fr 2.5rem;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #ebebeb;
    flex-shrink: 0;
  }

  .holidu-mobile-sheet-head__title {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
  }

  .holidu-mobile-sheet-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: #f7f7f7;
    border-radius: 9999px;
    cursor: pointer;
    color: #222;
  }

  .holidu-mobile-sheet-close svg {
    width: 1.125rem;
    height: 1.125rem;
  }

  .holidu-search.is-mobile-open .holidu-search__bar {
    flex: 1;
    overflow-y: auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0.5rem 1rem 1rem;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .holidu-search.is-mobile-open .holidu-field {
    border: 1px solid #ebebeb;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
  }

  .holidu-search.is-mobile-open .holidu-field__btn {
    padding: 1rem 1.125rem;
    min-height: 4rem;
  }

  .holidu-search.is-mobile-open .holidu-search__submit {
    margin: 0.5rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
    border-radius: 12px;
    position: sticky;
    bottom: 0;
  }

  .holidu-search.is-mobile-open .holidu-drop {
    position: fixed;
    inset: 0;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10070;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: rgba(0, 0, 0, 0.35);
    animation: none;
  }

  .holidu-search.is-mobile-open .holidu-drop[hidden] {
    display: none !important;
  }

  .holidu-search.is-mobile-open .holidu-drop__inner {
    max-height: min(88vh, 640px);
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
    animation: holidu-sheet-in 0.25s ease;
  }

  .holidu-search.is-mobile-open .holidu-drop--wide .holidu-drop__inner {
    max-width: none;
    margin: 0;
  }

  .home-sticky-search .holidu-mobile-pill {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }
}

.holidu-search__bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

@media (min-width: 768px) {
  .holidu-search__bar {
    grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr auto;
    align-items: stretch;
    border-radius: 9999px;
    padding: 6px 6px 6px 0;
  }
}

.holidu-field {
  position: relative;
  border-bottom: 1px solid #ebebeb;
}

.holidu-field:last-of-type {
  border-bottom: none;
}

@media (min-width: 768px) {
  .holidu-field {
    border-bottom: none;
    border-right: 1px solid #ebebeb;
  }

  .holidu-field:last-of-type {
    border-right: none;
  }
}

.holidu-field.is-active .holidu-field__btn {
  background: #f3f4f6;
}

.holidu-field__btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  width: 100%;
  padding: 0.9rem 1.15rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  border-radius: 0;
  transition: background 0.15s;
}

@media (min-width: 768px) {
  .holidu-field__btn {
    padding: 0.75rem 1.25rem;
    min-height: 64px;
    justify-content: center;
  }

  .holidu-field:first-child .holidu-field__btn {
    border-radius: 9999px 0 0 9999px;
  }
}

.holidu-field__btn:hover {
  background: #f9fafb;
}

.holidu-field__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #222;
}

.holidu-field__value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #717171;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.holidu-field.is-active .holidu-field__value,
.holidu-field__btn:hover .holidu-field__value {
  color: #222;
}

.holidu-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.75rem;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: filter 0.15s;
}

.holidu-search__submit svg {
  width: 18px;
  height: 18px;
}

.holidu-search__submit:hover {
  filter: brightness(1.05);
}

@media (min-width: 768px) {
  .holidu-search__submit {
    margin: 0 6px 0 0;
    min-height: 52px;
    padding: 0 1.75rem;
    border-radius: 9999px;
    align-self: center;
  }
}

/* Dropdowns anclados bajo la barra */
.holidu-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 120;
  animation: holidu-drop-in 0.18s ease;
}

@keyframes holidu-drop-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.holidu-drop__inner {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  padding: 1.25rem;
  max-height: min(70vh, 520px);
  overflow-y: auto;
}

.holidu-drop__inner--flush {
  padding: 0;
}

.holidu-drop--wide .holidu-drop__inner {
  max-width: 380px;
  margin: 0 auto;
}

.holidu-drop__title {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #222;
}

.holidu-drop__foot {
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid #ebebeb;
  text-align: right;
}

.holidu-dest-search {
  position: relative;
  margin-bottom: 1rem;
  border: 1px solid #d4d4d4;
  border-radius: 9999px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.holidu-dest-search:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.holidu-dest-search__icon {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #717171;
  pointer-events: none;
  z-index: 1;
}

.holidu-dest-search .abnb-field-input {
  width: 100%;
  padding: 0.9rem 1.15rem 0.9rem 2.85rem;
  border: none !important;
  border-radius: 9999px !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
  color: #222;
}

.holidu-dest-search .abnb-field-input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.holidu-dest-section {
  margin-bottom: 1.25rem;
}

.holidu-dest-section__title {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #717171;
}

.holidu-prov-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .holidu-prov-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.holidu-prov-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.85rem 0.75rem;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  background: linear-gradient(165deg, #fff 0%, #f8fcf9 100%);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s, transform 0.15s;
}

.holidu-prov-card:hover {
  border-color: var(--brand);
  background: linear-gradient(165deg, #fff 0%, var(--brand-soft) 100%);
  box-shadow: 0 8px 20px rgba(62, 163, 93, 0.16);
  transform: translateY(-2px);
}

.holidu-prov-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #222;
}

.holidu-prov-card__meta {
  font-size: 0.6875rem;
  color: #717171;
}

.holidu-dest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.holidu-dest-chip {
  padding: 0.45rem 0.85rem;
  border: 1px solid #e5e5e5;
  border-radius: 9999px;
  background: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  font-family: inherit;
}

.holidu-dest-chip:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.holidu-dest-hint {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: #a3a3a3;
  text-align: center;
}

.holidu-dest-empty {
  margin: 0;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: #717171;
}

.holidu-dest-results {
  margin-bottom: 1rem;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  overflow: hidden;
}

.holidu-place-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.12s;
}

.holidu-place-item:last-child {
  border-bottom: none;
}

.holidu-place-item:hover {
  background: var(--brand-soft);
}

.holidu-place-item__icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.holidu-place-item__text {
  font-size: 0.875rem;
  line-height: 1.35;
  color: #222;
}

/* Provincias de Andalucía bajo el buscador */
.home-provinces {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 2rem auto 0;
  padding: 1.35rem 1.15rem 1.15rem;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(62, 163, 93, 0.08);
}

.home-provinces--wow {
  animation: home-provinces-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.15s;
}

@keyframes home-provinces-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-provinces__label {
  margin: 0 0 1.1rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.home-provinces__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.home-provinces__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 5.25rem;
  padding: 0.75rem 0.5rem;
  border: 1.5px solid rgba(62, 163, 93, 0.22);
  border-radius: 16px;
  background: linear-gradient(165deg, #fff 0%, #f8fcf9 100%);
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    border-color 0.2s ease,
    background 0.2s ease;
  animation: home-chip-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--chip-i, 0) * 0.06s + 0.2s);
}

.home-prov-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--brand);
  transition: transform 0.25s ease, color 0.2s ease;
}

.home-provinces__chip-name {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  letter-spacing: -0.01em;
}

@keyframes home-chip-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.home-provinces__chip:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--brand);
  background: linear-gradient(165deg, #fff 0%, var(--brand-soft) 100%);
  box-shadow:
    0 18px 36px rgba(62, 163, 93, 0.24),
    0 0 0 1px rgba(62, 163, 93, 0.15);
}

.home-provinces__chip:hover .home-prov-icon {
  transform: scale(1.12);
  color: var(--brand-dark);
}

.home-provinces__chip:active {
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 640px) {
  .home-provinces {
    max-width: 100%;
    margin-top: 1.5rem;
    padding: 1.1rem 0.85rem 0.95rem;
    border-radius: 18px;
  }

  .home-provinces__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .home-provinces__chip {
    min-height: 4.75rem;
    padding: 0.65rem 0.4rem;
    border-radius: 14px;
  }

  .home-provinces__chip-name {
    font-size: 0.75rem;
  }

  .home-prov-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .home-provinces__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Listings — estilo Holidu sin wrapper verde */
.home-listings--holidu {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.home-listings--holidu .home-listings__head {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.home-listings--holidu .home-listings__title {
  margin-top: 0;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
}

.home-listings--holidu .home-listings__link {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
}

.home-listings--holidu .home-listings__link:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

/* —— Puente a Compra e inversión —— */
.home-investment-banner {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 27rem;
  overflow: hidden;
  border: 1px solid #c8e3f5;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, #f2f9fe 0%, #e5f3fc 100%);
  box-shadow: 0 16px 42px rgba(37, 104, 151, 0.09);
}

.home-investment-banner__media {
  position: absolute;
  z-index: 0;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  width: 45%;
  overflow: hidden;
  border-radius: 1.2rem;
}

.home-investment-banner__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.01);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-investment-banner:hover .home-investment-banner__media img {
  transform: scale(1.035);
}

.home-investment-banner__veil {
  display: none;
}

.home-investment-banner__content {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 57%;
  padding: clamp(2rem, 4vw, 3.75rem);
  color: #173d5e;
}

.home-investment-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.42rem 0.75rem;
  border: 1px solid #badcf2;
  border-radius: 9999px;
  background: #fff;
  color: #226895;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-investment-banner__eyebrow span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: #429bd4;
  box-shadow: 0 0 0 4px #e0f1fb;
}

.home-investment-banner__title {
  margin: 1.1rem 0 0;
  max-width: 36rem;
  color: #153f63;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.home-investment-banner__lead {
  margin: 1.15rem 0 0;
  max-width: 35rem;
  color: #496b86;
  font-size: clamp(0.95rem, 1.5vw, 1.075rem);
  line-height: 1.65;
}

.home-investment-banner__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.home-investment-banner__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #285775;
  font-size: 0.78rem;
  font-weight: 600;
}

.home-investment-banner__benefits li::before {
  content: "";
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 9999px;
  background: #429bd4;
}

.home-investment-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.home-investment-banner__primary,
.home-investment-banner__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-investment-banner__primary {
  gap: 0.55rem;
  background: #287fb8;
  color: #fff;
  box-shadow: 0 8px 20px rgba(40, 127, 184, 0.2);
}

.home-investment-banner__primary svg {
  width: 1.05rem;
  height: 1.05rem;
  transition: transform 0.2s ease;
}

.home-investment-banner__secondary {
  border: 1px solid #9bc9e7;
  background: #fff;
  color: #1f6694;
}

.home-investment-banner__primary:hover,
.home-investment-banner__secondary:hover {
  transform: translateY(-2px);
}

.home-investment-banner__primary:hover {
  background: #206eaa;
  color: #fff;
  box-shadow: 0 11px 24px rgba(40, 127, 184, 0.27);
}

.home-investment-banner__primary:hover svg {
  transform: translateX(3px);
}

.home-investment-banner__secondary:hover {
  border-color: #6cadd7;
  background: #f7fbfe;
  color: #15577f;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .home-investment-banner__media {
    width: 40%;
  }

  .home-investment-banner__content {
    width: 62%;
    padding: 2.4rem;
  }

  .home-investment-banner__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }
}

@media (max-width: 767px) {
  .home-investment-banner {
    display: grid;
    min-height: 0;
    border-radius: 1.4rem;
  }

  .home-investment-banner__media {
    position: relative;
    inset: auto;
    width: auto;
    height: clamp(12rem, 56vw, 16rem);
    margin: 0.75rem 0.75rem 0;
    border-radius: 1rem;
  }

  .home-investment-banner__media img {
    object-position: 67% center;
  }

  .home-investment-banner__content {
    width: 100%;
    padding: 1.65rem 1.35rem 1.5rem;
  }

  .home-investment-banner__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .home-investment-banner__title {
    font-size: clamp(1.75rem, 8.3vw, 2.25rem);
    line-height: 1.08;
  }

  .home-investment-banner__lead {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .home-investment-banner__benefits {
    gap: 0.4rem 0.8rem;
  }

  .home-investment-banner__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-investment-banner__primary,
  .home-investment-banner__secondary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-investment-banner__media img,
  .home-investment-banner__primary,
  .home-investment-banner__secondary,
  .home-investment-banner__primary svg {
    transition: none;
  }

  .home-investment-banner:hover .home-investment-banner__media img,
  .home-investment-banner__primary:hover,
  .home-investment-banner__secondary:hover,
  .home-investment-banner__primary:hover svg {
    transform: none;
  }
}

/* —— Cómo reservar (casas rurales) —— */
.home-how {
  padding: 0 0.25rem;
}

.home-how__eyebrow {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.home-how__title {
  margin: 0.5rem 0 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
}

.home-how__lead {
  margin: 0.65rem auto 0;
  max-width: 32rem;
  font-size: 1rem;
  color: #525252;
  line-height: 1.55;
}

.home-how__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .home-how__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.home-how__card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ebebeb;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-how__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(62, 163, 93, 0.12);
}

.home-how__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f4f6;
}

.home-how__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-how__card:hover .home-how__photo img {
  transform: scale(1.04);
}

.home-how__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.25rem 1.25rem 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-soft) 0%, #e8f7ed 100%);
  color: var(--brand-dark);
}

.home-how__icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.home-how__step {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(62, 163, 93, 0.35);
}

.home-how__card-title {
  margin: 0;
  padding: 1.15rem 1.25rem 0.35rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111;
}

.home-how__card-text {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #525252;
}

/* —— Cards destino: mosaico + label WOW —— */
.home-city-card--mosaic {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: transparent;
  border-radius: 16px;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.home-city-card--wow {
  animation: home-city-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--card-i, 0) * 0.07s);
}

@keyframes home-city-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.home-city-card--mosaic:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 40px rgba(62, 163, 93, 0.18);
}

.home-city-card--mosaic .home-city-card__overlay,
.home-city-card--mosaic .home-city-card__meta {
  display: none;
}

.home-city-card__mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  grid-template-rows: 0.92fr 1.08fr;
  gap: 3px;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-city-card--mosaic:hover .home-city-card__mosaic {
  transform: scale(1.03);
}

.home-city-card__tile {
  overflow: hidden;
  min-height: 0;
  min-width: 0;
}

.home-city-card__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-city-card__tile--1 {
  grid-row: 1 / 3;
  grid-column: 1;
  border-radius: 16px 0 0 16px;
}

.home-city-card__tile--2 {
  grid-row: 1;
  grid-column: 2;
  border-radius: 0 16px 0 0;
}

.home-city-card__tile--3 {
  grid-row: 2;
  grid-column: 2;
  border-radius: 0 0 16px 0;
}

.home-city-card--mosaic:hover .home-city-card__tile img {
  transform: scale(1.07);
}

/* Brillo al hover */
.home-city-card__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    125deg,
    transparent 35%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.home-city-card--mosaic:hover .home-city-card__shine {
  transform: translateX(120%);
}

/* Pill contador */
.home-city-card__pill {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  z-index: 4;
  padding: 0.3rem 0.55rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-dark);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
}

/* Dock inferior — nombre provincia */
.home-city-card__dock {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 1.75rem 0.75rem 0.75rem;
  background: linear-gradient(
    to top,
    rgba(8, 18, 14, 0.82) 0%,
    rgba(8, 18, 14, 0.45) 55%,
    transparent 100%
  );
  pointer-events: none;
  transition: padding 0.35s ease;
}

.home-city-card--mosaic:hover .home-city-card__dock {
  padding-bottom: 0.875rem;
}

.home-city-card__dock::before {
  content: '';
  position: absolute;
  bottom: 0.65rem;
  left: 0.75rem;
  width: 2rem;
  height: 3px;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--brand) 0%, #6ee7a8 100%);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-city-card--mosaic:hover .home-city-card__dock::before {
  width: 3.5rem;
}

.home-city-card__eyebrow {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.home-city-card__name {
  display: block;
  font-size: clamp(1.125rem, 4.5vw, 1.375rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-city-card--mosaic:hover .home-city-card__name {
  transform: translateX(3px);
}

.home-city-card__cta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #a7f3c0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-city-card__cta svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.3s ease;
}

.home-city-card--mosaic:hover .home-city-card__cta {
  opacity: 1;
  transform: translateY(0);
}

.home-city-card--mosaic:hover .home-city-card__cta svg {
  transform: translateX(3px);
}

.home-city-card--mosaic .home-city-card__placeholder {
  position: absolute;
  inset: 0;
  border-radius: 16px;
}

.home-city-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(135deg, var(--brand-soft) 0%, #e8f7ed 100%);
  color: var(--brand-dark);
  font-size: 2.5rem;
  font-weight: 800;
}

/* —— Ventajas —— */
.home-why {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .home-why {
    flex-direction: row-reverse;
    align-items: center;
    gap: 3.5rem;
  }
}

.home-why__visual {
  flex: 1;
  width: 100%;
  max-width: 520px;
}

.home-why__collage {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
}

.home-why__img {
  object-fit: cover;
  display: block;
}

.home-why__img--main {
  width: 100%;
  height: 100%;
}

.home-why__img--top,
.home-why__img--bottom {
  position: absolute;
  width: 38%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.home-why__img--top {
  top: 8%;
  right: 6%;
}

.home-why__img--bottom {
  bottom: 8%;
  right: 10%;
}

.home-why__caption {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: #737373;
  text-align: center;
}

.home-why__content {
  flex: 1;
  max-width: 28rem;
}

.home-why__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a3a3a3;
}

.home-why__title {
  margin-top: 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 600;
  color: #171717;
}

.home-why__list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.home-why__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.home-why__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-soft) 0%, #e8f7ed 100%);
  color: var(--brand-dark);
}

.home-why__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.home-why__item-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #171717;
}

.home-why__item-text {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #737373;
}

/* —— Para anfitriones WOW —— */
.home-hosts {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 2rem 1.5rem;
  background: linear-gradient(145deg, #f8fbf9 0%, #fff 45%, #f0f9f3 100%);
  color: #111;
  border: 1px solid #dceee3;
  box-shadow: 0 16px 48px rgba(62, 163, 93, 0.07);
}

@media (min-width: 1024px) {
  .home-hosts {
    padding: 3rem 3.25rem;
  }
}

.home-hosts__glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 232, 208, 0.45) 0%, transparent 68%);
  pointer-events: none;
}

.home-hosts__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .home-hosts__inner {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
}

.home-hosts__content {
  flex: 1.05;
}

.home-hosts__eyebrow {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-muted);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.home-hosts__title {
  margin: 1rem 0 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #111;
}

.home-hosts__lead {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #525252;
}

.home-hosts__list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.home-hosts__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: #374151;
}

.home-hosts__check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 9999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.home-hosts__pipeline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.home-hosts__pipe-step {
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
}

.home-hosts__pipe-step strong {
  color: var(--brand-dark);
  margin-right: 0.15rem;
}

.home-hosts__pipe-line {
  width: 1.25rem;
  height: 2px;
  background: #d1d5db;
  border-radius: 9999px;
}

.home-hosts__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding: 0.9rem 1.65rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(62, 163, 93, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-hosts__cta svg {
  width: 1.1rem;
  height: 1.1rem;
}

.home-hosts__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(62, 163, 93, 0.28);
  color: #fff;
}

.home-hosts__note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: #6b7280;
}

.home-hosts__visual {
  position: relative;
  flex: 0.95;
  min-height: 280px;
}

.home-hosts__collage {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.home-hosts__photo {
  object-fit: cover;
  display: block;
}

.home-hosts__photo--main {
  width: 100%;
  height: 100%;
}

.home-hosts__photo--secondary,
.home-hosts__photo--accent {
  position: absolute;
  width: 36%;
  aspect-ratio: 1;
  border-radius: 14px;
  border: 3px solid #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.home-hosts__photo--secondary {
  top: 8%;
  right: -4%;
}

.home-hosts__photo--accent {
  bottom: 6%;
  left: -3%;
}

.home-hosts__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-size: 0.6875rem;
  font-weight: 700;
  border: 1px solid #ebebeb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  animation: home-hosts-float 4s ease-in-out infinite;
}

.home-hosts__float-icon {
  font-size: 1rem;
}

.home-hosts__float--calendar {
  top: 4%;
  left: 6%;
  animation-delay: 0s;
}

.home-hosts__float--map {
  top: 42%;
  right: -2%;
  animation-delay: 0.8s;
}

.home-hosts__float--pay {
  bottom: 8%;
  right: 12%;
  animation-delay: 1.6s;
}

@keyframes home-hosts-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 1023px) {
  .home-hosts__float--map {
    right: 4%;
  }

  .home-hosts__photo--secondary,
  .home-hosts__photo--accent {
    width: 32%;
  }
}

/* —— Stats WOW —— */
.home-stats-section {
  position: relative;
  padding: 0.5rem 0 1rem;
}

.home-stats--wow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .home-stats--wow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.home-stat--wow {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(165deg, #fff 0%, #f8fbf9 100%);
  border: 1px solid rgba(62, 163, 93, 0.14);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.03),
    0 18px 40px rgba(62, 163, 93, 0.1);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.35s ease;
  animation: home-stat-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--stat-i, 0) * 0.1s);
}

.home-stat--wow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #6ee7a8 50%, var(--brand-dark) 100%);
  opacity: 0.85;
}

.home-stat--wow:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 8px 16px rgba(15, 23, 42, 0.06),
    0 28px 56px rgba(62, 163, 93, 0.18);
}

.home-stat__glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 163, 93, 0.22) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.home-stat--wow:hover .home-stat__glow {
  transform: scale(1.35);
  opacity: 1.2;
}

.home-stat__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-soft) 0%, #fff 100%);
  border: 1px solid var(--brand-muted);
  color: var(--brand-dark);
  box-shadow: 0 8px 20px rgba(62, 163, 93, 0.15);
}

.home-stat__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.home-stat--wow .home-stat__value {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand) 55%, #6ee7a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-stat__suffix {
  font-size: 0.72em;
  font-weight: 800;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-stat--wow .home-stat__label {
  position: relative;
  z-index: 1;
  margin: 0.65rem 0 0;
  max-width: 11rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #525252;
}

@keyframes home-stat-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-stat--wow {
    animation: none;
  }

  .home-stat--wow:hover {
    transform: none;
  }

  .home-provinces--wow,
  .home-provinces__chip {
    animation: none;
  }

  .home-provinces__chip:hover {
    transform: none;
  }
}

/* Testimonios — sin avatares stock */
.home-reviews {
  margin-top: 4rem;
}

.home-reviews__eyebrow {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.home-reviews__title {
  margin: 0.5rem 0 0;
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
}

.home-reviews__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .home-reviews__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.home-review {
  margin: 0;
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid #ebebeb;
  background: linear-gradient(165deg, #fff 0%, #f9fafb 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-review:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(62, 163, 93, 0.1);
}

.home-review__quote {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #374151;
}

.home-review__footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid #f3f4f6;
}

.home-review__avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(62, 163, 93, 0.35);
}

.home-review__name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111;
}

.home-review__meta {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: #6b7280;
}
