:root {
    --bg: #0e0e0e;
    --bg-card: #181818;
    --bg-hover: #232323;
    --primary: #1db954;
    --text: #000;
    --muted: #9a9a9a;
    --radius: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(180deg, #0f0f0f 0%, #1b1b1b 40%, #121212 100%);
  color: #fff; padding-top: 50px;
}

/* TOPO */
.topo {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.85), #0d0d0d);
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);

  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

.logo {
  font-weight: 800;
  font-size: 18px;
}
.img-logo{width: 35px; margin-bottom: -10px;}
nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 14px;
  transition: .2s;
}

nav a:hover {
  color: #fff;
}

/* BOTÃO MOBILE */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* HERO */
.hero {
  padding: 80px 40px 100px;
  max-width: 700px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.hero p {
  font-size: 16px;
  color: #b3b3b3;
  max-width: 520px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 22px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #333;
  transition: .3s;
}

.btn.primary {
  background: #1db954;
  border-color: #1db954;
  color: #000;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 64px;
    right: 20px;
    background: #121212;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    border-radius: 12px;
    display: none;
    box-shadow: 0 15px 40px rgba(0,0,0,.8);
  }

  nav.show {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    padding: 60px 25px 80px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== FOOTER ===== */
footer{
  background: linear-gradient(to bottom, rgba(0,0,0,.85), #0d0d0d);
  color:#ccc;
  padding:30px 15px;
  margin-top:50px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}

footer h4{
  color:#fff;
  margin-bottom:10px;
}

footer a{
  color:#ccc;
  text-decoration:none;
  display:block;
  margin-bottom:6px;
}

.copy{
  text-align:center;
  margin-top:20px;
  font-size:13px;
  color:#777;
}
/* HEADER */
header {
    padding: 22px 30px;
    background: linear-gradient(to bottom, #000, transparent);
}

header h1 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* GRID PRINCIPAL */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 26px;
    padding: 30px;
}

/* CARD */
.card {
  background: linear-gradient(180deg, #1f1f1f, #121212);
  border-radius: 18px;
  padding: 15px;
  position: relative;
  transition: all .35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,.6);
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,.9);
}

/* IMAGEM */
.card img {
  width: 100%;
  aspect-ratio: 10/10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* TEXTO */
.card h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
}

.card small {
  color: #9a9a9a;
  font-size: 12px;
}

/* AÇÕES */
.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.actions a {
    font-size: 13px;
    text-decoration: none;
    color: var(--muted);
    transition: .3s;
}

.actions a:hover {
    color: var(--primary);
}

/* PLAY BUTTON */
.actions a.play {
    background: var(--primary);
    color: #000;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
}

.actions a.play:hover {
    box-shadow: 0 0 20px rgba(29,185,84,.6);
}

/* PLAYER */
.player {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.player iframe {
    width: 100%;
    height: 480px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,.6);
}

.player p {
    margin-top: 14px;
    color: #fff;
    font-size: 17px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .player iframe {
        height: 260px;
    }
}
.videos {
  padding: 30px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
}
.play-btn {
  position: absolute;
  bottom: 75px;
  right: 18px;
  background: #1db954;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s ease;
  box-shadow: 0 8px 20px rgba(29,185,84,.6);
}

.card:hover .play-btn {
  opacity: 1;
  transform: translateY(0);
}

.play-btn i {
  font-size: 18px;
  color: #000;
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
}
.video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #121212;
  transition: .3s;
}

.video-card:hover {
  transform: scale(1.04);
}

.thumb {
  position: relative;
  aspect-ratio: 16/9;
}

.thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

.video-card:hover iframe {
  opacity: 1;
}
.video-card {
  --cor: #2a2a2a;
  background: linear-gradient(180deg, var(--cor), #2a2a2a);
}
.video-card-alta {
  --cor: #2a2a2a;
  background: linear-gradient(180deg, var(--cor), #2a2a2a);
}
.video-card-curtidas {
  --cor: #2a2a2a;
  background: linear-gradient(180deg, var(--cor), #2a2a2a);
}
#agora-tocando {
  position: fixed;
  bottom: 15px;
  left: 15px;
  background: rgba(0,0,0,.8);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  backdrop-filter: blur(8px);
}
.section-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 40px 0 20px;
  padding-left: 12px;
  position: relative;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 18px;
  background: #1db954;
  border-radius: 2px;
}

/* ===== GRID PRODUTOS ===== */
main{
  max-width:1700px;
  margin:30px auto;
  padding:0 15px;
}
