/* =====================================================
   VARIABLES BASE – NEÓN VERDE AGUA
===================================================== */
:root {
  --neon: #00eaff;          /* verde agua principal */
  --neon-soft: #00ffcc;     /* glow secundario */
  --glass: rgba(255,255,255,0.12);
  --dark-glass: rgba(0,0,0,0.65);
}

/* =====================================================
   VIDEO DE FONDO
===================================================== */
.video-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: -1;
}

/* =====================================================
   WRAPPER
===================================================== */
.bio-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* =====================================================
   CARD PRINCIPAL
===================================================== */
.bio-card {
  background: var(--dark-glass);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 30px 22px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 45px rgba(0,234,255,0.25);
  will-change: transform, opacity;
}

/* =====================================================
   AVATAR (COMBINA CON EL LOGO)
===================================================== */
.bio-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--neon);
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow:
    0 0 18px rgba(0,234,255,.6),
    0 0 45px rgba(0,234,255,.35);
  animation: avatarPulse 4s infinite ease-in-out;
}

@keyframes avatarPulse {
  0%,100% {
    box-shadow:
      0 0 18px rgba(0,234,255,.6),
      0 0 45px rgba(0,234,255,.35);
  }
  50% {
    box-shadow:
      0 0 30px rgba(0,255,204,.9),
      0 0 70px rgba(0,255,204,.55);
  }
}

/* =====================================================
   TEXTOS
===================================================== */
.bio-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0,234,255,.35);
}

.bio-subtitle {
  font-size: .9rem;
  opacity: .8;
  margin-bottom: 22px;
}

/* =====================================================
   LINKS
===================================================== */
.bio-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bio-link {
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .25s ease;
}

.bio-link:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow:
    0 10px 30px rgba(0,0,0,.6),
    0 0 18px rgba(0,234,255,.35);
}

/* COLORES */
.bio-link.whatsapp { background: #25D366; }
.bio-link.instagram { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af); }
.bio-link.facebook { background: #1877F2; }
.bio-link.tiktok {
  background: #000;
  border: 1px solid rgba(0,234,255,0.6);
  box-shadow:
    0 0 12px rgba(0,234,255,0.45),
    inset 0 0 8px rgba(0,234,255,0.25);
}
.bio-link.telegram { background: #229ED9; }

.bio-link.primary {
  background: linear-gradient(135deg,var(--neon),var(--neon-soft));
}

/* =====================================================
   STATS
===================================================== */
.bio-stats {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  opacity: .85;
}

/* =====================================================
   WIDGET RESERVA FUTURISTA – VERDE AGUA
===================================================== */
.reserva-futurista {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 280px;
  border-radius: 15px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 30px rgba(0,234,255,0.55),
    inset 0 0 10px rgba(255,255,255,0.2);
  overflow: hidden;
  z-index: 3000;
  border: 1px solid rgba(255,255,255,0.15);
  font-family: "Poppins", sans-serif;
  transition: all .3s ease;
  will-change: transform, opacity;
}

/* MINIMIZADO */
.reserva-futurista.minimized {
  width: 220px;
  height: 56px;
  border-radius: 28px;
  background: linear-gradient(90deg,var(--neon),var(--neon-soft));
  border: none;
  animation: floatPulse 3s infinite ease-in-out;
}

@keyframes floatPulse {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.reserva-futurista.minimized .reserva-body {
  display: none;
}

/* HEADER */
.reserva-header {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(90deg,var(--neon),var(--neon-soft),var(--neon));
  text-shadow: 0 0 8px #fff;
  user-select: none;
}

/* BODY */
.reserva-body {
  padding: 16px 14px;
  color: #fff;
}

/* CONTACT CARD */
.reserva-contact {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 12px rgba(0,234,255,0.25);
}

/* LOGO */
.reserva-logo {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0,234,255,0.6);
}

/* ONLINE */
.online-text {
  color: #00ff9d;
  font-size: 0.95rem;
  animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
  0% { text-shadow: 0 0 4px #00ff9d; }
  50% { text-shadow: 0 0 20px #00ff9d; }
  100% { text-shadow: 0 0 4px #00ff9d; }
}

/* BOTON WHATSAPP */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg,#00ff88,#00cc66);
  color: #fff;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  transition: .3s ease;
  box-shadow: 0 0 12px rgba(0,255,136,.6);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0,255,136,.9);
}

/* =====================================================
   FOOTER
===================================================== */
.bio-footer {
  margin-top: 30px;
  padding: 16px 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.footer-brand {
  color: #fff;
  font-weight: 600;
}

.footer-dev {
  margin-top: 6px;
  font-size: 11px;
  opacity: .5;
}

.footer-dev span {
  color: var(--neon);
  font-weight: 600;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 420px) {
  .reserva-futurista.minimized {
    right: 14px;
    bottom: 14px;
    width: 180px;
  }
}

/* =====================================================
   ACCESIBILIDAD
===================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
