/* =========================================================
   ESTILOS PREMIUM ADICIONALES PARA INICIO.HTML
   Archivo complementario para las secciones mejoradas
   ========================================================= */

/* =========================================================
   ARCHIVE SECTION PREMIUM
   ========================================================= */

.archive-image-container {
  position: relative;
}

.archive-holo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--color2);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(var(--color1-rgb), 0.3);
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.archive-holo-frame:hover {
  transform: translateY(-5px) scale(1.02);
}

.archive-glow-bg {
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at center,
    rgba(var(--color1-rgb), 0.3) 0%,
    transparent 70%
  );
  filter: blur(50px);
  animation: archiveGlow 4s ease-in-out infinite;
}

@keyframes archiveGlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.archive-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(var(--color1-rgb), 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(var(--color1-rgb), 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: archiveGridMove 20s linear infinite;
  opacity: 0.3;
}

@keyframes archiveGridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-20px, -20px);
  }
}

.archive-image {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.archive-scan-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(var(--color1-rgb), 0.2) 50%,
    transparent 100%
  );
  animation: archiveScan 3s linear infinite;
  z-index: 3;
}

@keyframes archiveScan {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.archive-corner {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 2px solid var(--color2);
  z-index: 4;
  box-shadow: 0 0 10px var(--color2);
}

.archive-tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.archive-tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

.archive-bl {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}

.archive-br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

.archive-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.1), rgba(var(--color1-rgb), 0.05));
  border: 1px solid rgba(var(--color1-rgb), 0.3);
  border-radius: 50px;
  font-family: 'Fira Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color2);
}

.archive-badge i {
  font-size: 1.1em;
}

.archive-title {
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  line-height: 1.15;
  font-weight: 800;
}

.archive-description {
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.7;
  color: rgba(var(--color5-rgb), 0.9);
}

.archive-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.archive-stat-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(26,36,26,0.9), rgba(26,36,26,0.95));
  border: 1px solid rgba(var(--color1-rgb), 0.3);
  border-radius: 16px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.archive-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--color1-rgb), 0.1), transparent);
  transition: left 0.5s ease;
}

.archive-stat-card:hover {
  transform: translateX(5px);
  border-color: var(--color2);
  box-shadow: 0 12px 36px rgba(0,0,0,0.45), 0 0 26px rgba(var(--color1-rgb), 0.2);
}

.archive-stat-card:hover::before {
  left: 100%;
}

.stat-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid;
  background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}

.online-icon {
  border-color: var(--color2);
  color: var(--color2);
}

.ai-icon {
  border-color: var(--color-warning);
  color: var(--color-warning);
}

.discord-icon {
  border-color: #5865f2;
  color: #5865f2;
}

.stat-icon-wrapper i {
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.icon-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  animation: iconPulseAnim 2s ease-in-out infinite;
}

@keyframes iconPulseAnim {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

.stat-content-wrapper {
  flex: 1;
}

.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color2);
  text-shadow: 0 0 20px rgba(var(--color1-rgb), 0.5);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-text {
  font-family: 'Fira Mono', monospace;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: rgba(var(--color5-rgb), 0.8);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.stat-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  font-family: 'Fira Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid;
}

.stat-status.online {
  border-color: var(--color2);
  background: rgba(var(--color1-rgb), 0.1);
  color: var(--color2);
}

.stat-status.ai {
  border-color: var(--color-warning);
  background: rgba(255,230,101,0.1);
  color: var(--color-warning);
}

.stat-status.discord {
  border-color: #5865f2;
  background: rgba(88,101,242,0.1);
  color: #5865f2;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.btn-archive-explore {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.15), rgba(var(--color1-rgb), 0.08));
  color: var(--color2);
  border: 2px solid var(--color2);
  border-radius: 50px;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(var(--color1-rgb), 0.2);
}

.btn-archive-explore .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(var(--color1-rgb), 0.2);
}

.btn-archive-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(var(--color1-rgb), 0.4);
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.25), rgba(var(--color1-rgb), 0.15));
  color: var(--color2);
}

.btn-shine-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-archive-explore:hover .btn-shine-effect {
  transform: translateX(100%);
}

/* Responsive Archive */
@media (max-width: 768px) {
  .archive-stats-grid {
    gap: 1rem;
  }

  .archive-stat-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .stat-icon-wrapper {
    margin-bottom: 1rem;
  }
}

/* =========================================================
   ROADMAP SECTION PREMIUM
   ========================================================= */

.roadmap-header {
  margin-bottom: 4rem;
}

.roadmap-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.1), rgba(var(--color1-rgb), 0.05));
  border: 1px solid rgba(var(--color1-rgb), 0.3);
  border-radius: 50px;
  font-family: 'Fira Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color2);
  margin-bottom: 1.5rem;
}

.roadmap-title {
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 800;
}

.title-accent {
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.2), transparent);
  padding: 0 0.5rem;
  border-bottom: 3px solid var(--color2);
}

.roadmap-subtitle {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: rgba(var(--color5-rgb), 0.8);
  letter-spacing: 0.5px;
}

.roadmap-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--color2),
    var(--color2),
    transparent
  );
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--color2);
}

.roadmap-phase {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
}

.roadmap-phase:nth-child(even) .phase-card {
  grid-column: 1;
  grid-row: 1;
}

.roadmap-phase:nth-child(even) .phase-marker {
  grid-column: 2;
  grid-row: 1;
}

.roadmap-phase:nth-child(odd) .phase-card {
  grid-column: 3;
  grid-row: 1;
}

.roadmap-phase:nth-child(odd) .phase-marker {
  grid-column: 2;
  grid-row: 1;
}

.phase-marker {
  position: relative;
  width: 80px;
  height: 80px;
  z-index: 2;
}

.marker-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--color2);
  opacity: 0.3;
  animation: markerRingPulse 3s ease-in-out infinite;
}

@keyframes markerRingPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.marker-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.2), rgba(var(--color1-rgb), 0.05));
  border: 3px solid var(--color2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 30px rgba(var(--color1-rgb), 0.4),
    inset 0 0 20px rgba(var(--color1-rgb), 0.1);
  z-index: 2;
}

.marker-core i {
  font-size: 2rem;
  color: var(--color2);
  text-shadow: 0 0 15px var(--color2);
}

.marker-glow {
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color1-rgb), 0.4), transparent 70%);
  filter: blur(20px);
  animation: markerGlowPulse 3s ease-in-out infinite;
}

@keyframes markerGlowPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.phase-card {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(16,25,18,0.9), rgba(16,25,18,0.95));
  border: 2px solid rgba(var(--color1-rgb), 0.2);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  overflow: hidden;
}

.phase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.phase-card:hover {
  transform: translateY(-5px);
  border-color: var(--color2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 30px rgba(var(--color1-rgb), 0.3);
}

.phase-card:hover::before {
  opacity: 1;
}

.phase-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(var(--color1-rgb), 0.1);
  line-height: 1;
}

.phase-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-family: 'Fira Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid;
}

.phase-status.completed {
  background: rgba(var(--color1-rgb), 0.15);
  border-color: var(--color2);
  color: var(--color2);
}

.phase-status.in-progress {
  background: rgba(255,230,101,0.15);
  border-color: var(--color-warning);
  color: var(--color-warning);
}

.phase-status.planned {
  background: rgba(100,100,100,0.15);
  border-color: #888;
  color: #aaa;
}

.phase-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  color: var(--color2);
  margin-bottom: 1rem;
  font-weight: 700;
}

.phase-description {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.7;
  color: rgba(var(--color5-rgb), 0.9);
  margin-bottom: 1.5rem;
}

.phase-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}


/* ============================================
   BLOG TEASER PREMIUM SECTION
   ============================================ */

/* Header Premium */
.blog-header-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.blog-header-top {
  width: 100%;
  display: flex;
  justify-content: center;
}

.blog-badge-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.15), rgba(var(--color1-rgb), 0.08));
  border: 1px solid rgba(var(--color1-rgb), 0.4);
  border-radius: 50px;
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color2);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(var(--color1-rgb), 0.2), inset 0 0 15px rgba(var(--color1-rgb), 0.1);
}

.badge-signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color2);
  box-shadow: 0 0 12px var(--color2), 0 0 20px rgba(var(--color1-rgb), 0.6);
  animation: badgeSignalPulse 2s ease-in-out infinite;
}

@keyframes badgeSignalPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.badge-wave {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--color1-rgb), 0.3), transparent);
  animation: badgeWaveSlide 3s linear infinite;
}

@keyframes badgeWaveSlide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.blog-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 800px;
}

.blog-title-premium {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
}

.title-highlight-blog {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.25), rgba(var(--color1-rgb), 0.1));
  padding: 0 0.3em;
  border-bottom: 4px solid var(--color2);
  animation: titleHighlightGlow 3s ease-in-out infinite;
}

@keyframes titleHighlightGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(var(--color1-rgb), 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(var(--color1-rgb), 0.5);
  }
}

.blog-title-decoration {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
}

.decoration-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color2), transparent);
  position: relative;
}

.decoration-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color2);
  box-shadow: 0 0 10px var(--color2);
  animation: decorationPulse 2s ease-in-out infinite;
}

@keyframes decorationPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.decoration-center {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color2);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.2), rgba(var(--color1-rgb), 0.05));
  color: var(--color2);
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(var(--color1-rgb), 0.3);
}

.blog-subtitle-premium {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: rgba(var(--color5-rgb), 0.8);
  margin: 0;
  line-height: 1.6;
}

/* Botón Ver Todos Premium */
.btn-blog-all {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.15), rgba(var(--color1-rgb), 0.08));
  border: 2px solid rgba(var(--color1-rgb), 0.4);
  border-radius: 12px;
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color2);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-blog-all:hover {
  transform: translateY(-3px);
  border-color: var(--color2);
  box-shadow: 0 15px 40px rgba(var(--color1-rgb), 0.3), 0 0 30px rgba(var(--color1-rgb), 0.2);
  color: var(--color2);
}

.btn-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(var(--color1-rgb), 0.2);
  transition: all 0.4s ease;
}

.btn-blog-all:hover .btn-icon-wrapper {
  background: var(--color2);
  color: #000;
  transform: translateX(4px);
}

.btn-glow-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--color1-rgb), 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-blog-all:hover .btn-glow-effect {
  left: 100%;
}

/* Grid de Blog Cards */
.blog-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  grid-auto-rows: 1fr;
}

.blog-card-container {
  position: relative;
  height: 100%;
}

.tilt-wrap {
  height: 100%;
}

.blog-card-premium {
  position: relative;
  background: linear-gradient(135deg, rgba(16,25,18,0.95), rgba(16,25,18,0.98));
  border: 2px solid rgba(var(--color1-rgb), 0.25);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
}

.blog-card-premium:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--color1-rgb), 0.5);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 40px rgba(var(--color1-rgb), 0.25);
}

/* Efectos de Glow */
.blog-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(var(--color1-rgb), 0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.blog-card-premium:hover .blog-card-glow {
  opacity: 1;
}

.blog-card-border-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color2), rgba(0,220,55,1), var(--color2));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(8px);
}

.blog-card-premium:hover .blog-card-border-glow {
  opacity: 0.6;
  animation: borderGlowRotate 3s linear infinite;
}

@keyframes borderGlowRotate {
  0% {
    filter: blur(8px) hue-rotate(0deg);
  }
  100% {
    filter: blur(8px) hue-rotate(360deg);
  }
}

/* Imagen Container */
.blog-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 2px solid rgba(var(--color1-rgb), 0.3);
}

.blog-image-premium {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card-premium:hover .blog-image-premium {
  transform: scale(1.08);
}

.blog-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
  transition: background 0.4s ease;
}

.blog-card-premium:hover .blog-image-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(var(--color1-rgb), 0.15) 100%);
}

.blog-image-scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color2), transparent);
  box-shadow: 0 0 15px var(--color2);
  animation: imageScanMove 3s linear infinite;
  opacity: 0.7;
}

@keyframes imageScanMove {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

/* Corners */
.blog-image-corners .corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color2);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-card-premium:hover .blog-image-corners .corner {
  opacity: 1;
}

.corner-tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.corner-tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

.corner-bl {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}

.corner-br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

/* Category Badge */
.blog-category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(var(--color1-rgb), 0.6);
  border-radius: 20px;
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  z-index: 2;
}

/* Contenido Premium */
.blog-content-premium {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.blog-card-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: rgba(var(--color5-rgb), 0.95);
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card-premium:hover .blog-card-title {
  color: var(--color2);
}

.blog-title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color2), transparent);
  box-shadow: 0 0 10px rgba(var(--color1-rgb), 0.5);
  transition: width 0.4s ease;
}

.blog-card-premium:hover .blog-title-underline {
  width: 100%;
}

.blog-card-description {
  font-size: 0.85rem !important;
  color: rgba(var(--color5-rgb), 0.75);
  line-height: 1.5;
  margin: 0;
  flex: 1;
  /* Limitar a 3 líneas */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.5em; /* 3 líneas * 1.5 line-height */
}

/* Footer con Botón */
.blog-card-footer {
  margin-top: auto;
  padding-top: 1rem;
}

.btn-blog-read {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid rgba(var(--color1-rgb), 0.4);
  border-radius: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color2);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-blog-read:hover {
  border-color: var(--color2);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(var(--color1-rgb), 0.3);
  color: #000;
}

.btn-read-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.btn-blog-read:hover .btn-read-arrow {
  transform: translateX(4px);
}

.btn-read-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color2);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-blog-read:hover .btn-read-bg {
  left: 0;
}

/* Número Decorativo */
.blog-card-number {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: 'Orbitron', monospace;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(var(--color1-rgb), 0.08);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: all 0.4s ease;
}

.blog-card-premium:hover .blog-card-number {
  color: rgba(var(--color1-rgb), 0.15);
  transform: scale(1.1);
}

/* Placeholder específico */
.blog-card-premium.placeholder-card {
  opacity: 0.85;
}

.blog-card-premium.placeholder-card:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-header-premium {
    margin-bottom: 3rem;
  }

  .blog-grid-premium {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-title-premium {
    font-size: 2rem;
  }

  .btn-blog-all {
    width: 100%;
    justify-content: center;
  }

  .blog-card-number {
    font-size: 3.5rem;
  }
}


/* ============================================
   FAQ PREMIUM SECTION
   ============================================ */

.faq-section-premium {
  position: relative;
}

/* Header */
.faq-header-premium {
  margin-bottom: 4rem;
}

.faq-badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.faq-badge-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.15), rgba(var(--color1-rgb), 0.08));
  border: 1px solid rgba(var(--color1-rgb), 0.4);
  border-radius: 50px;
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color2);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(var(--color1-rgb), 0.2);
}

.faq-badge-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color2);
  border-radius: 50px;
  transform: translate(-50%, -50%);
  animation: faqBadgePulse 2s ease-out infinite;
  opacity: 0.7;
}

@keyframes faqBadgePulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

.faq-title-premium {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin: 1.5rem 0;
  line-height: 1.2;
}

.faq-title-highlight {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.25), rgba(var(--color1-rgb), 0.1));
  padding: 0 0.3em;
  border-bottom: 4px solid var(--color2);
  animation: faqTitleGlow 3s ease-in-out infinite;
}

@keyframes faqTitleGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(var(--color1-rgb), 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(var(--color1-rgb), 0.5);
  }
}

.faq-subtitle-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
  max-width: 400px;
}

.faq-decoration-left,
.faq-decoration-right {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color2), transparent);
  position: relative;
}

.faq-decoration-left::before,
.faq-decoration-right::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color2);
  box-shadow: 0 0 10px var(--color2);
  animation: faqDecoPulse 2s ease-in-out infinite;
}

@keyframes faqDecoPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.faq-decoration-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color2);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.2), rgba(var(--color1-rgb), 0.05));
  color: var(--color2);
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(var(--color1-rgb), 0.3);
}

.faq-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(var(--color5-rgb), 0.8);
  margin: 1rem 0 0 0;
  line-height: 1.6;
}

/* Accordion Wrapper */
.accordion-premium-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-premium {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Accordion Item Premium */
.accordion-item-premium {
  position: relative;
  background: linear-gradient(135deg, rgba(16,25,18,0.9), rgba(16,25,18,0.95));
  border: 2px solid rgba(var(--color1-rgb), 0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.accordion-item-premium:hover {
  border-color: rgba(var(--color1-rgb), 0.4);
  box-shadow: 0 12px 35px rgba(0,0,0,0.4), 0 0 25px rgba(var(--color1-rgb), 0.15);
}

/* Glow Effect */
.accordion-item-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--color1-rgb), 0.2), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.accordion-item-premium:hover .accordion-item-glow {
  left: 100%;
}

/* Header */
.accordion-header-premium {
  margin: 0;
  border: none;
}

/* Button */
.accordion-button-premium {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  font-family: 'Orbitron', monospace;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 700;
  color: rgba(var(--color5-rgb), 0.95);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.accordion-button-premium:hover {
  color: var(--color2);
}

.accordion-button-premium:not(.collapsed) {
  color: var(--color2);
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.08), rgba(var(--color1-rgb), 0.04));
}

.accordion-button-premium:focus {
  outline: none;
  box-shadow: none;
}

/* Icon Wrapper */
.accordion-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border: 2px solid rgba(var(--color1-rgb), 0.4);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.15), rgba(var(--color1-rgb), 0.05));
  color: var(--color2);
  font-size: 1.3rem;
  transition: all 0.4s ease;
}

.accordion-button-premium:hover .accordion-icon-wrapper {
  border-color: var(--color2);
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.25), rgba(var(--color1-rgb), 0.1));
  transform: rotate(360deg);
  box-shadow: 0 0 20px rgba(var(--color1-rgb), 0.3);
}

.accordion-button-premium:not(.collapsed) .accordion-icon-wrapper {
  border-color: var(--color2);
  background: var(--color2);
  color: #000;
  box-shadow: 0 0 25px rgba(var(--color1-rgb), 0.5);
}

/* Question Text */
.accordion-question-text {
  flex: 1;
  line-height: 1.4;
}

/* Arrow */
.accordion-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(var(--color1-rgb), 0.1);
  color: var(--color2);
  transition: all 0.3s ease;
}

.accordion-button-premium:hover .accordion-arrow {
  background: rgba(var(--color1-rgb), 0.2);
}

.accordion-button-premium:not(.collapsed) .accordion-arrow {
  background: var(--color2);
  color: #000;
  transform: rotate(180deg);
}

.accordion-arrow i {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

/* Number Decorativo */
.accordion-number {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(var(--color1-rgb), 0.08);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: all 0.3s ease;
}

.accordion-button-premium:hover .accordion-number {
  color: rgba(var(--color1-rgb), 0.12);
}

.accordion-button-premium:not(.collapsed) .accordion-number {
  color: rgba(var(--color1-rgb), 0.15);
}

/* Collapse */
.accordion-collapse {
  border: none;
}

/* Body */
.accordion-body-premium {
  padding: 0 2rem 2rem 2rem;
  background: transparent;
}

.accordion-body-content {
  position: relative;
  padding: 1.5rem;
  padding-left: 4rem;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.05), rgba(var(--color1-rgb), 0.02));
  border-left: 3px solid var(--color2);
  border-radius: 12px;
  box-shadow: inset 0 0 20px rgba(var(--color1-rgb), 0.1);
}

.accordion-body-content::before {
  content: '\f05a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  font-size: 1.5rem;
  color: var(--color2);
  opacity: 0.5;
}

.accordion-body-content p {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: rgba(var(--color5-rgb), 0.85);
  line-height: 1.7;
  margin: 0;
}

.code-premium {
  padding: 0.2em 0.6em;
  background: rgba(var(--color1-rgb), 0.15);
  border: 1px solid rgba(var(--color1-rgb), 0.3);
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-size: 0.95em;
  color: var(--color2);
  box-shadow: 0 0 10px rgba(var(--color1-rgb), 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .accordion-button-premium {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    font-size: 1rem;
  }

  .accordion-icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .accordion-arrow {
    width: 30px;
    height: 30px;
  }

  .accordion-number {
    font-size: 2rem;
    right: 15px;
    bottom: 8px;
  }

  .accordion-body-premium {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .accordion-body-content {
    padding: 1.25rem;
    padding-left: 3rem;
  }

  .accordion-body-content::before {
    left: 1rem;
    top: 1.25rem;
    font-size: 1.2rem;
  }

  .faq-header-premium {
    margin-bottom: 3rem;
  }

  .faq-title-premium {
    font-size: 2rem;
  }
}


/* ============================================
   CTA FINAL PREMIUM SECTION
   ============================================ */

.cta-section-premium {
  position: relative;
  min-height: auto;
  padding: 3rem 0;
  overflow: hidden;
}

/* CTA Card Premium */
.cta-card-premium {
  position: relative;
  background: linear-gradient(135deg, rgba(16,25,18,0.95), rgba(16,25,18,0.98));
  border: 2px solid rgba(var(--color1-rgb), 0.4);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6), 0 0 60px rgba(var(--color1-rgb), 0.2);
  backdrop-filter: blur(10px);
}

/* Glow Effect */
.cta-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, rgba(var(--color1-rgb), 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: ctaGlowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaGlowPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Corners */
.cta-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--color2);
  z-index: 2;
}

.cta-corner-tl {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
  animation: ctaCornerPulse 2s ease-in-out infinite;
}

.cta-corner-tr {
  top: 15px;
  right: 15px;
  border-left: none;
  border-bottom: none;
  animation: ctaCornerPulse 2s ease-in-out infinite 0.5s;
}

.cta-corner-bl {
  bottom: 15px;
  left: 15px;
  border-right: none;
  border-top: none;
  animation: ctaCornerPulse 2s ease-in-out infinite 1s;
}

.cta-corner-br {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
  animation: ctaCornerPulse 2s ease-in-out infinite 1.5s;
}

@keyframes ctaCornerPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 15px var(--color2);
  }
}

/* Terminal Header */
.cta-terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.1), rgba(var(--color1-rgb), 0.05));
  border-bottom: 2px solid rgba(var(--color1-rgb), 0.3);
}

.terminal-dots {
  display: flex;
  gap: 0.5rem;
}

.terminal-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.terminal-dot-red {
  background: #ff5f56;
  color: #ff5f56;
}

.terminal-dot-yellow {
  background: #ffbd2e;
  color: #ffbd2e;
}

.terminal-dot-green {
  background: var(--color2);
  color: var(--color2);
  animation: terminalDotBlink 2s ease-in-out infinite;
}

@keyframes terminalDotBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.terminal-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Orbitron', monospace;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color2);
}

.terminal-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color2);
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color2);
  box-shadow: 0 0 12px var(--color2);
  animation: statusIndicatorPulse 1.5s ease-in-out infinite;
}

@keyframes statusIndicatorPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

/* Body Premium */
.cta-body-premium {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Top Badge */
.cta-top-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.75rem;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.2), rgba(var(--color1-rgb), 0.1));
  border: 2px solid var(--color2);
  border-radius: 50px;
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color2);
  box-shadow: 0 0 30px rgba(var(--color1-rgb), 0.3);
  overflow: hidden;
}

.cta-badge-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: ctaBadgeSlide 3s linear infinite;
}

@keyframes ctaBadgeSlide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Headline */
.cta-headline-premium {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
}

.cta-highlight {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.3), rgba(var(--color1-rgb), 0.15));
  padding: 0 0.3em;
  border-bottom: 5px solid var(--color2);
  animation: ctaHighlightPulse 3s ease-in-out infinite;
}

@keyframes ctaHighlightPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(var(--color1-rgb), 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(var(--color1-rgb), 0.6);
  }
}

/* Glitch Container */
.cta-glitch-container {
  position: relative;
  margin: 1rem 0;
}

.cta-glitch-text {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color2);
  margin: 0;
  position: relative;
  animation: ctaGlitchEffect 5s infinite;
}

.cta-glitch-text::before,
.cta-glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.cta-glitch-text::before {
  animation: ctaGlitchBefore 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-2px, 0);
}

.cta-glitch-text::after {
  animation: ctaGlitchAfter 2.5s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  transform: translate(2px, 0);
}

@keyframes ctaGlitchEffect {
  0%, 90%, 100% {
    transform: translate(0);
  }
  92% {
    transform: translate(-2px, 2px);
  }
  94% {
    transform: translate(2px, -2px);
  }
}

@keyframes ctaGlitchBefore {
  0%, 95%, 100% {
    transform: translate(0);
  }
  96% {
    transform: translate(-5px, 0);
  }
}

@keyframes ctaGlitchAfter {
  0%, 95%, 100% {
    transform: translate(0);
  }
  97% {
    transform: translate(5px, 0);
  }
}

/* Description */
.cta-description-premium {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  color: rgba(var(--color5-rgb), 0.85);
  line-height: 1.7;
  max-width: 700px;
  margin: 0;
}

.cta-arisa-mention {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  color: var(--color2);
  padding: 0.2em 0.5em;
  background: rgba(var(--color1-rgb), 0.15);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(var(--color1-rgb), 0.2);
}

/* Features Grid */
.cta-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 700px;
  margin: 1.5rem 0;
}

.cta-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.08), rgba(var(--color1-rgb), 0.03));
  border: 1px solid rgba(var(--color1-rgb), 0.25);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-feature-item:hover {
  border-color: rgba(var(--color1-rgb), 0.5);
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.15), rgba(var(--color1-rgb), 0.08));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(var(--color1-rgb), 0.2);
}

.cta-feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(var(--color1-rgb), 0.4);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.2), rgba(var(--color1-rgb), 0.05));
  color: var(--color2);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.cta-feature-item:hover .cta-feature-icon {
  border-color: var(--color2);
  background: var(--color2);
  color: #000;
  box-shadow: 0 0 20px rgba(var(--color1-rgb), 0.5);
  transform: rotate(360deg);
}

.cta-feature-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(var(--color5-rgb), 0.9);
  text-align: center;
}

/* Actions Premium */
.cta-actions-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
}

/* Primary Button */
.btn-cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1.25rem 3rem;
  background: transparent;
  border: none;
  border-radius: 14px;
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 12px 35px rgba(var(--color1-rgb), 0.4);
}

.btn-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color2), rgba(0,220,55,1));
  z-index: 0;
  transition: all 0.4s ease;
}

.btn-cta-primary:hover .btn-cta-bg {
  transform: scale(1.05);
}

.btn-cta-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1;
}

.btn-cta-text {
  font-size: 1.1rem;
}

.btn-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn-cta-primary:hover .btn-cta-arrow {
  background: rgba(0,0,0,0.3);
  transform: translateX(4px);
}

.btn-cta-glow-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  z-index: 2;
  pointer-events: none;
  transition: left 0.6s ease;
}

.btn-cta-primary:hover .btn-cta-glow-effect {
  left: 100%;
}

.btn-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(var(--color1-rgb), 0.6);
}

/* Secondary Button */
.btn-cta-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1.25rem 3rem;
  background: transparent;
  border-radius: 14px;
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color2);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-cta-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(var(--color1-rgb), 0.5);
  border-radius: 14px;
  transition: all 0.4s ease;
  z-index: 0;
}

.btn-cta-secondary:hover .btn-cta-border {
  border-color: var(--color2);
  background: rgba(var(--color1-rgb), 0.1);
  box-shadow: 0 0 30px rgba(var(--color1-rgb), 0.3);
}

.btn-cta-secondary .btn-cta-content {
  color: var(--color2);
}

.btn-cta-secondary:hover {
  transform: translateY(-4px);
  color: var(--color2);
}

.btn-cta-secondary .btn-cta-arrow {
  background: rgba(var(--color1-rgb), 0.2);
}

.btn-cta-secondary:hover .btn-cta-arrow {
  background: var(--color2);
  color: #000;
}

/* Status Badges */
.cta-status-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0 1rem 0;
}

.status-badge-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(var(--color1-rgb), 0.1), rgba(var(--color1-rgb), 0.05));
  border: 1px solid rgba(var(--color1-rgb), 0.3);
  border-radius: 30px;
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(var(--color5-rgb), 0.9);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.status-badge-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: statusBadgePulse 2s ease-in-out infinite;
}

.status-online {
  background: var(--color2);
  box-shadow: 0 0 10px var(--color2);
}

.status-secure {
  background: #5865f2;
  box-shadow: 0 0 10px #5865f2;
}

.status-active {
  background: var(--color-warning);
  box-shadow: 0 0 10px var(--color-warning);
}

@keyframes statusBadgePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

/* Legal Note */
.cta-legal-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 600px;
  padding: 1rem 1.5rem;
  background: rgba(var(--color1-rgb), 0.05);
  border: 1px solid rgba(var(--color1-rgb), 0.2);
  border-radius: 10px;
  margin-top: 1rem;
}

.cta-legal-note i {
  color: var(--color2);
  font-size: 1rem;
  flex-shrink: 0;
}

.cta-legal-note small {
  font-size: 0.85rem;
  color: rgba(234,255,234,0.7);
  line-height: 1.5;
}

/* Scan Line */
.cta-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color2), transparent);
  box-shadow: 0 0 15px var(--color2);
  animation: ctaScanLineMove 4s linear infinite;
  opacity: 0.7;
}

@keyframes ctaScanLineMove {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .cta-body-premium {
    padding: 3rem 2rem;
  }

  .cta-terminal-header {
    padding: 1rem 1.5rem;
  }

  .terminal-title {
    font-size: 0.75rem;
  }

  .cta-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions-premium {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .cta-body-premium {
    padding: 2.5rem 1.5rem;
  }

  .cta-headline-premium {
    font-size: 2rem;
  }

  .cta-features-grid {
    grid-template-columns: 1fr;
  }

  .cta-status-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .status-badge-item {
    justify-content: center;
  }

  .terminal-title .terminal-text {
    display: none;
  }

  .terminal-status .status-text {
    display: none;
  }
}


.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Fira Mono', monospace;
  font-size: 0.9rem;
  color: rgba(var(--color5-rgb), 0.8);
  padding: 0.5rem;
  background: rgba(var(--color1-rgb), 0.03);
  border-radius: 8px;
  border-left: 2px solid rgba(var(--color1-rgb), 0.3);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(var(--color1-rgb), 0.08);
  border-left-color: var(--color2);
  transform: translateX(5px);
}

.feature-item i {
  color: var(--color2);
  font-size: 0.85em;
}

/* Responsive Roadmap */
@media (max-width: 992px) {
  .timeline-line {
    left: 30px;
  }

  .roadmap-phase {
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
  }

  .roadmap-phase:nth-child(even) .phase-card,
  .roadmap-phase:nth-child(odd) .phase-card {
    grid-column: 2;
    grid-row: 1;
  }

  .roadmap-phase:nth-child(even) .phase-marker,
  .roadmap-phase:nth-child(odd) .phase-marker {
    grid-column: 1;
    grid-row: 1;
  }

  .phase-marker {
    width: 60px;
    height: 60px;
  }

  .marker-core i {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .phase-card {
    padding: 1.5rem;
  }

  .phase-number {
    font-size: 2rem;
  }
}

/* ============================================
   BOTS DETAIL GRID - Archive Section
   ============================================ */

.bots-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.bot-detail-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 65, 0.2);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  min-width: 0; /* Permite que el contenido se ajuste correctamente */
}

.bot-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(0, 255, 65, 0.05) 0%,
    rgba(0, 255, 65, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.bot-detail-card:hover::before {
  opacity: 1;
}

.bot-detail-card.bot-online {
  border-color: rgba(0, 255, 65, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.bot-detail-card.bot-offline {
  border-color: rgba(255, 0, 0, 0.3);
  opacity: 0.7;
}

/* Bot Avatar */
.bot-avatar-wrapper {
  width: 64px;
  height: 64px;
  position: relative;
  flex-shrink: 0;
}

.bot-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(0, 255, 65, 0.3);
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
}

.bot-detail-card:hover .bot-avatar-img {
  border-color: rgba(0, 255, 65, 0.6);
  box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
  transform: scale(1.05);
}

.bot-avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(0, 255, 65, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color2);
}

/* Status badge en esquina del avatar */
.bot-status-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bot-status-badge.online {
  background: var(--color2);
  box-shadow: 0 0 10px var(--color2), 0 0 20px var(--color2);
}

.bot-status-badge.offline {
  background: #666;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.status-pulse {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

/* Bot info */
.bot-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0; /* Permite que el contenido se ajuste */
  flex: 1; /* Toma el espacio disponible */
}

.bot-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color2);
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bot-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Bot status text */
.bot-status-text {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* No permitir que se reduzca */
}

.status-online,
.status-offline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0; /* Evitar que se comprima */
}

.status-online {
  color: var(--color2);
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid rgba(0, 255, 65, 0.3);
}

.status-offline {
  color: #ff4444;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Responsive Desktop - asegurar espacio suficiente */
@media (min-width: 1200px) {
  .bots-detail-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .bot-detail-card {
    gap: 1.5rem;
    padding: 1.5rem 2rem;
  }
}

/* Responsive Tablet */
@media (max-width: 768px) {
  .bots-detail-grid {
    grid-template-columns: 1fr;
  }

  .bot-detail-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .bot-status-text {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 0.5rem;
  }
}
