﻿:root {
  --brand: #ffb254;
  --brand-deep: #ff9e1a;
  --black: #060606;
  --black-soft: #111111;
  --black-card: #171717;
  --white: #f7f3ee;
  --muted: #bfb4a4;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --nav-offset: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  padding-top: var(--nav-offset);
}

.site-intro-splash {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(255, 178, 84, 0.22) 0%, rgba(0, 0, 0, 0) 45%),
    #060606;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-intro-splash.is-visible {
  opacity: 1;
  visibility: visible;
}

.site-intro-splash.is-leaving {
  opacity: 0;
  visibility: hidden;
}

.site-intro-splash img {
  width: min(44vw, 190px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 26px rgba(255, 178, 84, 0.32));
  animation: splashPulse 1.2s ease-in-out infinite;
}

@keyframes splashPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

.rounded-4 {
  border-radius: 0 !important;
}

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

.navbar-toggler {
  border-color: rgba(17, 17, 17, 0.35);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(0);
}

.site-loop-banner {
  position: relative;
  width: 100%;
  height: clamp(56px, 8vw, 88px);
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.site-loop-banner--after-hero {
  margin-top: 0;
}

.site-loop-banner--before-footer {
  margin-top: 0;
}

.site-loop-banner-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: siteLoopBannerFlow 24s linear infinite;
}

.site-loop-banner-image {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  height: 100%;
  padding: 0.15rem 0;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

@keyframes siteLoopBannerFlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-navbar {
  background: var(--brand);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-navbar.scrolled {
  background: rgba(255, 178, 84, 0.78);
  border-color: rgba(17, 17, 17, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

body.admin-body {
  min-height: 100vh;
}

.navbar-brand {
  font-weight: 800;
  color: #111;
  letter-spacing: 0.03em;
}

.brand-logo-img {
  width: 108px;
  height: auto;
  object-fit: contain;
}

.brand-text {
  font-size: 1rem;
  text-transform: uppercase;
}

.nav-link {
  color: rgba(17, 17, 17, 0.82);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
  color: #111;
}

.nav-link.active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.55rem;
}

.nav-radio-item {
  margin-left: 0.35rem;
}

.nav-radio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  border: 1px solid rgba(17, 17, 17, 0.28);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  color: #111;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.42rem 0.7rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.35);
}

.nav-radio-toggle i {
  font-size: 0.92rem;
  line-height: 1;
}

.nav-radio-toggle:hover {
  border-color: rgba(17, 17, 17, 0.52);
  background: rgba(17, 17, 17, 0.14);
}

.nav-radio-toggle.is-playing {
  border-color: rgba(255, 64, 64, 0.56);
  background: rgba(17, 17, 17, 0.2);
  color: #111;
}

.nav-radio-toggle.is-playing .nav-radio-dot {
  background: #ff4040;
}

.nav-showcase {
  /* kept for sub-pages */
  padding-top: 6.2rem;
  background: #000;
}

.hero-carousel-section {
  position: relative;
  overflow: hidden;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  z-index: 8;
  border: 1px solid rgba(255, 178, 84, 0.72);
  background: linear-gradient(160deg, rgba(255, 178, 84, 0.95), rgba(255, 158, 26, 0.92));
  color: #111;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(255, 178, 84, 0.4), 0 10px 22px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  animation: heroScrollCueFloat 1.7s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-scroll-cue i {
  font-size: 1.1rem;
  line-height: 1;
}

.hero-scroll-cue:hover {
  color: #111;
  border-color: #ffd08a;
  background: linear-gradient(160deg, #ffc67a, #ffb254);
  box-shadow: 0 16px 36px rgba(255, 178, 84, 0.48), 0 10px 24px rgba(0, 0, 0, 0.34);
}

.hero-carousel-section .hero-scroll-cue {
  bottom: 0.9rem;
}

@keyframes heroScrollCueFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--nav-offset));
  min-height: 520px;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.carousel-item.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 55%, rgba(0,0,0,0.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.58) 100%);
}

.home-hero-live-cta {
  position: absolute;
  right: clamp(1rem, 4vw, 3.4rem);
  top: clamp(5.4rem, 14vh, 8rem);
  transform: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(140deg, rgba(5, 9, 19, 0.72), rgba(9, 14, 25, 0.5));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(7px);
  z-index: 9;
}

@media (min-width: 992px) {
  .home-hero-live-cta {
    right: clamp(3.2rem, 8vw, 8.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loop-banner-track {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}

.home-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  height: 46px;
  padding: 0 1rem;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(31, 48, 88, 0.95), rgba(24, 37, 68, 0.92));
  border: 1px solid rgba(132, 198, 228, 0.44);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff4040;
  box-shadow: 0 0 0 0 rgba(255, 64, 64, 0.6);
  animation: homeLiveDotPulse 1.4s ease-in-out infinite;
}

@keyframes homeLiveDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 64, 64, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(255, 64, 64, 0); }
}

.home-live-play {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  border: 1px solid rgba(255, 178, 84, 0.78);
  background: linear-gradient(160deg, rgba(255, 178, 84, 0.96), rgba(255, 158, 26, 0.94));
  box-shadow: 0 12px 30px rgba(255, 178, 84, 0.42), 0 8px 18px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-live-play i {
  font-size: 1.45rem;
  margin-left: 2px;
}

.home-live-play:hover {
  color: #111;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 15px 34px rgba(255, 178, 84, 0.44), 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-slide-content {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero-carousel-indicators {
  bottom: 3rem;
  gap: 0.5rem;
}

.hero-carousel-indicators [data-bs-target] {
  width: 38px;
  height: 4px;
  border-radius: 0;
  background: rgba(255,178,84,0.5);
  border: none;
  opacity: 1;
  transition: background 0.3s ease, width 0.3s ease;
}

.hero-carousel-indicators [data-bs-target].active {
  width: 64px;
  background: var(--brand);
}

.nav-carousel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
}

.nav-carousel-card {
  position: relative;
  min-height: 210px;
  border-radius: 0;
}

.nav-carousel-image {
  height: 210px;
  object-fit: cover;
}

.nav-carousel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 2rem 5rem;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2));
}

.nav-carousel-overlay h2 {
  max-width: 28rem;
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.nav-carousel .carousel-control-prev,
.nav-carousel .carousel-control-next {
  width: 4.5rem;
}

.nav-soon-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  background: rgba(17,17,17,0.18);
  color: inherit;
  border: 1px solid rgba(17,17,17,0.28);
  vertical-align: middle;
  line-height: 1.6;
}

/* ---------- Twitch coming-soon ---------- */
.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9147ff;
  background: rgba(145,71,255,0.12);
  border: 1px solid rgba(145,71,255,0.3);
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.coming-soon-tag i {
  font-size: 1rem;
}

.twitch-glow {
  text-shadow: 0 0 40px rgba(145,71,255,0.55);
}

.btn-twitch {
  background: linear-gradient(135deg, #9146ff, #772ce8);
  color: #fff;
  border: 1px solid #9146ff;
  box-shadow: 0 12px 30px rgba(145, 70, 255, 0.34);
  font-weight: 700;
}

.btn-twitch:hover {
  background: linear-gradient(135deg, #a45fff, #9146ff);
  color: #fff;
  border-color: #a45fff;
}

.btn-twitch-outline {
  background: rgba(145, 70, 255, 0.14);
  color: #efe5ff;
  border: 1px solid rgba(145, 70, 255, 0.65);
  box-shadow: 0 10px 26px rgba(145, 70, 255, 0.2);
  font-weight: 700;
}

.btn-twitch-outline:hover {
  background: rgba(145, 70, 255, 0.24);
  color: #fff;
  border-color: #9146ff;
}

.twitch-miniatura {
  width: min(100%, 760px);
  height: auto;
  border: 1px solid rgba(145, 70, 255, 0.4);
  box-shadow: 0 18px 50px rgba(145, 70, 255, 0.26);
}

.radio-player-block {
  position: relative;
  width: min(100%, 380px);
  margin: 0 auto 1.7rem;
  border: 1px solid rgba(255, 178, 84, 0.38);
  border-radius: 18px;
  overflow: hidden;
  background: #080808;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 178, 84, 0.06) inset;
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.radio-layout-row {
  align-items: stretch !important;
}

.radio-left-col,
.radio-right-col {
  align-self: stretch;
}

.radio-feature-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.radio-feature-panel > p {
  margin-top: auto;
  padding-top: 0.7rem;
}

.radio-player-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.radio-player-block:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 178, 84, 0.64);
  box-shadow: 0 30px 58px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 178, 84, 0.15) inset;
}

.radio-player-block::after {
  display: none;
}

.radio-cover-wrap {
  position: relative;
  min-height: 258px;
  padding: 1rem 1rem 0.85rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #090909;
}

.radio-cover-image {
  display: none;
}

.radio-cover-overlay {
  display: none;
}

.radio-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff4040;
  box-shadow: 0 0 0 0 rgba(255, 64, 64, 0.6);
  animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 64, 64, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(255, 64, 64, 0); }
}

.radio-status-row {
  display: none;
}

.radio-mini-art {
  width: min(100%, 208px);
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(255, 178, 84, 0.85);
  box-shadow: 0 0 0 2px rgba(247, 243, 238, 0.82) inset, 0 14px 24px rgba(0, 0, 0, 0.4);
  background: #0a0a0a;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0.2rem;
}

.radio-mini-art__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.radio-status-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  color: #ff6262;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(5, 5, 5, 0.62);
  border: 1px solid rgba(255, 98, 98, 0.44);
  backdrop-filter: blur(4px);
}

.radio-wave-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 23px;
  margin-left: auto;
  border-radius: 999px;
  padding: 0.36rem 0.55rem;
  background: rgba(7, 7, 7, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.radio-wave-bars span {
  display: block;
  width: 4px;
  background: var(--brand);
  transform-origin: bottom;
  animation: waveBar 1.1s ease-in-out infinite;
  will-change: transform;
}

.radio-wave-bars span:nth-child(1) { height: 8px;  animation-delay: 0s; }
.radio-wave-bars span:nth-child(2) { height: 18px; animation-delay: 0.12s; }
.radio-wave-bars span:nth-child(3) { height: 13px; animation-delay: 0.24s; }
.radio-wave-bars span:nth-child(4) { height: 22px; animation-delay: 0.08s; }
.radio-wave-bars span:nth-child(5) { height: 10px; animation-delay: 0.36s; }
.radio-wave-bars span:nth-child(6) { height: 20px; animation-delay: 0.18s; }
.radio-wave-bars span:nth-child(7) { height: 14px; animation-delay: 0.30s; }
.radio-wave-bars span:nth-child(8) { height: 8px;  animation-delay: 0.42s; }

@keyframes waveBar {
  0%, 100% { transform: scaleY(0.3); opacity: 0.5; }
  50%       { transform: scaleY(1);   opacity: 1;   }
}

.radio-wave-bars.paused span {
  animation-play-state: paused;
}

.radio-wave-bars.is-reactive span {
  animation: none !important;
}

.radio-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: min(90%, 430px);
  margin-bottom: 0;
}

.radio-info__copy {
  display: flex;
  flex-direction: column;
}

.radio-info strong {
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.06;
  text-shadow: none;
}

.radio-info small {
  color: rgba(247, 243, 238, 0.72);
  font-size: 0.86rem;
  margin-top: 0.15rem;
}

.radio-fav {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 243, 238, 0.88);
  font-size: 1.15rem;
}

.radio-meta-row {
  width: min(92%, 320px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.radio-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 0.9rem 0.92rem;
  border-top: 1px solid rgba(255, 178, 84, 0.2);
  background: #070707;
}

.radio-progress {
  width: min(92%, 320px);
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.26rem;
  padding-top: 0.08rem;
  margin-bottom: 0.22rem;
}

.radio-progress__times {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.radio-progress__line {
  position: relative;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 178, 84, 0.88), rgba(255, 158, 26, 0.66));
  opacity: 0.72;
}

.radio-progress__line::before {
  content: "";
  position: absolute;
  left: var(--radio-progress, 0%);
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(255, 178, 84, 0.95);
  background: #080808;
}

.radio-progress__time {
  color: rgba(247, 243, 238, 0.78);
  font-size: 0.75rem;
  font-weight: 700;
}

.radio-control-row {
  display: grid;
  grid-template-columns: repeat(5, auto);
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 0.42rem;
}

.radio-ghost-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 243, 238, 0.86);
  font-size: 1.06rem;
  opacity: 0.92;
}

.radio-controls .radio-wave-bars {
  position: relative;
  width: min(92%, 320px);
  height: 44px;
  margin: 0 auto;
  padding: 0;
  justify-content: center;
  gap: 0.22rem;
  background: transparent;
  border: none;
  box-shadow: none;
  z-index: 2;
  opacity: 0.84;
  transition: opacity 0.28s ease, filter 0.28s ease;
  pointer-events: none;
  animation: radioWaveDrift 3.8s ease-in-out infinite;
}

.radio-controls .radio-wave-bars span:nth-child(1)  { height: 8px;  animation-delay: 0.00s; }
.radio-controls .radio-wave-bars span:nth-child(2)  { height: 10px; animation-delay: 0.06s; }
.radio-controls .radio-wave-bars span:nth-child(3)  { height: 14px; animation-delay: 0.12s; }
.radio-controls .radio-wave-bars span:nth-child(4)  { height: 18px; animation-delay: 0.18s; }
.radio-controls .radio-wave-bars span:nth-child(5)  { height: 22px; animation-delay: 0.24s; }
.radio-controls .radio-wave-bars span:nth-child(6)  { height: 19px; animation-delay: 0.30s; }
.radio-controls .radio-wave-bars span:nth-child(7)  { height: 16px; animation-delay: 0.36s; }
.radio-controls .radio-wave-bars span:nth-child(8)  { height: 20px; animation-delay: 0.42s; }
.radio-controls .radio-wave-bars span:nth-child(9)  { height: 24px; animation-delay: 0.48s; }
.radio-controls .radio-wave-bars span:nth-child(10) { height: 30px; animation-delay: 0.54s; }
.radio-controls .radio-wave-bars span:nth-child(11) { height: 34px; animation-delay: 0.60s; }
.radio-controls .radio-wave-bars span:nth-child(12) { height: 36px; animation-delay: 0.66s; }
.radio-controls .radio-wave-bars span:nth-child(13) { height: 32px; animation-delay: 0.72s; }
.radio-controls .radio-wave-bars span:nth-child(14) { height: 28px; animation-delay: 0.78s; }
.radio-controls .radio-wave-bars span:nth-child(15) { height: 24px; animation-delay: 0.84s; }
.radio-controls .radio-wave-bars span:nth-child(16) { height: 20px; animation-delay: 0.90s; }
.radio-controls .radio-wave-bars span:nth-child(17) { height: 17px; animation-delay: 0.96s; }
.radio-controls .radio-wave-bars span:nth-child(18) { height: 14px; animation-delay: 1.02s; }
.radio-controls .radio-wave-bars span:nth-child(19) { height: 12px; animation-delay: 1.08s; }
.radio-controls .radio-wave-bars span:nth-child(20) { height: 10px; animation-delay: 1.14s; }
.radio-controls .radio-wave-bars span:nth-child(21) { height: 8px;  animation-delay: 1.20s; }
.radio-controls .radio-wave-bars span:nth-child(22) { height: 7px;  animation-delay: 1.26s; }

.radio-controls .radio-wave-bars span {
  position: relative;
  width: 3px;
  border-radius: 5px;
  background: linear-gradient(180deg, #ffeacd 0%, #ffc97f 48%, #c97d14 100%);
  box-shadow: 0 0 6px rgba(255, 178, 84, 0.22);
}

@keyframes radioWaveDrift {
  0%,
  100% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
}

.radio-player-block.is-playing .radio-controls .radio-wave-bars {
  opacity: 1;
  filter: saturate(1.22);
}

.radio-main-play {
  position: relative;
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255, 178, 84, 0.84);
  background: radial-gradient(circle at 35% 22%, rgba(255, 178, 84, 0.42), rgba(6, 6, 6, 0.98));
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4), 0 0 0 5px rgba(255, 178, 84, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.radio-main-play i {
  font-size: 1.7rem;
  line-height: 1;
  margin-left: 0.08em;
}

.radio-main-play:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: #ffd390;
  color: #ffd390;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45), 0 0 0 7px rgba(255, 178, 84, 0.11);
}

.radio-main-play:focus-visible {
  outline: 2px solid rgba(255, 210, 138, 0.9);
  outline-offset: 3px;
}

.radio-hint {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(247, 243, 238, 0.82);
  font-size: 0.84rem;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02em;
  display: none;
}

.radio-player-block.is-playing .radio-status-pill {
  color: #ff4040;
  border-color: rgba(255, 64, 64, 0.52);
}

.radio-player-block.is-playing .radio-main-play {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45), 0 0 0 14px rgba(255, 178, 84, 0.1);
}

.radio-player-block.is-playing .radio-main-play i {
  margin-left: 0;
}

.radio-floating-dock {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1300;
  width: min(260px, calc(100vw - 1.6rem));
  padding: 0.74rem 0.78rem 0.68rem;
  border: 1px solid rgba(255, 178, 84, 0.46);
  border-radius: 16px;
  background: linear-gradient(168deg, rgba(255, 178, 84, 0.16), rgba(7, 7, 7, 0.96) 56%, rgba(2, 2, 2, 0.98));
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.radio-floating-dock.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.radio-floating-dock__head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.radio-floating-dock__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  transition: background 0.2s ease;
}

.radio-floating-dock.is-playing .radio-floating-dock__dot {
  background: #ff4040;
}

.radio-floating-dock__title {
  color: #f7f3ee;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.radio-floating-dock__status {
  margin: 0;
  color: rgba(247, 243, 238, 0.82);
  font-size: 0.73rem;
  text-align: center;
}

.radio-floating-dock__line {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, rgba(255, 178, 84, 0.86), rgba(255, 158, 26, 0.62));
  opacity: 0.74;
}

.radio-floating-dock__wave {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.18rem;
  height: 26px;
  margin: 0.16rem 0 0.48rem;
}

.radio-floating-dock__wave span {
  width: 3px;
  border-radius: 4px;
  background: linear-gradient(180deg, #ffe5bb 0%, #ffbf6c 50%, #d28520 100%);
  animation: waveBar 1.05s ease-in-out infinite;
}

.radio-floating-dock__wave span:nth-child(1)  { height: 7px;  animation-delay: 0.00s; }
.radio-floating-dock__wave span:nth-child(2)  { height: 9px;  animation-delay: 0.06s; }
.radio-floating-dock__wave span:nth-child(3)  { height: 12px; animation-delay: 0.12s; }
.radio-floating-dock__wave span:nth-child(4)  { height: 16px; animation-delay: 0.18s; }
.radio-floating-dock__wave span:nth-child(5)  { height: 12px; animation-delay: 0.24s; }
.radio-floating-dock__wave span:nth-child(6)  { height: 18px; animation-delay: 0.30s; }
.radio-floating-dock__wave span:nth-child(7)  { height: 14px; animation-delay: 0.36s; }
.radio-floating-dock__wave span:nth-child(8)  { height: 11px; animation-delay: 0.42s; }
.radio-floating-dock__wave span:nth-child(9)  { height: 8px;  animation-delay: 0.48s; }
.radio-floating-dock__wave span:nth-child(10) { height: 11px; animation-delay: 0.54s; }
.radio-floating-dock__wave span:nth-child(11) { height: 14px; animation-delay: 0.60s; }
.radio-floating-dock__wave span:nth-child(12) { height: 18px; animation-delay: 0.66s; }
.radio-floating-dock__wave span:nth-child(13) { height: 12px; animation-delay: 0.72s; }
.radio-floating-dock__wave span:nth-child(14) { height: 16px; animation-delay: 0.78s; }
.radio-floating-dock__wave span:nth-child(15) { height: 12px; animation-delay: 0.84s; }
.radio-floating-dock__wave span:nth-child(16) { height: 9px;  animation-delay: 0.90s; }
.radio-floating-dock__wave span:nth-child(17) { height: 7px;  animation-delay: 0.96s; }

.radio-floating-dock:not(.is-playing) .radio-floating-dock__wave span {
  animation-play-state: paused;
  opacity: 0.35;
}

.radio-floating-dock__toggle {
  width: 56px;
  height: 56px;
  margin: 0.38rem auto 0.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 178, 84, 0.85);
  background: radial-gradient(circle at 35% 22%, rgba(255, 178, 84, 0.35), rgba(7, 7, 7, 0.98));
  color: var(--brand);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.radio-floating-dock__toggle i {
  font-size: 1.55rem;
  line-height: 1;
}

.radio-floating-dock__toggle:hover {
  transform: translateY(-1px);
  border-color: #ffd596;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.46), 0 0 0 8px rgba(255, 178, 84, 0.1);
}

.radio-floating-dock.is-playing .radio-floating-dock__toggle {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.48), 0 0 0 10px rgba(255, 178, 84, 0.11);
}

/* ---------- Hero (sub-pages) ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-offset));
  overflow: hidden;
  background-color: #000;
}

.hero .row.min-vh-100 {
  min-height: calc(100svh - var(--nav-offset)) !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-home::before {
  background-image: url("https://picsum.photos/seed/hugo-home-hero/1800/1200");
}

.hero-events::before {
  background-image: url("assets/Hugo-quineañera.png");
}

.hero-brand::before {
  background-image: url("assets/hugo-twitch.png");
}

.hero-twitch::before {
  background-image: url("assets/hugo-locucion.png");
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 5%, rgba(0, 0, 0, 0.4) 58%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62));
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-title,
.section-heading h2,
.cta-panel h2,
.copy-block h3,
.service-card h3,
.testimonial-card h3,
.timeline-card h3,
.feature-panel strong {
  font-family: "Fraunces", serif;
}

.hero-title {
  max-width: 10ch;
  margin-bottom: 1rem;
  color: var(--white);
  line-height: 0.96;
}

.hero-copy {
  max-width: 41rem;
  margin-bottom: 2rem;
  color: rgba(247, 243, 238, 0.82);
  font-size: 1.1rem;
}

.btn {
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #111;
  border: none;
  box-shadow: 0 12px 30px rgba(255, 178, 84, 0.24);
}

.btn-brand:hover {
  background: linear-gradient(135deg, #ffc372, var(--brand));
  color: #111;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background:
    radial-gradient(circle at top, rgba(255, 178, 84, 0.12), transparent 26%),
    #0a0a0a;
}

.border-brand-subtle {
  border-color: rgba(255, 178, 84, 0.18) !important;
}

.section-heading {
  max-width: 46rem;
  margin: 0 auto 3rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.section-heading p,
.copy-block p,
.service-card p,
.testimonial-card p,
.timeline-card p,
.cta-panel p,
.feature-panel p,
.stat-label,
.social-box a,
.contact-line {
  color: var(--muted);
}

.stat-card,
.info-card,
.service-card,
.testimonial-card,
.timeline-card,
.feature-panel,
.cta-panel,
.social-box,
.copy-block {
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.stat-number {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--brand);
  font-size: 2rem;
  font-weight: 800;
}

.mini-player {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 1.5rem;
}

.mini-player__cover {
  width: 84px;
  height: 84px;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(255, 178, 84, 0.95), rgba(255, 255, 255, 0.3));
}

.mini-player__label {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: var(--brand);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.play-chip,
.step-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 178, 84, 0.35);
  border-radius: 999px;
  background: rgba(255, 178, 84, 0.12);
  color: var(--brand);
  font-weight: 800;
}

.info-card i,
.service-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  border-radius: 0;
  background: rgba(255, 178, 84, 0.12);
  color: var(--brand);
  font-size: 1.35rem;
}

.image-stack {
  position: relative;
}

.image-stack img,
.showcase-image,
.brand-logo,
.gallery-grid img,
.testimonial-card img {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.image-stack__badge {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  max-width: 15rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 178, 84, 0.2);
  border-radius: 0;
  background: rgba(255, 178, 84, 0.92);
  color: #111;
  font-weight: 800;
}

.brand-grid img,
.brand-logo {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #fff;
  padding: 0.8rem;
}
.brand-marquee {
  position: relative;
  margin-top: 1.25rem;
  overflow: hidden;
  padding: 0.35rem 0;
}
.brand-marquee::before,
.brand-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(30px, 5vw, 72px);
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.brand-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #050507 10%, rgba(5, 5, 7, 0) 100%);
}
.brand-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #050507 10%, rgba(5, 5, 7, 0) 100%);
}
.brand-marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: brandMarqueeLoop 24s linear infinite;
}
.brand-marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.2rem);
  padding-right: clamp(0.8rem, 2vw, 1.2rem);
}
.brand-marquee__item {
  margin: 0;
  width: clamp(220px, 28vw, 420px);
  height: clamp(140px, 16vw, 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  padding: 0.9rem;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}
.brand-marquee__item:hover,
.brand-marquee__item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.36);
}
.brand-marquee__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  background: rgba(3, 3, 5, 0.8);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.brand-contact-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.brand-contact-dialog {
  position: relative;
  width: min(760px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(140deg, rgba(10, 10, 14, 0.98), rgba(24, 24, 30, 0.98));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  padding: clamp(1rem, 3vw, 1.6rem);
}

.brand-contact-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.brand-contact-close:hover,
.brand-contact-close:focus-visible {
  background: rgba(255, 178, 84, 0.25);
}

.brand-contact-body {
  display: grid;
  grid-template-columns: minmax(180px, 250px) 1fr;
  gap: clamp(1rem, 3vw, 1.4rem);
  align-items: center;
}

.brand-contact-logo {
  width: 100%;
  height: clamp(150px, 24vw, 210px);
  object-fit: contain;
  background: #fff;
  padding: 0.8rem;
}

.brand-contact-copy h3 {
  margin-bottom: 0.55rem;
}

.brand-contact-copy p {
  margin-bottom: 0.55rem;
}

.brand-contact-phone {
  font-weight: 700;
  color: var(--brand-soft);
}

.brand-contact-actions {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.brand-contact-actions .is-hidden {
  display: none;
}

body.is-overlay-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .brand-contact-body {
    grid-template-columns: 1fr;
  }

  .brand-contact-logo {
    max-width: 280px;
  }
}

.brand-marquee:hover .brand-marquee__track {
  animation-play-state: paused;
}
@keyframes brandMarqueeLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.social-box {
  display: grid;
  gap: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .brand-marquee__track {
    animation: none;
    transform: translateX(0);
  }
}

.social-box a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-box a:hover {
  transform: translateY(-2px);
  background: rgba(255, 178, 84, 0.08);
  color: var(--white);
}

.social-box i {
  color: var(--brand);
  font-size: 1.2rem;
}

.gallery-grid {
  column-count: 4;
  column-gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  display: block;
  margin: 0 0 1rem;
  break-inside: avoid;
  border-radius: 0;
}

body[data-page="publicita-en-media-pila"] .trusted-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body[data-page="publicita-en-media-pila"] .trusted-card {
  background: rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
  align-content: start;
  min-height: 100%;
}

body[data-page="publicita-en-media-pila"] .trusted-card__logo {
  width: 100%;
  height: 135px;
  object-fit: contain;
  background: #ffffff;
  padding: 0.7rem;
  border: 1px solid #e7e7e7;
}

body[data-page="publicita-en-media-pila"] .trusted-card__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

body[data-page="publicita-en-media-pila"] .trusted-card__description,
body[data-page="publicita-en-media-pila"] .trusted-card__phone {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

body[data-page="publicita-en-media-pila"] .trusted-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body[data-page="publicita-en-media-pila"] .trusted-card__actions .btn {
  border-radius: 0;
}

@media (max-width: 991.98px) {
  body[data-page="publicita-en-media-pila"] .trusted-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="publicita-en-media-pila"] .trusted-card {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 575.98px) {
  body[data-page="publicita-en-media-pila"] .trusted-gallery {
    grid-template-columns: 1fr;
  }

  body[data-page="publicita-en-media-pila"] .trusted-card {
    border-right: none;
  }
}

.timeline-card + .timeline-card {
  margin-top: 1rem;
}

.cta-panel {
  max-width: 62rem;
  margin: 0 auto;
}

.site-footer {
  padding: 2.6rem 0 2.8rem;
  background: radial-gradient(circle at 18% -20%, rgba(255, 178, 84, 0.17), rgba(5, 5, 5, 0) 38%), #050505;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.footer-logo-link {
  display: inline-flex;
  padding: 0.25rem;
}

.footer-logo-img {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.footer-links {
  row-gap: 0.7rem;
}

.footer-links a {
  color: rgba(247, 243, 238, 0.74);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-copy {
  margin: 0;
  color: rgba(247, 243, 238, 0.45);
  font-size: 0.95rem;
}

.footer-dev {
  color: rgba(247, 243, 238, 0.72);
}

.footer-dev-link {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2rem;
}

.footer-dev-link:hover {
  color: #ffd08a;
}

.contact-map-section .row {
  align-items: stretch;
}

.map-square {
  height: 100%;
  min-height: 360px;
  border: 1px solid rgba(255, 178, 84, 0.22);
  overflow: hidden;
}

.map-square iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.1) contrast(1.05);
}

.contact-summary-card {
  height: 100%;
  padding: 1.6rem;
  border: 1px solid rgba(255, 178, 84, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.contact-summary-card h3 {
  margin-bottom: 1rem;
  font-family: "Fraunces", serif;
}

.contact-summary-subtitle {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-weight: 700;
}

.contact-summary-text {
  margin: 0 0 0.95rem;
  color: rgba(247, 243, 238, 0.82);
}

.contact-summary-divider {
  margin: 0.9rem 0 1rem;
  border: 0;
  border-top: 1px solid rgba(255, 178, 84, 0.25);
}

.contact-summary-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: rgba(247, 243, 238, 0.86);
}

.contact-summary-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-summary-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(247, 243, 238, 0.92);
  font-size: 0.92rem;
}

.contact-summary-social i {
  color: var(--brand);
}

.contact-summary-social a:hover {
  border-color: rgba(255, 178, 84, 0.5);
  color: var(--brand);
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #13a551);
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.35);
}

.availability-float {
  position: fixed;
  right: 1.25rem;
  bottom: 6rem;
  z-index: 1049;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(255, 178, 84, 0.5);
  border-radius: 999px;
  background: linear-gradient(140deg, rgba(255, 178, 84, 0.94), rgba(255, 158, 26, 0.92));
  color: #111;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 34px rgba(255, 178, 84, 0.32), 0 8px 18px rgba(0, 0, 0, 0.32);
}

.availability-float i {
  font-size: 1rem;
  line-height: 1;
}

.availability-float span {
  white-space: nowrap;
}

.availability-float:hover {
  color: #111;
  border-color: #ffd08a;
  background: linear-gradient(140deg, #ffc67a, #ffb254);
  transform: translateY(-2px);
}

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

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.availability-panel,
.admin-shell,
.admin-login-card,
.admin-card,
.admin-list-card,
.admin-reservation-item {
  border: 1px solid var(--border);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.availability-panel {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  padding: 2rem;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 178, 84, 0.09), transparent 33%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.availability-panel::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 178, 84, 0.16), rgba(255, 178, 84, 0));
  pointer-events: none;
}

.availability-panel__intro,
.admin-header,
.admin-toolbar,
.admin-form-grid,
.admin-login-form,
.admin-inline-fields,
.admin-reservation-meta,
.admin-reservation-actions,
.admin-empty-state,
.admin-status-row {
  display: flex;
  gap: 1rem;
}

.availability-panel__intro,
.admin-header,
.admin-toolbar {
  align-items: center;
  justify-content: space-between;
}

.availability-panel__intro {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.availability-panel__intro h3,
.admin-card h2,
.admin-list-card h2,
.admin-login-card h1,
.admin-reservation-item h3 {
  margin: 0 0 0.65rem;
  font-family: "Fraunces", serif;
}

.availability-legend {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.availability-legend span,
.admin-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.availability-legend span {
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.26);
  font-weight: 600;
}

.availability-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  display: inline-block;
}

.availability-dot--available,
.availability-state--disponible {
  background: #2ca45c;
}

.availability-dot--reserved,
.availability-state--reservado {
  background: #f59f27;
}

.availability-dot--occupied,
.availability-state--ocupado {
  background: #d64747;
}

.availability-feedback,
.admin-feedback,
.admin-login-feedback {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: var(--muted);
}

.availability-feedback.is-error,
.admin-feedback.is-error,
.admin-login-feedback.is-error {
  color: #ff8d8d;
}

.availability-feedback.is-success,
.admin-feedback.is-success,
.admin-login-feedback.is-success {
  color: #90daa8;
}

.availability-calendar {
  position: relative;
  z-index: 1;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.006));
  box-shadow: inset 0 0 0 1px rgba(255, 178, 84, 0.06);
}

.fc {
  --fc-border-color: rgba(255, 255, 255, 0.08);
  --fc-page-bg-color: transparent;
  --fc-neutral-bg-color: rgba(255, 255, 255, 0.02);
  --fc-list-event-hover-bg-color: rgba(255, 255, 255, 0.04);
  --fc-button-bg-color: var(--brand);
  --fc-button-border-color: var(--brand);
  --fc-button-hover-bg-color: var(--brand-deep);
  --fc-button-hover-border-color: var(--brand-deep);
  --fc-button-active-bg-color: var(--brand-deep);
  --fc-button-active-border-color: var(--brand-deep);
  --fc-event-border-color: transparent;
  --fc-today-bg-color: rgba(255, 178, 84, 0.1);
}

.fc .fc-view-harness {
  background: rgba(0, 0, 0, 0.24);
}

.fc .fc-toolbar {
  padding: 1rem 1rem 0.55rem;
}

.fc .fc-toolbar-title,
.fc .fc-col-header-cell-cushion {
  font-family: "Fraunces", serif;
}

.fc .fc-toolbar-title {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.fc .fc-button {
  border-radius: 0;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.26);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 800;
}

.fc .fc-button-primary:focus,
.fc .fc-button-primary:not(:disabled):active:focus,
.fc .fc-button-primary:not(:disabled).fc-button-active:focus {
  box-shadow: 0 0 0 3px rgba(255, 178, 84, 0.2);
}

.fc .fc-col-header-cell {
  background: linear-gradient(180deg, rgba(255, 178, 84, 0.07), rgba(255, 178, 84, 0.01));
}

.fc .fc-col-header-cell-cushion {
  padding: 0.55rem 0.4rem;
}

.fc .fc-daygrid-day-number,
.fc .fc-col-header-cell-cushion {
  color: var(--white);
}

.fc .fc-daygrid-day-number {
  font-weight: 600;
  opacity: 0.9;
}

.fc .fc-daygrid-day-frame {
  min-height: 6.9rem;
}

.fc .fc-daygrid-day {
  transition: background-color 0.18s ease;
}

.fc .fc-daygrid-day:hover {
  background: rgba(255, 255, 255, 0.025);
}

.fc .fc-day-weekend {
  background: rgba(255, 178, 84, 0.015);
}

.fc .fc-day-other .fc-daygrid-day-number {
  opacity: 0.35;
}

.fc .fc-daygrid-day.fc-day-today {
  box-shadow: inset 0 0 0 1px rgba(255, 178, 84, 0.22);
  background: linear-gradient(180deg, rgba(255, 178, 84, 0.16), rgba(255, 178, 84, 0.04));
}

.fc .fc-daygrid-event {
  border: 0;
  border-radius: 0;
  margin-top: 0.24rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.availability-event-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  width: 100%;
  padding: 0.24rem 0.48rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.availability-event-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.availability-event-label::before {
  content: '';
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.85;
}

.availability-event-time {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.86;
}

.fc-event--disponible,
.fc-event--disponible:hover {
  background: linear-gradient(90deg, #2ca45c, #23914f);
  color: #f6fff8;
}

.fc-event--reservado,
.fc-event--reservado:hover {
  background: linear-gradient(90deg, #f2a22e, #ee941a);
  color: #1b1204;
}

.fc-event--ocupado,
.fc-event--ocupado:hover {
  background: linear-gradient(90deg, #d64747, #bf3535);
  color: #fff7f7;
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 178, 84, 0.16), rgba(0, 0, 0, 0) 28%),
    radial-gradient(circle at bottom right, rgba(255, 178, 84, 0.1), rgba(0, 0, 0, 0) 22%),
    var(--black);
}

.admin-main {
  padding: calc(var(--nav-offset) + 2rem) 0 4rem;
}

.admin-shell {
  padding: 2rem;
}

.admin-login-card {
  max-width: 34rem;
  margin: 0 auto;
  padding: 2rem;
}

.admin-login-card p,
.admin-card p,
.admin-list-card p,
.admin-reservation-item p,
.admin-label,
.admin-hint,
.admin-empty-state {
  color: var(--muted);
}

.admin-login-form,
.admin-form-grid {
  flex-direction: column;
}

.admin-form-grid {
  gap: 1.15rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.admin-card,
.admin-list-card {
  padding: 1.6rem;
}

.admin-toolbar {
  margin-bottom: 1rem;
}

.admin-inline-fields {
  flex-wrap: wrap;
}

.admin-field {
  display: grid;
  gap: 0.45rem;
  flex: 1 1 180px;
}

.admin-field--full {
  flex-basis: 100%;
}

.admin-label {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-input,
.admin-select,
.admin-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.admin-password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.admin-password-wrap .admin-input {
  padding-right: 3rem;
}

.admin-password-toggle {
  position: absolute;
  inset-block: 0;
  right: 0.55rem;
  margin: auto 0;
  width: 2rem;
  height: 2rem;
  padding: 0;
  line-height: 1;
  border: none;
  background: transparent;
  color: rgba(247, 243, 238, 0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-password-toggle i {
  display: block;
  line-height: 1;
}

.admin-password-toggle:hover,
.admin-password-toggle:focus-visible {
  color: var(--brand);
}

.admin-input:focus,
.admin-select:focus,
.admin-textarea:focus {
  outline: none;
  border-color: rgba(255, 178, 84, 0.52);
  box-shadow: 0 0 0 3px rgba(255, 178, 84, 0.12);
}

.admin-textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-outline-brand {
  border: 1px solid rgba(255, 178, 84, 0.38);
  color: var(--brand);
  background: transparent;
}

.btn-outline-brand:hover {
  border-color: var(--brand);
  background: rgba(255, 178, 84, 0.08);
  color: #ffd08a;
}

.btn-outline-danger-soft {
  border: 1px solid rgba(214, 71, 71, 0.45);
  color: #ff9d9d;
  background: transparent;
}

.btn-outline-danger-soft:hover {
  background: rgba(214, 71, 71, 0.12);
  color: #ffd2d2;
}

.admin-reservations {
  display: grid;
  gap: 0.9rem;
  max-height: 920px;
  overflow-y: auto;
}

.admin-reservation-item {
  padding: 1rem;
}

.admin-reservation-item h3 {
  font-size: 1.15rem;
}

.admin-reservation-meta {
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
  font-size: 0.94rem;
}

.admin-status-badge {
  padding: 0.24rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  font-weight: 800;
}

.admin-reservation-actions {
  flex-wrap: wrap;
  margin-top: 1rem;
}

.admin-list-logo {
  width: 100%;
  max-width: 260px;
  height: 120px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  padding: 0.5rem;
}

.admin-logo-preview-wrap {
  display: flex;
  align-items: center;
  min-height: 120px;
}

.admin-logo-preview {
  width: 100%;
  max-width: 260px;
  height: 120px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  padding: 0.5rem;
}

.admin-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-link-row a {
  color: var(--brand);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.admin-empty-state {
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.admin-hidden {
  display: none !important;
}

@media (max-width: 991.98px) {
  .hero-title {
    max-width: 100%;
  }

  .site-navbar .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 0;
    background: rgba(255, 178, 84, 0.96);
  }

  .nav-carousel-overlay {
    padding: 1.5rem 4rem;
  }

  .gallery-grid {
    column-count: 3;
  }

  .home-hero-live-cta {
    right: 1rem;
    top: clamp(5.2rem, 11vh, 6.4rem);
  }

  .home-live-pill {
    height: 42px;
    padding: 0 0.9rem;
    font-size: 0.92rem;
  }

  .home-live-play {
    width: 46px;
    height: 46px;
  }

  .hero-scroll-cue {
    width: 46px;
    height: 46px;
    bottom: 0.85rem;
  }

  .hero-carousel-indicators {
    bottom: 2.6rem;
  }

  .availability-panel__intro,
  .admin-header,
  .admin-toolbar,
  .admin-grid {
    display: grid;
  }

  .availability-calendar {
    min-height: 540px;
  }

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

@media (max-width: 767.98px) {
  .section {
    padding: 4.5rem 0;
  }

  /* mobile hero compact mode */
  .hero .row.min-vh-100,
  .hero-slide-content {
    padding-top: 5.2rem !important;
    padding-bottom: 2.2rem !important;
  }

  .hero .hero-title,
  .hero-slide-content .hero-title {
    font-size: clamp(1.9rem, 8.4vw, 2.8rem) !important;
    line-height: 0.96;
    margin-bottom: 0.75rem;
  }

  .hero .eyebrow,
  .hero-slide-content .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.45rem;
  }

  .hero .hero-copy {
    font-size: 0.98rem !important;
    line-height: 1.45;
    margin-bottom: 1rem;
  }

  .hero .hero-actions,
  .hero-slide-content .hero-actions {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.55rem !important;
  }

  .hero .hero-actions .btn,
  .hero-slide-content .hero-actions .btn {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    font-size: 0.8rem !important;
    padding: 0.62rem 0.7rem !important;
    line-height: 1.15;
  }

  .hero-slide,
  .hero-slide-bg {
    min-height: calc(100svh - var(--nav-offset));
    height: calc(100svh - var(--nav-offset));
  }

  .hero-slide-content {
    padding-top: 6rem;
  }
  /* less text on mobile hero */
  .hero-slide-content .hero-copy {
    display: none;
  }

  .hero-slide-content .hero-title {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .home-hero-live-cta {
    right: 0.7rem;
    top: clamp(5rem, 10vh, 5.8rem);
    transform: none;
    flex-direction: row;
    gap: 0.45rem;
    padding: 0.34rem;
    border-radius: 16px;
    z-index: 9;
  }

  .home-live-pill {
    height: 34px;
    padding: 0 0.62rem;
    border-radius: 12px;
    font-size: 0.79rem;
  }

  .home-live-dot {
    width: 8px;
    height: 8px;
  }

  .home-live-play {
    width: 34px;
    height: 34px;
  }

  .home-live-play i {
    font-size: 0.98rem;
  }

  .hero-slide-content .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

  .nav-showcase {
    padding-top: 5.4rem;
  }

  .nav-carousel-card,
  .nav-carousel-image {
    min-height: 240px;
    height: 240px;
  }

  .nav-carousel-overlay {
    padding: 1.4rem 1.6rem 1.4rem 3.2rem;
  }

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

  .mini-player {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 2;
  }

  .image-stack__badge {
    position: static;
    margin-top: 1rem;
  }

  .map-square {
    min-height: 280px;
  }

  .radio-player-block {
    border-radius: 18px;
    width: 100%;
  }

  .radio-cover-wrap {
    min-height: 240px;
    padding: 0.85rem;
  }

  .radio-mini-art {
    width: min(100%, 178px);
    margin-top: 0.3rem;
  }

  .radio-status-pill {
    font-size: 0.68rem;
    padding: 0.3rem 0.58rem;
  }

  .radio-wave-bars {
    gap: 3px;
    padding: 0.32rem 0.45rem;
  }

  .radio-info {
    width: min(94%, 420px);
  }

  .radio-fav {
    width: 28px;
    height: 28px;
    font-size: 1.14rem;
  }

  .radio-meta-row {
    width: min(94%, 300px);
  }

  .radio-progress,
  .radio-progress__line {
    width: min(94%, 300px);
  }

  .radio-control-row {
    gap: 0.64rem;
    margin-top: 0.34rem;
  }

  .radio-ghost-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .radio-controls .radio-wave-bars {
    width: min(94%, 300px);
    height: 42px;
  }

  .hero-scroll-cue {
    width: 42px;
    height: 42px;
    bottom: 0.6rem;
  }

  .hero-carousel-indicators {
    bottom: 2.2rem;
  }

  .radio-info strong {
    font-size: 1.3rem;
  }

  .radio-info small {
    font-size: 0.9rem;
  }

  .radio-main-play {
    width: 64px;
    height: 64px;
  }

  .radio-main-play i {
    font-size: 1.45rem;
  }

  .radio-hint {
    font-size: 0.8rem;
  }

  .radio-floating-dock {
    right: 0.7rem;
    bottom: 0.7rem;
    width: min(220px, calc(100vw - 1.4rem));
  }

  .footer-logo-img {
    width: 112px;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 3.5rem;
    height: 3.5rem;
  }

  .availability-float {
    right: 1rem;
    bottom: 5.3rem;
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }

  .availability-float span {
    display: none;
  }

  .availability-float i {
    font-size: 1.08rem;
  }

  .availability-panel,
  .admin-shell,
  .admin-login-card,
  .admin-card,
  .admin-list-card {
    padding: 1.25rem;
  }

  .fc .fc-toolbar {
    gap: 0.8rem;
  }

  .fc .fc-toolbar.fc-header-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .fc .fc-toolbar {
    padding: 0.9rem 0.6rem 0.4rem;
  }

  .fc .fc-toolbar-title {
    text-align: left;
  }

  .fc .fc-daygrid-day-frame {
    min-height: 5.8rem;
  }

  .admin-actions .btn,
  .admin-toolbar .btn,
  .availability-panel__intro .btn {
    width: 100%;
  }
}
