
/* Ajustes visuais do tema */
.hero-image {
  height: 80vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.lightbox-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
}
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* Accordion */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion.active .accordion-content {
  max-height: 500px;
}
.accordion.active .accordion-icon {
  transform: rotate(180deg);
}

/* Aspect ratio helpers (fallback) */
.aspect-w-16 { position: relative; }
.aspect-w-16.aspect-h-9::before { content: ''; display: block; padding-top: 56.25%; }
.aspect-w-16 > * { position: absolute; inset: 0; width: 100%; height: 100%; }
