.crisal-shop-banner {
  width: 100%;
  height: 50vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 17vh;
}

.crisal-shop-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--crisal-shop-banner-url);
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
  z-index: -1;
}

.crisal-shop-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  color: white;
  overflow: hidden;
}

.crisal-shop-banner-content h2 {
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  word-wrap: break-word;
  hyphens: auto;
  flex-shrink: 1;
}

.crisal-shop-banner-content h3 {
  font-family: "HelveticaNeueLT", Helvetica, Arial, sans-serif !important;
  margin: 0 0 1rem 0;
  word-wrap: break-word;
  flex-shrink: 1;
}

.crisal-shop-text-wrapper {
  margin-top: 8vh !important;
  width: 60%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 8vh;
}

.swiper,
.swiper-wrapper {
  height: auto !important;
  /*overflow: visible !important;*/
}
.swiper {
  width: 90%;
  margin: 2rem auto;
  margin-bottom: 8vh;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 0;
}

.post-card {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #ffffff;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.spacer-top {
  height: 1.5rem;
  flex-shrink: 0;
}

.spacer {
  height: 2.5rem;
  flex-shrink: 0;
  vertical-align: middle;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.post-card .image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  flex: 1;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
  font-size: var(--font-xs);
  box-sizing: border-box;
}

.image-wrapper:hover .image-overlay {
  opacity: 1;
}

.post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0.5rem 1rem 0.5rem;
}

.card-header .page-name {
  flex-grow: 1;
  text-align: center;
}

.profile-img {
  width: 1.8rem !important;
  height: 1.8rem !important;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
}

.card-header .right-icon {
  font-size: 1.8rem;
  color: #4267b2;
}

.card-footer {
  width: 100%;
  padding: 0 0.5rem 0 0.5rem;
  display: flex;
  align-items: center;
}

.post-timestamp {
  margin: 0;
  display: flex;
  align-items: center;
}

.time-icon {
  padding-right: 0.4rem;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.info-title {
  width: 90%;
  margin: 0 auto;
}

.feed-text-row {
  max-width: 90%;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10rem;
  margin-bottom: 4vh;
}

.feed-text-col {
  flex: 1;
}

.form-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.form-text a {
  font-size: inherit;
  color: var(--grey-dark);
  text-decoration: none;
}

.map-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: auto !important;
  flex: 1 1 auto;
  height: 100%;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info .contact-item:last-child {
  margin-bottom: 0 !important;
}

/* Mobile Styles */
@media (max-width: 576px) {
  .crisal-shop-banner {
    margin-top: 11vh;
  }

  .crisal-shop-text-wrapper {
    width: 90%;
  }
  .swiper {
    margin-bottom: 8vh;
  }

  .feed-text-row {
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 8vh !important;
  }

  .feed-text-col {
    flex: 1 1 100%;
  }

  .map-wrapper {
    margin-top: 4vh !important;
    position: relative;
    height: 200px; /* altura visível para mobile */
  }

  .map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* Mobile Landscape and Tablets */
@media (min-width: 576px) and (max-width: 768px) {
  .feed-text-row {
    margin-bottom: 8vh !important;
  }
}
