/* ─── INSTAGRAM — fundo escuro ─── */
.instagram {
  background-color: var(--color-dark);
  overflow: hidden;
}

.instagram__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* ── Texto ── */
.instagram__text {
  text-align: center;
  max-width: 480px;
}

.instagram__title {
  color: var(--color-white);
}

.instagram__title::after {
  margin-inline: auto;
  background: var(--color-gold);
}

.instagram__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
  margin: 1rem 0 1.75rem;
}

.instagram__btn {
  display: inline-flex;
  align-items: center;
}

/* ── Mockup celular ── */
.instagram__mockup {
  display: flex;
  justify-content: center;
  width: 100%;
}

.instagram__phone {
  width: 180px;
  max-width: 90vw;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.5));
}

.instagram__phone-frame {
  background: #0a0a0a;
  border-radius: 32px;
  padding: 8px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

.instagram__phone-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background: #222;
  border-radius: 3px;
  z-index: 2;
}

.instagram__screen {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  padding-top: 16px;
}

/* ── Tela com screenshot real ── */
.instagram__screen--screenshot {
  padding-top: 0;
}

.instagram__screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 26px;
}

/* Feed real (Smash Balloon) */
.instagram__feed {
  margin-top: 2.5rem;
}

/* ─── DESKTOP ─── */
@media (min-width: 1024px) {
  .instagram__grid {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .instagram__text {
    text-align: left;
    flex: 1;
  }

  .instagram__title::after {
    margin-inline: 0;
  }

  .instagram__mockup {
    flex: 1;
    justify-content: center;
  }

  .instagram__phone {
    width: 260px;
  }

  .instagram__phone-frame {
    border-radius: 36px;
    padding: 10px;
  }

  .instagram__phone-frame::before {
    width: 60px;
    height: 6px;
    top: 10px;
  }
}
