/* FONDO LUJO PROFUNDO */
body {
  background: radial-gradient(circle at 50% 20%, #1a1a1a 0%, #000 70%);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

/* CONTENEDOR PRINCIPAL */
.tc2 {
  text-align: center;
  padding: 3rem 1rem;
  perspective: 1000px;
  transition: transform 0.6s ease;
  position: relative;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  animation: revealUp 1.4s ease forwards;
}

/* CONTENEDOR IMAGEN 3D */
.tav {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

/* BORDE ORO GIRATORIO SUAVE */
.tav::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(
    #d4af37,
    #fff3b0,
    #b8860b,
    #fff3b0,
    #d4af37
  );
  animation: rotateGold 8s linear infinite;
  filter: blur(3px);
  z-index: -1;
}

/* IMAGEN PRINCIPAL */
.tav img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: all 0.6s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

/* BRILLO DIAMANTE REAL */
.tav::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -50%;
  width: 60%;
  height: 140%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.8) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(25deg);
  animation: diamondShine 6s infinite;
  pointer-events: none;
}

/* HOVER CINEMATOGRÁFICO */
.tc2:hover .tav {
  transform: rotateY(8deg) rotateX(6deg) scale(1.08);
}

.tc2:hover img {
  box-shadow: 0 40px 100px rgba(212,175,55,0.5);
}

/* TEXTO ULTRA MINIMAL */
.tn {
  font-size: 80px;
  font-weight: 600;
  margin-top: 25px;
  color: ##120f04;
  letter-spacing: 1px;
}

.tr {
  font-size: 30px;
  color: #d4af37;
  margin-top: 6px;
}

.ts {
  font-size: 30px;
  color: #999;
  margin-top: 6px;
}

/* PARTÍCULAS DORADAS SUTILES */
.tc2::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212,175,55,0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.04;
  animation: floatParticles 25s linear infinite;
  pointer-events: none;
}

/* ANIMACIONES */
@keyframes rotateGold {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes diamondShine {
  0% { left: -50%; }
  20% { left: 120%; }
  100% { left: 120%; }
}

@keyframes floatParticles {
  0% { background-position: 0 0; }
  100% { background-position: 0 600px; }
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* BORDE DORADO PREMIUM CON AURA */
.tav::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(
    #d4af37,
    #fff3b0,
    #b8860b,
    #fff3b0,
    #d4af37
  );
  animation: rotateGold 8s linear infinite;
  z-index: -1;
}

/* CÍRCULO DORADO SÓLIDO INTERNO */
.tav {
  padding: 6px; /* crea espacio para el borde */
  background: #d4af37; /* círculo dorado sólido */
  box-shadow:
    0 0 25px rgba(212,175,55,0.6),
    0 0 60px rgba(212,175,55,0.4),
    0 0 100px rgba(212,175,55,0.2);
}
.tav::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -60%;
  width: 70%;
  height: 160%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.9) 45%,
    rgba(255,215,0,0.6) 50%,
    rgba(255,255,255,0.9) 55%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(25deg);
  animation: diamondShine 6s infinite;
  pointer-events: none;
  border-radius: 50%;
}



.nav-cta {
  position: relative;
  background: linear-gradient(135deg, #6c5ce7, #00cec9);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Efecto hover */
.nav-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.5);
}

/* Efecto brillo animado */
.nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.nav-cta:hover::before {
  left: 130%;
}

/* BOTÓN PRINCIPAL */
.btn-p {
  position: relative;
  background: linear-gradient(135deg, #6c5ce7, #00cec9);
  color: white;
  padding: 14px 34px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover principal */
.btn-p:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(108, 92, 231, 0.6);
}

/* Brillo animado */
.btn-p::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.btn-p:hover::before {
  left: 130%;
}


/* BOTÓN SECUNDARIO */
.btn-o {
  position: relative;
  background: transparent;
  color: #6c5ce7;
  padding: 14px 34px;
  border: 2px solid #6c5ce7;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  margin-left: 15px;
}

/* Hover secundario */
.btn-o:hover {
  background: #6c5ce7;
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(108, 92, 231, 0.4);
}


.tienda-cats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ESTILO BASE */
.tienda-cat-btn {
  position: relative;
  background: #111;
  color: #d4af37;
  padding: 12px 28px;
  border: 1px solid #d4af37;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* DESTELLO DORADO */
.tienda-cat-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(212,175,55,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.6s;
}

.tienda-cat-btn:hover::before {
  left: 130%;
}

/* HOVER */
.tienda-cat-btn:hover {
  background: #d4af37;
  color: black;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

/* BOTÓN ACTIVO */
.tienda-cat-btn.active {
  background: linear-gradient(135deg, #d4af37, #f7e27c);
  color: black;
  box-shadow: 0 8px 25px rgba(212,175,55,0.6);
  border: none;
}