.nm-conteudos {
  padding: var(--nm-space-9) 0;
  background: var(--nm-color-white);
}

.nm-conteudos__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--nm-space-8);
  flex-wrap: wrap;
}

.nm-conteudos__media {
  position: relative;
  width: 570px;
  max-width: 100%;
  height: 428px;
  border-radius: var(--nm-radius-sm);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--nm-color-off-white);
  flex-shrink: 0;
}

.nm-conteudos__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nm-conteudos__toggle {
  position: absolute;
  right: var(--nm-space-5);
  bottom: var(--nm-space-5);
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nm-conteudos__toggle .icon {
  width: 40px;
  height: 40px;
}

.nm-conteudos__content {
  display: flex;
  flex-direction: column;
  gap: var(--nm-space-5);
  max-width: 470px;
  flex: 1;
}

.nm-conteudos__tag {
  color: var(--nm-color-text-muted);
  font-family: var(--nm-font-family);
  font-weight: var(--nm-font-weight-medium);
  font-size: var(--nm-font-size-base);
  text-transform: uppercase;
}

.nm-conteudos__title {
  color: var(--nm-color-deep-blue);
  font-family: var(--nm-font-family);
  font-weight: var(--nm-font-weight-medium);
  font-size: var(--nm-font-size-xl);
  line-height: var(--nm-line-height-lg);
  margin: 0;
}

.nm-conteudos__description {
  color: var(--nm-color-chumbo);
  font-family: var(--nm-font-family);
  font-size: var(--nm-font-size-base);
  line-height: var(--nm-line-height-base);
  margin: 0;
}

.nm-conteudos__socials {
  display: grid;
  grid-template-columns: repeat(2, 136px);
  gap: var(--nm-space-4);
}

.nm-conteudos__socials .nm-btn--streaming {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nm-conteudos__socials .nm-btn--streaming:hover {
  background: var(--nm-color-deep-blue);
  border-color: var(--nm-color-deep-blue);
  color: var(--nm-color-white);
}

.nm-conteudos__socials .nm-btn--streaming:hover img {
  filter: brightness(0) invert(1);
}

.nm-btn--streaming--spotify img {
  height: 20px;
  width: auto;
}

@media (max-width: 768px) {
  .nm-conteudos__inner {
    flex-direction: column;
  }

  .nm-conteudos__media,
  .nm-conteudos__content {
    width: 100%;
    max-width: 100%;
  }

  .nm-conteudos__socials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--nm-space-5);
  }
  .nm-conteudos__tag{
    text-align: left;
  }
}
