/* ============================================================
   RE STUDIO — Gravadora independente
   Identidade: vermelho #E80D0D / preto / halftone
   ============================================================ */

:root {
  --red: #e80d0d;
  --red-dark: #8f0808;
  --black: #050505;
  --ink: #0d0d0d;
  --white: #f5f2ef;
  --muted: #9a938f;
  --border: rgba(245, 242, 239, 0.12);
  --font-sans: "Jost", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

::selection { background: var(--red); color: var(--white); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 110px 0; position: relative; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader--hide { opacity: 0; visibility: hidden; }
.loader__logo { width: 150px; filter: drop-shadow(0 0 26px rgba(232, 13, 13, .55)); animation: pulse 1.6s ease-in-out infinite; }
.loader__bar { width: 190px; height: 3px; background: rgba(255,255,255,.12); overflow: hidden; border-radius: 99px; }
.loader__bar span { display: block; height: 100%; width: 40%; background: var(--red); border-radius: 99px; animation: slide 1.1s var(--ease) infinite; }

@keyframes slide { 0% { transform: translateX(-120%);} 100% { transform: translateX(420%);} }
@keyframes pulse { 0%,100% { transform: scale(1);} 50% { transform: scale(1.06);} }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 5%;
  transition: background .35s, padding .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav--solid {
  background: rgba(5, 5, 5, .88);
  backdrop-filter: blur(14px);
  padding: 10px 5%;
  border-bottom: 1px solid var(--border);
}
.nav__brand { display: flex; align-items: center; text-decoration: none; z-index: 2; }
.nav__logo { height: 64px; width: auto; transition: transform .4s var(--ease), filter .4s; filter: drop-shadow(0 0 14px rgba(232,13,13,.25)); }
.nav__brand:hover .nav__logo { transform: scale(1.06); filter: drop-shadow(0 0 22px rgba(232,13,13,.5)); }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  color: var(--white); text-decoration: none; font-weight: 500; font-size: .9rem;
  letter-spacing: .4px; text-transform: uppercase; position: relative; padding: 6px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--red); transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 18px; z-index: 2; }

.lang-switch { display: flex; align-items: center; gap: 8px; }
.lang-switch__btn {
  background: none; border: none; cursor: pointer;
  padding: 3px; border-radius: 4px; line-height: 0;
  border-bottom: 2px solid transparent;
  opacity: .55; transition: opacity .25s, transform .25s var(--ease);
}
.lang-switch__btn:hover { opacity: 1; transform: translateY(-2px); }
.lang-switch__btn.is-active { opacity: 1; border-color: var(--red); }
.flag { width: 26px; height: 18px; border-radius: 3px; box-shadow: 0 1px 4px rgba(0,0,0,.5); }

.nav__toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--white); transition: .3s; display: block; }

.nav__progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  z-index: 950; transition: width .1s linear;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
/* halftone: pontos vermelhos sobre preto, como no banner */
.hero__halftone {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,13,13,.28) 1.2px, transparent 1.3px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 90% 80% at 75% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 75% 30%, black 0%, transparent 70%);
  animation: drift 26s ease-in-out infinite alternate;
}
/* mancha vermelha tipo pincel, bem sutil atrás */
.hero__glow {
  position: absolute; top: -20%; right: -15%; width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(232,13,13,.16) 0%, rgba(232,13,13,.05) 40%, transparent 70%);
  filter: blur(40px);
  animation: breathe 9s ease-in-out infinite;
  transform-origin: center;
}
@keyframes drift { from { background-position: 0 0; } to { background-position: 44px 30px; } }
@keyframes breathe { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.12); opacity: 1; } }

.hero__content { position: relative; z-index: 2; width: min(1200px, 92%); margin: 0 auto; }
.hero__tag {
  display: inline-block;
  font-size: .8rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); border: 1px solid rgba(232,13,13,.5);
  padding: 8px 18px; border-radius: 99px; margin-bottom: 28px;
  background: rgba(232, 13, 13, .07);
  animation: fadeUp .9s var(--ease) .9s both;
}
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.25; font-weight: 900; letter-spacing: -1px; }
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: inline-block; animation: riseIn 1s var(--ease) both; }
.hero__line:nth-child(1) > span { animation-delay: 1s; }
.hero__line:nth-child(2) > span { animation-delay: 1.12s; }
.hero__line:nth-child(3) > span { animation-delay: 1.24s; }
.hero__line--red > span { color: var(--red); }
.hero__sub {
  max-width: 560px; margin-top: 26px; color: var(--muted); font-size: 1.05rem; line-height: 1.7;
  animation: fadeUp .9s var(--ease) 1.4s both;
}
.hero__sub strong { color: var(--white); }
.hero__cta { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; animation: fadeUp .9s var(--ease) 1.55s both; }


/* ---------- Botões ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: .92rem;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 16px 34px; border-radius: 4px;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s, border-color .3s;
  position: relative; overflow: hidden; border: none; cursor: pointer;
  font-family: var(--font-sans);
}
.btn--red { background: var(--red); color: var(--white); box-shadow: 0 8px 30px rgba(232,13,13,.35); }
.btn--red:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(232,13,13,.5); }
.btn--ghost { border: 1px solid var(--border); color: var(--white); background: transparent; }
.btn--ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }

/* ---------- Marquee ---------- */
/* ---------- Faixa de números (rolando) ---------- */
.marquee {
  background: var(--red); overflow: hidden; padding: 13px 0;
  border-top: 1px solid rgba(0,0,0,.35); border-bottom: 1px solid rgba(0,0,0,.35);
  position: relative; z-index: 3;
}
.marquee__track { display: flex; white-space: nowrap; align-items: center; width: max-content; animation: scrollX 40s linear infinite; }
.marquee__item { font-weight: 900; font-size: .95rem; color: var(--black); letter-spacing: .5px; }
.marquee__dot { margin: 0 26px; color: rgba(0,0,0,.45); font-size: .8rem; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ---------- Section heads ---------- */
.section__tag {
  color: var(--red); letter-spacing: 3px; font-size: .82rem; text-transform: uppercase; margin-bottom: 14px;
  font-weight: 700;
}
.section__title { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 900; line-height: 1.25; letter-spacing: -1px; }
.section__title em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--red); }
.section__desc { color: var(--muted); margin-top: 14px; max-width: 520px; }
.section__head { margin-bottom: 56px; }

/* ---------- Sobre ---------- */
.sobre__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.sobre__desc { color: var(--muted); line-height: 1.8; margin-top: 24px; font-size: 1.02rem; }
.sobre__desc strong { color: var(--white); }
.sobre__list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.sobre__list li { display: flex; gap: 12px; align-items: baseline; color: var(--muted); }
.sobre__list li span:first-child { color: var(--red); font-size: .8rem; }
.sobre__card {
  background: linear-gradient(160deg, #120808, var(--ink));
  border: 1px solid var(--border); border-radius: 20px;
  padding: 44px 38px; text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
  position: relative; overflow: hidden;
}
.sobre__card::before {
  content: ""; position: absolute; top: -60%; left: -60%; width: 220%; height: 220%;
  background: conic-gradient(from 0deg, transparent 0 340deg, rgba(232,13,13,.25) 355deg, transparent 360deg);
  animation: rotate 6s linear infinite;
}
.sobre__logo { width: 210px; filter: drop-shadow(0 0 24px rgba(232,13,13,.4)); position: relative; }
.sobre__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; position: relative; }
.stat strong { font-size: 1.6rem; font-weight: 900; color: var(--red); display: block; }
.stat span { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Artistas ---------- */
.artistas { background: linear-gradient(180deg, var(--black), #0a0505 50%, var(--black)); }
.artistas__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 26px; margin-bottom: 60px;
}
.artist-card {
  background: var(--ink); border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; cursor: pointer;
  cursor: pointer;
  transition: transform .45s var(--ease), border-color .3s, box-shadow .45s;
  animation: fadeUp .7s var(--ease) both;
  animation-delay: var(--d, 0s);
}
.artist-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(232,13,13,.6);
  box-shadow: 0 24px 50px rgba(232,13,13,.18);
}
.artist-card__imgwrap { position: relative; aspect-ratio: 1; overflow: hidden; background: #160909; }
.artist-card__imgwrap img, .hit-card__cover img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.card-skeleton {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, #1a0d0d 30%, #2a1212 45%, #1a0d0d 60%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}
.artist-card--soon .artist-card__imgwrap .card-fallback {
  background: repeating-linear-gradient(
    45deg,
    #160909 0 14px,
    #1e0c0c 14px 28px
  );
  font-size: 2.2rem;
  opacity: .9;
}
.artist-card--soon .artist-card__play { background: transparent; box-shadow: none; border: 2px solid var(--border); }
.card-fallback {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; background: radial-gradient(circle at 50% 40%, #2a0e0e, #120606);
}
@keyframes shimmer { to { background-position: -200% 0; } }
.artist-card:hover .artist-card__imgwrap img { transform: scale(1.09); }
.artist-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,.9) 100%);
  opacity: 0; transition: opacity .4s; display: flex; align-items: flex-end; padding: 18px;
}
.artist-card:hover .artist-card__overlay { opacity: 1; }
.artist-card__play {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  box-shadow: 0 8px 26px rgba(232,13,13,.5);
  transform: translateY(12px); transition: transform .35s var(--ease);
}
.artist-card:hover .artist-card__play { transform: translateY(0); }
.artist-card__info { padding: 18px 20px 20px; }
.artist-card__name { font-weight: 700; font-size: 1.12rem; letter-spacing: .3px; }
.artist-card__meta { color: var(--muted); font-size: .85rem; margin-top: 5px; min-height: 1.1em; }
.artist-card__meta b { color: var(--red); }
.artist-card--soon .artist-card__imgwrap .card-fallback {
  background: repeating-linear-gradient(45deg, #160909 0 14px, #1e0c0c 14px 28px);
  font-size: 2.2rem; opacity: .9;
}
.artist-card--soon .artist-card__play { background: transparent; box-shadow: none; border: 2px solid var(--border); }
.artist-card--star { border-color: rgba(232,13,13,.5); }
.artist-card--star:hover { box-shadow: 0 24px 60px rgba(232,13,13,.28); }
.artist-card__star {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--red); color: var(--white);
  font-size: .62rem; font-weight: 900; letter-spacing: 1.5px;
  padding: 5px 10px; border-radius: 6px;
  box-shadow: 0 4px 18px rgba(232,13,13,.5);
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}

/* ---------- Player ---------- */
.player-wrap[hidden] { display: none; }
.player-wrap {
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  background: var(--ink); box-shadow: 0 24px 60px rgba(0,0,0,.5);
  position: sticky; bottom: 24px; z-index: 5;
}
.player-wrap iframe { display: block; width: 100%; }
.player-wrap__msg { padding: 34px; text-align: center; color: var(--muted); width: 100%; }

/* ---------- Hits ---------- */
.hits__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 24px; }
.hit-card {
  background: var(--ink); border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s, box-shadow .4s;
  animation: fadeUp .7s var(--ease) both;
  animation-delay: var(--d, 0s);
}
.hit-card:hover {
  transform: translateY(-8px) rotate(-.5deg);
  border-color: rgba(232,13,13,.55);
  box-shadow: 0 20px 44px rgba(232,13,13,.15);
}
.hit-card__cover { aspect-ratio: 1; overflow: hidden; position: relative; background: #160909; }
.hit-card__streams {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  background: rgba(5,5,5,.85); color: var(--white);
  font-weight: 700; font-size: .78rem; padding: 6px 11px; border-radius: 99px;
  border: 1px solid rgba(232,13,13,.5); backdrop-filter: blur(6px);
}
.hit-card__streamsnote { color: var(--red); font-size: .78rem; font-weight: 700; margin-top: 8px; letter-spacing: .3px; }
.hit-card:hover .hit-card__cover img { transform: scale(1.08); }
.hit-card__rank {
  position: absolute; top: 12px; left: 12px; background: var(--red); color: var(--white);
  font-weight: 900; font-size: .8rem; padding: 5px 11px; border-radius: 6px; letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(0,0,0,.4); z-index: 2;
}
.hit-card__info { padding: 16px 18px 18px; }
.hit-card__title { font-weight: 700; font-size: 1rem; line-height: 1.3; }
.hit-card__artist { color: var(--muted); font-size: .85rem; margin-top: 4px; }
.hit-card__link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  color: var(--red); font-weight: 700; font-size: .85rem; text-decoration: none; letter-spacing: .5px;
  transition: gap .25s var(--ease);
}
.hit-card__link:hover { gap: 14px; }

/* ---------- Parceiros ---------- */
.parceiros { margin-top: 60px; }
.parceiros__card {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(160deg, #100a08, var(--ink));
  border: 1px solid var(--border); border-radius: 18px;
  padding: 28px 32px; text-decoration: none;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s;
}
.parceiros__card:hover { transform: translateY(-5px); border-color: rgba(232,13,13,.5); box-shadow: 0 20px 44px rgba(232,13,13,.12); }
.parceiros__logo {
  width: 190px; height: 64px; display: flex; align-items: center; justify-content: center;
  background: var(--black); border: 1px solid var(--border); border-radius: 12px; flex-shrink: 0;
  padding: 12px;
}
.parceiros__img { max-width: 100%; max-height: 100%; object-fit: contain; }
.parceiros__info { flex: 1; min-width: 220px; }
.parceiros__info strong { color: var(--white); font-size: 1.1rem; display: block; margin-bottom: 4px; }
.parceiros__info p { color: var(--muted); font-size: .9rem; }
.parceiros__link { color: var(--red); font-weight: 700; font-size: .85rem; letter-spacing: .5px; }
.parceiros__link b { transition: transform .25s var(--ease); display: inline-block; }
.parceiros__card:hover .parceiros__link b { transform: translateX(5px); }

/* ---------- Contato ---------- */
.contato { background: linear-gradient(180deg, var(--black), #0a0505); }
.contato__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contato__cards { display: flex; flex-direction: column; gap: 22px; }
.mail-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--ink); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 30px; text-decoration: none;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s;
}
.mail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,13,13,.6);
  box-shadow: 0 20px 44px rgba(232,13,13,.14);
}
.mail-card__label {
  color: var(--red); font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}
.mail-card__addr { color: var(--white); font-size: 1.15rem; letter-spacing: .3px; }
.mail-card__hint { color: var(--muted); font-size: .85rem; }

.contato__form {
  background: var(--ink); border: 1px solid var(--border); border-radius: 18px; padding: 34px;
  display: flex; flex-direction: column; gap: 18px;
}
.contato__form h3 { font-size: 1.3rem; font-weight: 900; letter-spacing: .3px; }
.contato__form label { display: flex; flex-direction: column; gap: 7px; }
.contato__form label span {
  font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contato__form input, .contato__form select, .contato__form textarea {
  background: #120a0a; border: 1px solid var(--border); border-radius: 8px;
  color: var(--white); font-family: var(--font-sans); font-size: .95rem;
  padding: 13px 15px; outline: none; resize: vertical;
  transition: border-color .25s, box-shadow .25s;
}
.contato__form input:focus, .contato__form select:focus, .contato__form textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,13,13,.15);
}
.contato__form select option { background: var(--ink); }
.contato__form .btn { align-self: flex-start; }

/* ---------- Footer (neutro) ---------- */
.footer { border-top: 1px solid var(--border); background: #070404; padding: 46px 0; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer__logo { height: 58px; filter: drop-shadow(0 0 18px rgba(232,13,13,.3)); }
.footer__meta p { color: var(--muted); font-size: .88rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(46px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal--in { opacity: 1; transform: none; }

/* ---------- Keyframes ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(36px);} to { opacity: 1; transform: none;} }
@keyframes riseIn { from { transform: translateY(110%);} to { transform: translateY(0);} }
@keyframes rotate { to { transform: rotate(360deg);} }

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  .sobre__grid { grid-template-columns: 1fr; gap: 44px; }
  .contato__grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 80px 0; }
  .nav__logo { height: 52px; }
  .nav__links { gap: 22px; }
  .nav__links a { font-size: .82rem; }
}
@media (max-width: 760px) {
  .nav { padding: 10px 4%; }
  .nav__logo { height: 44px; }
  .nav__links, .nav__toggle { display: none; } /* mobile: navegação por scroll */
  .nav__toggle--x span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle--x span:nth-child(2) { opacity: 0; }
  .nav__toggle--x span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { min-height: 92vh; }
  .hero__title { font-size: clamp(2rem, 9.5vw, 3rem); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { text-align: center; }
  .hero__halftone { background-size: 16px 16px; }

  .marquee__item { font-size: .82rem; }
  .marquee__dot { margin: 0 16px; }

  .sobre__card { padding: 32px 22px; }
  .sobre__logo { width: 150px; }
  .sobre__stats { gap: 10px; }
  .stat strong { font-size: 1.25rem; }
  .stat span { font-size: .58rem; }

  .artistas__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .artist-card__info { padding: 12px 12px 14px; }
  .artist-card__name { font-size: .92rem; }
  .artist-card__meta { font-size: .72rem; }
  .artist-card__play { width: 40px; height: 40px; font-size: .95rem; }

  .hits__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hit-card__info { padding: 12px 12px 14px; }
  .hit-card__title { font-size: .88rem; }
  .hit-card__artist { font-size: .72rem; }
  .hit-card__streams { font-size: .65rem; padding: 4px 8px; }
  .hit-card__link { font-size: .72rem; }

  .parceiros__card { gap: 16px; padding: 20px; }
  .parceiros__logo { width: 120px; height: 56px; padding: 10px; }
  .parceiros__link { display: none; }

  .contato__form { padding: 22px 18px; }
  .mail-card { padding: 20px 18px; }
  .mail-card__addr { font-size: .95rem; word-break: break-all; }
  .form__row { grid-template-columns: 1fr; }
  .contato__form .btn { align-self: stretch; text-align: center; }

  .footer { padding: 32px 0; }
  .footer__logo { height: 44px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 380px) {
  .artistas__grid { grid-template-columns: 1fr; }
  .hits__grid { grid-template-columns: 1fr; }
}

/* ---------- Acessibilidade ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  /* a faixa de números continua rodando (é o propósito dela), mas pausa no hover */
  .marquee__track { animation: scrollX 40s linear infinite !important; }
}
