﻿:root {
  --bg: #fff9fa;
  --pink: #ffd9e3;
  --red: #b80035;
  --red-2: #e60045;
  --rose: #ff6f9f;
  --wine: #6e0023;
  --blue: #00658d;
  --text: #1c1b1b;
  --muted: #5d3f40;
  --line: #efd4d8;
  --soft: #f6f3f2;
  --footer: #e5e2e1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.58) 0 84px, transparent 85px),
    radial-gradient(circle at 76% 4%, rgba(255, 140, 179, 0.18) 0 140px, transparent 141px),
    radial-gradient(circle, rgba(230, 0, 69, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    #fff5f7;
  color: var(--text);
  font-family: "Be Vietnam Pro", Arial, sans-serif;
}

.topbar,
.hero-kicker,
.hero-title,
.player,
.section-title,
.schedule-grid,
.app-banner,
.mini-section,
.footer {
  animation: pageEnter 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.topbar {
  animation-delay: 40ms;
}

.hero-kicker {
  animation-delay: 120ms;
}

.hero-title {
  animation-delay: 190ms;
}

.player {
  animation-delay: 280ms;
}

.section-title,
.schedule-grid {
  animation-delay: 360ms;
}

.app-banner {
  animation-delay: 430ms;
}

.mini-section {
  animation-delay: 500ms;
}

.footer {
  animation-delay: 560ms;
}

.floating-hearts {
  position: fixed;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
}

.floating-hearts span {
  position: absolute;
  bottom: -60px;
  width: 18px;
  height: 16px;
  opacity: 0.18;
  animation: floatHeart 18s linear infinite;
}

.floating-hearts span::before,
.floating-hearts span::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 16px;
  background: var(--red);
  border-radius: 10px 10px 0 0;
  transform-origin: 0 100%;
}

.floating-hearts span::before {
  left: 9px;
  transform: rotate(-45deg);
}

.floating-hearts span::after {
  left: 0;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

.floating-hearts span:nth-child(1) {
  left: 8%;
  animation-delay: -2s;
  animation-duration: 22s;
}

.floating-hearts span:nth-child(2) {
  left: 21%;
  transform: scale(0.75);
  animation-delay: -9s;
  animation-duration: 26s;
}

.floating-hearts span:nth-child(3) {
  left: 36%;
  transform: scale(1.15);
  animation-delay: -14s;
  animation-duration: 24s;
}

.floating-hearts span:nth-child(4) {
  left: 52%;
  transform: scale(0.65);
  animation-delay: -5s;
  animation-duration: 28s;
}

.floating-hearts span:nth-child(5) {
  left: 68%;
  animation-delay: -17s;
  animation-duration: 25s;
}

.floating-hearts span:nth-child(6) {
  left: 82%;
  transform: scale(0.8);
  animation-delay: -11s;
  animation-duration: 27s;
}

.floating-hearts span:nth-child(7) {
  left: 92%;
  transform: scale(1.05);
  animation-delay: -20s;
  animation-duration: 29s;
}

.floating-hearts span:nth-child(8) {
  left: 44%;
  transform: scale(0.7);
  animation-delay: -23s;
  animation-duration: 31s;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  color: var(--red);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand::before {
  content: "";
  width: 26px;
  height: 12px;
  margin: 0 -5px 7px 0;
  background:
    linear-gradient(var(--red), var(--red)) 0 6px / 10px 2px no-repeat,
    linear-gradient(135deg, transparent 0 42%, var(--red) 43% 57%, transparent 58%) 9px 0 / 12px 12px no-repeat,
    linear-gradient(var(--red), var(--red)) 20px 6px / 8px 2px no-repeat;
}

.brand-viva {
  color: #d00000;
  font-weight: 800;
  text-transform: none;
}

.brand-freq {
  align-self: flex-start;
  margin-top: -3px;
  color: #008ed0;
  font-size: 0.42em;
  font-weight: 800;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.nav a {
  padding: 27px 0 22px;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.search-link {
  position: relative;
  width: 18px;
  height: 18px;
}

.search-link::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--text);
  border-radius: 50%;
}

.search-link::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 7px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: rotate(45deg);
}

.listen-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 22px;
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(184, 0, 53, 0.22);
}

.listen-button span {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 545px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.62) 0 78px, transparent 79px),
    radial-gradient(circle at 72% 10%, rgba(255, 111, 159, 0.22) 0 150px, transparent 151px),
    radial-gradient(circle, rgba(230, 0, 69, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(145deg, #ffc8da 0%, #fff0f5 50%, #fff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -130px;
  top: 54px;
  width: 510px;
  height: 510px;
  border: 32px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 515px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 52px 20px 48px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 14px;
  background: #ffe7ee;
  border: 1px solid rgba(184, 0, 53, 0.16);
  border-radius: 999px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: 12px;
  background: #fff0f4;
}

.section-kicker.light {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.romantic-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-title {
  max-width: 960px;
  margin: 0 0 38px;
  color: #21181a;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  text-align: center;
}

.hero-title span {
  color: var(--red);
}

.romantic-notes span {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 62px;
  height: 38px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(184, 0, 53, 0.12);
  border-radius: 999px;
  color: rgba(184, 0, 53, 0.42);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.romantic-notes span:nth-child(1) {
  left: 14%;
  top: 170px;
  transform: rotate(-10deg);
}

.romantic-notes span:nth-child(2) {
  right: 18%;
  top: 150px;
  transform: rotate(8deg);
}

.romantic-notes span:nth-child(3) {
  right: 13%;
  bottom: 120px;
  transform: rotate(-8deg);
}

.player {
  position: relative;
  width: min(760px, calc(100vw - 40px));
  min-height: 220px;
  padding: 34px 28px 28px 220px;
  background: linear-gradient(135deg, #3b2f33, #2c2528);
  border: 1px solid rgba(110, 0, 35, 0.36);
  border-radius: 10px;
  box-shadow: 0 24px 46px rgba(110, 0, 35, 0.18);
  color: #fff;
}

.player-content {
  position: relative;
  z-index: 1;
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: auto;
  margin-top: 24px;
  padding: 16px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: none;
}

.hero-platforms a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.hero-platforms a:nth-child(2),
.hero-platforms a:nth-child(3) {
  color: #008ed0;
}

.player-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  font-size: 12px;
}

.live-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffb3b6;
  font-weight: 700;
}

.live-label span {
  padding: 4px 7px;
  background: var(--red);
  border-radius: 4px;
  color: #fff;
  font-size: 10px;
}

.player-title {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(17px, 1.75vw, 22px);
  font-weight: 800;
  line-height: 1.22;
  text-transform: uppercase;
}

.player-body {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 22px;
}

.vinyl-disc {
  --vinyl-transform: translateY(-50%);
  position: absolute;
  left: -44px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 196px;
  height: 196px;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at center, #fff 0 34px, #2f272a 35px 47px, #0f0f10 48px 100%);
  border: 10px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.06), 0 22px 34px rgba(0, 0, 0, 0.22);
  transform: var(--vinyl-transform);
}

.vinyl-disc::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 16px rgba(255, 255, 255, 0.025),
    inset 0 0 0 34px rgba(255, 255, 255, 0.018),
    inset 0 0 0 52px rgba(255, 255, 255, 0.015);
}

.vinyl-disc img {
  position: relative;
  z-index: 1;
  width: 88px;
  max-width: none;
  padding: 7px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

.player:not(.is-paused) .vinyl-disc {
  animation: spinVinyl 5s linear infinite;
}

.play-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  cursor: pointer;
}

.play-button.is-playing {
  background: #008a62;
}

.play-button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
}

.play-button.is-playing span {
  width: 18px;
  height: 22px;
  margin-left: 0;
  border: 0;
  border-right: 6px solid #fff;
  border-left: 6px solid #fff;
}

.progress-bar {
  height: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.progress-bar span {
  display: block;
  width: 32%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  border-radius: inherit;
  animation: pulseWidth 3s ease-in-out infinite;
}

.player.is-paused .progress-bar span {
  animation-play-state: paused;
}

.progress-wrap small {
  display: block;
  margin-top: 8px;
  color: #f1dce2;
  font-size: 12px;
  font-weight: 600;
}

.volume {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume input {
  width: 80px;
  accent-color: #ffb3b6;
}

.volume-icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.volume-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 7px;
  height: 8px;
  background: #fff;
  border-radius: 2px 0 0 2px;
}

.volume-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 10px;
  height: 14px;
  border: 2px solid #fff;
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.section {
  width: min(1380px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 54px 0 42px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 12px;
  color: var(--red);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.1;
}

.section-title p,
.app-banner p,
.staff-card p {
  color: var(--muted);
  line-height: 1.65;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.schedule-grid .program-card {
  grid-column: span 2;
}

.schedule-grid .program-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.schedule-grid .program-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.program-card,
.staff-card {
  position: relative;
  min-height: 156px;
  padding: 22px 24px;
  background: linear-gradient(180deg, #fff, #fff9fb);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(184, 0, 53, 0.08);
}

.program-card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.program-card::before,
.staff-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--rose));
  transition: height 220ms ease, opacity 220ms ease;
}

.program-card:hover,
.program-card:focus-within {
  background: linear-gradient(180deg, #fff, #fff4f7);
  border-color: rgba(184, 0, 53, 0.28);
  box-shadow: 0 24px 48px rgba(184, 0, 53, 0.13);
  transform: translateY(-5px);
}

.program-card:hover::before,
.program-card:focus-within::before {
  height: 6px;
  opacity: 0.92;
}

.program-card.is-live {
  border-color: rgba(184, 0, 53, 0.46);
  box-shadow: 0 20px 44px rgba(184, 0, 53, 0.18);
  transform: translateY(-4px);
}

.program-card.is-live::before {
  height: 6px;
}

.live-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.staff-card {
  overflow: hidden;
}

.program-card time {
  display: block;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.program-card .avatar {
  float: left;
  margin: 0 18px 18px 0;
}

.gallery-trigger {
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: zoom-in;
}

.gallery-trigger:hover .avatar,
.gallery-trigger:focus-visible .avatar {
  border-color: var(--red-2);
  transform: scale(1.04);
}

.gallery-trigger:focus-visible {
  outline: 3px solid rgba(0, 142, 208, 0.34);
  outline-offset: 4px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  object-fit: cover;
  background: #fff0f3;
  border: 3px solid #ffdada;
  border-radius: 50%;
  color: var(--red);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease;
}

.staff-photo-wrap {
  width: 108px;
  height: 108px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 3px solid #ffdada;
  border-radius: 50%;
  background: #fff0f3;
  transition: width 220ms ease, height 220ms ease, border-radius 220ms ease;
}

.staff-photo-wrap .avatar {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: inherit;
  transition: transform 260ms ease;
}

.staff-photo-wrap .gallery-trigger {
  width: 100%;
  height: 100%;
}

.staff-card:hover .staff-photo-wrap,
.staff-card:focus-within .staff-photo-wrap {
  width: 100%;
  height: 190px;
  border-radius: 8px;
}

.staff-card:hover .staff-photo-wrap .avatar,
.staff-card:focus-within .staff-photo-wrap .avatar {
  transform: scale(1.12);
}

.program-card h3,
.staff-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.program-card p,
.staff-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.program-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 6px 10px;
  background: #eaf7fc;
  border: 0;
  border-radius: 999px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.program-extra {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 6px 10px;
  background: #fff0f4;
  border-radius: 999px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.program-special {
  overflow: hidden;
}

.program-special::after {
  content: "Alineacion Especial";
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 14px;
  background: var(--blue);
  border-radius: 0 8px 0 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.app-banner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 38px;
  align-items: center;
  width: min(1380px, calc(100vw - 40px));
  margin: 48px auto 72px;
  padding: clamp(36px, 5vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(184, 0, 53, 0.98), rgba(230, 0, 69, 0.96));
  border-radius: 10px;
  box-shadow: 0 24px 44px rgba(49, 48, 48, 0.12);
  color: #fff;
}

.app-banner h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 42px);
}

.app-banner p {
  max-width: 560px;
  color: #ffdada;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.app-actions a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  min-width: 216px;
  padding: 13px 18px;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.app-actions a + a {
  background: transparent;
  color: #fff;
}

.app-actions span {
  grid-row: span 2;
  color: currentColor;
  font-size: 22px;
}

.app-actions small {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
}

.download-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.download-mark::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 2px;
  height: 9px;
  background: currentColor;
  border-radius: 999px;
  transform: translateX(-50%);
}

.download-mark::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.phone-stack {
  position: relative;
  height: 240px;
  display: grid;
  place-items: center;
}

.phone-stack svg {
  width: min(360px, 100%);
  opacity: 0.72;
  filter: drop-shadow(0 16px 24px rgba(70, 0, 20, 0.22));
}

.phone-stack path {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 12;
}

.mini-section {
  padding-top: 26px;
}

.staff-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 42px clamp(22px, 5vw, 72px);
  background: var(--footer);
  font-size: 14px;
}

.footer strong {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 24px;
}

.footer-copy {
  max-width: 320px;
  margin: -6px 0 16px;
  color: #5d4248;
  line-height: 1.5;
  font-weight: 600;
}

.icons {
  display: flex;
  gap: 14px;
  font-size: 12px;
  font-weight: 800;
}

.icons a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  color: var(--red);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-weight: 600;
}

.footer p,
.contact-info {
  margin-bottom: 0;
  color: #5d4248;
  text-align: right;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 12px;
  max-width: 460px;
  font-style: normal;
  line-height: 1.65;
  font-size: 13.5px;
  font-weight: 500;
}

.contact-info a {
  color: #5d4248;
}

.contact-info a:hover {
  color: var(--red);
}

body.gallery-open {
  overflow: hidden;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(35, 20, 26, 0.74);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.photo-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.photo-lightbox__panel {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 760px) 54px;
  align-items: center;
  gap: 18px;
  width: min(100%, 980px);
}

.photo-lightbox figure {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 218, 218, 0.72);
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(22, 8, 12, 0.36);
}

.photo-lightbox img {
  display: block;
  width: 100%;
  height: min(68vh, 680px);
  object-fit: contain;
  background: #fff5f7;
}

.photo-lightbox figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  color: #2e2024;
  font-size: 15px;
}

.photo-lightbox figcaption strong {
  color: var(--red);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 18px;
}

.photo-lightbox figcaption span {
  color: #765b61;
  font-weight: 700;
}

.photo-lightbox__close,
.photo-lightbox__nav {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(22, 8, 12, 0.22);
}

.photo-lightbox__close {
  position: absolute;
  top: -18px;
  right: 44px;
  z-index: 2;
  width: 42px;
  height: 42px;
}

.photo-lightbox__close::before,
.photo-lightbox__close::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.photo-lightbox__close::before {
  transform: rotate(45deg);
}

.photo-lightbox__close::after {
  transform: rotate(-45deg);
}

.photo-lightbox__nav {
  width: 54px;
  height: 54px;
}

.photo-lightbox__nav::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.photo-lightbox__nav--prev::before {
  transform: translateX(3px) rotate(-45deg);
}

.photo-lightbox__nav--next::before {
  transform: translateX(-3px) rotate(135deg);
}

.photo-lightbox__close:hover,
.photo-lightbox__nav:hover {
  background: var(--red);
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: #25d366;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(23, 110, 65, 0.28);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

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

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@keyframes pulseWidth {
  0% {
    width: 26%;
  }

  50% {
    width: 58%;
  }

  100% {
    width: 34%;
  }
}

@keyframes floatHeart {
  0% {
    translate: 0 0;
    rotate: -8deg;
    opacity: 0;
  }

  12% {
    opacity: 0.16;
  }

  50% {
    translate: 18px -50vh;
    rotate: 8deg;
  }

  88% {
    opacity: 0.16;
  }

  100% {
    translate: -12px -108vh;
    rotate: -6deg;
    opacity: 0;
  }
}

@keyframes spinVinyl {
  to {
    transform: var(--vinyl-transform) rotate(360deg);
  }
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .topbar,
  .hero-kicker,
  .hero-title,
  .player,
  .section-title,
  .schedule-grid,
  .app-banner,
  .mini-section,
  .footer,
  .floating-hearts span,
  .progress-bar span {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 11px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .menu-button span {
    height: 2px;
    background: var(--red);
  }

  .nav,
  .header-actions {
    display: none;
  }

  .nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    gap: 8px;
    padding: 12px 0 16px;
  }

  .nav.is-open a {
    padding: 10px 0;
  }

  .schedule-grid,
  .staff-grid,
  .app-banner,
  .footer {
    grid-template-columns: 1fr;
  }

  .schedule-grid .program-card,
  .schedule-grid .program-card:nth-child(4),
  .schedule-grid .program-card:nth-child(5) {
    grid-column: auto;
  }

  .phone-stack {
    display: none;
  }

  .player {
    padding-left: 34px;
    padding-top: 128px;
  }

  .vinyl-disc {
    --vinyl-transform: translate(-50%, -24px);
    left: 50%;
    top: 0;
    width: 150px;
    height: 150px;
  }

  .vinyl-disc img {
    width: 60px;
  }

  .footer nav {
    justify-content: flex-start;
  }

  .footer p,
  .contact-info {
    text-align: left;
  }

  .contact-info {
    justify-content: flex-start;
  }

  .photo-lightbox__panel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .photo-lightbox__nav {
    width: 44px;
    height: 44px;
  }

  .photo-lightbox__close {
    right: 34px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 28px;
  }

  .brand::before {
    width: 20px;
    margin-right: -4px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    min-height: 520px;
    padding-top: 50px;
  }

  .romantic-notes {
    display: none;
  }

  .hero-title {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .player {
    padding: 18px;
    padding-top: 118px;
  }

  .player-header,
  .player-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .vinyl-disc {
    --vinyl-transform: translate(-50%, -18px);
    width: 132px;
    height: 132px;
  }

  .player-header {
    gap: 8px;
  }

  .play-button {
    align-self: flex-start;
  }

  .volume input,
  .app-actions a {
    width: 100%;
  }

  .photo-lightbox {
    padding: 16px;
  }

  .photo-lightbox__panel {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .photo-lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .photo-lightbox__nav {
    grid-row: 2;
    width: 100%;
    border-radius: 8px;
  }

  .photo-lightbox__close {
    top: -14px;
    right: -4px;
  }

  .photo-lightbox img {
    height: 62vh;
  }
}


