html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: #2A1A0E;
  background-color: #FAF5ED;
}

h1, h2, h3, h4, h5 {
  font-family: 'Lora', Georgia, serif;
}

/* FAQ accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.faq-answer.open {
  max-height: 600px;
  padding-bottom: 1.25rem !important;
}

/* Galeria masonry */
@media (max-width: 374px) {
  .masonry { columns: 1; }
}
.masonry {
  columns: 2;
  column-gap: 0.75rem;
}
@media (min-width: 768px) {
  .masonry { columns: 3; }
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
}
.masonry-item img {
  width: 100%;
  border-radius: 0.5rem;
  display: block;
  object-fit: cover;
}

/* Active nav link */
.nav-active {
  color: #4A7459;
  border-bottom: 2px solid #C9923A;
}
