body {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  background-color: var(--all-white);
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  /* height: 100vh; */
}

/* Seção de playlists */
.playlist-section {
  height: 100vh;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

/* Container de texto */
.text-container {
  margin-bottom: 70px;
}

.text-container h1 {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 24px;
}

.text-container p {
  font-size: 24px;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
}

/* Botão */
.btn {
  margin-top: 40px;
  background-color: var(--black);
  border: none;
  border-radius: 40px;
  padding: 20px 36px;
  font-size: 24px;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--all-black);
  color: var(--white);
}

/* Grid de playlists */
.playlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 colunas por linha */
  gap: 20px;
}

/* Item de playlist */
.playlist-item {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Estilo do iframe */
.playlist-item iframe {
  width: 100%;
  border: none;
  aspect-ratio: 1 / 1;
}

/* Responsividade */
@media (max-width: 1024px) {
  .playlist-grid {
    grid-template-columns: repeat(
      3,
      1fr
    );
  }
}

@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  .text-container {
    margin-bottom: 35px;
  }

  .text-container h1 {
    font-size: 25px;
  }

  .text-container p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .btn {
    padding: 18px 30px;
    font-size: 18px;
  }

  .playlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .playlist-grid {
    grid-template-columns: 1fr;
  }

  .text-container h1 {
    font-size: 25px;
  }

  .text-container p {
    font-size: 18px;
  }
}
