@font-face {
  font-family: "Isabella";
  src: url("../fonts/isabella/Isabella.ttf") format("truetype");
}

@font-face {
  font-family: "JetBrainsMono";
  src: url("../fonts/JetBrainsMono/fonts/ttf/JetBrainsMono-Bold.ttf") format("truetype");
}

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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: #000;
  color: #dcdcdc;
  font-family: "JetBrainsMono", "Courier New", monospace;
}

img {
  display: block;
  max-width: 100%;
}

.shop-page {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  background: #000;
  overflow-x: hidden;
}

/* HERO */

.shop-hero {
  width: 100%;
  max-width: 100%;
  min-height: 58vh;

  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr);
  align-items: center;

  padding: 60px 8vw 35px;
  gap: 50px;

  overflow-x: hidden;
}

.book-image,
.book-info {
  min-width: 0;
}

.book-image {
  opacity: 0;
  transform: translateX(-80px);
  animation: leftReveal 1.4s ease forwards;
  animation-delay: .3s;
}

.book-image img {
  width: min(520px, 100%);
  margin: 0 auto;
  filter: contrast(1.05) brightness(.92);
}

.book-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-line,
.tracklist,
.book-title,
.credits {
  opacity: 0;
  transform: translateX(50px);
  animation: rightReveal 1s ease forwards;
  max-width: 100%;
}

.top-line {
  font-size: .95rem;
  letter-spacing: 2px;
  margin-bottom: 45px;
  color: #e8e8e8;
  animation-delay: .5s;
}

.tracklist {
  font-size: .75rem;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 35px;
  animation-delay: .8s;
}

.tracklist ul {
  list-style: none;
  margin-top: 12px;
}

.book-title {
  font-family: "Isabella", serif;
  color: #9f9f9f;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: .72;
  font-weight: normal;
  margin-bottom: 35px;
  animation-delay: 1.1s;
}

.credits {
  font-size: .9rem;
  letter-spacing: 2px;
  animation-delay: 1.4s;
}

/* DIVISOR */

.shop-divider {
  width: 100%;
  max-width: 100%;

  opacity: 0;
  transform: translateY(40px);
  animation: dividerReveal 1s ease forwards;
  animation-delay: 1.2s;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

  padding: 45px 14vw 25px;

  font-size: .8rem;
  letter-spacing: 2px;
  color: #e8e8e8;

  overflow-x: hidden;
}

.shop-divider p {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* INSTRUMENTALS */

.instrumentals {
  width: 100%;
  max-width: 100%;

  padding: 0 6vw 40px;
  text-align: center;
  overflow-x: hidden;
}

.instrumentals h2 {
  opacity: 0;
  animation: titleReveal 1.6s ease forwards;
  animation-delay: 1.1s;

  color: #b41c1c;
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  letter-spacing: 3px;
  font-weight: normal;
  margin: 0 auto 35px;
  line-height: 1.4;

  max-width: 100%;
  overflow-wrap: normal;
}

.instrumentals h2 span {
  display: inline;
}

.cover-grid {
  width: 100%;
  max-width: 1100px;
  min-width: 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;

  margin: 0 auto;
  overflow-x: hidden;
}

.cover-grid img {
  opacity: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;

  filter: contrast(1.05) brightness(.8);
  transform: translateY(80px) scale(.92);
  animation: coverReveal 1.1s ease forwards;
  transition: .3s ease;
}

.cover-grid img:nth-child(1) {
  animation-delay: 1.4s;
}

.cover-grid img:nth-child(2) {
  animation-delay: 1.7s;
}

.cover-grid img:nth-child(3) {
  animation-delay: 2s;
}

.cover-grid img:hover {
  opacity: 1;
  transform: translateY(-6px);
  filter: contrast(1.08) brightness(.95);
}

.warning {
  opacity: 0;
  transform: translateY(35px);
  animation: warningReveal 1s ease forwards;
  animation-delay: 2.25s;

  max-width: 680px;
  margin: 42px auto 0;
  padding: 0 10px;

  color: #b41c1c;
  font-size: .7rem;
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-align: center;

  overflow-wrap: anywhere;
}

/* FOOTER */

.shop-footer {
  width: 100%;
  max-width: 100%;

  opacity: 0;
  animation: footerReveal 1.2s ease forwards;
  animation-delay: 2.4s;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;

  padding: 28px 3vw 45px;

  color: rgba(255, 255, 255, .82);
  font-size: .58rem;
  letter-spacing: 1px;
  line-height: 1.1;

  gap: 40px;
  overflow-x: hidden;
}

.footer-left,
.footer-right {
  min-width: 0;
}

.footer-left {
  text-align: left;
}

.footer-right {
  text-align: right;
  justify-self: end;
}

.footer-left p,
.footer-right p {
  overflow-wrap: anywhere;
}

/* ANIMAÇÕES */

@keyframes leftReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rightReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes titleReveal {
  to {
    opacity: 1;
  }
}

@keyframes dividerReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes coverReveal {
  to {
    opacity: .82;
    transform: translateY(0) scale(1);
  }
}

@keyframes warningReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes footerReveal {
  to {
    opacity: 1;
  }
}

/* MOBILE */

@media (max-width: 768px) {
 .shop-hero {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 12px;
  padding: 55px 14px 45px;
  min-height: 42vh;
}

  .book-image {
    transform: translateX(-35px);
  }

  .book-image img {
    width: min(170px, 100%);
  }

  .top-line {
    font-size: .45rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  .tracklist {
    font-size: .42rem;
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: .5px;
  }

  .book-title {
    font-size: 3.2rem;
    margin-bottom: 15px;
  }

  .credits {
    font-size: .45rem;
    letter-spacing: 1px;
  }

  .shop-divider {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 25px 12px 15px;
    font-size: .45rem;
    letter-spacing: 1px;
    gap: 10px;
  }

.instrumentals {
  padding: 35px 14px 55px;
}

  .instrumentals h2 {
    font-size: .85rem;
    letter-spacing: 1px;
    line-height: 1.45;
    margin-bottom: 28px;
  }

  .instrumentals h2 span {
    display: block;
  }

 .cover-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 100%;
}

.cover-grid img {
  width: 100%;
  transform: scale(.96);
}
  .warning {
    font-size: .62rem;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-top: 36px;
    padding: 0 8px;
  }

  .shop-footer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 45px 14px 70px;
    font-size: .43rem;
    letter-spacing: .7px;
    gap: 15px;
  }
}