:root {
  --black: #080808;
  --black-soft: #101010;
  --panel: #151310;
  --ivory: #f1ebdf;
  --muted: #a9a198;
  --copper: #bd7b47;
  --gold: #d1a66f;
  --wine: #541f2c;
  --line: rgba(241, 235, 223, 0.16);
  --container: min(1180px, calc(100% - 40px));
  --font-display: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 130px 0;
}

.kicker,
.eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 520px;
  height: 520px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 123, 71, 0.09), transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 1002;
  width: 108px;
}

.brand img {
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-panel a {
  position: relative;
  color: rgba(241, 235, 223, 0.82);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-panel a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.nav-panel a:hover {
  color: var(--ivory);
}

.nav-panel a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  position: relative;
  z-index: 1002;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 30px;
}

.menu-toggle.active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  animation: heroZoom 12s ease-out forwards;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.60) 46%, rgba(8, 8, 8, 0.20) 75%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.90) 0%, transparent 40%);
}

.hero-grain {
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero h1 {
  max-width: 850px;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 10vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(241, 235, 223, 0.78);
}

.hero-copy {
  max-width: 550px;
  margin-top: 30px;
  color: rgba(241, 235, 223, 0.72);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--copper);
  color: #0b0908;
}

.button-primary:hover {
  background: var(--gold);
}

.button-ghost {
  border-color: rgba(241, 235, 223, 0.35);
  background: rgba(8, 8, 8, 0.20);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--black);
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-links {
  display: flex;
  gap: 24px;
}

.social-links a,
.scroll-cue {
  color: rgba(241, 235, 223, 0.58);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.social-links a:hover,
.scroll-cue:hover {
  color: var(--ivory);
}

.scroll-cue span {
  display: inline-block;
  margin-left: 10px;
  animation: arrowDown 1.6s infinite;
}

.story {
  background:
    radial-gradient(circle at 88% 20%, rgba(84, 31, 44, 0.22), transparent 32%),
    var(--black-soft);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.25fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.section-label {
  align-self: start;
  padding-top: 4px;
}

.section-label span {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 2.5rem;
}

.section-label p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.story-copy h2,
.section-heading h2,
.album-content h2,
.video-heading h2,
.contact-title h2 {
  margin-top: 15px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-transform: uppercase;
}

.story-copy>p:not(.kicker) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.story-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line);
}

.visual-frame::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(209, 166, 111, 0.24);
  content: "";
  pointer-events: none;
}

.visual-frame img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.floating-note {
  position: absolute;
  right: -30px;
  bottom: 36px;
  display: flex;
  min-width: 190px;
  flex-direction: column;
  padding: 22px;
  border-left: 2px solid var(--copper);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(12px);
}

.floating-note strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.floating-note span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.members {
  background: var(--black);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 58px;
}

.section-heading>p {
  max-width: 390px;
  color: var(--muted);
  font-size: 0.9rem;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.member-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--panel);
}

.member-card:nth-child(even) {
  margin-top: 48px;
}

.member-card img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.65) saturate(0.6);
  transition: transform 0.65s cubic-bezier(0.2, 0.65, 0.25, 1), filter 0.5s ease;
}

.member-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.02) 65%);
}

.member-info {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
  z-index: 2;
}

.member-info span {
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.member-info h3 {
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

.member-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0) saturate(0.85);
}

.music {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(84, 31, 44, 0.42), transparent 42%),
    #0c0b0a;
}

.music::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.music-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.28;
}

.orb-one {
  top: -130px;
  right: -120px;
  width: 370px;
  height: 370px;
  background: radial-gradient(circle at 35% 35%, var(--gold), transparent 70%);
}

.orb-two {
  bottom: -150px;
  left: -110px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 55% 40%, var(--wine), transparent 70%);
}

.music-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 100px;
  align-items: center;
}

.album-cover-wrap {
  position: relative;
  max-width: 520px;
  padding-right: 42px;
}

.album-cover-wrap>img {
  position: relative;
  z-index: 2;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .45);
}

.vinyl {
  position: absolute;
  top: 8%;
  right: 0;
  width: 84%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--copper) 0 7%, #090909 7.5% 12%, transparent 12.5%),
    repeating-radial-gradient(circle at center, #111 0 4px, #202020 5px 6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .48);
}

.album-content h2 {
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.album-meta {
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.album-description {
  max-width: 580px;
  margin-top: 24px;
  color: var(--muted);
}


.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 28px;
}

.platform-links a {
  color: rgba(241, 235, 223, 0.68);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.platform-links a span {
  margin-left: 5px;
  color: var(--copper);
}

.platform-links a:hover {
  color: var(--ivory);
}

.video-section {
  background: var(--black-soft);
}

.video-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.contact {
  background:
    radial-gradient(circle at 15% 100%, rgba(84, 31, 44, .35), transparent 38%),
    var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: end;
}

.contact-data {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 55px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-data div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.contact-data span {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-data a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.contact-data a:hover {
  color: var(--ivory);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--black);
}

.footer-content {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-content img {
  width: 82px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.footer-content p,
.footer-content a {
  color: #77716a;
  font-size: 0.69rem;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.10s;
}

.delay-2 {
  transition-delay: 0.20s;
}

.delay-3 {
  transition-delay: 0.30s;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@keyframes arrowDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 105px 0;
  }

  .story-grid {
    grid-template-columns: 0.35fr 1fr 0.9fr;
    gap: 42px;
  }

  .music-grid {
    gap: 60px;
  }

  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .member-card:nth-child(even) {
    margin-top: 0;
  }

  .member-card:nth-child(2),
  .member-card:nth-child(4) {
    transform: translateY(28px);
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(100% - 28px, 680px);
  }

  .section {
    padding: 85px 0;
  }

  .cursor-glow {
    display: none;
  }

  .navbar {
    min-height: 76px;
  }

  .brand {
    width: 92px;
  }

  .brand img {
    height: 44px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 0 38px;
    background:
      radial-gradient(circle at 80% 15%, rgba(84, 31, 44, .38), transparent 30%),
      rgba(8, 8, 8, .98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity .3s ease, transform .3s ease;
  }

  .nav-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-panel a {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 12vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.02em;
  }

  .hero {
    min-height: 860px;
    align-items: flex-end;
    padding-bottom: 160px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 8, 8, .96) 0%, rgba(8, 8, 8, .48) 60%, rgba(8, 8, 8, .22) 100%),
      linear-gradient(90deg, rgba(8, 8, 8, .52), transparent);
  }

  .hero-content {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6.5rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    flex: 1 1 180px;
  }

  .hero-bottom {
    bottom: 26px;
    align-items: flex-end;
  }

  .social-links {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .story-grid,
  .music-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 45px;
  }

  .section-label {
    display: none;
  }

  .story-copy {
    order: 1;
  }

  .story-visual {
    order: 2;
    max-width: 520px;
  }

  .floating-note {
    right: 12px;
    bottom: 22px;
  }

  .section-heading,
  .video-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .section-heading>p {
    max-width: 100%;
  }

  .members-grid {
    gap: 10px;
  }

  .member-card {
    min-height: 430px;
  }

  .member-card:nth-child(2),
  .member-card:nth-child(4) {
    transform: none;
  }

  .member-info {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .album-art {
    max-width: 560px;
  }

  .music-grid {
    gap: 70px;
  }

  .album-cover-wrap {
    padding-right: 34px;
  }

  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 20vw, 5rem);
  }

  .hero-copy {
    font-size: 0.92rem;
  }

  .scroll-cue {
    display: none;
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .member-card {
    min-height: 520px;
  }

  .album-cover-wrap {
    padding-right: 24px;
  }

  .contact-data {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.social-links a:hover {
  color: #0a0a0a;
  background: #d7aa65;
  border-color: #d7aa65;
  transform: translateY(-4px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links svg .icon-fill {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 768px) {
  .social-links a {
    width: 40px;
    height: 40px;
  }

  .social-links svg {
    width: 18px;
    height: 18px;
  }
}
.logo,
.footer-logo{
    font-family: "Times New Roman", Times, serif;
    font-size: rem;
    color: white;
    font-weight: bold;
    letter-spacing: 3px;
}
/* Logo tipográfico YURAQ */
.brand-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
  padding: 5px 0;
}

.brand-logo span {
  position: relative;
  display: inline-block;

  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.22em;

  color: #ffffff;
  background: linear-gradient(
    110deg,
    #ffffff 0%,
    #ffffff 35%,
    #bdbdbd 48%,
    #ffffff 60%,
    #ffffff 100%
  );
  background-size: 220% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.25));
  transition:
    transform 0.35s ease,
    filter 0.35s ease,
    letter-spacing 0.35s ease;

  animation: logoShine 5s linear infinite;
}

/* Línea decorativa inferior */
.brand-logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 35%;
  height: 2px;

  background: linear-gradient(
    90deg,
    #ffffff,
    rgba(255, 255, 255, 0)
  );

  transition: width 0.4s ease;
}

.brand-logo:hover span {
  letter-spacing: 0.28em;
  transform: translateY(-2px);
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.45))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.15));
}

.brand-logo:hover::after {
  width: 100%;
}

/* Brillo que recorre las letras */
@keyframes logoShine {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

/* Adaptación para celulares */
@media (max-width: 768px) {
  .brand-logo span {
    font-size: 1.8rem;
    letter-spacing: 0.17em;
  }

  .brand-logo:hover span {
    letter-spacing: 0.2em;
  }
}

/* Respeta usuarios que desactivan animaciones */
@media (prefers-reduced-motion: reduce) {
  .brand-logo span {
    animation: none;
  }
}
.spotify-player {
  position: relative;
  width: 100%;
  margin-top: 30px;
  overflow: hidden;

  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;

  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(29, 185, 84, 0.06);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.spotify-player::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );

  pointer-events: none;
}

.spotify-player:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 185, 84, 0.35);

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 45px rgba(29, 185, 84, 0.1);
}

.spotify-player iframe {
  display: block;
  width: 100%;
  min-height: 500px;
  border: none;
  border-radius: 22px;
}

/* Botón para abrir Spotify */
.spotify-link {
  width: fit-content;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin-top: 22px;
  padding: 13px 20px;

  color: #ffffff;
  background: rgba(29, 185, 84, 0.1);
  border: 1px solid rgba(29, 185, 84, 0.35);
  border-radius: 999px;

  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.spotify-link svg {
  width: 23px;
  height: 23px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spotify-link svg circle {
  fill: currentColor;
  stroke: none;
}

.spotify-link svg path {
  stroke: #080808;
}

.spotify-link:hover {
  color: #080808;
  background: #1db954;
  border-color: #1db954;

  transform: translateY(-3px);

  box-shadow:
    0 12px 30px rgba(29, 185, 84, 0.22);
}

.spotify-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.spotify-link:hover .spotify-arrow {
  transform: translate(3px, -3px);
}

/* Adaptación para celulares */
@media (max-width: 768px) {
  .spotify-player {
    margin-top: 24px;
    border-radius: 16px;
  }

  .spotify-player iframe {
    min-height: 450px;
    height: 450px;
    border-radius: 16px;
  }

  .spotify-link {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .spotify-player iframe {
    min-height: 420px;
    height: 420px;
  }
}

/* =========================================
   VIDEO DESTACADO
========================================= */
.video-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.video-preview {
  display: block;
  width: 100%;
  aspect-ratio: 640 / 268;
  object-fit: contain;
  background: #000;
}

.video-presentation {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 25%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-title {
  position: absolute;
  right: 32px;
  bottom: 60px;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #fff;
  pointer-events: none;
}

.video-title span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.video-title strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

.video-play-button {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #080808;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.28s ease, background-color 0.28s ease;
}

.video-play-button:hover {
  background: #fff;
  transform: scale(1.08);
}

.video-play-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

.video-play-button svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
  fill: currentColor;
}

.video-card.is-playing .video-presentation {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 768px) {
  .video-card {
    border-radius: 16px;
  }

  .video-title {
    right: 20px;
    bottom: 50px;
    left: 20px;
  }

  .video-title strong {
    font-size: clamp(1.45rem, 7vw, 2.4rem);
  }

  .video-play-button {
    width: 66px;
    height: 66px;
  }

  .video-play-button svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .video-title {
    bottom: 42px;
  }

  .video-title span {
    font-size: 0.6rem;
  }
}
