/* =TEXTO BRILLANTE= */
.shiny-text {
  display: inline-block;
  /* El fondo se aplica al bloque entero */
  --gold-base: #d6c1b8;
  /* dorado base */
  --gold-glow: #ffffff;
  /* destello */
  background-image: linear-gradient(110deg,
      var(--gold-base) 0%,
      var(--gold-base) 46%,
      var(--gold-glow) 50%,
      var(--gold-base) 54%,
      var(--gold-base) 100%);
  background-size: 300% 300%;
  background-repeat: no-repeat;
  background-position: 100% 0%;
  /* ← cambio clave */
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* Safari/Chrome */
  background-clip: text;
  -webkit-background-clip: text;
  animation: shineSweepSafe 6s linear infinite;
  will-change: background-position;
  font-size: 1.3rem;
  font-weight: 900;
}

@keyframes shineSweepSafe {
  0% {
    background-position: 100% 0%;
  }

  100% {
    background-position: 0% 0%;
  }
}

/* =/TEXTO BRILLANTE= */

/* =LOGO BRILLANTE= */
.logo-shiny {
  display: inline-block;
  font-family: "Cinzel Decorative", serif;
  font-size: 5.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  line-height: 1;
  text-align: center;

  --gold-base: #d6c1b8;
  --gold-base: #b99c62;
  --gold-glow: #ffffff;
  background-image: linear-gradient(110deg,
      var(--gold-base) 0%,
      var(--gold-base) 46%,
      var(--gold-glow) 50%,
      var(--gold-base) 54%,
      var(--gold-base) 100%);
  background-size: 300% 300%;
  background-repeat: no-repeat;
  background-position: 100% 0%;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shineSweepSafe 6s linear infinite;
  will-change: background-position;

  padding-right: .12em;
  overflow: visible;

  /* efecto metálico */
  -webkit-text-stroke: 0.7px rgba(2, 1, 0, 0.15);

  /* añadido: evita subrayado feo en <a> */
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 9999;
}

.logo-shiny {
  display: inline-block;
  line-height: 1.28;
  padding-bottom: 4px;
}

.logo-shiny:link,
.logo-shiny:visited,
.logo-shiny:hover,
.logo-shiny:focus,
.logo-shiny:active {
  text-decoration: none;
  color: inherit;
  border: 0;
  box-shadow: none;
}

.logo-shiny::before,
.logo-shiny::after {
  pointer-events: none;
}

/* =/LOGO BRILLANTE= */


/* =SUBTITULO DEL LOGO= */
.logo-subtitle {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: 400;
  /* más elegante que 500 */
  letter-spacing: 5px;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  color: #000;
  margin-bottom: 0;

  /* suavizado extra */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

  /* realce elegante */
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}

/* =/SUBTITULO DEL LOGO= */