.radiomcj-locutor-profile .locutor-banner {
  height: 0;
  background:
    linear-gradient(
      135deg,
      rgba(139, 92, 246, 0.4) 0%,
      rgba(11, 16, 32, 0.9) 100%
    ),
    var(
      --locutor-cover,
      linear-gradient(135deg, var(--mcj-purple) 0%, rgba(11, 16, 32, 0.9) 100%)
    );
  background-size: cover;
  background-position: center;
  border-radius: 1rem 1rem 0 0;
  position: relative;
  overflow: hidden;
  padding-top: 40%;
}

.radiomcj-locutor-profile .locutor-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 30%
    );
  pointer-events: none;
}

.radiomcj-locutor-profile .locutor-avatar-wrapper {
  margin-top: -100px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.radiomcj-locutor-profile .locutor-avatar {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 6px solid var(--mcj-bg-body, #0f121b);
  background-color: var(--mcj-bg-input, #1a1f2e);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.radiomcj-locutor-profile .locutor-avatar:hover {
  transform: scale(1.05);
}

.radiomcj-locutor-profile .locutor-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.radiomcj-locutor-profile .locutor-social .btn {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border-width: 2px;
  transition: all 0.3s ease;
}

.radiomcj-locutor-profile .locutor-social .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.radiomcj-locutor-profile .locutor-bio-card {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .radiomcj-locutor-profile .locutor-banner {
    height: 0;
  }
  .radiomcj-locutor-profile .locutor-avatar-wrapper {
    margin-top: -48px;
  }
  .radiomcj-locutor-profile .locutor-avatar {
    width: 96px;
    height: 96px;
    border-width: 4px;
  }
  .radiomcj-locutor-profile .locutor-bio-card {
    padding: 1.5rem;
  }
}
