/* ==========================================================================
   RESET Y VARIABLES (Estética Dark Cyber-Security)
   ========================================================================== */
:root {
  --bg-dark: #07070a;
  --bg-card: rgba(18, 18, 26, 0.75);
  --gold-primary: #d4af37;
  --gold-glow: #f5c242;
  --cyan-accent: #00e5ff;
  --cyan-glow: rgba(0, 229, 255, 0.2);
  --border-light: rgba(255, 255, 255, 0.05);
  --text-primary: #f0f0f5;
  --text-secondary: #9aa0b0;
}
/* ==========================================================================
   MARCA DE AGUA DE FONDO
   ========================================================================== */
.bg-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw; /* Ajuste para que no sea más grande que la pantalla */
  max-width: 800px;
  height: 90vh;
  background-image: url('logoSvg.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.05;
  z-index: -3;
  pointer-events: none;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  overflow-x: hidden; 
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Efectos de fondo cibernéticos */
.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
}

.orb-1 {
  top: -10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: var(--gold-primary);
}

.orb-2 {
  bottom: 20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: var(--cyan-accent);
}

/* ==========================================================================
   HEADER / INTRO
   ========================================================================== */
header {
  padding: 4rem 1rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra horizontalmente */
  text-align: center;
  width: 100%;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px; /* Asegura que el contenido no se estire demasiado en escritorio */
}

.logo-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.logo {
  width: 120px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  animation: pulse 3s infinite ease-in-out;
  z-index: 1;
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  text-align: center;
}

.tagline {
  color: var(--text-secondary);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 300;
  text-align: center;
}

/* Botones con Brillo */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

/* Caja de Contrato (Solución al desbordamiento en móvil) */
.contract-container {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 540px;
  padding: 0 0.5rem;
}

.contract-label {
  font-size: 0.85rem;
  color: var(--cyan-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
  font-weight: 700;
  text-shadow: 0 0 10px var(--cyan-glow);
  text-align: center;
}

.contract-box {
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 0.8rem 1.2rem;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.05);
  gap: 12px;
  width: 100%;
}

#contract-address {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.5px;
  flex: 1;
  min-width: 0; /* Clave absoluta para permitir el recorte de texto en flexbox */
  text-align: left;
}

#btn-copy {
  background: var(--gold-primary);
  color: #000;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.85rem;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0; /* Evita que el botón se aplaste en pantallas mini */
}

#btn-copy:hover {
  background: var(--gold-glow);
  transform: scale(1.05);
}

/* ==========================================================================
   SECCIÓN CARACTERÍSTICAS (Glassmorphism Responsivo)
   ========================================================================== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Bajado de 280px para evitar desbordes */
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.05);
}

.feature-card:hover .feature-glow {
  opacity: 1;
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   TOKENOMICS
   ========================================================================== */
.tokenomics-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, transparent 0%, #0a0a0f 100%);
}

.tokenomics-section h2, .how-to-buy-section h2, .roadmap-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}

.gold-text {
  color: var(--gold-glow);
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Optimizado para evitar desbordes */
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.token-card {
  background: rgba(20, 20, 30, 0.5);
  border: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  border-radius: 18px;
  text-align: left;
  transition: all 0.3s ease;
}

.token-percentage {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--cyan-accent);
  margin-bottom: 1rem;
}

.featured-card {
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.03);
  transform: scale(1.03);
}

.featured-card .token-percentage {
  color: var(--gold-glow);
}

.card-note {
  font-size: 0.8rem;
  color: var(--gold-primary);
  display: block;
  margin-top: 0.5rem;
}

/* Caja de Impuestos */
.tax-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid var(--border-light);
  max-width: 700px;
  margin: 4rem auto 0;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  gap: 1.5rem;
}

.tax-item {
  flex: 1;
}

.tax-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-glow);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.tax-badge.cyan {
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan-accent);
}

.tax-line {
  width: 1px;
  height: 60px;
  background: var(--border-light);
}

/* ==========================================================================
   CARRUSEL RESPONSIVO E INTERACTIVO
   ========================================================================== */
.how-to-buy-section {
  padding: 6rem 1rem;
  background: #07070a;
}

.carousel-container {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  flex: 0 0 100%; /* Bloquea el deslizamiento al 100% exacto del contenedor */
  width: 100%;
}

.slide-card {
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  width: 100%;
}

.slide-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  position: absolute;
  top: 10px;
  right: 25px;
  line-height: 1;
  pointer-events: none;
}

.slide-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.slide-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #fff;
}

.slide-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.slide-subtext {
  font-size: 0.9rem !important;
  color: var(--text-secondary);
  opacity: 0.7;
}

.warning-alert {
  background: rgba(255, 76, 76, 0.05);
  border: 1px solid rgba(255, 76, 76, 0.2);
  color: #ff8080;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  text-align: left;
  margin-top: 1.5rem;
}

.text-link {
  color: var(--cyan-accent);
  text-decoration: none;
  border-bottom: 1px dashed var(--cyan-accent);
}

.contract-microbox {
  background: #07070a;
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-glow);
  padding: 0.6rem;
  border-radius: 8px;
  font-family: monospace;
  font-size: 0.8rem;
  word-break: break-all;
  margin-bottom: 1rem;
}

/* Controles */
.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 0 0.5rem;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid var(--border-light);
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: var(--cyan-accent);
  color: #000;
  border-color: var(--cyan-accent);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--cyan-accent);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--cyan-accent);
}

/* ==========================================================================
   ROADMAP (Timeline Responsiva)
   ========================================================================== */
.roadmap-section {
  padding: 6rem 1.5rem;
}

.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}

/* Línea vertical de fondo del timeline */
.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100%;
  background: var(--border-light);
  z-index: 1;
}

.roadmap-step {
  background: var(--bg-card);
  padding: 2rem 2rem 2rem 3rem;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  position: relative;
  z-index: 2;
  text-align: left;
}

/* Círculo indicador en el timeline */
.roadmap-step::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 2.2rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #333;
  border: 3px solid var(--bg-dark);
}

.step-badge {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.roadmap-step h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.roadmap-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.status-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

/* Variaciones de estados */
.completed { border-left: 4px solid #00ff66; }
.completed::before { background: #00ff66; box-shadow: 0 0 10px #00ff66; }
.completed .status-tag { color: #00ff66; }

.current { 
  border-left: 4px solid var(--gold-primary); 
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05); 
}
.current::before { background: var(--gold-primary); box-shadow: 0 0 10px var(--gold-primary); }
.current .status-tag { color: var(--gold-glow); }
.current .step-badge { color: var(--gold-glow); background: rgba(212, 175, 55, 0.1); }

.upcoming { border-left: 4px solid #333; }
.upcoming .status-tag { color: #555; }
/* --- ESTILOS CORRECTORES PARA EL ROADMAP --- */
.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  margin: 2rem auto;
  max-width: 800px;
}

.roadmap-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

/* Colores Dinámicos Estructurales */
.roadmap-step.fase-completada {
  border-color: #00ff88;
  background: rgba(0, 255, 136, 0.02);
}
.roadmap-step.fase-completada .status-tag {
  color: #00ff88;
  font-weight: bold;
}
.roadmap-step.fase-completada .step-badge {
  background: #00ff88;
  color: #000;
}

.roadmap-step.fase-progreso {
  border-color: #ffaa00;
  background: rgba(255, 170, 0, 0.02);
}
.roadmap-step.fase-progreso .status-tag {
  color: #ffaa00;
  font-weight: bold;
}
.roadmap-step.fase-progreso .step-badge {
  background: #ffaa00;
  color: #000;
}

.roadmap-step.fase-espera {
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}
.roadmap-step.fase-espera .status-tag {
  color: #888;
}


 /* ==========================================================================
   🛒 WIDGET DE COMPRA PANCAKESWAP TOTALMENTE RESPONSIVO
   ========================================================================== */

.buy-widget-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #07070a !important; /* Fondo cyber oscuro */
}

.buy-widget-section h2 {
  color: #ffffff !important;
  margin-bottom: 10px;
}

.widget-subtitle {
  color: #9aa0b0 !important;
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

/* Contenedor del Widget */
.widget-container {
  max-width: 440px; /* Ancho ideal estandarizado para interfaces DeFi */
  height: 580px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #22222a !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  background: #1e1e24 !important;
}

/* Forzar que el iframe ocupe todo el contenedor de forma limpia */
#pancake-widget {
  width: 100%;
  height: 100%;
  border: none;
}

/* Ajuste rápido para pantallas de móviles muy pequeños */
@media (max-width: 480px) {
  .widget-container {
    max-width: 100%;
    height: 540px;
    border-radius: 16px;
  }
}


/* ==========================================================================
   FOOTER Y SOCIALS
   ========================================================================== */
footer {
  padding: 4rem 1.5rem;
  background: #040406;
  border-top: 1px solid var(--border-light);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap; /* Evita desbordes si hay botones de redes largas */
}

.social-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.2s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
}

.social-links a:hover {
  color: var(--cyan-accent);
  background: var(--cyan-glow);
  border-color: var(--cyan-accent);
}

.copyright {
  font-size: 0.85rem;
  color: #555860;
}

.copyright a {
  color: #555860;
  text-decoration: none;
}

.copyright a:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   ANIMACIONES
   ========================================================================== */
@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
}

/* ==========================================================================
   MEDIA QUERIES ULTRA-OPTI (Resolución del problema móvil)
   ========================================================================== */
@media (max-width: 768px) {
  h1 { 
    font-size: 2.2rem; 
  }
  .tagline {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  .tokenomics-grid { 
    grid-template-columns: 1fr; 
  }
  .featured-card { 
    transform: scale(1); 
  }
  .tax-box { 
    flex-direction: column; 
    gap: 1.2rem; 
    padding: 1.2rem;
  }
  .tax-line { 
    width: 100%; 
    height: 1px; 
  }
  .slide-card { 
    padding: 2.5rem 1.2rem; 
  }
  .slide-card h3 {
    font-size: 1.3rem;
  }
  .slide-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  .warning-alert {
    font-size: 0.8rem;
    padding: 0.8rem;
  }
  .roadmap-timeline::before { 
    left: 15px; 
  }
  .roadmap-step { 
    padding: 1.5rem 1.2rem 1.5rem 2.2rem; 
  }
  .roadmap-step::before { 
    left: 9px; 
    top: 1.8rem;
  }
  .carousel-controls {
    padding: 0 0.5rem;
  }
  .carousel-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Ajustes finos para teléfonos extremadamente estrechos */
@media (max-width: 400px) {
  #contract-address {
    font-size: 0.75rem; /* Achica ligeramente la fuente del hash para que quepa más texto visible */
  }
  .contract-box {
    padding: 0.6rem 0.8rem;
  }
  #btn-copy {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  .cta-glass h3 {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   ⚠️ PARCHE DE CORRECCIÓN DE VISIBILIDAD PARA MÓVIL
   ========================================================================== */

/* 1. Forzar que todos los títulos principales sean blancos y visibles */
h2, 
.tokenomics-section h2, 
.how-to-buy-section h2, 
.roadmap-section h2 {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* 2. Forzar que los títulos secundarios y subtítulos mantengan su color */
h3, h4, .slide-card h3 {
  color: #ffffff !important;
}

.section-subtitle {
  color: #9aa0b0 !important;
}

.gold-text, strong {
  color: #f5c242 !important; /* Asegura el toque dorado premium */
}

/* 3. Blindar el fondo oscuro absoluto y fulminar el escudo blanco gigante */
body, .how-to-buy-section, .tokenomics-section, .roadmap-section {
  background-color: #07070a !important;
  background-image: none !important; /* Esto remueve el escudo gigante brillante si se metió como fondo */
}

/* 4. Asegurar la lectura en las tarjetas del carrusel */
.slide-card p {
  color: #9aa0b0 !important;
}
.warning-alert {
  color: #ff8080 !important;
}
/* ==========================================================================
   📊 DASHBOARD TOTALMENTE OPTIMIZADO Y VISIBLE PARA MÓVIL
   ========================================================================== */

.dashboard-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #07070a !important; /* Forzar fondo cyber oscuro */
}

/* Forzar que el título del Dashboard sea blanco */
.dashboard-section h2 {
  color: #ffffff !important;
  margin-bottom: 25px;
}

/* Corrección de la cuadrícula para pantallas pequeñas */
.dashboard-grid {
  display: flex !important;
  flex-direction: column !important; /* Se apilan ordenadamente en el móvil */
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

/* Si la pantalla es más grande (PC/Tablet), se ponen en fila */
@media (min-width: 768px) {
  .dashboard-grid {
    flex-direction: row !important;
    max-width: 900px;
  }
}

/* Tarjetas blindadas con fondo gris cibernético */
.dash-card {
  background: #13131a !important; 
  border: 1px solid #22222a !important;
  padding: 20px;
  border-radius: 12px;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Forzar el color gris claro para las etiquetas */
.dash-label {
  color: #9aa0b0 !important;
  font-size: 0.85rem !important;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Forzar el color blanco brillante para los valores numéricos */
.dash-value {
  color: #ffffff !important;
  font-size: 1.5rem !important;
  font-weight: bold !important;
}

/* Forzar el color verde neón para el estado de la auditoría */
.dash-value-green {
  color: #00ff88 !important;
  font-size: 1.5rem !important;
  font-weight: bold !important;
}
