:root {
  --color-bg: #faf9f7;
  --color-bg-secondary: #f4f5f6;
  --color-text: #1a1a1a;
  --color-muted: #000;
  --color-border: #e0ddd8;
 /*  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'EB Garamond', Georgia, serif; */
  --nav-height: 56px;
  --transition: 200ms ease;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg);
}

.site-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.site-logo a:hover {
  opacity: 0.75;
}

.site-nav .nav-link {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #555 !important;
  padding: 0.25rem 0.75rem !important;
  transition: color var(--transition);
  position: relative;
}

.site-nav .nav-link:hover {
  color: var(--color-text) !important;
}

.site-nav .nav-link.active {
  color: var(--color-text) !important;
  font-weight: 600;
}

.site-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--color-text);
  width: 100%;
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  padding: 0.25rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26,26,26,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.site-footer {
  background-color: var(--color-bg-secondary);
  padding: 2rem 0;
  margin-top: 6rem;
}

.footer-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.9375rem;
}

.footer-links {
  font-size: 0.875rem;
  color: var(--color-muted);
  text-align: right;
}

.footer-email {
  display: block;
  margin-bottom: 0.2rem;
}

.footer-social {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-social a:hover {
  color: var(--color-text);
}

.footer-sep {
  color: var(--color-border);
  margin-inline: 0.25rem;
}

/* ===== IMAGEN CREDIT ===== */
.img-credit {
  text-align: right;
  float: right;
  min-height: 29px;
}

.img-wrap {
  position: relative;
}

.img-wrap .img-credit-overlay {
  color: #000;
  padding: 0.05rem 0.35rem;
  border-radius: 2px;
  font-size: 0.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: 60ms;
}

.reveal-d2 {
  transition-delay: 120ms;
}

.reveal-d3 {
  transition-delay: 180ms;
}

.reveal-d4 {
  transition-delay: 240ms;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-text);
  transition: width 0.25s ease;
}

.nav-item:hover::after {
  width: 100%;
}
.ql-align-right{
  text-align: right;
}

    .empty-state{
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.camino-intro__body {
    width: 100%;
    columns: 2;
    column-gap: 2rem;
    column-fill: balance;
}

.category-card__image-hover {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.category-card__image {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 300ms ease !important;
}

.category-card__image--main {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.category-card__image--hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.category-card:hover .category-card__image-hover.has-hover .category-card__image--main,
.project-item:hover .category-card__image-hover.has-hover .category-card__image--main {
  opacity: 0;
}

.category-card:hover .category-card__image-hover.has-hover .category-card__image--hover,
.project-item:hover .category-card__image-hover.has-hover .category-card__image--hover {
  opacity: 1;
}

.img-credit {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 4;
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  transition: opacity 300ms ease !important;
}

.img-credit--main {
  opacity: 1;
}

.img-credit--hover {
  opacity: 0;
}

.category-card:hover .category-card__image-hover.has-hover .img-credit--main,
.project-item:hover .category-card__image-hover.has-hover .img-credit--main {
  opacity: 0;
}

.category-card:hover .category-card__image-hover.has-hover .img-credit--hover,
.project-item:hover .category-card__image-hover.has-hover .img-credit--hover {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.show-mobile{
  display: none !important;
}
.hidden-mobile{
  display: block !important;
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 3.5rem;
  }

  .footer-links {
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }
  .show-mobile{
    display: block !important;
  }
  .hidden-mobile{
    display: none !important;
  }
}

.precio{
  font-size: 1.25rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.lang-link {
  color: inherit;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}

.lang-link:hover,
.lang-link.active {
  color: inherit;
  opacity: 1;
}

.lang-link.active {
  font-weight: 600;
}

.lang-separator {
  font-size: 0.75rem;
  line-height: 1;
  opacity: 0.35;
}
.gap-1{
  gap: 1rem
}

@media (max-width: 767.98px) {
  .site-nav {
    padding-top: 1.5rem;
  }

  .site-nav .navbar-nav {
    align-items: flex-start;
  }
}
.project-detail__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
}

.project-detail__date {
  font-size: 0.95rem;
}

.project-detail__share {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity 200ms ease;
}

.project-detail__share:hover {
  opacity: 0.55;
}

.project-detail__share svg {
  flex-shrink: 0;
}

.project-detail__share.is-copied {
  opacity: 0.6;
}

@media (max-width: 575px) {
  .project-detail__meta {
    align-items: flex-start;
  }
}
.objeto-detail__share {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.75rem;
}