.artista-box {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 8px;
}
.artista-box:hover .artista-box__thumbnail {
  transform: scale(1.02);
  filter: drop-shadow(2px 4px 6px black);
}
.artista-box__name {
  color: var(--body-color);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.84px;
  text-align: center;
}
.artista-box__thumb-wrapper {
  position: relative;
  width: 100%;
  text-align: center;
}
.artista-box__thumb-wrapper:before {
  content: '';
  background: url('../img/icons/border-artista.png') no-repeat center;
  background-size: 100%;
  width: 100%;
  height: 358px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.artista-box__thumbnail {
  position: relative;
  z-index: 2;
  transition: all .5s;
}
/*Carousel*/
.artistas__swiper-wrapper {
  position: relative;
}
.artistas-wrapper {
  width: calc(100% - 88px);
  margin: auto;
  overflow: hidden;
}
.artistas__swiper-wrapper .swiper-wrapper {
    align-items: baseline;
    display: flex;
}

/*Lista da página artistas*/
.artistas-page #artistas .ver-todas-btn {
  display: none;
}
.artista-box--list a {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 16px;
}
.artista-box--list a img {
  margin: auto;
}
.artista-box--list a .social-icon {
  margin: auto;
}
.artistas-page .artistas-list {
  margin-top: 53px;
}
.artista-box--list .artista-box__name {
  font-size: 20px;
  text-align: center;
}

/*Filtro Alfabeto*/
#a-z {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 19px 0;
  flex-wrap: wrap;
}
#a-z:before,
#a-z:after {
  content: '';
  position: absolute;
  background-image: radial-gradient(circle at 51% 100%, #ff0098 1%, rgba(255, 255, 255, 0) 100%);
  height: 1px;
  width: 100%;
}
#a-z:before {
  top: 0;
}
#a-z:after {
  bottom: 0;
}
#a-z li a {
  font-size: 28px;
  color: #c2c3c9;
  pointer-events: none;
  opacity: .5;
}
#a-z li a:hover {
  color: #ff0098;
}
#a-z li.active a {
  pointer-events: inherit;
  opacity: 1;
}
#a-z li a.active-click {
  background-color: #ff0098;
  border-radius: 50%;
  color: #fff;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.artista-box__social {
  margin-top: 20px;
}
.artista-box__social > a {
  display: none;
}

/*Single*/
.artista-single .content {
  padding: 0;
}
.icon-spotify--circle {
  fill: var(--page-header-color);
}
.icon-spotify--bars {
  fill: var(--spotfy-icon--bars)!important;
}
.artista-single__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0 40px;
}
.artista-single__name {
  font-size: 28px;
}
.artista-single__social,
.artista-box__social {
  display: flex;
}
.artista-single__social li:not(:last-child),
.artista-box__social li:not(:last-child) {
  margin-right: 32px;
}
.artista-single__social li a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.followers-num {
  font-size: 12px;
  color: var(--body-color);
  text-align: center;
}
.artista-single__social li a:hover .followers-num,
.artista-single__social li a:hover .social-icon * 
{
  color: #ff0098;
  fill: #ff0098;
}
.artista-single__banner img {
  width: 100%;
}

/*Tabs*/
.tabs__btns {
  display: flex;
  margin-bottom: 56px;
}
.tabs__btns li:not(:last-child) {
  margin-right: 24px;
}
.tabs__tab-btn {
  border: solid 1px #ff0098;
  border-radius: 50px;
  color: var(--body-color);
  display: block;
  padding: 4px 24px;
  font-size: 18px;
}
.tabs__tab-btn--active,
.tabs__tab-btn:hover {
  color: #ffffff;
  background-color: #ff0098;
}
.tabs__tab-content {
  display: none;
}
.tabs__tab-content--active {
  display: block;
}

@media only screen and (max-width: 767px) {
  #a-z {
    justify-content: space-around;
    margin-bottom: 80px;
  }
  #a-z li:not(:last-child) {
    margin-right: 30px;
  }
  #artistas.container {
    padding: 0;
  }
  #artistas .ver-todas-btn {
    width: calc(100% - (27px * 2));
    margin: 32px auto 0;
  }
  #artistas .custom-title__svg {
    width: calc(100% - (27px * 2));
    display: block;
    margin: auto;
  }
  #artistas .custom-wrapper {
    margin-top: -28px;
  }
  .artistas-swiper-button-next,
  .artistas-swiper-button-prev {
    display: none;
  }
  .artistas-wrapper {
    width: 100%;
    padding-left: 27px;
  }
  .artistas-wrapper .swiper-slide {
    width: 55%;
  }
  .artista-box__thumb-wrapper img {
    height: 207px;
    width: auto;
  }
  .artista-box__thumb-wrapper:before {
    background-position: bottom;
  }
  #artistas.page-section {
    margin-top: 0;
  }
  #artistas .custom-title__text {
    display: none;
  }
  .artista-single__social li, 
  .artista-box__social li {
    margin-right: 0;
  }
  .artista-single__social,
  .artista-box__social {
    flex-direction: column;
  }
  .artista-single__social li:not(:last-child),
  .artista-box__social li:not(:last-child) {
    margin-bottom: 32px;
  }
  .artista-box--list .artista-box__social li a,
  .artista-single__social li a {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    align-items: center;
  }
  .followers-num {
    text-align: left;
  }
  .alphabet-filter.page-section {
    margin-top: 0;
  }

  /*Single*/
  .artista-single__info {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  /*Tabs*/
  .tabs__btns {
    margin-bottom: 32px;
    gap: 16px;
  }
  .tabs__tab-btn {
    font-size: 12px;
  }
}