/* Radio Curbelo — capa visual moderna (carga después de mis.css) */

:root {
  --rc-bg: #06080d;
  --rc-surface: rgba(255, 255, 255, 0.04);
  --rc-border: rgba(255, 255, 255, 0.09);
  --rc-text: rgba(255, 255, 255, 0.88);
  --rc-muted: rgba(255, 255, 255, 0.55);
  --rc-accent: #7eb8da;
  --rc-accent-warm: #d4b896;
  --rc-glow: rgba(126, 184, 218, 0.35);
  --rc-radius: 14px;
  --rc-font-sans: "Manrope", system-ui, sans-serif;
  --rc-font-display: "Syne", var(--rc-font-sans);
}

.site-curbelo {
  background: var(--rc-bg);
  color: var(--rc-text);
  font-family: var(--rc-font-sans);
  overflow-x: hidden;
}

body:has(main.site-curbelo) {
  background: var(--rc-bg) !important;
  background-image: none !important;
  font-family: var(--rc-font-sans) !important;
}

.site-curbelo p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--rc-muted);
}

/* —— Navbar —— */
.rc-header {
  position: relative;
  z-index: 1080;
}

.rc-navbar {
  padding: 0.85rem 0;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.92) 0%, rgba(6, 8, 13, 0.55) 70%, transparent 100%) !important;
  backdrop-filter: blur(8px);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.rc-navbar.navbar-scrolled {
  background: rgba(6, 8, 13, 0.92) !important;
  box-shadow: 0 1px 0 var(--rc-border);
}

.rc-navbar .navbar-brand img {
  max-height: 48px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.rc-navbar .nav-link,
.rc-navbar .dropdown-toggle {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.rc-navbar.navbar-scrolled .nav-link,
.rc-navbar.navbar-scrolled .dropdown-toggle {
  color: var(--rc-text) !important;
}

.rc-navbar .dropdown-menu {
  background: rgba(12, 16, 24, 0.97);
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  padding: 0.5rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.rc-navbar .dropdown-item {
  color: var(--rc-text);
  border-radius: 8px;
  padding: 0.5rem 0.85rem;
}

.rc-navbar .dropdown-item:hover {
  background: var(--rc-surface);
  color: var(--rc-accent);
}

.rc-navbar .navbar-toggler {
  border-color: var(--rc-border);
}

.rc-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,0.85)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.rc-navbar.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,0.85)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* —— Hero carousel —— */
.rc-hero {
  position: relative;
  margin-top: 0;
}

.rc-hero .carousel {
  min-height: 72vh;
}

.rc-hero .carousel-inner,
.rc-hero .carousel-item {
  min-height: 72vh;
}

.rc-hero .carousel-item img {
  height: 72vh;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.05);
}

.rc-hero .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 8, 13, 0.88) 0%,
    rgba(6, 8, 13, 0.35) 45%,
    rgba(6, 8, 13, 0.55) 100%
  );
  pointer-events: none;
}

.rc-hero .carousel-caption {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 12%;
  top: auto;
  transform: none;
  width: min(640px, 92vw);
  margin-left: clamp(1rem, 5vw, 4rem);
  padding: 1.75rem 2rem !important;
  text-align: left;
  background: rgba(8, 10, 16, 0.55);
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.rc-hero .carousel-caption h5 {
  font-family: var(--rc-font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff !important;
  text-shadow: none;
  margin-bottom: 0.5rem;
}

.rc-hero .carousel-caption p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--rc-muted) !important;
  text-shadow: none;
  margin-bottom: 0;
}

.rc-hero .carousel-control-prev,
.rc-hero .carousel-control-next {
  width: 3rem;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--rc-border);
  opacity: 1;
}

.rc-hero .carousel-control-prev {
  left: 1rem;
}

.rc-hero .carousel-control-next {
  right: 1rem;
}

.rc-hero .carousel-indicators {
  margin-bottom: 1.25rem;
}

.rc-hero .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
}

.rc-hero .carousel-indicators .active {
  background: var(--rc-accent);
  box-shadow: 0 0 12px var(--rc-glow);
}

@media (max-width: 767.98px) {
  .rc-hero .carousel-caption {
    bottom: 8%;
    margin-left: 1rem;
    margin-right: 1rem;
    width: auto;
    padding: 1.25rem 1.35rem !important;
  }
}

/* Ajuste de legibilidad en bloque tecnico */
.rc-senal .rc-senal-title {
  font-family: var(--rc-font-sans);
  font-size: clamp(2.25rem, 4.4vw, 4.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  color: #f7fbff;
}

.rc-senal .rc-senal-title-accent {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #ffd09a;
}

.rc-senal .rc-senal-lead {
  color: rgba(233, 242, 249, 0.82) !important;
}

.rc-senal .rc-senal-tile {
  background: linear-gradient(145deg, rgba(11, 27, 42, 0.86), rgba(21, 48, 68, 0.74));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 44px rgba(0, 0, 0, 0.18);
}

.rc-senal .rc-senal-tile-title {
  font-family: var(--rc-font-sans);
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: 0;
}

.rc-senal .rc-senal-tile-text {
  color: rgba(236, 244, 250, 0.86) !important;
  font-weight: 500;
}

.rc-senal .rc-senal-tile--glow {
  background: linear-gradient(145deg, rgba(74, 31, 23, 0.9), rgba(137, 54, 28, 0.76));
  border-color: rgba(255, 144, 64, 0.34);
  box-shadow: 0 0 0 1px rgba(255, 106, 31, 0.12), 0 18px 48px rgba(255, 106, 31, 0.18);
}

@media (max-width: 767.98px) {
  .rc-senal .rc-senal-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

/* —— Sección vertical común —— */
.rc-section-y {
  padding-top: clamp(3rem, 8vw, 5.5rem);
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

/* —— Contenido (ampliado) —— */
.rc-contenido-wide {
  position: relative;
  background: linear-gradient(180deg, var(--rc-bg) 0%, #080c14 45%, var(--rc-bg) 100%);
  border-top: 1px solid var(--rc-border);
  border-bottom: 1px solid var(--rc-border);
  overflow: hidden;
}

.rc-contenido-wide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(42%, 520px);
  height: 100%;
  background: radial-gradient(ellipse at 0% 30%, rgba(126, 184, 218, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.rc-contenido-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--rc-accent-warm);
  font-weight: 600;
}

.rc-contenido-prose.rc-intro-inner,
.rc-contenido-prose {
  text-align: left;
  font-size: clamp(1.05rem, 1.9vw, 1.18rem);
  line-height: 1.88;
  color: var(--rc-muted);
  max-width: 52rem;
}

.rc-contenido-prose h1,
.rc-contenido-prose h2,
.rc-contenido-prose h3 {
  font-family: var(--rc-font-display);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 1.5rem;
  margin-bottom: 0.85rem;
}

.rc-contenido-prose h1:first-child,
.rc-contenido-prose h2:first-child,
.rc-contenido-prose h3:first-child {
  margin-top: 0;
}

.rc-contenido-prose .highlight {
  color: var(--rc-accent) !important;
  font-weight: 600;
}

.rc-contenido-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 6.5rem;
}

.rc-aside-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--rc-radius);
  background: var(--rc-surface);
  border: 1px solid var(--rc-border);
  transition: border-color 0.3s ease, transform 0.35s ease;
}

.rc-aside-card:hover {
  border-color: rgba(126, 184, 218, 0.35);
  transform: translateY(-2px);
}

.rc-aside-card--accent {
  background: linear-gradient(135deg, rgba(126, 184, 218, 0.12) 0%, rgba(212, 184, 150, 0.06) 100%);
  border-color: rgba(126, 184, 218, 0.25);
}

.rc-aside-icon {
  display: block;
  font-size: 1.1rem;
  color: var(--rc-accent);
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.rc-aside-label {
  font-family: var(--rc-font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.35rem;
}

.rc-aside-text {
  font-size: 0.92rem;
  color: var(--rc-muted);
  line-height: 1.55;
  margin: 0;
}

.rc-aside-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  border-radius: var(--rc-radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--rc-border);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.rc-aside-cta:hover {
  background: rgba(126, 184, 218, 0.15);
  border-color: rgba(126, 184, 218, 0.4);
  color: #fff !important;
}

.rc-aside-cta-arrow {
  color: var(--rc-accent);
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.rc-aside-cta:hover .rc-aside-cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .rc-contenido-aside {
    position: relative;
    top: auto;
  }
}

/* —— Señal viva (sustituye bloque vídeo) —— */
.rc-senal {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.rc-senal-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(126, 184, 218, 0.14) 0%, transparent 50%),
    radial-gradient(90% 70% at 0% 100%, rgba(212, 184, 150, 0.1) 0%, transparent 55%),
    linear-gradient(165deg, #05070d 0%, #0a1020 40%, #06080d 100%);
  z-index: 0;
}

.rc-senal-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 30%, transparent 95%);
  z-index: 0;
}

.rc-senal > .container {
  z-index: 1;
}

.rc-senal-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--rc-accent);
  margin-bottom: 0.75rem;
}

.rc-senal-title {
  font-family: var(--rc-font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.25rem;
}

.rc-senal-title-accent {
  background: linear-gradient(105deg, #fff 0%, var(--rc-accent) 45%, var(--rc-accent-warm) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rc-senal-lead {
  font-size: 1.08rem;
  color: var(--rc-muted);
  line-height: 1.75;
  max-width: 32rem;
  margin-bottom: 0;
}

.rc-senal-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "wide wide"
    "a b";
  gap: 0.85rem;
}

.rc-senal-tile {
  padding: 1.25rem 1.35rem;
  border-radius: var(--rc-radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rc-border);
  backdrop-filter: blur(10px);
}

.rc-senal-tile--wide {
  grid-area: wide;
}

.rc-senal-tile--a {
  grid-area: a;
}

.rc-senal-tile--b {
  grid-area: b;
}

.rc-senal-tile--glow {
  box-shadow: 0 0 0 1px rgba(126, 184, 218, 0.15), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.rc-senal-tile-title {
  font-family: var(--rc-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.rc-senal-tile-text {
  font-size: 0.88rem;
  color: var(--rc-muted);
  line-height: 1.55;
}

.rc-senal-visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rc-senal-orbit {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rc-senal-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(126, 184, 218, 0.35);
  animation: rc-orbit-pulse 4s ease-in-out infinite;
}

.rc-senal-orbit-ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  animation: rc-orbit-spin 28s linear infinite;
}

.rc-senal-orbit-core {
  position: relative;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(20, 28, 44, 0.95) 0%, rgba(8, 12, 22, 0.98) 100%);
  border: 1px solid rgba(126, 184, 218, 0.4);
  box-shadow:
    0 0 60px rgba(126, 184, 218, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.rc-senal-freq {
  font-family: var(--rc-font-display);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--rc-accent-warm);
  margin-left: 0.35em;
}

.rc-eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 52px;
  padding: 0 0.5rem;
}

.rc-eq-bar {
  width: 5px;
  height: 40%;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--rc-accent) 0%, rgba(126, 184, 218, 0.25) 100%);
  animation: rc-eq-bounce 0.9s ease-in-out infinite alternate;
  animation-delay: var(--d, 0s);
}

.rc-eq-bar:nth-child(odd) {
  filter: brightness(1.15);
}

@keyframes rc-eq-bounce {
  from {
    height: 22%;
    opacity: 0.65;
  }
  to {
    height: 100%;
    opacity: 1;
  }
}

@keyframes rc-orbit-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes rc-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.rc-senal-float {
  position: absolute;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--rc-border);
  background: rgba(6, 8, 13, 0.75);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.rc-senal-float--1 {
  top: 8%;
  right: 4%;
  animation: rc-float 5s ease-in-out infinite;
}

.rc-senal-float--2 {
  bottom: 14%;
  left: 0;
  color: #fff3df;
  border-color: rgba(255, 106, 31, 0.48);
  background: linear-gradient(135deg, rgba(240, 68, 35, 0.74), rgba(255, 136, 28, 0.58));
  box-shadow: 0 14px 42px rgba(240, 68, 35, 0.28);
  animation: rc-float 6s ease-in-out infinite reverse;
}

@keyframes rc-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

[data-rc-reveal] {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s ease;
}

[data-rc-reveal].rc-inview {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.rc-senal-bento [data-rc-reveal]:nth-child(1) {
  transition-delay: 0s;
}
.rc-senal-bento [data-rc-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}
.rc-senal-bento [data-rc-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}

@media (max-width: 575.98px) {
  .rc-senal-bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "wide"
      "a"
      "b";
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-eq-bar,
  .rc-senal-orbit-ring,
  .rc-senal-orbit-ring::after,
  .rc-senal-float--1,
  .rc-senal-float--2 {
    animation: none !important;
  }

  [data-rc-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* —— Features / bento —— */
.rc-features {
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(4rem, 10vw, 6rem);
  background: linear-gradient(180deg, var(--rc-bg) 0%, #0a0d14 50%, var(--rc-bg) 100%);
}

.rc-features .rc-section-title {
  font-family: var(--rc-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.35rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.rc-features .rc-section-sub {
  text-align: center;
  color: var(--rc-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.rc-card {
  background: var(--rc-surface);
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  height: 100%;
  transition: border-color 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.rc-card:hover {
  border-color: rgba(126, 184, 218, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}

.rc-card img {
  border-radius: 10px;
  border: 1px solid var(--rc-border);
  max-height: 280px;
  width: 100%;
  object-fit: cover;
}

.rc-card .rc-card-body {
  color: var(--rc-muted);
  margin-top: 1.25rem;
}

.rc-card .rc-card-body h2,
.rc-card .rc-card-body h3 {
  font-family: var(--rc-font-display);
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.rc-row-gap {
  --bs-gutter-y: 1.75rem;
}

/* —— Parallax / eventos —— */
.rc-parallax {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) 1rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.rc-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6, 8, 13, 0.88) 0%, rgba(6, 8, 13, 0.65) 100%);
}

.rc-parallax .rc-parallax-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
}

.rc-parallax .rc-parallax-panel {
  background: rgba(10, 13, 20, 0.72);
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  backdrop-filter: blur(16px);
}

.rc-parallax h2 {
  font-family: var(--rc-font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: #fff;
}

.rc-parallax .rc-parallax-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rc-accent-warm);
  margin-bottom: 0.35rem;
}

.rc-parallax p {
  color: var(--rc-muted);
  font-size: 1.05rem;
}

.rc-parallax .ratio {
  border-radius: var(--rc-radius);
  overflow: hidden;
  border: 1px solid var(--rc-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .rc-parallax {
    background-attachment: scroll;
    min-height: auto;
  }
}

/* —— Nav activa —— */
.rc-navbar .nav-link.active {
  color: var(--rc-accent) !important;
  font-weight: 600;
}

/* —— Footer del sitio —— */
.site-curbelo ~ footer.rc-site-footer,
footer.rc-site-footer {
  background: linear-gradient(180deg, #05070c 0%, #020308 100%) !important;
  border-top: 1px solid var(--rc-border);
  color: var(--rc-muted) !important;
  padding: 0 !important;
  margin-top: 0 !important;
}

.rc-footer-rule {
  border-color: var(--rc-border);
  opacity: 1;
  margin: 1.75rem 0 1rem;
}

.rc-footer-heading {
  font-family: var(--rc-font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--rc-accent-warm);
  margin-bottom: 1rem;
}

.rc-footer-list li {
  margin-bottom: 0.45rem;
}

.rc-footer-list a {
  color: rgba(255, 255, 255, 0.78) !important;
  text-decoration: none;
  font-size: 0.95rem;
}

.rc-footer-list a:hover {
  color: var(--rc-accent) !important;
}

.rc-footer-tagline {
  color: var(--rc-muted);
  font-size: 0.92rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .rc-footer-tagline {
    margin-left: 0;
  }
}

.rc-footer-logo {
  height: auto;
  max-height: 52px;
  width: auto;
}

.rc-footer-social {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--rc-accent) !important;
  text-decoration: none;
}

.rc-footer-social:hover {
  color: #fff !important;
}

.rc-footer-copy,
.rc-footer-copy a {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.8rem !important;
}

.rc-footer-copy a:hover {
  color: var(--rc-accent) !important;
}

/* —— Página galería —— */
body.rc-galeria-body {
  background: var(--rc-bg);
}

.rc-galeria-page {
  padding-top: 76px;
}

.rc-galeria-hero {
  border-bottom: 1px solid var(--rc-border);
  background: radial-gradient(ellipse 80% 60% at 50% -40%, rgba(126, 184, 218, 0.12), transparent);
}

.rc-galeria-title {
  font-family: var(--rc-font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.75rem;
}

.rc-galeria-lead {
  color: var(--rc-muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.rc-galeria-tabs {
  gap: 0.5rem;
  flex-wrap: wrap;
}

.rc-galeria-tabs .nav-link {
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  color: var(--rc-muted);
  background: transparent;
  border: 1px solid var(--rc-border);
  font-weight: 500;
}

.rc-galeria-tabs .nav-link:hover {
  color: #fff;
  border-color: rgba(126, 184, 218, 0.35);
}

.rc-galeria-tabs .nav-link.active {
  color: #0a0e17 !important;
  background: linear-gradient(135deg, #9fd4ef, #7eb8da);
  border-color: transparent;
  font-weight: 600;
}

.rc-upload-group-title {
  font-family: var(--rc-font-display);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0;
}

.rc-upload-card {
  background: var(--rc-surface);
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rc-upload-thumb-btn {
  border: none;
  padding: 0;
  background: #000;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.rc-upload-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rc-upload-thumb-btn:hover img {
  transform: scale(1.04);
}

.rc-upload-meta {
  padding: 0.85rem 1rem 1rem;
}

.rc-upload-name {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
}

.rc-btn-outline {
  border: 1px solid var(--rc-border);
  color: var(--rc-accent) !important;
  background: transparent;
}

.rc-btn-outline:hover {
  background: rgba(126, 184, 218, 0.12);
  color: #fff !important;
}

.rc-file-badge {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(126, 184, 218, 0.15);
  color: var(--rc-accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.rc-empty-state {
  background: var(--rc-surface);
  border: 1px dashed var(--rc-border);
  border-radius: var(--rc-radius);
  color: var(--rc-muted);
}

.rc-masonry {
  column-count: 2;
  column-gap: 12px;
}

@media (min-width: 768px) {
  .rc-masonry {
    column-count: 3;
  }
}

@media (min-width: 1200px) {
  .rc-masonry {
    column-count: 4;
  }
}

.rc-masonry-item {
  break-inside: avoid;
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rc-border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.rc-masonry-item:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.rc-masonry-item img {
  width: 100%;
  display: block;
}

.rc-lightbox-content {
  position: relative;
  background: rgba(6, 8, 13, 0.95);
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  overflow: hidden;
}

.rc-lightbox-img {
  max-height: min(78vh, 900px);
  width: auto;
  margin: 0 auto;
  display: block;
}

.rc-lightbox-caption {
  color: var(--rc-muted);
}

.rc-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

/* WhatsApp flotante — armonizar con tema */
#whatsapp-modal {
  border: 1px solid var(--rc-border);
  background: rgba(12, 16, 24, 0.98) !important;
  color: var(--rc-text);
}

#whatsapp-modal h3 {
  color: #fff;
}

#whatsapp-modal p {
  color: var(--rc-muted);
}

/* Ajustes 2026: Radio Curbelo como empresa tecnica de eventos */
:root {
  --rc-bg: #f5f7fb;
  --rc-ink: #111827;
  --rc-ink-soft: #4b5563;
  --rc-night: #07111f;
  --rc-electric: #27b7d7;
  --rc-sun: #f3b64c;
  --rc-coral: #f06f56;
  --rc-line: rgba(17, 24, 39, 0.1);
}

.site-curbelo {
  background: var(--rc-bg);
  color: var(--rc-ink);
}

body:has(main.site-curbelo) {
  background: var(--rc-bg) !important;
}

.rc-navbar {
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.82) 0%, rgba(7, 17, 31, 0.34) 100%) !important;
}

.rc-navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.rc-navbar.navbar-scrolled .nav-link,
.rc-navbar.navbar-scrolled .dropdown-toggle {
  color: var(--rc-ink) !important;
}

.rc-navbar.navbar-scrolled .nav-link.active {
  color: #0b7f9b !important;
}

.rc-navbar.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(17,24,39,0.86)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.rc-navbar.navbar-scrolled .navbar-toggler {
  border-color: rgba(17, 24, 39, 0.18);
}

.rc-hero .carousel-item img {
  filter: brightness(0.82) saturate(1.08);
}

.rc-hero .carousel-item::after {
  background:
    linear-gradient(105deg, rgba(7, 17, 31, 0.78) 0%, rgba(7, 17, 31, 0.2) 48%, rgba(243, 182, 76, 0.22) 100%),
    radial-gradient(circle at 72% 18%, rgba(39, 183, 215, 0.32), transparent 28%);
}

.rc-hero-fallback {
  background: linear-gradient(145deg, #15385e 0%, #07111f 52%, #f3b64c 145%);
}

.rc-hero-kicker {
  margin-bottom: 0.7rem;
  color: #ffd990 !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.rc-hero .carousel-caption {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 30px 80px rgba(7, 17, 31, 0.42);
  width: min(560px, 88vw);
  padding: 1.35rem 1.55rem !important;
}

.rc-hero .carousel-caption h5 {
  font-family: var(--rc-font-sans);
  font-size: clamp(1.6rem, 3.2vw, 2.45rem);
  font-weight: 800;
  letter-spacing: 0;
}

.rc-hero .carousel-caption p {
  font-size: clamp(0.92rem, 1.45vw, 1.04rem);
}

.rc-hero-proof {
  position: absolute !important;
  left: 50% !important;
  bottom: 1.15rem !important;
  z-index: 6;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, calc(100% - 2rem));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 64px rgba(7, 17, 31, 0.32);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.rc-hero-proof div {
  padding: 0.95rem 1rem;
  background: rgba(7, 17, 31, 0.5);
}

.rc-hero-proof strong,
.rc-hero-proof span {
  display: block;
}

.rc-hero-proof strong {
  color: #fff;
  font-family: var(--rc-font-sans);
  font-size: 1.05rem;
  line-height: 1.1;
}

.rc-hero-proof span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  line-height: 1.2;
  margin-top: 0.2rem;
}

.rc-contenido-wide {
  background:
    radial-gradient(circle at 12% 18%, rgba(39, 183, 215, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef4f8 100%);
  border-color: var(--rc-line);
}

.rc-contenido-wide::before {
  background: linear-gradient(180deg, rgba(243, 182, 76, 0.18), rgba(39, 183, 215, 0.06));
  clip-path: polygon(0 0, 72% 0, 42% 100%, 0% 100%);
}

.rc-contenido-kicker,
.rc-senal-kicker {
  color: #b46f00;
}

.rc-contenido-prose,
.site-curbelo p {
  color: var(--rc-ink-soft);
}

.rc-contenido-prose h1,
.rc-contenido-prose h2,
.rc-contenido-prose h3,
.rc-section-title {
  color: var(--rc-ink);
}

.rc-contenido-prose .highlight {
  color: #0b7f9b !important;
}

.rc-aside-card,
.rc-card,
.rc-senal-tile {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--rc-line);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.08);
}

.rc-aside-label,
.rc-card .rc-card-body h2,
.rc-card .rc-card-body h3 {
  color: var(--rc-ink);
}

.rc-aside-text,
.rc-card .rc-card-body,
.rc-features .rc-section-sub {
  color: var(--rc-ink-soft);
}

.rc-aside-icon {
  color: #0b7f9b;
  font-family: var(--rc-font-display);
  font-weight: 800;
}

.rc-aside-cta {
  background: linear-gradient(135deg, #07111f 0%, #164469 100%);
  border-color: transparent;
}

.rc-senal {
  background: var(--rc-night);
}

.rc-senal-bg {
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(39, 183, 215, 0.22) 0%, transparent 55%),
    radial-gradient(90% 70% at 0% 100%, rgba(243, 182, 76, 0.22) 0%, transparent 58%),
    linear-gradient(165deg, #07111f 0%, #12253a 46%, #f5f7fb 180%);
}

.rc-senal-title,
.rc-senal-tile-title {
  color: #fff;
}

.rc-senal-tile {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.rc-senal-tile-text,
.rc-senal-lead {
  color: rgba(255, 255, 255, 0.72);
}

.rc-stage-device {
  position: relative;
  width: min(100%, 430px);
  min-height: 360px;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.rc-stage-beam {
  position: absolute;
  top: 8%;
  width: 42%;
  height: 78%;
  background: linear-gradient(180deg, rgba(39, 183, 215, 0.42), transparent 72%);
  filter: blur(10px);
  mix-blend-mode: screen;
  transform-origin: top center;
  animation: rc-beam-sweep 5.5s ease-in-out infinite;
}

.rc-stage-beam--a {
  left: 12%;
  background: linear-gradient(180deg, rgba(240, 111, 86, 0.78), transparent 72%);
  transform: rotate(-22deg);
}

.rc-stage-beam--b {
  right: 12%;
  background: linear-gradient(180deg, rgba(255, 116, 28, 0.82), transparent 72%);
  transform: rotate(22deg);
  animation-delay: 1.2s;
}

.rc-stage-sunburst {
  position: absolute;
  inset: 12% 4% auto;
  height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 216, 111, 0.9) 0%, rgba(255, 116, 28, 0.46) 28%, rgba(240, 111, 86, 0.16) 48%, transparent 70%);
  filter: blur(4px);
  opacity: 0.86;
  animation: rc-sunburst 3.2s ease-in-out infinite alternate;
}

.rc-led-wall {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 7px;
  width: min(82%, 330px);
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 126, 46, 0.24), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.4),
    0 0 70px rgba(255, 96, 34, 0.26);
  transform: rotateX(8deg) rotateY(-10deg);
  backdrop-filter: blur(12px);
}

.rc-led-wall span {
  aspect-ratio: 1;
  border-radius: 4px;
  background: linear-gradient(135deg, #ff3d1f, #ffb02e);
  opacity: 0.48;
  animation: rc-led-pulse 1.8s ease-in-out infinite alternate;
  animation-delay: var(--d, 0s);
}

.rc-stage-console {
  position: absolute;
  bottom: 6%;
  z-index: 3;
  display: flex;
  gap: 10px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.rc-stage-console span {
  width: 42px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.rc-stage-console span:nth-child(2),
.rc-stage-console span:nth-child(4) {
  background: #ff6a1f;
}

@keyframes rc-led-pulse {
  to {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes rc-beam-sweep {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
    transform: rotate(0deg);
  }
}

@keyframes rc-sunburst {
  to {
    transform: scale(1.08);
    opacity: 1;
  }
}

.rc-home-gallery {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(240, 111, 86, 0.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f5f7fb 100%);
}

.rc-gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.05rem;
  border-radius: 999px;
  background: #111827;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.16);
}

.rc-gallery-link:hover {
  background: #f06f56;
}

.rc-home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: 0.85rem;
}

.rc-home-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #111827;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
}

.rc-home-gallery-item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.rc-home-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.34) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rc-home-gallery-item:hover::after {
  opacity: 1;
}

.rc-home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.rc-home-gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.04);
}

.rc-features {
  background:
    linear-gradient(180deg, #eef4f8 0%, #fff 58%, #f5f7fb 100%);
}

.rc-card img {
  border-color: var(--rc-line);
}

.rc-card:hover {
  border-color: rgba(39, 183, 215, 0.38);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

@media (max-width: 767.98px) {
  .rc-hero-proof {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    grid-template-columns: 1fr;
    width: auto;
    margin: -2.25rem 1rem 1rem;
    transform: none;
  }

  .rc-hero-proof div {
    padding: 0.8rem 1rem;
  }

  .rc-stage-device {
    min-height: 300px;
  }

  .rc-home-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .rc-home-gallery-item--wide {
    grid-column: span 2;
  }
}
