:root {
  --bg: #000;
  --text: #fff;
  --muted: #b9b9c4;
  --line: rgba(255, 255, 255, .14);
  --hot: #ff2d86;
  --orange: #ff7900;
  --yellow: #ffd400;
  --card: rgba(255, 255, 255, .07);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #000;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* HEADER MÁS BAJO, NEGRO Y LOGO MÁS PEQUEÑO */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 10px clamp(16px, 4vw, 56px);
  background: #000;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .65);
}

.brand-logo {
  width: clamp(92px, 11vw, 145px);
  height: auto;
}

.nav {
  display: flex;
  gap: clamp(10px, 2vw, 28px);
  align-items: center;
}

.nav a {
  font-weight: 800;
  font-size: clamp(.78rem, 1.1vw, .95rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  opacity: .85;
}

.nav a:hover {
  opacity: 1;
  color: var(--yellow);
}

.menu-btn {
  display: none;
  background: rgba(255, 255, 255, .08);
  color: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 1.4rem;
  padding: .35rem .65rem;
}

.section {
  min-height: 100svh;
  padding: clamp(92px, 12vw, 150px) clamp(18px, 5vw, 70px);
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  position: relative;
  isolation: isolate;
}

/* DEGRADADO INVERTIDO: NEGRO ARRIBA, COLOR BAJANDO */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      #000 0%,
      #000 18%,
      #080305 38%,
      rgba(255, 45, 134, .18) 58%,
      rgba(255, 121, 0, .28) 78%,
      rgba(255, 212, 0, .14) 100%
    ),
    radial-gradient(circle at 18% 72%, rgba(255, 45, 134, .34), transparent 30%),
    radial-gradient(circle at 82% 82%, rgba(255, 121, 0, .32), transparent 32%);
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, .045) 0 1px,
    transparent 1px 11px
  );
  opacity: .22;
  mask-image: radial-gradient(circle at 50% 75%, #000 0%, transparent 72%);
}

.hero-content {
  max-width: 720px;
}

.radio-logo {
  width: clamp(190px, 26vw, 360px);
  margin-bottom: clamp(24px, 4vw, 42px);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .8));
}

.main-logo {
  width: min(620px, 92vw);
  filter: drop-shadow(0 20px 35px rgba(255, 121, 0, .15));
}

.tagline {
  text-transform: uppercase;
  letter-spacing: clamp(.18em, .8vw, .55em);
  color: var(--muted);
  font-weight: 800;
  margin: 26px 0;
}

.hero h1 {
  font-size: clamp(2.1rem, 6.5vw, 6.8rem);
  line-height: .92;
  margin: 0 0 22px;
  font-weight: 900;
  letter-spacing: -.07em;
}

.intro {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  border: 1px solid var(--line);
  transition: .2s transform, .2s opacity;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(90deg, var(--hot), var(--orange), var(--yellow));
  color: #000;
  border: 0;
}

.ghost {
  background: rgba(255, 255, 255, .08);
}

.poster-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.poster-stack img {
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .6);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.poster-stack img:first-child {
  transform: translateY(35px);
}

.section-title {
  margin-bottom: 34px;
}

.section-title span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.section-title h2 {
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: .98;
  margin: .25em 0 0;
  letter-spacing: -.06em;
}

.cards-section,
.contact {
  min-height: auto;
}

.request-card,
.contact-box {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035));
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(20px, 4vw, 38px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
}

.form {
  display: grid;
  gap: 16px;
}

.form label {
  font-weight: 800;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  background: #060606;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--orange);
}

.form-help {
  color: var(--muted);
  line-height: 1.6;
}

.form-help h3 {
  color: #fff;
  font-size: 1.6rem;
}

.status {
  color: var(--yellow);
  font-weight: 800;
}

.grid,
.sessions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.glass-card,
.sessions article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  min-height: 220px;
}

.glass-card h3,
.sessions h3 {
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.big {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  margin: 0;
  background: linear-gradient(90deg, var(--hot), var(--yellow));
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 900;
}

.glass-card p,
.sessions p {
  color: var(--muted);
  line-height: 1.55;
}

.sessions article span {
  color: var(--orange);
  font-weight: 900;
}

.contact-box {
  grid-template-columns: 1fr;
  min-height: auto;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 34px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer img {
  width: 190px;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 64px;
    padding: 8px 16px;
  }

  .brand-logo {
    width: 105px;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #000;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 94px;
  }

  .poster-stack {
    max-width: 620px;
    margin: auto;
  }

  .request-card {
    grid-template-columns: 1fr;
  }

  .grid,
  .sessions {
    grid-template-columns: 1fr;
  }

  .section {
    min-height: auto;
  }
}

@media (max-width: 540px) {
  .brand-logo {
    width: 95px;
  }

  .poster-stack {
    grid-template-columns: 1fr;
  }

  .poster-stack img:first-child {
    transform: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .tagline {
    letter-spacing: .16em;
  }

  .footer {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer img {
    width: 160px;
  }
}

@media (min-width: 1500px) {
  :root {
    --max: 1420px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 650px);
  }
}
/* SELECTOR DE IDIOMA */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 14px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.lang-switcher button {
  min-width: 38px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  cursor: pointer;
}

.lang-switcher button.active {
  color: #000;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

@media (max-width: 900px) {
  .lang-switcher {
    margin-left: auto;
    margin-right: 10px;
  }

  .lang-switcher button {
    min-width: 34px;
    height: 28px;
    font-size: .72rem;
  }
}

@media (max-width: 420px) {
  .lang-switcher {
    gap: 3px;
    padding: 3px;
  }

  .lang-switcher button {
    min-width: 30px;
    height: 26px;
  }
}

/* IMÁGENES EXTRA SOLO PARA MÓVIL, DEBAJO DE LOS CARTELES */
.mobile-radio-previews {
  display: none;
}

@media (max-width: 900px) {
  .mobile-radio-previews {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 620px;
    margin: 10px auto 0;
  }

  .mobile-radio-previews img {
    width: 100%;
    border-radius: 22px;
    border: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .58);
    background: #fff;
    object-fit: cover;
  }
}

/* AJUSTES DESKTOP: carteles arriba, alineados y enlaces Ràdio Cubelles */
.hero {
  align-items: start;
}

.hero-media {
  align-self: start;
  width: 100%;
  margin-top: clamp(8px, 2vw, 34px);
}

.poster-stack {
  align-items: start;
}

.poster-stack img {
  width: 100%;
  height: clamp(300px, 25vw, 460px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
}

.poster-stack img:first-child {
  transform: none;
}

.desktop-radio-previews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.desktop-radio-previews a,
.mobile-radio-previews a {
  display: block;
}

.desktop-radio-previews img {
  width: 100%;
  height: clamp(120px, 11vw, 190px);
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .58);
  background: #fff;
  object-fit: cover;
  object-position: left top;
  transition: transform .2s ease, border-color .2s ease;
}

.desktop-radio-previews a:hover img {
  transform: translateY(-3px);
  border-color: rgba(255, 121, 0, .55);
}

/* Instagram visible por la web */
.insta-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 7px;
  background:
    radial-gradient(circle at 68% 32%, #fff 0 7%, transparent 8%),
    radial-gradient(circle at 50% 55%, transparent 0 28%, #fff 29% 38%, transparent 39%),
    linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 0 18px rgba(255, 45, 134, .38);
}

.insta-pill,
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  color: #fff;
}

.insta-pill {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  white-space: nowrap;
}

.insta-pill:hover,
.insta-link:hover {
  color: var(--yellow);
}

.contact-box {
  gap: 18px;
}

.contact-box p {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.insta-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(131, 58, 180, .32), rgba(253, 29, 29, .22), rgba(252, 176, 69, .24));
  max-width: 440px;
}

.insta-card span:not(.insta-icon) {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.insta-card strong {
  grid-column: 2;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.big-insta {
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
  border-radius: 16px;
}

@media (max-width: 1120px) {
  .header-insta span:last-child {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    align-items: center;
  }

  .hero-media {
    margin-top: 0;
  }

  .poster-stack img {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .desktop-radio-previews {
    display: none;
  }

  .header-insta {
    display: none;
  }
}

@media (min-width: 901px) {
  .mobile-radio-previews {
    display: none !important;
  }
}


/* DJ HERO IMAGE */
.hero-media{
  position: relative;
}

.hero-dj-image{
  position: absolute;
  right: -40px;
  bottom: -160px;
  width: min(42vw, 720px);
  z-index: 1;
  pointer-events:none;
}

.hero-dj-image img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 72%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 72%, rgba(0,0,0,0) 100%);
  filter:
    drop-shadow(0 30px 50px rgba(0,0,0,.7))
    saturate(1.05)
    contrast(1.02);
}

@media (max-width: 1100px){
  .hero-dj-image{
    width:min(46vw,520px);
    right:-20px;
    bottom:-100px;
  }
}

@media (max-width: 900px){
  .hero-dj-image{
    display:none;
  }
}


/* DJ photo lower + rounded */
.dj-photo-wrapper{
  margin-top: 48px !important;
}

.dj-photo-wrapper img,
.dj-photo{
  border-radius: 28px !important;
  overflow: hidden;
}

/* poster clickable */
.poster-link{
  display:block;
  cursor:pointer;
}

/* lightbox */
.lightbox-modal{
  display:none;
  position:fixed;
  z-index:99999;
  inset:0;
  background:rgba(0,0,0,.92);
  align-items:center;
  justify-content:center;
  padding:40px;
}

.lightbox-modal.active{
  display:flex;
}

.lightbox-content{
  max-width:90vw;
  max-height:90vh;
  border-radius:24px;
  box-shadow:0 0 40px rgba(0,0,0,.8);
}

.lightbox-close{
  position:absolute;
  top:20px;
  right:30px;
  color:white;
  font-size:48px;
  cursor:pointer;
  font-weight:bold;
}


/* FIX DJ PHOTO */
.dj-photo-wrapper,
.dj-radio-studio,
.hero-dj-photo{
    margin-top: 95px !important;
    padding-top: 0 !important;
}

.dj-photo-wrapper img,
.dj-radio-studio img,
.hero-dj-photo img{
    border-radius: 28px !important;
    overflow:hidden !important;
    display:block;
}

/* Posters spacing */
.poster-grid,
.poster-stack{
    gap: 26px !important;
}

/* clickable posters */
.poster-link{
    cursor:pointer;
    display:block;
}

.poster-link img{
    transition:transform .25s ease;
}

.poster-link:hover img{
    transform:scale(1.02);
}

/* lightbox */
.lightbox-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.94);
  z-index:999999;
  align-items:center;
  justify-content:center;
  padding:40px;
}

.lightbox-modal.active{
  display:flex;
}

.lightbox-content{
  max-width:92vw;
  max-height:92vh;
  border-radius:24px;
  box-shadow:0 0 50px rgba(0,0,0,.9);
}

.lightbox-close{
  position:absolute;
  top:18px;
  right:28px;
  color:#fff;
  font-size:54px;
  font-weight:bold;
  cursor:pointer;
}


/* === FIX FINAL FOTO DJ STUDIO: debajo de todo, sin pisar carteles === */
@media (min-width: 901px) {
  .hero-dj-image {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 46px !important;
    z-index: auto !important;
    pointer-events: auto !important;
    display: block !important;
    clear: both !important;
  }

  .hero-dj-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    filter: drop-shadow(0 25px 60px rgba(0,0,0,.65)) !important;
    border: 1px solid var(--line) !important;
  }

  .desktop-radio-previews {
    margin-bottom: 0 !important;
  }
}


/* SINTONIES */
.sintonies-section{min-height:auto;}
.sintonies-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;}
.tune-card{background:linear-gradient(135deg,rgba(255,255,255,.10),rgba(255,255,255,.035));border:1px solid var(--line,rgba(255,255,255,.14));border-radius:28px;padding:30px;min-height:230px;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;cursor:pointer;transition:transform .2s ease,border-color .2s ease,background .2s ease;}
.tune-card:hover{transform:translateY(-3px);border-color:rgba(255,184,0,.55);}
.tune-card.playing{background:linear-gradient(135deg,rgba(255,45,134,.16),rgba(255,121,0,.12));border-color:rgba(255,184,0,.65);}
.tune-play{width:78px;height:78px;border-radius:24px;border:1px solid rgba(255,255,255,.18);background:#080808;display:grid;place-items:center;margin-bottom:22px;cursor:pointer;box-shadow:0 18px 35px rgba(0,0,0,.35);}
.tune-icon{font-size:2.7rem;font-weight:900;line-height:1;}
.tune-icon-girl{color:#ff2d86;text-shadow:0 0 18px rgba(255,45,134,.65);}
.tune-icon-boy{color:#24a7ff;text-shadow:0 0 18px rgba(36,167,255,.65);}
.tune-icon-mixed{display:flex;align-items:center;}
.tune-icon-mixed span:first-child{color:#ff2d86;text-shadow:0 0 18px rgba(255,45,134,.65);margin-right:-4px;}
.tune-icon-mixed span:last-child{color:#24a7ff;text-shadow:0 0 18px rgba(36,167,255,.65);}
.tune-card h3{margin:0 0 8px;font-size:1.35rem;}
.tune-card p{margin:0;color:var(--muted,#b9b9c4);font-weight:800;}
@media (max-width:900px){.sintonies-grid{grid-template-columns:1fr;}}


/* VOTACIÓ SINTONIES */
.sintonies-intro{
  max-width: 920px;
  margin: -16px 0 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  font-weight: 700;
}

.sintonies-intro::before{
  content:"🎧 💿 🕺 ";
}

.vote-btn{
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0,0,0,.25);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.vote-btn:hover{
  transform: translateY(-2px) scale(1.02);
  background: rgba(255,45,134,.16);
  border-color: rgba(255,45,134,.55);
}

.vote-btn.voted{
  background: linear-gradient(90deg, rgba(255,45,134,.95), rgba(255,121,0,.95));
  color:#000;
}

.vote-heart{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #ff2d86;
  font-size: 1.25rem;
  line-height: 1;
}

.vote-count{
  min-width: 38px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #000;
  color: #fff;
  padding: 0 10px;
}

.vote-pop{
  position: fixed;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 999999;
  font-size: 4rem;
  animation: voteHeartPop .9s ease forwards;
  filter: drop-shadow(0 8px 24px rgba(255,45,134,.65));
}

@keyframes voteHeartPop{
  0%{ opacity:0; transform: translate(-50%, -50%) scale(.35) rotate(-15deg); }
  25%{ opacity:1; transform: translate(-50%, -70%) scale(1.25) rotate(8deg); }
  100%{ opacity:0; transform: translate(-50%, -150%) scale(.55) rotate(20deg); }
}

.vote-btn.pulse .vote-heart{
  animation: votePulse .55s ease;
}

@keyframes votePulse{
  0%,100%{ transform:scale(1); }
  45%{ transform:scale(1.35); }
}


/* Ajuste final: degradado oscuro repetido en espejo y final negro */
body{
  background:
    linear-gradient(180deg,
      #000 0px,
      #050102 260px,
      #230713 620px,
      #6b1432 980px,
      #6a2a05 1320px,
      #160802 1620px,
      #000 1840px,
      #160802 2140px,
      #6a2a05 2440px,
      #6b1432 2800px,
      #230713 3160px,
      #050102 3420px,
      #000 3700px,
      #000 100%
    ) !important;
}

.hero-bg{
  background:
    radial-gradient(circle at 18% 72%, rgba(255,45,134,.34), transparent 30%),
    radial-gradient(circle at 82% 82%, rgba(255,121,0,.32), transparent 32%),
    linear-gradient(180deg, #000 0%, #000 18%, #080305 38%, rgba(255,45,134,.18) 58%, rgba(255,121,0,.28) 78%, rgba(255,212,0,.14) 100%) !important;
}

.section:not(.contact){ background: transparent !important; }
.contact, .footer{ background:#000 !important; }

.dedicatoria-side{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:16px;
}

.dedicatoria-img{
  width:100%;
  max-width:430px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.2);
  box-shadow:0 24px 70px rgba(0,0,0,.6);
}

.soon-badge{
  display:inline-block;
  margin-top:12px !important;
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(90deg,#ff2d86,#ff7900,#ffd400);
  color:#000 !important;
  font-weight:1000;
  letter-spacing:.08em;
  box-shadow:0 0 26px rgba(255,121,0,.38);
  animation:pulseSoon 1.7s ease-in-out infinite;
}

@keyframes pulseSoon{
  0%,100%{ transform:scale(1); filter:brightness(1); }
  50%{ transform:scale(1.04); filter:brightness(1.18); }
}

@media (max-width:900px){
  .dedicatoria-img{ max-width:360px; }
}
