/* Seção Reels — grid full-width estilo Instagram + overlay no scroll */

.section-reels {
  height: 220vh;
  margin-bottom: .75em;
  position: relative;
}

.reels-pin {
  border-radius: .75em;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
  background: var(--light-1);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: .35em;
  height: 100%;
  width: 100%;
  padding: .35em;
  box-sizing: border-box;
}

.reel-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: .5em;
  background: #1a1a1a;
  min-height: 0;
  height: 100%;
}

.reel-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.25, .46, .45, .94);
}

.reel-card:hover .reel-thumb {
  transform: scale(1.04);
}

.reel-views {
  position: absolute;
  left: .65em;
  bottom: .65em;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .3em;
  color: #fff;
  font-family: URW Gothic, sans-serif;
  font-size: .78em;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .55);
  pointer-events: none;
}

.reel-views-icon {
  width: .95em;
  height: .95em;
  flex-shrink: 0;
}

.reels-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #020306;
  opacity: 0;
  pointer-events: none;
}

.reels-cta {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2em 1.25em;
  gap: 1em;
  opacity: 0;
  transform: translateY(1.25em);
  pointer-events: none;
}

.reels-cta.is-interactive {
  pointer-events: auto;
}

.reels-heading {
  color: var(--light-1);
  font-family: URW Gothic, sans-serif;
  font-size: clamp(2em, 5.5vw, 3.75em);
  font-weight: 700;
  line-height: 1.08em;
  margin: 0;
  max-width: 12em;
}

.reels-follow {
  margin-top: .5em;
}

.reels-ig-icon {
  filter: invert(1);
}

@media screen and (max-width: 767px) {
  .section-reels {
    height: 200vh;
  }

  .reels-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: .25em;
    padding: .25em;
  }

  .reel-views {
    font-size: .7em;
    left: .45em;
    bottom: .45em;
  }

  .reels-heading {
    font-size: clamp(1.75em, 8vw, 2.5em);
  }
}
