.tvg-assistant {
  background: var(--tvg-bg);
  color: var(--tvg-text);
  border-radius: var(--tvg-radius);
}

.tvg-btn {
  background: var(--tvg-primary);
}

/* Buscador */
.tvg-search-card {
  display: flex;
  gap: 8px;
  background: #fff;
  padding: 14px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  margin-bottom: 24px;
}

.tvg-search-card input {
  flex: 1;
  border: none;
  font-size: 16px;
  outline: none;
}

/* Resultados */
.tvg-results {
  margin-top: 10px;
}

/* Grid */
.tvg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

/* Card */
.tvg-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
  transition: all .25s ease;
}

.tvg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.tvg-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.tvg-card-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.tvg-card-body {
  padding: 14px;
}

.tvg-card-body h3 {
  font-size: 18px;
  margin: 0 0 6px;
}

.tvg-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

.tvg-desc {
  font-size: 14px;
  color: #444;
}

.tvg-section-title {
  margin: 30px 0 10px;
}

/* Mobile */
@media (max-width: 600px) {
  .tvg-card-img img {
    height: 140px;
  }
}
.tvg-mic-btn {
  background: #f3f3f3;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  transition: all .2s ease;
}

.tvg-mic-btn:hover {
  transform: scale(1.1);
}
