.spotify-footer {
  position: fixed;
  bottom: 0;
  left: var(--sidebar-width);
  width: calc(100% - var(--sidebar-width));
  height: var(--footer-height);
  background: linear-gradient(90deg, #af2896 0%, #509bf5 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  z-index: 50;
  box-sizing: border-box;
}

.spotify-footer__left {
  min-width: 0;
}

.spotify-footer__title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  color: #fff;
}

.spotify-footer__text {
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.95;
  max-width: 900px;
  color: #fff;
}

.spotify-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 24px;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.spotify-footer__btn:hover {
  transform: scale(1.02);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px 30px;
  background: var(--background);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-role {
  margin-top: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--foreground);
  transition: all 0.2s ease;
}

.footer-btn:hover {
  background: var(--foreground);
  color: var(--background);
}

.footer-btn--whatsapp:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.footer-btn--linkedin:hover {
  background: #0A66C2;
  color: #fff;
  border-color: #0A66C2;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 18px;
}

.footer-nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--foreground);
}

@media (max-width: 1060px) {
  .spotify-footer {
    left: 0;
    width: 100%;
    height: auto;
    min-height: var(--footer-height);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}