/* Banda de info para Sounds */
.fv-sounds-band {
  padding: 32px 0 24px;
  background: radial-gradient(circle at top, #020617 0, #000000 65%);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
     max-width: 1165px;
  margin: 0 auto;
}

.fv-sounds-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}

.fv-sounds-copy {
  flex: 1 1 320px;
  max-width: 460px;
}

.fv-section-subtitle {
  margin-top: 8px;
  color: #9ca3af;
  max-width: 420px;
}

/* pills pequeños */
.fv-sounds-pills {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fv-pill.small {
  padding: 4px 10px;
  font-size: 0.7rem;
  background: rgba(129, 140, 248, 0.18);
}

/* grid de features */
.fv-sounds-grid {
  flex: 1 1 380px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.fv-sound-feature {
  padding: 14px 16px;
  border-radius: 14px;
  background: radial-gradient(circle at top, #020617 0, #020617 55%);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.7);
}

.fv-sound-feature h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.fv-sound-feature p {
  font-size: 0.85rem;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .fv-sounds-inner {
    flex-direction: column;
  }
}
/* Cards tipo gateway (4 botones grandes) */
.fv-sounds-gateways {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.fv-sound-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
}

/* Fondos por tipo */
.fv-sound-card.all {
  background: radial-gradient(circle at top left, #a855f7 0, #020617 65%);
}

.fv-sound-card.music {
  background: radial-gradient(circle at top left, #ef4444 0, #020617 65%);
}

.fv-sound-card.sfx {
  background: radial-gradient(circle at top left, #1d4ed8 0, #020617 65%);
}

.fv-sound-card.nulled {
  background: radial-gradient(circle at top left, #059669 0, #020617 65%);
}

/* Texto dentro de la card */
.fv-sound-card-text {
  position: relative;
  z-index: 2;
}

.fv-sound-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.fv-sound-cta {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e5e7eb;
}

/* Efecto de brillo diagonal (simulando el XT gigante) */
.fv-sound-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.12), transparent 60%);
  transform: translateX(-15%);
  mix-blend-mode: screen;
  opacity: 0.8;
}

/* Hover */
.fv-sound-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.fv-sound-card:hover .fv-sound-cta {
  color: #ffffff;
}

/* Banda principal de Tuts */
.fv-tuts-band {
  padding: 32px 0 32px;
  background: radial-gradient(circle at top, #020617 0, #000000 70%);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  max-width: 1165px;
  margin: 0 auto;
}

.fv-tuts-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* columnas */
.fv-tuts-column {
  color: #e5e7eb;
}

/* lista izquierda */
.fv-tuts-list {
  list-style: none;
  margin: 16px 0 18px;
  padding: 0;
}

.fv-tuts-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.fv-tuts-title {
  font-size: 0.95rem;
}

.fv-tuts-tag {
  margin-left: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.fv-tuts-tag.mzed {
  background: rgba(59, 130, 246, 0.16);
  color: #bfdbfe;
}

.fv-tuts-tag.masterclass {
  background: rgba(244, 114, 182, 0.18);
  color: #f9a8d4;
}

.fv-tuts-tag.udemy {
  background: rgba(129, 140, 248, 0.18);
  color: #c4b5fd;
}

/* items derecha */
.fv-tuts-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
}

.fv-tuts-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* puedes luego poner iconos reales si quieres */
.fv-tuts-icon.crown::before {
  content: "👑";
}
.fv-tuts-icon.check::before {
  content: "✔";
}

.fv-tuts-item-title {
  margin: 2px 0 6px;
  font-size: 0.95rem;
}

/* botones */
.fv-tuts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.fv-tuts-btn.primary {
  background: linear-gradient(135deg, #6366f1, #a855f7);
}

.fv-tuts-btn.secondary {
  background: linear-gradient(135deg, #ec4899, #f97316);
}

/* links "See Everything" */
.fv-tuts-see-all {
  display: inline-flex;
  flex-direction: column;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.fv-tuts-see-all span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

/* responsive */
@media (max-width: 600px) {
  .fv-tuts-inner {
    gap: 24px;
  }
}

