/* ============================
   HERO CARD — VIDEO PERSONAL
============================ */

/* Contenedor general del hero card */
.hero-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

/* Contenedor del video */
.video-container {
    position: relative;
    width: 100%;
    overflow: visible !important; /* FIX: evita que el borde redondo bloquee clics */
}

/* Video redondo */
#heroVideo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

/* Botón de sonido */
.sound-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 9999 !important; /* Asegura que quede encima del video */
    background: rgba(0, 0, 0, 0.55);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.2s ease;
}

/* Hover */
.sound-btn:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.1);
}

/* Contenido del hero */
.hero-content {
    text-align: center;
    margin-top: 20px;
}

.hero-name {
    font-size: 28px;
    font-weight: bold;
}

.hero-role {
    text-align: center;
    font-size: 0.85rem;
    color: #fdf7ff;
    margin-bottom: 0.8rem;
}

.hero-social {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: 0.25s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
  display: block;
}

.social-icon:hover {
  background: var(--rosa);
  transform: translateY(-3px);
}