﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Outfit:wght@400;600;700&family=Lobster&display=swap');

:root {
  --primary: #0ea5e9;
  --primary-hover: #0284c7;
  --accent: #fbbf24;
  --accent-hover: #f59e0b;
  --bg-dark: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.7);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==== RESET BÃSICO ==== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

@media (max-width: 992px) {
  html {
    scroll-padding-top: 100px;
  }

  .header-container {
    padding: 10px 16px;
  }

  /* Ocultar elementos de escritorio */
  .subtitle {
    display: none;
  }

  /* Mostrar botÃ³n hamburguesa */
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    margin-left: auto;
    /* Empujar a la derecha si es necesario */
  }

  .menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* NavegaciÃ³n MÃ³vil */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 15px !important;
    width: 100%;
  }

  nav ul li {
    width: 100% !important;
    display: block !important;
  }

  nav ul li a {
    font-size: 1.1rem !important;
    padding: 12px 20px !important;
    color: var(--text-main) !important;
    justify-content: center;
    width: 100%;
  }

  /* Ajustes generales mÃ³vil */
  .main-content {
    padding-top: 100px !important;
  }

  .logo-container img {
    width: 50px;
    height: 50px;
  }

  .title-nav-container h1 {
    font-size: 1.5rem;
  }
}

/* ==== ESTILOS DEL BODY Y FONDO ==== */

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-image: url('../img/minecraft.avif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-main);
  background-color: var(--bg-dark);
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
  z-index: -1;
}



/* ==== ENCABEZADO FIJO CON GLASSMORPHISM ==== */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px;
}

.logo-container {
  flex: 0 0 auto;
  margin-right: 24px;
}

.logo-container img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
  transition: var(--transition);
}

.logo-container img:hover {
  transform: scale(1.05) rotate(5deg);
}

/* TÃ­tulo con fuente "Lobster" */

.title-nav-container h1 {
  margin: 0;
  font-family: 'Lobster', cursive;
  font-size: 1.8rem;
  color: var(--accent);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 300;
}

/* BotÃ³n menÃº oculto por defecto (desktop) */
/* BotÃ³n menÃº oculto por defecto (desktop) */
.menu-toggle {
  display: none;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

nav ul li a:hover {
  background: var(--glass);
  color: var(--primary);
  transform: translateY(-1px);
}



/* ==== FOOTER ==== */

footer {

  position: fixed;

  bottom: 0;

  width: 100%;

  z-index: 9999;

  background-color: rgba(34, 34, 34, 0.95);

  color: #fff;

  padding: 10px 0;

  text-align: center;

  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);

}



/* ==== CONTENIDO PRINCIPAL ==== */

/* ==== CONTENIDO PRINCIPAL ==== */

.main-content {
  padding-top: 150px;
  padding-bottom: 80px;
  min-height: 100vh;
}

/* ==== SECCIONES ==== */

section {
  padding: 40px 20px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.section-content {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.section-content:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-2px);
}

section h2 {
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

/* Info Servidor */

.server-info {
  margin: 24px auto;
  text-align: left;
  background: rgba(15, 23, 42, 0.9);
  padding: 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  display: inline-block;
  color: var(--text-main);
  box-shadow: var(--shadow);
}

.server-info h3 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1.1rem;
}

.server-info p {
  margin: 8px 0;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
}

.server-info strong {
  color: var(--accent);
}

/* BOTONES */

a button {
  background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
  border: none;
  color: white;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

a button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.4);
  filter: brightness(1.1);
}

a button:active {
  transform: translateY(0);
}

/* Variantes de botones */
a[href*="craftingstore"] button {
  background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
}

/* REDES SOCIALES */

.socials {
  margin-top: 24px;
}

.socials a {
  margin: 0 12px;
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.socials a:hover {
  color: var(--primary);
  transform: scale(1.2);
}

/* WHATSAPP */

.whatsapp-links {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.whatsapp-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-links a:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateX(5px);
}

/* TABLAS */

.table-container {
  overflow-x: auto;
  margin-top: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.packs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  text-align: left;
}

.packs-table thead th {
  background: var(--bg-dark);
  color: var(--primary);
  padding: 16px;
  font-weight: 700;
  border-bottom: 2px solid var(--glass-border);
  text-align: left;
}

.packs-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-main);
  text-align: left;
  vertical-align: top;
}

.packs-table tr:last-child td {
  border-bottom: none;
}

/* Elementos dentro de tablas */
.packs-table code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  border: 1px solid var(--glass-border);
}

.packs-table strong {
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.packs-table tr:hover td {
  background: var(--glass);
}

/* Lore */

.lore-text {
  text-align: left;
  margin-top: 20px;
  line-height: 1.8;
  color: var(--text-main);
  font-weight: 300;
}

/* SUBMENÃš */

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px;
  list-style: none;
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  z-index: 1000;
  min-width: 200px;
}

.submenu li {
  margin: 4px 0;
}

.submenu li a {
  padding: 8px 12px !important;
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
}

.submenu li a:hover {
  background: var(--glass) !important;
  color: var(--primary) !important;
}

.submenu.show {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Links sociales en tablas (ajuste de tamaÃ±o) */
.packs-table .socials a {
  font-size: 0.9rem;
  margin: 0;
  color: var(--primary);
  font-weight: 600;
}

.packs-table .socials a:hover {
  transform: scale(1.1);
  color: var(--text-main);
}

/* ==== DASHBOARD STATUS CARD ==== */
.status-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 20px auto;
  max-width: 500px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.status-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 12px;
}

.status-indicator-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 12px;
  height: 12px;
  background-color: var(--text-muted);
  border-radius: 50%;
  position: relative;
}

.status-dot.online {
  background-color: #2ecc71;
  box-shadow: 0 0 10px #2ecc71;
}

.status-dot.online::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2ecc71;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

#status-text {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.player-count-badge {
  background: var(--glass);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  color: var(--accent);
}

.player-list-container {
  margin-top: 15px;
}

.player-list-container h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* NUEVO GRID DE JUGADORES */
#player-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.player-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#player-list img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  /* Un poco mÃ¡s cuadrado al estilo Minecraft */
  border: 1px solid var(--glass-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: help;
  background-color: rgba(0, 0, 0, 0.3);
  /* Fondo oscuro por si es PNG transparente */
}

/* NOMBRES DE JUGADORES */
.player-name {
  font-size: 0.7rem;
  color: var(--text-main);
  margin-top: 5px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  opacity: 0.9;
}

/* Borde dorado para jugadores Bedrock */
#player-list img.bedrock-player {
  border-color: #ffd700;
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

#player-list img:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border-color: var(--primary);
}

.copy-ip-area {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.copy-ip-area:hover {
  background: rgba(14, 165, 233, 0.1);
}

.ip-value {
  font-family: 'Courier New', monospace;
  font-weight: bold;
  color: var(--primary);
  flex-grow: 1;
}

.copy-hint {
  font-size: 0.7rem;
  color: var(--text-muted);
}

@media(max-width:600px) {
  .main-content {
    padding-top: 360px;
    /* Restaurado al valor original */
  }
}

/* ==== GALERÃA DINÃMICA STITCHLAND ==== */
.album-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.album-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  text-transform: capitalize;
  font-family: 'Outfit', sans-serif;
}

.album-btn.active,
.album-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--glass-border);
  background: #000;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  text-align: center;
  opacity: 0;
  transition: var(--transition);
  transform: translateY(10px);
}

.gallery-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption h4 {
  color: var(--accent);
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.gallery-caption p {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
  font-weight: 300;
}

/* ==== LIGHTBOX MODAL ==== */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: zoom-out;
  animation: fadeIn 0.3s ease;
}

.gallery-modal img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--glass-border);
  cursor: default;
  transition: transform 0.3s ease;
}

#modal-caption {
  margin-top: 20px;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary);
  transform: scale(1.2);
}
/* ==== NAVEGACIÓN DE CARPETAS (BREADCRUMBS) ==== */
.gallery-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 0.96rem;
    color: var(--text-muted);
}

.breadcrumb-item {
    cursor: pointer;
    transition: var(--transition);
}

.breadcrumb-item:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--accent);
    font-weight: bold;
    cursor: default;
}

.breadcrumb-separator {
    color: var(--glass-border);
}

/* Estilo para items que son carpetas */
.gallery-item.folder { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; height: 100px; aspect-ratio: auto; margin-bottom: 20px; transition: var(--transition); } .gallery-item.folder:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); } .folder-icon { width: 40px !important; height: 40px !important; border-radius: 4px !important; margin-right: 15px !important; border: 1px solid var(--glass-border); object-fit: cover !important; display: block !important; }

.folder-icon { width: 40px !important; height: 40px !important; border-radius: 4px !important; margin-right: 15px !important; border: 1px solid var(--glass-border); object-fit: cover !important; display: block !important; }

.gallery-item.folder .gallery-caption {
    opacity: 1;
    transform: translateY(0);
    background: none;
    backdrop-filter: none;
}



.folder-info h4 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    font-size: 1.1rem;
    text-transform: capitalize;
}
.gallery-item.folder .folder-icon { width: 40px !important; height: 40px !important; border-radius: 4px !important; margin-right: 15px !important; border: 1px solid var(--glass-border); object-fit: cover !important; display: block !important; }


/* ==== SECCIÃ“N STAFF PREMIUM (HORIZONTAL) ==== */
#staff-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.staff-card-premium {
    position: relative;
    display: flex; /* Layout horizontal */
    flex-direction: row;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideInUp 0.6s ease-out both;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.staff-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(59, 130, 246, 0.2);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.staff-visual {
    flex: 0 0 120px; /* TamaÃ±o fijo para la skin */
    height: 180px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-img {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.3));
    object-fit: contain;
    transition: transform 0.4s ease;
}

.staff-card-premium:hover .staff-img {
    transform: perspective(500px) rotateY(15deg) scale(1.1);
}

.staff-details {
    flex: 1;
    padding-left: 25px;
    text-align: left;
    z-index: 1;
}

.name-label {
    margin: 0;
    font-size: 1.6rem;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.rank-label {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(90deg, #3b82f6, #2dd4bf);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 8px 0 12px 0;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.bio-text {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-style: italic;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo para mÃ³viles */
@media (max-width: 600px) {
    #staff-list {
        grid-template-columns: 1fr;
    }
    .staff-card-premium {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .staff-details {
        padding-left: 0;
        margin-top: 20px;
    }
    .staff-visual {
        flex: 0 0 150px;
        height: 150px;
    }
}
