
:root{
  --primary:#03A9F4;
  --bg:#0f172a;
  --card:#111827;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --radius:16px;
}

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

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: linear-gradient(180deg,#0f172a,#020617);
  color:var(--text);
  line-height:1.6;
}

header{
  padding:40px 20px;
  text-align:center;
}

header h1{
  font-size:2.5rem;
  letter-spacing:1px;
}

nav{
  display:flex;
  justify-content:center;
  margin-bottom:30px;
}

.naveg{
  display:flex;
  gap:20px;
  background:var(--card);
  padding:12px 20px;
  border-radius:999px;
  box-shadow:0 10px 25px rgba(0,0,0,.3);
}

.a-naveg{
  color:var(--text);
  text-decoration:none;
  padding:8px 14px;
  border-radius:999px;
  transition:.3s;
}

.a-naveg:hover{
  background:var(--primary);
  color:#000;
}

main{
  max-width:1000px;
  margin:auto;
  padding:20px;
}

.spotify{
  background:var(--card);
  padding:30px;
  border-radius:var(--radius);
  box-shadow:0 10px 30px rgba(0,0,0,.4);
  text-align:center;
}

.title-spot{
  margin-bottom:10px;
}

.descspot{
  color:var(--muted);
  margin-bottom:20px;
}

iframe{
  width:100%;
  max-width:600px;
}

.social-media{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:40px;
}

footer {

  text-align: center;
}

.social-media-icon{
  transition:.3s;
}

.social-media-icon:hover{
  transform:scale(1.2);
}
