@font-face {
  font-family: 'Cousine';
  src: url('/assets/fonts/Cousine-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* =========================
   BACKGROUNDS / CORES
========================= */
.bg-primary-gradient {
  background: linear-gradient(123deg, #453e7d 65%, #d41d70 35%) !important;
  color: #fff !important;
}

.bg-primary-gradient a:link,
.bg-primary-gradient a:visited {
  color: white;
}

.bg-transparent {
  background-color: none !important;
}

/* =========================
   LINKS
========================= */
a:link {
  text-decoration: none;
}

/* =========================
   CONTAINER
========================= */
.container {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .container {
    max-width: 740px;
  }
}

@media only screen and (min-width: 992px) {
  .container {
    max-width: 980px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* =========================
   PRIMEVUE / MENUBAR
========================= */
.p-card {
  border-radius: 20px;
}

.p-card .p-card-header {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.p-menubar {
  border-radius: 0;
}

.p-menubar div {
  padding: 0;
}

.p-menubar .p-element {
  order: 1;
}

.p-menubar-start {
  order: 1;
}

.p-menubar-button {
  order: 0;
}

.p-menubar-end {
  padding-right: 20px !important;
  flex-grow: 1;
  flex-basis: 0;
  order: 2;
}

/* =========================
   LAYOUT / POSITION
========================= */
.sticky-top {
  top: 115px;
  z-index: 3;
}

.fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  bottom: 0;
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-top-right {
  position: fixed;
  right: 0;
  z-index: 1030;
}

.fixed-bottom-right {
  bottom: 0;
  position: fixed;
  right: 0;
  z-index: 1030;
}

/* =========================
   HOME / RESPONSIVO
========================= */
.bigScreen .home-top-slide {
  min-height: 50vh;
}

.bigScreen .home-top-slide .content {
  min-height: 50vh;
}

.bigScreen .home-top-slide .content .title {
  font-size: 4vw !important;
}

.mobile .home-top-slide {
  min-height: 100vh;
}

.mobile .home-top-slide .content {
  min-height: 100vh;
}

.mobile .home-top-slide .content .title {
  font-size: none !important;
}

/* =========================
   ARTISTAS
========================= */
.artist-list-box {
  position: relative;
}

.artist-list-box .artist-avatar {
  border-radius: 15px;
  width: 100%;
}

.mobile .artist-list-box .artist-avatar {
  width: 80px;
  height: 80px;
}

.artist-list-box .artist img {
  object-fit: cover;
  transition: all 1s ease-in-out;
}

.artist-list-box .artist p {
  text-align: center;
}

/* =========================
   BODY / BASE
========================= */
body {
  margin: 0;
  padding: 0;
}

.lyric-text {
  font-family: 'Cousine',
  'JetBrains Mono',
  'Fira Code',
  'Source Code Pro',
  'Menlo',
  'Consolas',
  'Liberation Mono',
  monospace;
  font-size: 1.2rem;
}

main {
  min-height: 100vh;
}

/* =========================
   IMAGENS
========================= */
.box-img-cover {
  overflow: hidden;
  position: relative;
}

.box-img-cover img {
  height: 100% !important;
  object-fit: cover;
  position: absolute;
  transition: all 1s ease-in-out;
}

.show-img img {
  display: visible;
}

/* =========================
   LETRAS / CIFRAS
========================= */
.chord {
  color: #d81b60;
  font-weight: bold;
  letter-spacing: 0 !important;
  font-size: 1.1rem;
}

.lyric,
.lyric-chords,
.lyric-section {
  font-family: Cousine, monospace, Courier New, Courier !important;
}

.lyric {
  margin: 0;
  padding-bottom: 0;
}

.lyric-section {
  font-size: 1.1rem !important;
  line-height: 1.7rem;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  height: auto;
  z-index: 99999;
}

.navbar a.nav-link.active {
  border-radius: 5px;
  margin: 0;
  font-weight: bold;
}

.navbar .btn.btn-outline-success {
  border: nones;
  margin-right: 2px;
}

.navbar .nav-item:hover {
  font-weight: bold;
}

.navbar .title {
  font-size: 1.1rem;
  font-weight: bold;
}

.navbar-collapse.show {
  padding: 10px;
  border-radius: 10px;
}

.navbar-collapse.show a.nav-link {
  margin-top: 5px;
  padding-left: 15px;
}

/* =========================
   MEGA MENU
========================= */
.mega-menu.mobile,
.mega-menu.tablet {
  display: none;
}

/* =========================
   SEÇÕES
========================= */
section {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.selected {
  font-weight: bold;
}

/* =========================
   SERVIÇOS
========================= */
.services .content img {
  max-width: 100%;
  height: auto;
}

/* =========================
   TRACK PAGE
========================= */
.track-page.main-section {
  min-height: 100vh !important;
  text-align: center;
  overflow: hidden !important;
}

.track-page.main-section.custom-header div {
  overflow: hidden;
}

/* =========================
   ZOOM EFFECT
========================= */
.zoomeffect img {
  animation: zoom 20s;
}

@keyframes zoom {
  from {
    transform: scale(1.3, 1.3);
  }
  to {
    transform: scale(1, 1);
  }
}

/* =========================
   ADS
========================= */
.adsbygoogle {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* =========================
   PRINT
========================= */
@media print {
  .d-print-none,
  #_nbtads_alert,
  .adsbygoogle {
    display: none !important;
  }
}

/* =========================
   BOTÕES
========================= */
.p-button {
  border-radius: 10px;
  margin-right: 4px;
}

.active {
  background-color: #d81b60;
  color: white !important;
}


/* ===============================
   VARIÁVEIS (substituídas)
   =============================== */

.header-session {
  position: relative;
  color: #fff;
  overflow: hidden;
}

/* ===============================
   HEADER DA MÚSICA
   =============================== */

.header-session .header-img-main {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  transform: scale(1.1);
}

.header-session .header-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.85)
  );
}

.header-session .header-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.header-session .header-content h1 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.header-session .header-content h5 {
  font-weight: 400;
  margin-top: 0.5rem;
}

.header-session .header-content i {
  margin-right: 4px;
}

.header-session .header-content .artists-link {
  font-weight: 600;
  margin-right: 6px;
  text-decoration: none;
  color: #fff;
}

.header-session .header-content .artists-link:hover {
  text-decoration: underline;
}

/* ===============================
   PLAYER YOUTUBE
   =============================== */

.ytplayer-box iframe {
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.ytplayer-box i.fab.fa-youtube {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: #ff0000;
}

/* ===============================
   BOTÕES SUPERIORES
   =============================== */

.header-content .btn {
  font-size: 0.9rem;
  padding: 6px 12px;
}

/* ===============================
   CONTEÚDO PRINCIPAL
   =============================== */

#lyric-box-section {
  background: #fff;
  margin-top: 2rem;
}

#lyric-box-section .music-lyric-box {
  padding: 1.5rem;
}

#lyric-box-section .music-lyric-box .header h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

#lyric-box-section .music-lyric-box .header h2 b {
  color: #d41d70;
}

#lyric-box-section .music-lyric-box .lyric-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #222;
  column-gap: 2.5rem;
}

#lyric-box-section .music-lyric-box .lyric-text p {
  margin-bottom: 1rem;
}

/* ===============================
   SIDEBAR ESQUERDA
   =============================== */

.music-lyric-box-left {
  background: #f8f9fa;
  padding: 1.2rem;
  border-right: 1px solid #e5e5e5;
}

.music-lyric-box-left .about-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.music-lyric-box-left .about-box ul li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.music-lyric-box-left .about-box ul li b {
  color: #d41d70;
}

.music-lyric-box-left .about-box ul li a {
  color: #222;
  text-decoration: none;
}

.music-lyric-box-left .about-box ul li a:hover {
  text-decoration: underline;
}

.music-lyric-box-left .artists-list {
  padding-left: 1rem;
}

.music-lyric-box-left .artists-list li {
  margin-bottom: 4px;
}

/* ===============================
   ARTISTAS
   =============================== */

.card {
  background: transparent;
  border: none;
}

.card img.thumbnail {
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  margin-bottom: 4px;
}

.card small {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: #6c757d;
}

/* ===============================
   ADS
   =============================== */

.ads-right-box {
  background: #fafafa;
  border-left: 1px solid #e5e5e5;
}

.ads-right-box .ads-right-fixed {
  padding: 1rem;
}

/* ===============================
   TOP MUSIC LIST
   =============================== */

.featured.top-music-list {
  margin-top: 3rem;
}

.featured.top-music-list .title {
  margin-bottom: 1.5rem;
}

.featured.top-music-list .title b {
  color: #d41d70;
}

.featured.top-music-list .card {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}

.featured.top-music-list .card .card-header {
  font-weight: 600;
}

.featured.top-music-list .card .card-header a {
  color: #222;
  text-decoration: none;
}

.featured.top-music-list .card .card-header a:hover {
  color: #d41d70;
}

.featured.top-music-list .card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured.top-music-list .card .card-footer .icon-link {
  color: #d41d70;
}

.featured.top-music-list .card .card-footer .icon-link:hover {
  opacity: 0.8;
}

/* ===============================
   RESPONSIVO
   =============================== */

@media (max-width: 991px) {
  .music-lyric-box-left,
  .ads-right-box {
    display: none;
  }

  .lyric-text {
    column-count: 1 !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .lyric-text {
    column-count: 2;
  }
}

/* =========================================================
   HEADER
========================================================= */
.header-session {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.header-img-main {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  transform: scale(1.1);
}

.header-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.85)
  );
}

.header-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
}

.header-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.header-content p {
  font-size: 1.05rem;
  opacity: 0.95;
}

/* =========================================================
   BUSCA
========================================================= */
.artist-search-input-box {
  display: flex;
  max-width: 420px;
  margin-top: 1.2rem;
}

.artist-search-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 6px 0 0 6px;
  border: none;
  outline: none;
  font-size: 0.95rem;
}

.artist-search-find-btn {
  padding: 0 18px;
  background: #d41d70;
  border: none;
  border-radius: 0 6px 6px 0;
  color: #fff;
  cursor: pointer;
}

.artist-search-find-btn:hover {
  opacity: 0.9;
}

/* =========================================================
   SEÇÕES
========================================================= */

.modal-backdrop.show {
  display: none;
}
.featured {
  padding: 3rem 2rem;
}

.featured .title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.featured .title b {
  color: #d41d70;
}

.featured p {
  color: #555;
  margin-bottom: 1.5rem;
}

/* =========================================================
   TOP MUSIC LIST
========================================================= */
.top-music-list-content article {
}

.top-music-list-content .card {
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.top-music-list-content .card:hover {
  transform: translateY(-4px);
}

.top-music-list-content .card-header {
  background: #fff;
  font-weight: 600;
}

.top-music-list-content .card-header a {
  color: #222;
  text-decoration: none;
}

.top-music-list-content .card-header small {
  color: #777;
}

.top-music-list-content .card-body {
  font-size: 0.9rem;
  color: #444;
  cursor: pointer;
}

.top-music-list-content .card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ranking {
  display: inline-block;
  background: #d41d70;
  color: #fff;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 6px 6px 0 0;
  margin-bottom: 4px;
}

/* =========================================================
   ÍCONES
========================================================= */
.icon-link {
  color: #d41d70;
  text-decoration: none;
}

.icon-link:hover {
  opacity: 0.8;
}

.track-icon {
  font-weight: bold;
  font-size: 1.1rem;
}

/* =========================================================
   ARTISTAS
========================================================= */
.artist-list-box-content article {
  
}

.artist-list-box-content .card {
  border: none;
  text-align: center;
}

.artist-list-box-content img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.artist-list-box-content .card-footer {
  margin-top: 8px;
}

.artist-list-box-content h5 {
  font-size: 1rem;
  margin: 0;
  color: #222;
}

/* =========================================================
   ADS
========================================================= */
.adsbygoogle {
  margin: 1.5rem auto;
}

/* =========================================================
   SHARE
========================================================= */
.sharethis-inline-share-buttons {
  margin-top: 1rem;
}

/* =========================================================
   RESPONSIVO
========================================================= */
@media (max-width: 991px) {
  .header-content {
    padding: 2rem 1.5rem;
  }

  .featured {
    padding: 2rem 1.2rem;
  }
}

@media (max-width: 575px) {
  .header-content h1 {
    font-size: 1.8rem;
  }

  .artist-search-input-box {
    width: 100%;
  }
}

/* =========================================================
   PRINT
========================================================= */
@media print {
  .d-print-none {
    display: none !important;
  }
}
