/* ─────────────────────────────────────────
   PREMIUM CARD — ALTURA REDUZIDA (igual aos normais)
   ───────────────────────────────────────── */

/* Card base */
.premium-card-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.premium-card {
  position: relative;
  background: linear-gradient(145deg, #0a0f1e 0%, #0d1a2e 60%, #0a1520 100%);
  border: 1px solid rgba(39, 233, 181, 0.3);
  border-radius: 14px;
  padding: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 380px; /* Altura fixa para igualar aos normais */
  display: flex;
  flex-direction: column;
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(39, 233, 181, 0.25);
}

/* Efeito de brilho ao redor */
.premium-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(39, 233, 181, 0.08), transparent 70%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* Linha superior brilhante */
.premium-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #27e9b5, #0fdca5, transparent);
  animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
  0% { left: -100%; right: 100%; }
  50% { left: -20%; right: -20%; }
  100% { left: 100%; right: -100%; }
}

/* Badge PREMIUM (menor) */
.premium-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #1a1000;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 30px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(255, 215, 0, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 0 16px rgba(255, 215, 0, 0.9); }
}

/* Imagem (menor) */
.premium-card__img {
  position: relative;
  background: linear-gradient(135deg, #050d1a, #0a1a2e);
  height: 100px;
  width: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.premium-card__img img {
  max-width: 65px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(39, 233, 181, 0.5));
  transition: transform 0.3s ease;
}

.premium-card:hover .premium-card__img img {
  transform: scale(1.05);
}

/* Raio animado (menor) */
.premium-card__lightning {
  position: absolute;
  top: 6px;
  left: 8px;
  font-size: 1.2rem;
  animation: lightningFlash 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 4px #ffd700);
}

@keyframes lightningFlash {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); text-shadow: 0 0 8px #ffd700; }
}

/* Anel giratório (menor) */
.premium-card__speed-ring {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: conic-gradient(#27e9b5 0deg, #27e9b5 90deg, transparent 90deg, transparent 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ringSpin 3s linear infinite;
}

@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Copy (texto compacto) */
.premium-card__copy {
  margin-bottom: 0.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.premium-card__headline {
  font-size: 0.85rem;
  font-weight: 700;
  color: #27e9b5;
  margin-bottom: 2px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.premium-card__sub {
  font-size: 0.68rem;
  color: #a0aec0;
  line-height: 1.2;
}

/* Stats: ping / dados / estável (compacto) */
.premium-card__stats {
  display:none;
  align-items: center;
  justify-content: space-around;
  background: rgba(39, 233, 181, 0.08);
  border: 1px solid rgba(39, 233, 181, 0.2);
  border-radius: 10px;
  padding: 4px 8px;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.stat__val {
  font-size: 0.9rem;
  font-weight: 800;
  color: #27e9b5;
  line-height: 1.1;
}

.stat__lbl {
  font-size: 0.5rem;
  color: #8a8aa0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat__divider {
  width: 1px;
  height: 24px;
  background: rgba(39, 233, 181, 0.3);
}

/* Operadoras (compacto) */
.premium-card__operadoras {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.65rem;
  color: #8a8aa0;
  margin-bottom: 0.5rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(39, 233, 181, 0.15);
  flex-shrink: 0;
}

.premium-card__operadoras i {
  color: #27e9b5;
  font-size: 0.7rem;
}

/* Botão premium (compacto) */
.premium-card__btn {
  width: 100%;
  background: linear-gradient(135deg, #27e9b5, #0fdca5);
  border: none;
  color: #0a0f1e;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 8px 12px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: btnPulse 2s ease-in-out infinite;
  flex-shrink: 0;
  min-height: 40px;
}

.premium-card__btn:hover {
  transform: scale(0.98);
  background: linear-gradient(135deg, #1fcc9e, #0bb88a);
  box-shadow: 0 0 20px rgba(39, 233, 181, 0.6);
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(39, 233, 181, 0.4); }
  50% { box-shadow: 0 0 18px rgba(39, 233, 181, 0.7); }
}

/* Responsivo */
@media (max-width: 576px) {
  .premium-card {
    padding: 0.75rem;
    min-height: 320px;
  }
  
  .premium-card__img {
    height: 80px;
  }
  
  .premium-card__img img {
    max-width: 55px;
  }
  
  .premium-card__headline {
    font-size: 0.75rem;
  }
  
  .premium-card__sub {
    font-size: 0.6rem;
  }
  
  .stat__val {
    font-size: 0.8rem;
  }
  
  .premium-card__btn {
    font-size: 0.7rem;
    padding: 6px 10px;
    min-height: 36px;
  }
  
  .premium-badge {
    font-size: 0.5rem;
    padding: 2px 8px;
  }
  
  .premium-card__speed-ring {
    width: 60px;
    height: 60px;
  }
}