html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.22rem rgba(0, 122, 130, 0.35);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
}

/* Portal — paleta alineada al logo Eden (turquesa + azul marino profundo) */
:root {
  --eden-blue: #007a82;
  --eden-blue-dark: #004e54;
  --eden-navy: #0c2529;
  --eden-teal-soft: rgba(0, 122, 130, 0.08);
  --eden-surface: #f3fafa;
  --eden-border: #cce5e8;
  --wa-brand: #25d366;
  --wa-brand-deep: #128c7e;
  --wa-brand-bright: #3fe078;
}

body.eden-body {
  position: relative;
  isolation: isolate;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: var(--eden-surface);
  color: #1a3134;
}

/* Marca de agua: logo como fondo de pantalla (legible gracias al velo) */
body.eden-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-color: var(--eden-surface);
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-position: center 42%;
  background-size: min(140vmin, 2000px);
  opacity: 0.09;
  pointer-events: none;
}

body.eden-body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    165deg,
    rgba(243, 250, 250, 0.86) 0%,
    rgba(243, 250, 250, 0.92) 38%,
    rgba(243, 250, 250, 0.96) 100%
  );
  pointer-events: none;
}

/* Portada: cover a todo el ancho; anclada arriba para ver bien la parte superior; alto = viewport menos menú (sin franja vacía abajo) */
body.eden-body--portada {
  --eden-portada-header-offset: 5.5rem;
  background-color: #0c2529;
  min-height: 100vh;
  min-height: 100dvh;
}

@media (max-width: 991.98px) {
  body.eden-body--portada {
    --eden-portada-header-offset: 6rem;
  }
}

body.eden-body--portada::before,
body.eden-body--portada::after {
  display: none;
}

.portada-landing-main {
  flex: 1 1 auto;
  min-height: 0;
  height: calc(100dvh - var(--eden-portada-header-offset));
  display: flex;
  flex-direction: column;
}

.portada-landing {
  position: relative;
  isolation: isolate;
  flex: 1 1 auto;
  width: 100%;
  height: calc(100dvh - var(--eden-portada-header-offset));
  min-height: calc(100dvh - var(--eden-portada-header-offset));
  max-height: calc(100dvh - var(--eden-portada-header-offset));
  display: block;
  padding: 0;
  background-color: #0c2529;
  /* Arte completo: logo + eslogan + casa (sin superponer logo.png) */
  background-image: url("../images/portada.png");
  background-repeat: no-repeat;
  background-position: center -2vh;
  background-size: cover;
  overflow: hidden;
  --portada-cta-bottom: 15%;
}

.portada-landing__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(12, 37, 41, 0.42) 0%,
    rgba(12, 37, 41, 0.14) 32%,
    rgba(12, 37, 41, 0.48) 100%
  );
}

/* Botones en franja baja (techo/casa), ~26% desde el borde inferior del hero */
.portada-landing__cta-bar {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: var(--portada-cta-bottom);
  top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0 1rem;
  margin: 0;
  transform: none;
  pointer-events: none;
}

@media (max-width: 575.98px) {
  .portada-landing {
    --portada-cta-bottom: 13%;
  }
}

@media (min-width: 1200px) {
  .portada-landing {
    --portada-cta-bottom: 17%;
  }
}

.portada-landing__cta-bar > * {
  pointer-events: auto;
}

.portada-landing__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.55rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  background: linear-gradient(to top, rgba(12, 37, 41, 0.55) 0%, transparent 100%);
}

.portada-landing__foot a {
  color: rgba(255, 255, 255, 0.85);
}

.portada-landing__foot a:hover {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .portada-landing {
    background-attachment: scroll;
  }
}

/* Bootstrap primary (= acento turquesa del logo) */
:root {
  --bs-primary: #007a82;
  --bs-primary-rgb: 0, 122, 130;
}

.btn-primary {
  --bs-btn-bg: var(--eden-blue);
  --bs-btn-border-color: var(--eden-blue);
  --bs-btn-hover-bg: var(--eden-blue-dark);
  --bs-btn-hover-border-color: var(--eden-blue-dark);
  --bs-btn-active-bg: var(--eden-blue-dark);
  --bs-btn-active-border-color: var(--eden-blue-dark);
}

.text-accent {
  color: var(--eden-blue) !important;
}

.site-header-portal .site-brand {
  line-height: 1.2;
}

.site-navbar-portal {
  align-items: center;
}

/* Nombre de marca con degradado verde → turquesa → azul marino (como el logo) */
.eden-brand-mark,
.eden-brand-mark-hero {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.eden-navbar-brand {
  font-size: clamp(1.35rem, 4.2vw, 1.65rem);
}

.eden-brand-mark-hero {
  font-size: clamp(2rem, 5.5vw, 3.15rem);
  line-height: 1.15;
}

.eden-text-brand-gradient {
  display: inline-block;
  background: linear-gradient(
    118deg,
    #2dd4bf 0%,
    #00a896 18%,
    #007a82 48%,
    #0c2529 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .eden-text-brand-gradient {
    color: var(--eden-blue);
    background: none;
  }
}

.eden-display-serif {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: var(--eden-navy);
  letter-spacing: 0.02em;
}

.site-header-portal .navbar-light .navbar-toggler {
  color: rgba(31, 41, 55, 0.75);
}

.portal-nav-link {
  color: #374151 !important;
}

.portal-nav-link:hover {
  color: var(--eden-blue) !important;
}

.portal-nav-muted {
  color: #4b5563 !important;
}

.portal-nav-muted:hover {
  color: var(--eden-blue) !important;
}

.site-header-portal {
  border-bottom: 1px solid rgba(204, 229, 232, 0.9);
}

@media (min-width: 992px) {
  .portal-nav-middle {
    flex-wrap: nowrap;
  }

  .portal-nav-middle .nav-link {
    white-space: nowrap;
    font-size: 0.9375rem;
  }

  .portal-nav-actions .btn {
    white-space: nowrap;
    font-size: 0.875rem;
  }
}

.main-wide {
  padding-top: 1.25rem;
}

/* Carrusel listado: flechas al medio; contador y puntos arriba (no abajo de la foto) */
.listing-card-horizontal .catalog-carousel .carousel-control-prev,
.listing-card-horizontal .catalog-carousel .carousel-control-next {
  z-index: 5;
}

.listing-card-horizontal .catalog-carousel .carousel-control-prev.catalog-carousel-ctrl--floating,
.listing-card-horizontal .catalog-carousel .carousel-control-next.catalog-carousel-ctrl--floating {
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
  width: 2rem !important;
  height: 2rem !important;
  max-height: 2rem;
  flex: 0 0 auto;
  align-self: center;
  padding: 0 !important;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(12, 37, 41, 0.22);
  opacity: 1;
}

.listing-card-horizontal .catalog-carousel .carousel-control-prev.catalog-carousel-ctrl--floating:hover,
.listing-card-horizontal .catalog-carousel .carousel-control-next.catalog-carousel-ctrl--floating:hover,
.listing-card-horizontal .catalog-carousel .carousel-control-prev.catalog-carousel-ctrl--floating:focus,
.listing-card-horizontal .catalog-carousel .carousel-control-next.catalog-carousel-ctrl--floating:focus {
  background: rgba(15, 23, 42, 0.62);
}

.listing-card-horizontal .catalog-carousel .carousel-control-prev.catalog-carousel-ctrl--floating {
  left: 0.4rem;
}

.listing-card-horizontal .catalog-carousel .carousel-control-next.catalog-carousel-ctrl--floating {
  right: 0.4rem;
}

.listing-card-horizontal .catalog-carousel-ctrl--floating .carousel-control-prev-icon,
.listing-card-horizontal .catalog-carousel-ctrl--floating .carousel-control-next-icon {
  width: 1.25rem;
  height: 1.25rem;
  filter: none;
  opacity: 1;
}

.listing-card-horizontal .catalog-carousel-rail {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  max-height: calc(100% - 0.9rem);
  overflow-y: auto;
  pointer-events: none;
}

.listing-card-horizontal .catalog-carousel-rail > * {
  pointer-events: auto;
}

.listing-card-horizontal .catalog-carousel-indicators--stack {
  display: flex !important;
  flex-direction: column !important;
  position: static !important;
  margin: 0 !important;
  padding: 0.28rem 0.32rem !important;
  gap: 0.28rem !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: rgba(12, 37, 41, 0.52);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  flex-wrap: nowrap !important;
}

.listing-card-horizontal .catalog-carousel-indicators--stack [type="button"] {
  box-sizing: border-box;
  width: 6px !important;
  height: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.45) !important;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.listing-card-horizontal .catalog-carousel-indicators--stack [type="button"]:hover {
  background-color: rgba(255, 255, 255, 0.85) !important;
}

.listing-card-horizontal .catalog-carousel-indicators--stack [type="button"].active {
  background-color: #fff !important;
  transform: scale(1.2);
}

.listing-card-horizontal .catalog-carousel-rail .catalog-op-badge {
  position: static;
  margin: 0;
  font-size: 0.625rem;
  padding: 0.22rem 0.48rem;
}

.listing-card-horizontal .catalog-carousel-rail--solo-foto {
  justify-content: flex-end;
}

/* Skeleton carga catálogo */
.catalog-skeleton-card__media {
  min-height: 180px;
  background: linear-gradient(90deg, #dceef0 0%, #eef6f7 50%, #dceef0 100%);
  background-size: 200% 100%;
  animation: catalog-skeleton-shimmer 1.2s ease-in-out infinite;
}

@media (min-width: 992px) {
  .catalog-skeleton-card__media {
    min-height: 210px;
  }
}

.catalog-skeleton-line {
  height: 0.85rem;
  border-radius: 6px;
  background: linear-gradient(90deg, #dceef0 0%, #eef6f7 50%, #dceef0 100%);
  background-size: 200% 100%;
  animation: catalog-skeleton-shimmer 1.2s ease-in-out infinite;
}

.catalog-skeleton-line--sm {
  width: 35%;
}

.catalog-skeleton-line--md {
  width: 55%;
}

.catalog-skeleton-line--lg {
  width: 70%;
  height: 1.1rem;
}

.catalog-skeleton-line--full {
  width: 90%;
}

@keyframes catalog-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Panel modal compartir */
.share-sheet-modal .modal-dialog {
  max-width: 26rem;
}

.share-sheet {
  border-radius: 1rem;
  overflow: hidden;
}

.share-sheet__header {
  padding: 1.25rem 1.25rem 0;
}

.share-sheet__body {
  padding: 0 1.25rem 1.25rem;
}

.share-sheet__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.share-sheet__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.35rem;
  border-radius: 0.85rem;
  text-decoration: none;
  color: var(--eden-navy, #0c2529);
  background: #f8fafb;
  border: 1px solid rgba(12, 37, 41, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.share-sheet__option:hover,
.share-sheet__option:focus {
  color: var(--eden-blue-dark, #006970);
  background: #fff;
  box-shadow: 0 8px 20px rgba(12, 37, 41, 0.08);
  transform: translateY(-1px);
}

.share-sheet__option-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem;
}

.share-sheet__option-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.share-sheet__option--wa .share-sheet__option-icon {
  background-color: rgba(37, 211, 102, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2325D366'%3E%3Cpath d='M13.601 2.326A7.854 7.854 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.964L0 16l4.204-1.102a7.933 7.933 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.898 7.898 0 0 0 13.6 2.326zM7.994 14.521a6.573 6.573 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.557 6.557 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592z'/%3E%3C/svg%3E");
}

.share-sheet__option--fb .share-sheet__option-icon {
  background-color: rgba(24, 119, 242, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231877F2'%3E%3Cpath d='M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951'/%3E%3C/svg%3E");
}

.share-sheet__option--x .share-sheet__option-icon {
  background-color: rgba(12, 37, 41, 0.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c2529'%3E%3Cpath d='M12.6.75h2.454l-5.36 6.142L16 15.25h-4.937l-3.865-5.07-4.427 5.07H.316l5.733-6.57L0 .75h5.063l3.495 4.633L12.601.75Zm-.86 13.028h1.36L4.323 2.145H2.865z'/%3E%3C/svg%3E");
}

.share-sheet__option--mail .share-sheet__option-icon {
  background-color: rgba(0, 122, 130, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007a82'%3E%3Cpath d='M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586zm3.436-.586L16 11.801V4.697z'/%3E%3C/svg%3E");
}

.share-sheet__url-input {
  font-size: 0.8125rem;
  background: #f8fafb;
}

.share-sheet__copy-btn {
  min-width: 5.5rem;
}

@media (max-width: 575.98px) {
  .share-sheet-modal .modal-dialog {
    align-items: flex-end;
    min-height: calc(100% - 1rem);
    margin: 0.5rem auto;
  }

  .share-sheet {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.catalog-media-col .listing-card-interactive {
  z-index: 3;
}

.listing-actions {
  position: relative;
  z-index: 6;
}

.listing-actions .share-trigger,
.listing-actions .btn-wa,
.catalog-mobile-cta__inner .share-trigger {
  position: relative;
  z-index: 7;
}

.catalog-mobile-cta__inner .share-trigger {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
}

.listing-actions .share-trigger {
  flex: 0 0 auto;
}

/* Compartir en tarjetas del catálogo (par con WhatsApp) */
.btn-share--card {
  --btn-share-card-shadow: 0 3px 12px rgba(0, 122, 130, 0.22), 0 1px 3px rgba(12, 37, 41, 0.06);
  position: relative;
  overflow: hidden;
  gap: 0.45rem !important;
  padding: 0.42rem 0.95rem 0.42rem 0.65rem !important;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--eden-blue, #007a82) !important;
  background: linear-gradient(180deg, #fff 0%, #f0f9fa 100%);
  border: 1.5px solid rgba(0, 122, 130, 0.35);
  box-shadow: var(--btn-share-card-shadow);
  transition: transform 0.22s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.22s ease,
    border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn-share--card .btn-share__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 122, 130, 0.1);
  transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1), background 0.22s ease;
}

.btn-share--card .btn-share__icon {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.btn-share--card .btn-share__icon--check {
  position: absolute;
  opacity: 0;
  transform: scale(0.4) rotate(-12deg);
}

.btn-share--card .btn-share__icon--share {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.btn-share--card .btn-share__label {
  line-height: 1.2;
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.btn-share--card .btn-share__ripple {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(0, 122, 130, 0.28) 0%, transparent 65%);
  opacity: 0;
  transform: scale(0.35);
  pointer-events: none;
}

.btn-share--card:hover {
  color: #fff !important;
  border-color: transparent;
  background: linear-gradient(155deg, #0a9aa3 0%, var(--eden-blue) 48%, var(--eden-blue-dark) 100%);
  box-shadow: 0 8px 22px rgba(0, 122, 130, 0.38), 0 2px 6px rgba(12, 37, 41, 0.1);
  transform: translateY(-2px);
}

.btn-share--card:hover .btn-share__icon-wrap {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.06) rotate(-8deg);
}

.btn-share--card:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 122, 130, 0.28);
}

.btn-share--card:focus-visible {
  outline: none;
  box-shadow: var(--btn-share-card-shadow), 0 0 0 3px rgba(0, 122, 130, 0.35), 0 0 0 5px rgba(255, 255, 255, 0.95);
}

.btn-share--card.is-ripple .btn-share__ripple {
  animation: btn-share-ripple 0.55s ease-out forwards;
}

.btn-share--card.is-copied {
  color: #fff !important;
  border-color: transparent;
  background: linear-gradient(155deg, #0d9488 0%, #059669 55%, #047857 100%);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
  transform: translateY(-1px) scale(1.02);
}

.btn-share--card.is-copied .btn-share__icon-wrap {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.btn-share--card.is-copied .btn-share__icon--share {
  opacity: 0;
  transform: scale(0.3) rotate(20deg);
}

.btn-share--card.is-copied .btn-share__icon--check {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  animation: btn-share-check-pop 0.45s cubic-bezier(0.34, 1.5, 0.64, 1);
}

.btn-share--card.is-copied .btn-share__label {
  animation: btn-share-label-pop 0.35s ease;
}

@keyframes btn-share-ripple {
  0% {
    opacity: 0.65;
    transform: scale(0.35);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}

@keyframes btn-share-check-pop {
  0% {
    opacity: 0;
    transform: scale(0.2) rotate(-20deg);
  }
  70% {
    transform: scale(1.15) rotate(4deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes btn-share-label-pop {
  0% {
    opacity: 0.6;
    transform: translateY(3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.listing-actions .btn-share--card .btn-share__label {
  display: inline;
}

@media (max-width: 575.98px) {
  .listing-actions .btn-share--card {
    padding-left: 0.55rem !important;
    padding-right: 0.55rem !important;
  }

  .listing-actions .btn-share--card .btn-share__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

/* Compartir compacto (barra móvil detalle) */
.btn-share--compact {
  padding: 0.5rem 0.95rem !important;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--eden-blue, #007a82) !important;
  background: linear-gradient(180deg, #fff 0%, #f0f9fa 100%);
  border: 1.5px solid rgba(0, 122, 130, 0.35);
  box-shadow: 0 2px 8px rgba(0, 122, 130, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-share--compact:hover {
  color: #fff !important;
  background: linear-gradient(155deg, #0a9aa3 0%, var(--eden-blue) 48%, var(--eden-blue-dark) 100%);
  border-color: transparent;
  transform: translateY(-1px);
}

.btn-share--compact.is-copied {
  color: #fff !important;
  background: linear-gradient(155deg, #0d9488 0%, #059669 100%);
  border-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .btn-share--card,
  .btn-share--card:hover,
  .btn-share--card:active,
  .btn-share--card.is-copied,
  .btn-share--compact,
  .btn-share--compact:hover {
    transition: none;
    transform: none;
    animation: none;
  }

  .btn-share--card .btn-share__icon,
  .btn-share--card.is-copied .btn-share__icon--check,
  .btn-share--card.is-ripple .btn-share__ripple {
    animation: none;
    transition: none;
  }
}

.catalog-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--eden-border, #cce5e8);
  box-shadow: 0 -8px 24px rgba(12, 37, 41, 0.12);
  backdrop-filter: blur(8px);
}

.catalog-mobile-cta__inner {
  display: flex;
  gap: 0.5rem;
  max-width: 520px;
  margin: 0 auto;
}

body.catalog-detail-has-mobile-cta {
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 992px) {
  body.catalog-detail-has-mobile-cta {
    padding-bottom: 0;
  }
}

.catalog-dropdown-menu--precio {
  min-width: 260px;
}

.listing-card-horizontal .catalog-carousel-indicators--stack:empty {
  display: none !important;
}

.catalog-search-sticky {
  position: sticky;
  top: 0;
  z-index: 1020;
  padding-top: 0.35rem;
  margin-top: -0.35rem;
  background: linear-gradient(to bottom, var(--eden-surface) 72%, rgba(243, 250, 250, 0));
}

/* Panel principal del catálogo — tarjeta limpia con acento de marca */
.catalog-panel {
  position: relative;
  border-radius: 1.35rem;
  padding: 1.65rem 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 122, 130, 0.12);
  box-shadow:
    0 1px 2px rgba(12, 37, 41, 0.04),
    0 22px 48px -28px rgba(0, 78, 84, 0.22);
  backdrop-filter: blur(10px);
}

.catalog-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 1.35rem 1.35rem 0 0;
  background: linear-gradient(90deg, #2dd4bf 0%, #007a82 55%, #0c2529 100%);
  opacity: 0.95;
}

.catalog-panel.catalog-panel-catalog-toolbar {
  padding: 0.85rem 1.15rem 0.95rem;
}

@media (min-width: 992px) {
  .catalog-panel.catalog-panel-catalog-toolbar {
    padding: 1rem 1.35rem 1.1rem;
  }
}

@media (min-width: 1400px) {
  .catalog-panel.catalog-panel-catalog-toolbar {
    padding: 1.15rem 1.5rem 1.2rem;
  }
}

/* Alta / edición de propiedad — misma tarjeta que el panel del catálogo */
.catalog-panel.admin-form-panel {
  padding: 1.2rem 1.15rem 1.35rem;
  padding-bottom: 1.35rem;
}

.admin-form-shell {
  width: min(100%, 64rem);
}

.admin-page-intro {
  max-width: 40rem;
}

.admin-page-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--eden-navy);
  margin: 0 0 0.4rem;
  line-height: 1.2;
}

.admin-page-lead {
  font-size: 0.9375rem;
  color: #5c7276;
  line-height: 1.45;
}

.admin-id-badge {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78em;
  font-weight: 600;
  color: var(--eden-blue-dark);
  background: rgba(0, 122, 130, 0.08);
  padding: 0.18rem 0.45rem;
  border-radius: 0.4rem;
  vertical-align: middle;
}

.admin-form-panel .form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4a6266;
  margin-bottom: 0.35rem;
}

.admin-form-panel .form-control,
.admin-form-panel .form-select {
  border-radius: 0.65rem;
  border-color: rgba(0, 122, 130, 0.16);
  padding-top: 0.52rem;
  padding-bottom: 0.52rem;
}

.admin-form-panel .form-control:focus,
.admin-form-panel .form-select:focus {
  border-color: rgba(0, 122, 130, 0.42);
  box-shadow: 0 0 0 3px rgba(0, 122, 130, 0.11);
}

.admin-form-panel .form-text {
  color: #7d9599;
  font-size: 0.8125rem;
}

.admin-form-panel .form-check-input:checked {
  background-color: var(--eden-blue);
  border-color: var(--eden-blue);
}

.admin-form-section {
  border: 1px solid rgba(0, 122, 130, 0.1);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.75);
  padding: 0.95rem 0.95rem 1.05rem;
}

.admin-form-section + .admin-form-section {
  margin-top: 1rem;
}

.admin-form-section__title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eden-blue-dark);
  margin: 0 0 0.8rem;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 122, 130, 0.1);
}

.admin-foto-thumb {
  border-color: rgba(0, 122, 130, 0.14) !important;
}

@media (min-width: 992px) {
  .catalog-panel.admin-form-panel {
    padding: 1.45rem 1.5rem 1.45rem;
  }

  .admin-form-section {
    padding: 1.1rem 1.15rem 1.2rem;
  }
}

.catalog-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}

.catalog-search-wrap {
  flex: 0 1 auto;
  min-width: 0;
  width: min(100%, 17.5rem);
  max-width: 18rem;
}

@media (min-width: 992px) {
  .catalog-search-wrap {
    flex: 0 0 15.75rem;
    width: 15.75rem;
    max-width: 15.75rem;
  }
}

.catalog-search-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  margin: 0;
  padding: 0.32rem 0.75rem 0.32rem 0.8rem;
  border-radius: 999px;
  background: #f5fafb;
  border: 1px solid rgba(0, 122, 130, 0.14);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.catalog-search-pill:focus-within {
  background: #fff;
  border-color: rgba(0, 122, 130, 0.38);
  box-shadow: 0 0 0 3px rgba(0, 122, 130, 0.12);
}

.catalog-search-pill__icon {
  flex-shrink: 0;
  color: var(--eden-blue);
  opacity: 0.85;
}

.catalog-search-pill__input {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--eden-navy);
  padding: 0.28rem 0;
}

.catalog-search-pill__input::placeholder {
  color: #86a0a4;
  font-weight: 400;
}

.catalog-search-pill__input:focus {
  outline: none;
  box-shadow: none;
}

.catalog-search-field:focus {
  box-shadow: none;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin: 0;
  flex: 1 1 12rem;
  min-width: 0;
}

.catalog-filters-label {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7d9599;
  margin: 0;
  white-space: nowrap;
}

.catalog-clear-filters {
  color: var(--eden-blue);
  font-weight: 600;
  white-space: nowrap;
}

.catalog-clear-filters:hover {
  color: var(--eden-blue-dark);
}

.catalog-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.catalog-sort-wrap {
  flex: 0 0 auto;
  margin-left: auto;
}

@media (max-width: 991.98px) {
  .catalog-search-wrap {
    flex: 1 1 100%;
    max-width: none;
    width: 100%;
  }

  .catalog-sort-wrap {
    margin-left: auto;
  }
}

.catalog-toolbar-row .btn-filter-pill {
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
}

.btn-catalog-sort {
  background: transparent !important;
  border: 0 !important;
  color: var(--eden-navy) !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.38rem 0.55rem !important;
  border-radius: 0.5rem !important;
  max-width: 100%;
}

.mw-catalog-sort {
  display: inline-block;
  max-width: 8.5rem;
}

@media (min-width: 992px) {
  .catalog-toolbar-row {
    gap: 0.55rem 0.85rem;
  }

  .catalog-search-pill {
    padding: 0.42rem 0.9rem 0.42rem 0.95rem;
    gap: 0.55rem;
  }

  .catalog-search-pill__icon {
    width: 1.125rem;
    height: 1.125rem;
  }

  .catalog-search-pill__input {
    font-size: 0.9375rem;
    padding: 0.32rem 0;
  }

  .catalog-filters-label {
    font-size: 0.75rem;
  }

  .catalog-clear-filters {
    font-size: 0.875rem;
  }

  .catalog-toolbar-row .btn-filter-pill {
    padding: 0.5rem 0.95rem;
    font-size: 0.9375rem;
  }

  .btn-catalog-sort {
    font-size: 0.9375rem;
    padding: 0.45rem 0.65rem !important;
  }

  .btn-catalog-sort svg {
    width: 1.0625rem;
    height: 1.0625rem;
  }

  .mw-catalog-sort {
    max-width: 10.5rem;
  }

  .catalog-dropdown-menu .dropdown-item {
    font-size: 0.9375rem;
    padding: 0.5rem 0.85rem;
  }
}

@media (min-width: 1400px) {
  .catalog-search-wrap {
    flex: 0 0 18.5rem;
    width: 18.5rem;
    max-width: 18.5rem;
  }

  .catalog-search-pill__input {
    font-size: 1rem;
  }

  .catalog-filters-label {
    font-size: 0.8125rem;
  }

  .catalog-toolbar-row .btn-filter-pill {
    padding: 0.55rem 1.1rem;
    font-size: 1rem;
  }

  .btn-catalog-sort {
    font-size: 1rem;
  }

  .mw-catalog-sort {
    max-width: 12rem;
  }

  .catalog-results-outer {
    margin-left: calc(1.5rem + 18.5rem + 0.85rem);
  }
}

.btn-catalog-sort:hover,
.btn-catalog-sort:focus {
  background: rgba(0, 122, 130, 0.06) !important;
  color: var(--eden-blue) !important;
}

.btn-catalog-sort.dropdown-toggle::after {
  margin-left: 0.25rem;
  opacity: 0.55;
  flex-shrink: 0;
}

.catalog-dropdown-menu {
  border-radius: 0.75rem !important;
  padding: 0.35rem !important;
  margin-top: 0.35rem !important;
  box-shadow: 0 12px 40px rgba(12, 37, 41, 0.12) !important;
}

.catalog-dropdown-menu .dropdown-item {
  font-size: 0.875rem;
  padding: 0.45rem 0.75rem;
}

.catalog-dropdown-menu .dropdown-item:active {
  background-color: rgba(0, 122, 130, 0.12);
  color: var(--eden-navy);
}

/* Ancho del listado = columna central de la toolbar (desde FILTROS hasta antes de Ordenar) */
.catalog-results-outer {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 992px) {
  .catalog-results-outer {
    margin-left: calc(1.15rem + 15.75rem + 0.65rem);
    margin-right: calc(1.15rem + 0.65rem + 10.5rem);
  }
}

@media (min-width: 1200px) {
  .catalog-results-outer {
    margin-right: calc(1.15rem + 0.65rem + 12.85rem);
  }
}

.catalog-results-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin: 0;
}

.catalog-results-count {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--eden-blue);
  line-height: 1;
}

.catalog-results-label {
  font-size: 0.9375rem;
  color: #5f767a;
  font-weight: 500;
}

.catalog-toolbar .btn-outline-primary {
  --bs-btn-color: var(--eden-blue);
  --bs-btn-border-color: rgba(0, 122, 130, 0.45);
}

.btn-filter-pill {
  border-radius: 999px;
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.48rem 1rem;
  color: #3d5659;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.btn-filter-pill:hover {
  border-color: rgba(0, 122, 130, 0.22);
  background-color: #fff;
  color: var(--eden-navy);
}

.btn-filter-pill.dropdown-toggle::after {
  margin-left: 0.35rem;
  opacity: 0.45;
}

.btn-filter-pill-muted {
  color: var(--eden-blue);
  border-color: rgba(0, 122, 130, 0.22);
  background-color: rgba(0, 122, 130, 0.06);
}

.btn-filter-pill-muted:hover {
  border-color: rgba(0, 122, 130, 0.35);
  background-color: rgba(0, 122, 130, 0.1);
  color: var(--eden-blue-dark);
}

.object-fit-cover {
  object-fit: cover;
}

/* Tarjeta horizontal listado — altura uniforme en catálogo */
.listing-card-horizontal.card {
  overflow: hidden;
}

.listing-card-horizontal.card > .row {
  flex-shrink: 0;
}

.catalog-listings > .listing-card-horizontal {
  flex-shrink: 0;
}

.listing-card-horizontal {
  border-radius: 14px;
  border: 1px solid var(--eden-border) !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}

/* Móvil: una columna; recortar esquinas del bloque foto como antes */
@media (max-width: 991.98px) {
  .listing-card-horizontal {
    overflow: hidden;
  }

  .listing-card-horizontal .catalog-media-col {
    border-radius: 14px 14px 0 0;
    overflow: hidden;
  }

  .listing-card-horizontal .catalog-detail-col {
    border-radius: 0 0 14px 14px;
  }
}

@media (min-width: 992px) {
  .listing-card-horizontal .catalog-media-col {
    border-radius: 14px 0 0 14px;
    overflow: hidden;
  }

  .listing-card-horizontal .catalog-detail-col {
    border-radius: 0 14px 14px 0;
    background-color: #fff;
  }
}

.listing-card-horizontal:hover {
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08) !important;
  transform: translateY(-2px);
}

.catalog-media-col {
  background-color: #dceeef;
}

.catalog-carousel {
  background-color: #d5e9ec;
}

/* Altura contenida (referencia ~1/3 ancho, proporción tipo listado compacto) */
.catalog-carousel-img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .catalog-listings > .listing-card-horizontal {
    max-height: none;
  }

  .catalog-carousel {
    min-height: 0;
  }

  .catalog-carousel-img {
    min-height: 0;
    max-height: 220px;
  }

  .listing-card-horizontal .listing-card-body {
    overflow: hidden;
  }
}

.listing-card-horizontal > .row {
  align-items: stretch;
}

@media (min-width: 992px) {
  .catalog-listings > .listing-card-horizontal {
    height: 210px;
  }

  .listing-card-horizontal > .row {
    height: 210px;
    min-height: 210px;
    max-height: 210px;
  }

  .listing-card-horizontal .catalog-media-col {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    height: 210px;
  }

  .listing-card-horizontal .catalog-detail-col {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    height: 210px;
    min-height: 0;
    overflow: hidden;
  }

  .listing-card-horizontal .catalog-carousel {
    height: 210px;
    min-height: 210px;
    max-height: 210px;
  }

  .listing-card-horizontal .catalog-carousel .carousel-inner,
  .listing-card-horizontal .catalog-carousel .carousel-item {
    height: 100%;
    min-height: 0;
  }

  .listing-card-horizontal .catalog-carousel-img {
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
  }

  .listing-card-horizontal .listing-card-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    padding-bottom: 0.5rem !important;
  }
}

.carousel-item .catalog-carousel-img {
  border-radius: 0;
}

.catalog-carousel .carousel-inner {
  background-color: #d5e9ec;
}

.catalog-carousel .carousel-item img {
  max-height: none;
}

.catalog-carousel-ctrl {
  width: 2.25rem;
  opacity: 1;
}

.catalog-carousel-ctrl .carousel-control-prev-icon,
.catalog-carousel-ctrl .carousel-control-next-icon {
  width: 1.5rem;
  height: 1.5rem;
  filter: invert(100%) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}

.catalog-carousel-counter {
  position: absolute;
  left: 0.75rem;
  bottom: 0.65rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  line-height: 1;
  z-index: 3;
}

.catalog-card-badges {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  pointer-events: none;
}

.catalog-badge-nuevo {
  background: #0d9488;
  color: #fff;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.catalog-badge-destacado--inline {
  position: static;
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.48rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(15, 23, 42, 0.82);
  color: #f8fafc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.catalog-badge-destacado {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--eden-blue);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.catalog-op-badge {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  background: rgba(15, 23, 42, 0.75);
  color: #f8fafc;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
}

.listing-agency-bar {
  background-color: #e8f4f6;
  border-bottom: 1px solid var(--eden-border);
}

.listing-card-bar-title {
  min-width: 0;
  flex: 1 1 auto;
  margin-right: 0.5rem;
}

.listing-agency-mark {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.78rem;
  background: linear-gradient(135deg, var(--eden-blue), var(--eden-blue-dark));
  color: #fff;
}

.letter-spacing-tight {
  letter-spacing: 0.06em;
}

.listing-price {
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 800;
  color: var(--eden-navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.listing-price-suffix {
  font-size: 0.875rem;
  font-weight: 600;
  color: #456368;
}

.listing-title {
  color: var(--eden-navy);
  font-size: 0.98rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.8125rem;
  line-height: 1.45;
  flex-shrink: 1;
  min-height: 0;
  margin-bottom: 0.35rem !important;
}

.listing-card-body {
  min-height: 0;
}

.catalog-listings .listing-card-body .listing-specs {
  flex-shrink: 0;
}

.catalog-listings .listing-card-body .listing-extra--catalog {
  flex-shrink: 0;
}

.catalog-listings .listing-card-body .listing-actions {
  flex-shrink: 0;
  margin-top: auto !important;
}

.listing-comodidades {
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.listing-extra--catalog {
  white-space: nowrap;
}

.listing-comodidades-mas {
  margin-top: -0.25rem;
  font-size: 0.75rem;
}

@media (min-width: 992px) {
  .listing-comodidades--catalog {
    column-count: 2;
    column-gap: 0.75rem;
  }

  .listing-comodidades--catalog li {
    break-inside: avoid;
  }
}

.listing-card-horizontal .listing-card-interactive {
  position: relative;
  z-index: 2;
}

/* listing-card-interactive pisa position: absolute del carrusel; restaurar overlays sobre la foto */
.listing-card-horizontal .catalog-carousel > .carousel-control-prev,
.listing-card-horizontal .catalog-carousel > .carousel-control-next,
.listing-card-horizontal .catalog-carousel > .catalog-carousel-rail,
.listing-card-horizontal .catalog-carousel > .catalog-carousel-rail {
  position: absolute;
}

.catalog-detail-carousel {
  position: relative;
  background-color: #d5e9ec;
}

.catalog-detail-carousel .carousel-control-prev,
.catalog-detail-carousel .carousel-control-next {
  z-index: 5;
}

.catalog-detail-carousel .catalog-carousel-ctrl--floating {
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
  width: 2.5rem !important;
  height: 2.5rem !important;
  max-width: 2.5rem;
  max-height: 2.5rem;
  flex: 0 0 auto;
  align-self: center;
  padding: 0 !important;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(12, 37, 41, 0.22);
  opacity: 1 !important;
}

.catalog-detail-carousel .carousel-control-prev.catalog-carousel-ctrl--floating {
  left: 0.65rem;
  right: auto;
}

.catalog-detail-carousel .carousel-control-next.catalog-carousel-ctrl--floating {
  right: 0.65rem;
  left: auto;
}

.catalog-detail-carousel .catalog-carousel-ctrl--floating:hover,
.catalog-detail-carousel .catalog-carousel-ctrl--floating:focus {
  background: rgba(15, 23, 42, 0.62);
  opacity: 1 !important;
}

.catalog-detail-carousel .catalog-carousel-ctrl--floating .carousel-control-prev-icon,
.catalog-detail-carousel .catalog-carousel-ctrl--floating .carousel-control-next-icon {
  width: 1.35rem;
  height: 1.35rem;
  filter: none;
  opacity: 1;
}

.catalog-detail-carousel .catalog-carousel-rail,
.catalog-detail-carousel-rail {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  max-height: calc(100% - 1rem);
  overflow-y: auto;
  pointer-events: none;
}

.catalog-detail-carousel .catalog-carousel-rail > *,
.catalog-detail-carousel-rail > * {
  pointer-events: auto;
}

.catalog-detail-carousel .catalog-carousel-indicators--stack {
  display: flex !important;
  flex-direction: column !important;
  position: static !important;
  margin: 0 !important;
  padding: 0.32rem 0.38rem !important;
  gap: 0.32rem !important;
  align-items: center !important;
  background: rgba(12, 37, 41, 0.52);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  flex-wrap: nowrap !important;
}

.catalog-detail-carousel .catalog-carousel-indicators--stack [type="button"] {
  width: 7px !important;
  height: 7px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.45) !important;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.catalog-detail-carousel .catalog-carousel-indicators--stack [type="button"]:hover {
  background-color: rgba(255, 255, 255, 0.85) !important;
}

.catalog-detail-carousel .catalog-carousel-indicators--stack [type="button"].active {
  background-color: #fff !important;
  transform: scale(1.2);
}

.catalog-detail-carousel .catalog-carousel-rail--solo-foto,
.catalog-detail-carousel-rail.catalog-carousel-rail--solo-foto {
  justify-content: flex-end;
}

.catalog-detail-carousel .catalog-carousel-indicators--stack:empty {
  display: none !important;
}

.catalog-detail-carousel .catalog-carousel-rail .catalog-op-badge,
.catalog-detail-carousel-rail .catalog-op-badge {
  position: static;
  margin: 0;
}

.catalog-detail-carousel .catalog-op-badge--solo {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 6;
  margin: 0;
}

.catalog-detail-carousel-img {
  min-height: 260px;
  max-height: 52vh;
}

@media (min-width: 992px) {
  .catalog-detail-carousel-img {
    min-height: 400px;
    max-height: 58vh;
  }
}

.listing-detail-body {
  word-break: break-word;
}

.listing-detail-body img {
  max-width: 100%;
  height: auto;
}

.listing-detail-sidebar.sticky-lg-top {
  z-index: 1015;
}

.btn-wa {
  --btn-wa-shadow: 0 4px 16px rgba(37, 211, 102, 0.42), 0 2px 4px rgba(12, 37, 41, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  position: relative;
  border: 0;
  gap: 0.5rem;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  background: linear-gradient(155deg, var(--wa-brand-bright) 0%, var(--wa-brand) 42%, #1ea952 100%);
  box-shadow: var(--btn-wa-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-wa:hover {
  color: #fff !important;
  filter: brightness(1.06) saturate(1.05);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5), 0 4px 10px rgba(12, 37, 41, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.btn-wa:active {
  transform: translateY(0);
  filter: brightness(0.98);
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-wa:focus-visible {
  outline: none;
  box-shadow: var(--btn-wa-shadow), 0 0 0 3px rgba(37, 211, 102, 0.45), 0 0 0 5px rgba(255, 255, 255, 0.9);
}

.btn-wa__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

.btn-wa__icon {
  display: block;
}

.btn-wa__label {
  line-height: 1.2;
}

.btn-wa.btn-sm {
  gap: 0.5rem !important;
  padding-left: 0.65rem !important;
  padding-right: 0.95rem !important;
  padding-top: 0.42rem !important;
  padding-bottom: 0.42rem !important;
  font-size: 0.8125rem;
}

.btn-wa.btn-sm .btn-wa__icon-wrap {
  width: 1.55rem;
  height: 1.55rem;
}

.btn-wa.btn-sm .btn-wa__icon {
  width: 0.95rem;
  height: 0.95rem;
}

.btn-wa--featured {
  gap: 0.45rem !important;
  padding: 0.5rem 0.95rem !important;
  font-size: 0.8125rem;
  border-radius: 999px !important;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.38), 0 1px 3px rgba(12, 37, 41, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-wa--featured:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(12, 37, 41, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.btn-wa--featured .btn-wa__icon-wrap {
  width: 1.65rem;
  height: 1.65rem;
}

.btn-wa--featured .btn-wa__icon {
  width: 0.9rem;
  height: 0.9rem;
}

.btn-wa--featured .btn-wa__label {
  font-size: 0.8125rem;
}

.btn-wa--featured .btn-wa__hint {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.05rem;
}

@media (prefers-reduced-motion: reduce) {
  .btn-wa,
  .btn-wa:hover,
  .btn-wa:active {
    transition: none;
    transform: none;
  }
}

.btn-share {
  --btn-share-shadow: 0 4px 16px rgba(0, 122, 130, 0.35), 0 2px 4px rgba(12, 37, 41, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  position: relative;
  border: 0;
  gap: 0.5rem;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: linear-gradient(155deg, #0a9aa3 0%, var(--eden-blue) 45%, var(--eden-blue-dark) 100%);
  box-shadow: var(--btn-share-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-share:hover {
  color: #fff !important;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 122, 130, 0.42), 0 4px 10px rgba(12, 37, 41, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.btn-share:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.btn-share:focus-visible {
  outline: none;
  box-shadow: var(--btn-share-shadow), 0 0 0 3px rgba(0, 122, 130, 0.4), 0 0 0 5px rgba(255, 255, 255, 0.9);
}

.btn-share__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

.btn-share__icon {
  display: block;
}

.btn-share__label {
  line-height: 1.2;
}

.btn-share--featured {
  gap: 0.45rem !important;
  padding: 0.5rem 0.95rem !important;
  font-size: 0.8125rem;
  border-radius: 999px !important;
  box-shadow: 0 3px 12px rgba(0, 122, 130, 0.32), 0 1px 3px rgba(12, 37, 41, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-share--featured:hover {
  transform: translateY(-1px);
}

.btn-share--featured .btn-share__icon-wrap {
  width: 1.65rem;
  height: 1.65rem;
}

.btn-share--featured .btn-share__icon {
  width: 0.9rem;
  height: 0.9rem;
}

.btn-share--featured .btn-share__label {
  font-size: 0.8125rem;
}

.btn-share--featured .btn-share__hint {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.05rem;
}

.listing-detail-actions {
  margin-bottom: 0.15rem;
}

.listing-detail-actions__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.5rem;
}

.listing-detail-actions__btn {
  flex: 1 1 0;
  min-width: 0;
  width: auto !important;
  padding: 0.45rem 0.55rem !important;
  gap: 0.35rem !important;
  white-space: nowrap;
}

.listing-detail-actions__btn .btn-share__hint,
.listing-detail-actions__btn .btn-wa__hint {
  display: none !important;
}

.listing-detail-actions__btn .btn-share__label,
.listing-detail-actions__btn .btn-wa__label {
  font-size: 0.75rem;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-detail-actions__btn .btn-share__icon-wrap,
.listing-detail-actions__btn .btn-wa__icon-wrap {
  width: 1.45rem;
  height: 1.45rem;
  flex-shrink: 0;
}

.listing-detail-actions__btn .btn-share__icon,
.listing-detail-actions__btn .btn-wa__icon {
  width: 0.8rem;
  height: 0.8rem;
}

@media (prefers-reduced-motion: reduce) {
  .btn-share,
  .btn-share:hover,
  .btn-share:active {
    transition: none;
    transform: none;
  }
}

/* Tarjetas catálogo: anula estilo “featured” del botón compartir base */
.listing-actions .btn.btn-share.btn-share--card {
  border: 1.5px solid rgba(0, 122, 130, 0.35);
  color: var(--eden-blue, #007a82) !important;
  background: linear-gradient(180deg, #fff 0%, #f0f9fa 100%);
  box-shadow: var(--btn-share-card-shadow, 0 3px 12px rgba(0, 122, 130, 0.22));
  filter: none;
}

.listing-actions .btn.btn-share.btn-share--card:hover {
  color: #fff !important;
  border-color: transparent;
  background: linear-gradient(155deg, #0a9aa3 0%, var(--eden-blue) 48%, var(--eden-blue-dark) 100%);
  box-shadow: 0 8px 22px rgba(0, 122, 130, 0.38);
  filter: none;
}

.listing-actions .btn.btn-share.btn-share--card.is-copied {
  background: linear-gradient(155deg, #0d9488 0%, #059669 55%, #047857 100%);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
  filter: none;
}

.listing-actions .btn.btn-share.btn-share--card .btn-share__icon-wrap {
  background: rgba(0, 122, 130, 0.1);
  box-shadow: none;
}

.listing-actions .btn.btn-share.btn-share--card:hover .btn-share__icon-wrap,
.listing-actions .btn.btn-share.btn-share--card.is-copied .btn-share__icon-wrap {
  background: rgba(255, 255, 255, 0.22);
}

/* Quiénes somos */
.quienes-somos-page {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.quienes-somos-logo {
  max-width: min(100%, 26rem);
  height: auto;
}

.quienes-somos-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  color: var(--eden-navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.quienes-somos-text {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #1a3644;
  line-height: 1.55;
  max-width: 38rem;
}

.quienes-somos-figure {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 50px -24px rgba(12, 37, 41, 0.35);
  border: 1px solid rgba(0, 122, 130, 0.12);
  background: #e8f4f6;
}

.quienes-somos-photo {
  display: block;
  min-height: 280px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

@media (min-width: 992px) {
  .quienes-somos-photo {
    min-height: 420px;
    max-height: min(70vh, 640px);
  }
}

.quienes-somos-caption {
  font-size: 0.75rem;
  color: #7d9599;
  padding: 0.5rem 0.75rem 0.65rem;
  text-align: right;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(0, 122, 130, 0.08);
}

.quienes-somos-caption a {
  color: #5c7276;
  text-decoration: none;
  font-weight: 600;
}

.quienes-somos-caption a:hover {
  color: var(--eden-blue);
  text-decoration: underline;
}

/* Misión / Visión — misma caja que la figura en Quiénes somos */
.institucional-text-panel {
  background: #e8e9eb;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 50px -24px rgba(12, 37, 41, 0.35);
  border: 1px solid rgba(0, 122, 130, 0.12);
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2rem);
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.institucional-text-panel .quienes-somos-text {
  margin-left: auto;
  margin-right: auto;
}

/* Visión: título centrado, cuerpo alineado a la izquierda */
.institucional-text-panel--vision {
  align-items: stretch;
}

.institucional-text-panel--vision .quienes-somos-title {
  width: 100%;
  text-align: center;
}

.institucional-text-panel--vision .quienes-somos-text {
  text-align: left;
  width: 100%;
  max-width: 38rem;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 992px) {
  .institucional-text-panel {
    min-height: 420px;
  }
}

/* Nuestros servicios */
.servicios-page {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.servicios-hero {
  position: relative;
  border-radius: 1.35rem;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(243, 250, 250, 0.98) 55%, rgba(232, 244, 246, 0.95) 100%);
  border: 1px solid rgba(0, 122, 130, 0.14);
  box-shadow:
    0 1px 2px rgba(12, 37, 41, 0.04),
    0 28px 56px -36px rgba(0, 78, 84, 0.35);
  overflow: hidden;
}

.servicios-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 1.35rem 1.35rem 0 0;
  background: linear-gradient(90deg, #2dd4bf 0%, #007a82 45%, #0c2529 100%);
  opacity: 0.95;
}

.servicios-hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eden-blue);
  margin-bottom: 0.65rem;
}

.servicios-hero-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--eden-navy);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.servicios-hero-lead {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  color: #456368;
  line-height: 1.55;
  max-width: 44rem;
}

.servicios-card {
  position: relative;
  height: 100%;
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 122, 130, 0.12);
  box-shadow: 0 8px 32px -18px rgba(12, 37, 41, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.servicios-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -24px rgba(0, 122, 130, 0.35);
  border-color: rgba(0, 122, 130, 0.28);
}

.servicios-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  color: #fff;
  background: linear-gradient(145deg, #2dd4bf 0%, var(--eden-blue) 45%, var(--eden-blue-dark) 100%);
  box-shadow: 0 6px 20px -6px rgba(0, 122, 130, 0.65);
}

.servicios-card__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--eden-navy);
  margin-bottom: 0.55rem;
  line-height: 1.25;
}

.servicios-card__text {
  font-size: 0.9rem;
  color: #5c7276;
  line-height: 1.5;
}

.servicios-card--cta {
  background: linear-gradient(155deg, rgba(0, 122, 130, 0.09) 0%, rgba(255, 255, 255, 0.96) 40%, rgba(243, 250, 250, 0.98) 100%);
  border-color: rgba(0, 122, 130, 0.2);
}

.servicios-card--cta .servicios-card__icon {
  display: none;
}

.servicios-card--cta .servicios-card__title {
  font-size: 1.45rem;
}

.servicios-strip {
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(90deg, rgba(0, 122, 130, 0.1) 0%, rgba(12, 37, 41, 0.06) 100%);
  border: 1px dashed rgba(0, 122, 130, 0.35);
}

.servicios-strip__text {
  font-size: 0.875rem;
  color: #456368;
  line-height: 1.45;
}

.servicios-strip__text strong {
  color: var(--eden-navy);
}

@media (prefers-reduced-motion: reduce) {
  .servicios-card:hover {
    transform: none;
    transition: none;
  }
}

/* --- Contacto --- */
.contacto-page {
  position: relative;
  overflow: hidden;
  max-width: 72rem;
  margin-inline: auto;
}

.contacto-page__glow {
  position: absolute;
  width: clamp(260px, 42vw, 420px);
  height: clamp(260px, 42vw, 420px);
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.contacto-page__glow--a {
  background: radial-gradient(circle at 30% 30%, rgba(45, 212, 191, 0.45), transparent 65%);
  top: -6rem;
  right: -5rem;
}

.contacto-page__glow--b {
  background: radial-gradient(circle at 70% 70%, rgba(0, 122, 130, 0.38), transparent 62%);
  bottom: -8rem;
  left: -6rem;
  opacity: 0.42;
}

.contacto-page > .row {
  z-index: 1;
}

.contacto-hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eden-blue);
  margin-bottom: 0.65rem;
}

.contacto-hero__title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 3.15rem);
  font-weight: 700;
  color: var(--eden-navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.15rem;
}

.contacto-hero__lead {
  font-size: clamp(1rem, 1.85vw, 1.125rem);
  color: #456368;
  line-height: 1.6;
  max-width: 28rem;
}

.contacto-panel {
  position: relative;
  border-radius: 1.35rem;
  padding: clamp(1.5rem, 4vw, 2.35rem);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(243, 250, 250, 0.96) 45%,
    rgba(232, 244, 246, 0.92) 100%
  );
  border: 1px solid rgba(0, 122, 130, 0.16);
  box-shadow:
    0 1px 2px rgba(12, 37, 41, 0.04),
    0 28px 64px -32px rgba(0, 78, 84, 0.38);
}

.contacto-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 1.35rem 1.35rem 0 0;
  background: linear-gradient(90deg, #2dd4bf 0%, var(--eden-blue) 45%, var(--eden-navy) 100%);
  opacity: 0.95;
}

.contacto-panel__intro {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 122, 130, 0.12);
}

.contacto-panel__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eden-blue-dark);
  background: rgba(0, 122, 130, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.contacto-panel__hint {
  font-size: 0.9rem;
  color: #5c7276;
  line-height: 1.5;
  max-width: 36rem;
}

.contacto-channels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contacto-channel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 122, 130, 0.1);
  box-shadow: 0 6px 24px -16px rgba(12, 37, 41, 0.2);
}

.contacto-channel__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  color: #fff;
}

.contacto-channel__icon--wa {
  background: linear-gradient(145deg, #34d399 0%, #25d366 55%, #128c43 100%);
  box-shadow: 0 6px 18px -6px rgba(37, 211, 102, 0.55);
}

.contacto-channel__icon--mail {
  background: linear-gradient(145deg, #5eead4 0%, var(--eden-blue) 50%, var(--eden-blue-dark) 100%);
  box-shadow: 0 6px 18px -6px rgba(0, 122, 130, 0.45);
}

.contacto-channel__body {
  min-width: 0;
}

.contacto-channel__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eden-blue-dark);
  margin-bottom: 0.35rem;
}

.contacto-channel__value {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--eden-navy);
  line-height: 1.25;
}

.contacto-channel__mail {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--eden-blue);
  text-decoration: none;
  word-break: break-word;
}

.contacto-channel__mail:hover {
  color: var(--eden-blue-dark);
  text-decoration: underline;
}

.contacto-channel__actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contacto-panel__foot {
  margin-top: 1.65rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 122, 130, 0.12);
  text-align: center;
}

.contacto-softlink {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--eden-blue);
  text-decoration: none;
}

.contacto-softlink:hover {
  color: var(--eden-blue-dark);
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .contacto-page__glow {
    opacity: 0.25;
    filter: blur(36px);
  }
}

.footer {
  line-height: 1.75;
}

.eden-footer {
  background-color: #e8f4f6;
  border-color: var(--eden-border) !important;
  color: #456368 !important;
}

.eden-footer a:not(.btn) {
  color: var(--eden-blue);
}

.eden-footer a:not(.btn):hover {
  color: var(--eden-blue-dark);
}

/* --- Panel administrativo --- */
.admin-body {
  background: #eef4f5;
}

.admin-shell {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid var(--eden-border);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  align-self: flex-start;
  min-height: 100vh;
}

.admin-sidebar__brand {
  padding: 0 1.25rem 1rem;
  border-bottom: 1px solid var(--eden-border);
  margin-bottom: 1rem;
}

.admin-sidebar__brand-link {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.admin-sidebar__menu-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a9ea2;
  font-weight: 600;
}

.admin-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0 0.75rem;
  flex: 1;
}

.admin-sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  color: var(--eden-navy);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

.admin-sidebar__link:hover {
  background: var(--eden-teal-soft);
  color: var(--eden-blue-dark);
}

.admin-sidebar__link.is-active {
  background: rgba(0, 122, 130, 0.12);
  color: var(--eden-blue-dark);
  font-weight: 600;
}

.admin-sidebar__icon {
  display: inline-flex;
  width: 1.25rem;
  justify-content: center;
  color: inherit;
  opacity: 0.85;
}

.admin-sidebar__footer {
  padding: 1rem 1.25rem 0;
  margin-top: auto;
  border-top: 1px solid var(--eden-border);
}

.admin-sidebar__back {
  color: var(--eden-blue-dark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.admin-sidebar__back:hover {
  color: var(--eden-blue);
}

.admin-main {
  flex: 1;
  min-width: 0;
  padding: 1.5rem 1.75rem 2.5rem;
}

.admin-topbar__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a9ea2;
  font-weight: 600;
}

.admin-topbar__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--eden-navy);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.admin-topbar__lead {
  color: #5f7378;
  max-width: 42rem;
}

.admin-topbar__greeting {
  font-size: 0.92rem;
  color: #5f7378;
}

.admin-topbar__logout {
  color: var(--eden-blue) !important;
}

.admin-flash {
  margin-bottom: 1.25rem;
}

.admin-stat-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 1px 3px rgba(12, 37, 41, 0.06);
  border: 1px solid rgba(204, 229, 232, 0.7);
  height: 100%;
}

.admin-stat-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a9ea2;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.admin-stat-card__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--eden-navy);
  margin: 0;
  line-height: 1.1;
}

.admin-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(12, 37, 41, 0.06);
  border: 1px solid rgba(204, 229, 232, 0.7);
  overflow: hidden;
}

.admin-card--flush .table thead th:first-child,
.admin-card--flush .table tbody td:first-child {
  padding-left: 1.25rem;
}

.admin-card--flush .table thead th:last-child,
.admin-card--flush .table tbody td:last-child {
  padding-right: 1.25rem;
}

.admin-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--eden-border);
}

.admin-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--eden-navy);
  margin: 0;
}

.admin-card__body {
  padding: 1.15rem 1.25rem 1.25rem;
}

.admin-card__text {
  color: #5f7378;
  font-size: 0.92rem;
}

.admin-card__link {
  color: var(--eden-blue);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.admin-card__link:hover {
  color: var(--eden-blue-dark);
}

.admin-empty {
  color: #5f7378;
  font-size: 0.92rem;
}

.admin-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-list__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--eden-border);
}

.admin-list__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.admin-list__item:first-child {
  padding-top: 0;
}

.admin-list__title {
  font-weight: 600;
  color: var(--eden-navy);
  text-decoration: none;
}

.admin-list__title:hover {
  color: var(--eden-blue);
}

.admin-list__meta {
  font-size: 0.82rem;
  color: #7a9095;
  margin-top: 0.2rem;
}

.admin-list__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.admin-list__photos {
  font-size: 0.78rem;
  color: #8a9ea2;
}

.admin-dl__row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem 1rem;
  margin-bottom: 0.65rem;
}

.admin-dl__row:last-child {
  margin-bottom: 0;
}

.admin-dl dt {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a9ea2;
  font-weight: 600;
  margin: 0;
}

.admin-dl dd {
  margin: 0;
  color: var(--eden-navy);
  font-weight: 500;
  word-break: break-word;
}

.admin-dl__hint {
  display: block;
  font-size: 0.78rem;
  color: #8a9ea2;
  font-weight: 400;
}

.admin-notifications {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-notifications__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.admin-notifications__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admin-notifications__icon.is-ok {
  background: rgba(25, 135, 84, 0.12);
  color: #198754;
}

.admin-notifications__icon.is-warn {
  background: rgba(255, 193, 7, 0.18);
  color: #997404;
}

.admin-notifications__text {
  color: var(--eden-navy);
  font-size: 0.92rem;
}

.admin-notifications__meta {
  font-size: 0.8rem;
  color: #8a9ea2;
  margin-top: 0.25rem;
}

@media (max-width: 991.98px) {
  .admin-shell {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
    min-height: auto;
    position: static;
    border-right: 0;
    border-bottom: 1px solid var(--eden-border);
  }

  .admin-sidebar__nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .admin-main {
    padding: 1rem 1rem 2rem;
  }

  .admin-dl__row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

