:root {
  --rpf-black: #030303;
  --rpf-ink: #10110f;
  --rpf-bone: #f2ede0;
  --rpf-bone-bright: #fffaf0;
  --rpf-bone-soft: rgba(242, 237, 224, 0.74);
  --rpf-muted: rgba(242, 237, 224, 0.56);
  --rpf-line: rgba(242, 237, 224, 0.16);
  --rpf-glass: rgba(255, 255, 255, 0.08);
  --rpf-glass-strong: rgba(255, 255, 255, 0.14);
  --rpf-green: #33ff99;
  --rpf-green-soft: rgba(51, 255, 153, 0.18);
  --rpf-radius-xl: 30px;
  --rpf-radius-lg: 22px;
  --rpf-radius-md: 16px;
  --rpf-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --rpf-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.rpf-profile-page {
  --rpf-adminbar-offset: 0px;
  overflow: hidden !important;
  background: var(--rpf-black) !important;
}

html.rpf-profile-html,
html.rpf-profile-html body {
  width: 100%;
  min-height: 100%;
  overflow: hidden !important;
  background: var(--rpf-black) !important;
}

html.rpf-profile-html {
  scrollbar-gutter: auto;
}

body.admin-bar.rpf-profile-page {
  --rpf-adminbar-offset: 32px;
}

@media (max-width: 782px) {
  body.admin-bar.rpf-profile-page {
    --rpf-adminbar-offset: 46px;
  }
}

.rpf-shell,
.rpf-shell * {
  box-sizing: border-box;
}

.rpf-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(16px, 3vw, 42px);
  color: var(--rpf-bone);
  background:
    radial-gradient(circle at 12% 8%, rgba(51, 255, 153, 0.17), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(242, 237, 224, 0.12), transparent 28%),
    linear-gradient(145deg, #030303 0%, #0b0c0a 45%, #11130f 100%);
  font-family: var(--rpf-font);
}

body.rpf-profile-page .rpf-shell {
  position: fixed;
  top: var(--rpf-adminbar-offset);
  right: -2px;
  bottom: 0;
  left: 0;
  z-index: 9990;
  width: auto;
  max-width: none;
  height: calc(100dvh - var(--rpf-adminbar-offset));
  min-height: 0;
  margin: 0;
  /* Desktop: el dock compacto flota encima; el contenido respira con márgenes iguales. */
  padding-top: clamp(12px, 1.8vw, 24px);
  padding-right: max(clamp(28px, 5vw, 92px), env(safe-area-inset-right));
  padding-bottom: clamp(12px, 1.8vw, 24px);
  padding-left: max(clamp(28px, 5vw, 92px), env(safe-area-inset-left));
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  scrollbar-gutter: auto;
}

body.rpf-profile-page .rpf-shell::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.rpf-ambient {
  position: absolute;
  z-index: 1;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(50px);
  opacity: 0.25;
}

.rpf-ambient-a {
  top: 10%;
  left: -150px;
  background: var(--rpf-green);
}

.rpf-ambient-b {
  right: -170px;
  bottom: 10%;
  background: var(--rpf-bone-bright);
}

.rpf-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
}

.rpf-layout-single {
  grid-template-columns: minmax(0, 1fr);
}

body.rpf-profile-page .rpf-layout,
body.rpf-profile-page .rpf-layout-single {
  width: min(100%, 1540px);
  min-height: 100%;
  margin-right: auto;
  margin-left: auto;
}

body.rpf-profile-page .rpf-main {
  min-height: 100%;
}

.rpf-sidebar,
.rpf-main,
.rpf-hero,
.rpf-action-card,
.rpf-stat-card,
.rpf-panel,
.rpf-profile-card,
.rpf-system-card {
  border: 1px solid var(--rpf-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: var(--rpf-shadow);
  backdrop-filter: blur(20px);
}

.rpf-sidebar {
  position: sticky;
  top: 18px;
  align-self: start;
  display: grid;
  gap: 18px;
  min-height: calc(100vh - 84px);
  padding: 16px;
  border-radius: var(--rpf-radius-xl);
}

.rpf-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px;
  border-radius: 20px;
  color: var(--rpf-bone-bright);
  text-decoration: none;
}

.rpf-brand:hover,
.rpf-brand:focus {
  color: var(--rpf-bone-bright);
}

.rpf-brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(51, 255, 153, 0.5);
  border-radius: 999px;
  background: var(--rpf-green-soft);
  color: var(--rpf-green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.rpf-brand strong,
.rpf-brand small {
  display: block;
}

.rpf-brand strong {
  color: var(--rpf-bone-bright);
  font-size: 1rem;
}

.rpf-brand small {
  margin-top: 2px;
  color: var(--rpf-muted);
  font-size: 0.78rem;
}

.rpf-side-nav {
  display: grid;
  gap: 6px;
}

.rpf-side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--rpf-bone-soft);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 760;
}

.rpf-side-nav a span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--rpf-green);
  font-size: 0.8rem;
}

.rpf-side-nav a:hover,
.rpf-side-nav a:focus,
.rpf-side-nav a.is-active {
  border-color: rgba(51, 255, 153, 0.4);
  background: rgba(51, 255, 153, 0.12);
  color: var(--rpf-bone-bright);
}

.rpf-system-card {
  align-self: end;
  padding: 16px;
  border-radius: 20px;
}

.rpf-system-card p {
  margin: 0 0 12px;
  color: var(--rpf-muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rpf-status-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.rpf-status-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid var(--rpf-line);
  border-radius: 999px;
  color: var(--rpf-muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.rpf-status-pills .is-on {
  border-color: rgba(51, 255, 153, 0.45);
  background: var(--rpf-green-soft);
  color: var(--rpf-green);
}

.rpf-main {
  width: 100%;
  min-height: calc(100vh - 84px);
  padding: clamp(16px, 2.4vw, 30px);
  border-radius: var(--rpf-radius-xl);
}

.rpf-hero {
  overflow: hidden;
  position: relative;
  padding: clamp(24px, 4vw, 56px);
  border-radius: var(--rpf-radius-xl);
  background:
    radial-gradient(circle at 10% 0%, rgba(51, 255, 153, 0.17), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04));
}

.rpf-hero::after {
  content: "";
  position: absolute;
  right: -88px;
  bottom: -108px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(242, 237, 224, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.rpf-eyebrow {
  margin: 0 0 10px;
  color: var(--rpf-green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rpf-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0;
  color: var(--rpf-bone-bright);
  font-size: clamp(2.15rem, 5vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-shadow: 0 16px 52px rgba(0, 0, 0, 0.5);
}

.rpf-hero p:not(.rpf-eyebrow) {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--rpf-bone-soft);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.55;
}

.rpf-actions,
.rpf-card-grid,
.rpf-stats-grid,
.rpf-profile-card,
.rpf-panel {
  margin-top: 18px;
}

.rpf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rpf-button,
.rpf-action-card a,
.rpf-dock-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid rgba(51, 255, 153, 0.5);
  border-radius: 999px;
  background: var(--rpf-green);
  color: var(--rpf-black);
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.rpf-button:hover,
.rpf-button:focus,
.rpf-action-card a:hover,
.rpf-action-card a:focus,
.rpf-dock-account:hover,
.rpf-dock-account:focus {
  transform: translateY(-1px);
  color: var(--rpf-black);
}

.rpf-button-ghost {
  background: transparent;
  color: var(--rpf-bone-bright);
}

.rpf-button-ghost:hover,
.rpf-button-ghost:focus {
  background: var(--rpf-bone-bright);
  color: var(--rpf-black);
}

.rpf-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.rpf-stats-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rpf-stat-card {
  display: grid;
  gap: 6px;
  min-height: 150px;
  padding: 20px;
  border-radius: 22px;
  color: var(--rpf-bone);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.rpf-stat-card:hover,
.rpf-stat-card:focus {
  transform: translateY(-3px);
  border-color: rgba(51, 255, 153, 0.45);
  color: var(--rpf-bone-bright);
}

.rpf-stat-card strong {
  color: var(--rpf-bone-bright);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.rpf-stat-card span {
  color: var(--rpf-bone-bright);
  font-weight: 850;
}

.rpf-stat-card small {
  max-width: 220px;
  color: var(--rpf-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.rpf-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 14px;
}

.rpf-card-grid-large {
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
}

.rpf-action-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr auto;
  min-height: 235px;
  padding: 20px;
  border-radius: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.rpf-action-card:hover {
  transform: translateY(-3px);
  border-color: rgba(51, 255, 153, 0.45);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.055)),
    linear-gradient(180deg, rgba(51, 255, 153, 0.09), transparent);
}

.rpf-action-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(51, 255, 153, 0.35);
  border-radius: 999px;
  background: var(--rpf-green-soft);
  color: var(--rpf-green);
  font-weight: 900;
}

.rpf-action-card h2,
.rpf-panel h2,
.rpf-profile-card h2 {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--rpf-bone-bright);
  font-size: clamp(1.32rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.rpf-action-card p,
.rpf-profile-card p {
  margin: 10px 0 22px;
  color: var(--rpf-bone-soft);
  line-height: 1.5;
}

.rpf-action-card a {
  justify-self: start;
  margin-top: auto;
}

.rpf-panel {
  padding: 20px;
  border-radius: 24px;
}

.rpf-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.rpf-panel-head .rpf-eyebrow {
  margin: 0 0 6px;
}

.rpf-list {
  display: grid;
  gap: 8px;
}

.rpf-list-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--rpf-line);
  border-radius: 16px;
  color: var(--rpf-bone);
  text-decoration: none;
}

.rpf-list-row:hover,
.rpf-list-row:focus {
  border-color: rgba(51, 255, 153, 0.44);
  color: var(--rpf-bone-bright);
}

.rpf-list-row strong {
  color: var(--rpf-green);
  font-size: 0.86rem;
}

.rpf-list-row small {
  color: var(--rpf-bone-soft);
}

.rpf-museum-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.rpf-museum-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--rpf-line);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--rpf-bone-bright);
  text-decoration: none;
}

.rpf-museum-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.rpf-museum-tile:hover img,
.rpf-museum-tile:focus img {
  transform: scale(1.045);
}

.rpf-museum-tile span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--rpf-bone-bright);
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.rpf-profile-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 24px;
}

.rpf-avatar {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(51, 255, 153, 0.5);
  border-radius: 999px;
  background: var(--rpf-green-soft);
  color: var(--rpf-green);
  font-size: 1.2rem;
  font-weight: 950;
}

.rpf-role-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rpf-role-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid var(--rpf-line);
  border-radius: 999px;
  color: var(--rpf-bone-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.rpf-panel-text {
  max-width: 780px;
  margin: 0;
  color: var(--rpf-bone-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}


/* Reunioon Perfil v0.1.28 — GTranslate integrado en Centro Reunioon.
   El traductor queda como herramienta global discreta: visible en Perfil,
   oculto en curso tipo reel para conservar solo tarjeta + dock. */
.rpf-language-switcher,
.rpf-language-switcher * {
  box-sizing: border-box;
}

.rpf-language-switcher {
  position: fixed;
  top: calc(var(--rpf-adminbar-offset, 0px) + clamp(18px, 2.2vw, 28px));
  right: max(clamp(18px, 3vw, 34px), env(safe-area-inset-right));
  z-index: 99960;
  display: grid;
  justify-items: end;
  font-family: var(--rpf-font);
  color: var(--rpf-bone);
}

.rpf-language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 38px;
  padding: 8px 13px 8px 9px;
  border: 1px solid rgba(242, 237, 224, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(3, 3, 3, 0.52);
  color: var(--rpf-bone-bright);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.rpf-language-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(51, 255, 153, 0.13);
  color: var(--rpf-green);
  font-size: 0.78rem;
  box-shadow: inset 0 0 0 1px rgba(51, 255, 153, 0.16), 0 0 20px rgba(51, 255, 153, 0.1);
}

.rpf-language-button:hover,
.rpf-language-button:focus,
.rpf-language-switcher.is-open .rpf-language-button {
  border-color: rgba(51, 255, 153, 0.46);
  background:
    linear-gradient(135deg, rgba(51, 255, 153, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(3, 3, 3, 0.7);
  color: var(--rpf-bone-bright);
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(51, 255, 153, 0.08);
}

.rpf-language-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  gap: 10px;
  width: min(300px, calc(100vw - 28px));
  max-height: min(76vh, 560px);
  overflow-y: auto;
  padding: 12px;
  border: 1px solid rgba(242, 237, 224, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(51, 255, 153, 0.14), transparent 44%),
    rgba(3, 3, 3, 0.9);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.rpf-language-switcher.is-open .rpf-language-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.rpf-language-panel-head {
  display: grid;
  gap: 3px;
  padding: 10px 11px;
  border: 1px solid rgba(242, 237, 224, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
}

.rpf-language-panel-head strong {
  color: var(--rpf-bone-bright);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.rpf-language-panel-head span {
  color: var(--rpf-muted);
  font-size: 0.68rem;
  font-weight: 750;
}

.rpf-language-links {
  display: grid;
  gap: 7px;
}

.rpf-language-links a,
.rpf-language-links .gt-current-lang,
.rpf-gtranslate-engine a,
.rpf-gtranslate-engine select,
.rpf-language-panel .gt_selector,
.rpf-language-panel .goog-te-combo {
  width: 100%;
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid rgba(242, 237, 224, 0.12) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.07) !important;
  color: var(--rpf-bone-bright) !important;
  font-family: var(--rpf-font) !important;
  font-size: 0.78rem !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.rpf-language-links a:hover,
.rpf-language-links a:focus,
.rpf-gtranslate-engine a:hover,
.rpf-gtranslate-engine a:focus,
.rpf-language-panel .gt_selector:hover,
.rpf-language-panel .gt_selector:focus,
.rpf-language-panel .goog-te-combo:hover,
.rpf-language-panel .goog-te-combo:focus {
  border-color: rgba(51, 255, 153, 0.44) !important;
  background: rgba(51, 255, 153, 0.13) !important;
  color: var(--rpf-green) !important;
  outline: none !important;
}

.rpf-language-panel img {
  max-width: 20px !important;
  height: auto !important;
  margin-right: 7px !important;
  vertical-align: middle !important;
}

.rpf-language-panel .gt_switcher,
.rpf-language-panel .gt_switcher_wrapper,
.rpf-language-panel .gt_float_switcher,
.rpf-language-panel .skiptranslate,
.rpf-language-panel .gtranslate_wrapper,
.rpf-gtranslate-engine {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  transform: none !important;
}

.rpf-language-native-slot:empty {
  display: none;
}

body.rpf-course-focus-page .rpf-language-switcher {
  display: none !important;
}

@media (max-width: 720px) {
  .rpf-language-switcher {
    top: calc(var(--rpf-adminbar-offset, 0px) + 12px);
    right: max(12px, env(safe-area-inset-right));
  }

  .rpf-language-button {
    min-height: 34px;
    padding: 6px 8px;
  }

  .rpf-language-label {
    display: none;
  }

  .rpf-language-icon {
    width: 22px;
    height: 22px;
  }

  .rpf-language-panel {
    width: min(258px, calc(100vw - 24px));
  }
}

/* Global OWO panel */

.rpf-dock .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rpf-dock,
.rpf-dock * {
  box-sizing: border-box;
}

.rpf-dock {
  position: fixed;
  z-index: 99980;
  left: 16px;
  top: 50%;
  font-family: var(--rpf-font);
  color: var(--rpf-bone);
  pointer-events: none;
  transform: translateY(-50%);
}

.rpf-dock-toggle {
  display: grid;
  width: 42px;
  min-height: 70px;
  padding: 7px 4px;
  place-items: center;
  border: 1px solid rgba(51, 255, 153, 0.42);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.84);
  color: var(--rpf-green);
  cursor: pointer;
  font: inherit;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
  pointer-events: auto;
  backdrop-filter: blur(16px);
}

.rpf-dock-toggle .rpf-dock-bolt {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(51, 255, 153, 0.12);
  color: var(--rpf-green);
  font-size: 0.78rem;
  line-height: 1;
  text-shadow: 0 0 18px rgba(51, 255, 153, 0.45);
}

.rpf-dock-toggle .rpf-dock-bolt i {
  display: block;
}

.rpf-dock-status-dot {
  display: block;
  width: 8px;
  height: 8px;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.rpf-dock-status-dot.is-ok {
  background: var(--rpf-green);
  box-shadow: 0 0 0 4px rgba(51, 255, 153, 0.12), 0 0 18px rgba(51, 255, 153, 0.5);
}

.rpf-dock-status-dot.is-warning {
  background: #ffd54a;
  box-shadow: 0 0 0 4px rgba(255, 213, 74, 0.12), 0 0 18px rgba(255, 213, 74, 0.42);
}

.rpf-dock-status-dot.is-danger {
  background: #ff4d5e;
  box-shadow: 0 0 0 4px rgba(255, 77, 94, 0.12), 0 0 18px rgba(255, 77, 94, 0.42);
}

.rpf-dock-panel {
  position: absolute;
  top: 50%;
  left: 68px;
  display: grid;
  gap: 8px;
  width: min(304px, calc(100vw - 92px));
  max-height: min(680px, calc(100dvh - 24px));
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--rpf-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(51, 255, 153, 0.16), transparent 34%),
    rgba(3, 3, 3, 0.88);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transform: translate(-14px, -50%) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(22px);
  scrollbar-width: thin;
  scrollbar-color: rgba(51, 255, 153, 0.42) rgba(255, 255, 255, 0.05);
}


body.rpf-profile-page,
body.rpf-profile-page #page,
body.rpf-profile-page .site,
body.rpf-profile-page .rm-site,
body.rpf-profile-page .site-content,
body.rpf-profile-page .rm-site-main,
body.rpf-profile-page .rm-page,
body.rpf-profile-page .rm-container,
body.rpf-profile-page .entry-content,
body.rpf-profile-page .rm-entry-content {
  background: var(--rpf-black) !important;
}

body.rpf-profile-page .rm-site-header,
body.rpf-profile-page .rm-site-footer,
body.rpf-profile-page .rm-entry-header {
  display: none !important;
}

body.rpf-profile-page .rm-site,
body.rpf-profile-page .rm-site-main,
body.rpf-profile-page .rm-page,
body.rpf-profile-page .rm-container,
body.rpf-profile-page .entry-content,
body.rpf-profile-page .rm-entry-content {
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

body.rpf-profile-page .rm-entry-content > * {
  max-width: none !important;
}





/* Cuando Reunioon Perfil está activo, se oculta cualquier dock educativo duplicado.
   OWO queda como módulo de aprendizaje; Perfil controla el dock global. */
body.rpf-global-ready .owo-user-dock,
body.rpf-global-ready [data-owo-user-dock] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.rpf-dock-open .rpf-dock-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%) scale(1);
}

.rpf-dock-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 10px 12px;
  border: 1px solid var(--rpf-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.rpf-dock-top-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.rpf-dock-logo {
  display: block;
  width: min(72px, 100%);
  max-height: 46px;
  justify-self: end;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.rpf-dock-top p,
.rpf-dock-top strong,
.rpf-dock-top span {
  margin: 0;
}

.rpf-dock-top p {
  color: var(--rpf-green);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rpf-dock-top strong {
  color: var(--rpf-bone-bright);
  font-size: 0.94rem;
}

.rpf-dock-top span {
  color: var(--rpf-muted);
  font-size: 0.74rem;
}

.rpf-dock-nav {
  display: grid;
  gap: 5px;
}

.rpf-dock-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 38px;
  padding: 5px 25px 5px 6px;
  border: 1px solid rgba(242, 237, 224, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(242, 237, 224, 0.66);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 820;
  opacity: 0.78;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.rpf-dock-nav a span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(242, 237, 224, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(242, 237, 224, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.rpf-dock-nav a span i {
  display: block;
  line-height: 1;
}

.rpf-dock-nav a strong {
  min-width: 0;
  overflow: hidden;
  color: currentColor;
  font-size: inherit;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rpf-dock-dot {
  position: absolute;
  right: 10px;
  top: 50%;
  display: none;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: transparent;
  transform: translateY(-50%);
}

.rpf-dock-dot.is-current {
  display: block;
  background: var(--rpf-green);
  box-shadow: 0 0 0 4px rgba(51, 255, 153, 0.10), 0 0 16px rgba(51, 255, 153, 0.56);
}

.rpf-dock-dot.is-idle {
  display: none;
}

.rpf-dock-nav a:hover,
.rpf-dock-nav a:focus,
.rpf-dock-nav a.is-active {
  border-color: rgba(51, 255, 153, 0.52);
  background: rgba(51, 255, 153, 0.13);
  color: var(--rpf-bone-bright);
  opacity: 1;
  transform: translateX(2px);
  box-shadow: inset 0 0 0 1px rgba(51, 255, 153, 0.08), 0 10px 28px rgba(0, 0, 0, 0.24);
}

.rpf-dock-nav a:hover span,
.rpf-dock-nav a:focus span,
.rpf-dock-nav a.is-active span {
  border-color: rgba(51, 255, 153, 0.42);
  background: rgba(51, 255, 153, 0.18);
  color: var(--rpf-green);
  box-shadow: 0 0 18px rgba(51, 255, 153, 0.16);
}

.rpf-dock-alerts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.rpf-dock-alerts div {
  display: grid;
  gap: 2px;
  padding: 7px 5px;
  border: 1px solid var(--rpf-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
}

.rpf-dock-alerts strong {
  color: var(--rpf-bone-bright);
  font-size: 1.02rem;
  line-height: 1;
}

.rpf-dock-alerts span {
  color: var(--rpf-muted);
  font-size: 0.64rem;
  font-weight: 800;
}

.rpf-dock-account {
  width: 100%;
  min-height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}


@media (min-width: 641px) and (max-height: 720px) {
  .rpf-dock-panel {
    gap: 6px;
    width: min(292px, calc(100vw - 92px));
    padding: 8px;
  }

  .rpf-dock-top {
    padding: 8px 10px;
  }

  .rpf-dock-nav a {
    min-height: 36px;
  }

  .rpf-dock-alerts div {
    padding: 6px 4px;
  }
}

@media (max-width: 980px) {
  .rpf-layout {
    grid-template-columns: 1fr;
  }

  .rpf-sidebar {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .rpf-side-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rpf-side-nav a {
    justify-content: center;
    font-size: 0.78rem;
  }

  .rpf-side-nav a span {
    display: none;
  }

  .rpf-stats-grid,
  .rpf-stats-grid-three,
  .rpf-card-grid,
  .rpf-card-grid-large,
  .rpf-museum-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.rpf-profile-page .rpf-shell {
    right: 0;
  }

  body.rpf-profile-page .rpf-shell,
  .rpf-shell {
    padding: 12px 12px 84px;
  }

  .rpf-main,
  .rpf-sidebar {
    padding: 12px;
    border-radius: 24px;
  }

  .rpf-hero {
    padding: 24px;
  }

  .rpf-hero h1 {
    font-size: clamp(2.05rem, 13vw, 3.4rem);
  }

  .rpf-side-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rpf-stats-grid,
  .rpf-stats-grid-three,
  .rpf-card-grid,
  .rpf-card-grid-large,
  .rpf-museum-strip {
    grid-template-columns: 1fr;
  }

  .rpf-stat-card {
    min-height: 126px;
  }

  .rpf-action-card {
    min-height: 210px;
  }

  .rpf-list-row {
    grid-template-columns: 1fr;
  }

  .rpf-dock-alerts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rpf-profile-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .rpf-dock {
    left: 12px;
    top: auto;
    bottom: 12px;
    transform: none;
  }

  .rpf-dock-toggle {
    width: 42px;
    min-height: 70px;
    padding: 7px 4px;
    border-radius: 999px;
  }

  .rpf-dock-toggle .rpf-dock-bolt {
    width: 24px;
    height: 24px;
    font-size: 0.78rem;
  }

  .rpf-dock-toggle span {
    writing-mode: horizontal-tb;
  }

  .rpf-dock-panel {
    left: 0;
    top: auto;
    bottom: 82px;
    width: min(340px, calc(100vw - 24px));
    max-height: calc(100vh - 100px);
    overflow: auto;
    transform: translate(0, 12px) scale(0.98);
  }

  

body.rpf-dock-open .rpf-dock-panel {
    transform: translate(0, 0) scale(1);
  }
}


@media (max-width: 640px) {
  .rpf-dock-top {
    grid-template-columns: minmax(0, 1fr) 58px;
  }

  .rpf-dock-logo {
    width: min(58px, 100%);
    max-height: 38px;
  }
}

/* v0.1.2: quick notifications + ecosystem modules */
.rpf-notifications-panel,
.rpf-modules-panel {
  margin-top: 18px;
}

.rpf-panel-badge {
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(51, 255, 153, 0.45);
  border-radius: 999px;
  background: var(--rpf-green-soft);
  color: var(--rpf-green);
  font-size: 0.86rem;
  font-weight: 950;
}

.rpf-notification-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.rpf-notification {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--rpf-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--rpf-bone-soft);
  text-decoration: none;
}

.rpf-notification strong {
  color: var(--rpf-bone-bright);
  font-size: 0.98rem;
}

.rpf-notification span {
  color: var(--rpf-bone-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.rpf-notification.is-attention {
  border-color: rgba(51, 255, 153, 0.34);
  background: linear-gradient(145deg, rgba(51, 255, 153, 0.13), rgba(255, 255, 255, 0.055));
}

.rpf-notification.is-calm {
  border-color: rgba(242, 237, 224, 0.2);
}

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

.rpf-module-card {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 16px;
  border: 1px solid var(--rpf-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.052);
}

.rpf-module-card span {
  justify-self: start;
  min-height: 26px;
  padding: 6px 10px;
  border: 1px solid var(--rpf-line);
  border-radius: 999px;
  color: var(--rpf-muted);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.rpf-module-card strong {
  color: var(--rpf-bone-bright);
  font-size: 1.08rem;
  line-height: 1;
}

.rpf-module-card small {
  color: var(--rpf-bone-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.rpf-module-card.is-active span {
  border-color: rgba(51, 255, 153, 0.42);
  background: var(--rpf-green-soft);
  color: var(--rpf-green);
}

.rpf-module-card.is-partial span {
  border-color: rgba(242, 237, 224, 0.32);
  background: rgba(242, 237, 224, 0.08);
  color: var(--rpf-bone-bright);
}

.rpf-module-card.is-future {
  opacity: 0.82;
}


@media (max-width: 980px) {
  .rpf-notification-list,
  .rpf-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rpf-notification-list,
  .rpf-module-grid {
    grid-template-columns: 1fr;
  }
}

/* Colección integrada en Reunioon Perfil */
.rpf-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.rpf-section-nav a,
.rpf-small-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--rpf-line);
  border-radius: 999px;
  color: var(--rpf-bone-soft);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 850;
}

.rpf-section-nav a:hover,
.rpf-section-nav a:focus,
.rpf-section-nav a.is-active,
.rpf-small-link:hover,
.rpf-small-link:focus {
  border-color: rgba(51, 255, 153, 0.45);
  background: var(--rpf-green-soft);
  color: var(--rpf-bone-bright);
}

.rpf-product-grid,
.rpf-artist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.rpf-product-card,
.rpf-artist-card {
  overflow: hidden;
  border: 1px solid var(--rpf-line);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--rpf-bone-bright);
  text-decoration: none;
}

.rpf-product-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.045);
}

.rpf-product-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.rpf-product-card:hover .rpf-product-card-media img,
.rpf-product-card:focus-within .rpf-product-card-media img {
  transform: scale(1.045);
}

.rpf-product-card-body {
  display: grid;
  gap: 7px;
  padding: 13px;
}

.rpf-product-card-body strong,
.rpf-artist-card strong {
  color: var(--rpf-bone-bright);
  font-size: 0.94rem;
  line-height: 1.15;
}

.rpf-product-card-body small,
.rpf-artist-card small {
  color: var(--rpf-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.rpf-product-badge {
  justify-self: start;
  padding: 5px 8px;
  border: 1px solid rgba(51, 255, 153, 0.35);
  border-radius: 999px;
  background: var(--rpf-green-soft);
  color: var(--rpf-green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rpf-mini-form {
  padding: 0 13px 13px;
}

.rpf-mini-form button {
  width: 100%;
  min-height: 36px;
  border: 1px solid rgba(51, 255, 153, 0.42);
  border-radius: 999px;
  background: transparent;
  color: var(--rpf-green);
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

.rpf-mini-form button:hover,
.rpf-mini-form button:focus {
  background: var(--rpf-green);
  color: var(--rpf-black);
}

.rpf-share-box,
.rpf-inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.rpf-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.rpf-share-actions input {
  width: min(360px, 100%);
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--rpf-line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--rpf-bone-bright);
  font: inherit;
}

.rpf-artist-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 190px;
  padding: 22px 14px;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.rpf-artist-card:hover,
.rpf-artist-card:focus {
  transform: translateY(-3px);
  border-color: rgba(51, 255, 153, 0.45);
  background: var(--rpf-green-soft);
  color: var(--rpf-bone-bright);
}

.rpf-artist-avatar {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(51, 255, 153, 0.45);
  border-radius: 999px;
  background: var(--rpf-green-soft);
  color: var(--rpf-green);
  font-size: 1.1rem;
  font-weight: 950;
}

.rpf-artist-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mensajes Reunioon */
.rpf-chat-shell {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.rpf-chat-list,
.rpf-chat-area {
  border: 1px solid var(--rpf-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--rpf-shadow);
  backdrop-filter: blur(20px);
}

.rpf-chat-list {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
}

.rpf-chat-thread {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: var(--rpf-bone-soft);
  text-align: left;
  cursor: pointer;
}

.rpf-chat-thread strong {
  color: var(--rpf-bone-bright);
}

.rpf-chat-thread span,
.rpf-chat-thread small {
  overflow: hidden;
  color: var(--rpf-muted);
  font-size: 0.78rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rpf-chat-thread:hover,
.rpf-chat-thread:focus,
.rpf-chat-thread.is-active {
  border-color: rgba(51, 255, 153, 0.42);
  background: var(--rpf-green-soft);
}

.rpf-chat-area {
  min-height: 560px;
  padding: 16px;
}

.rpf-chat-conversation {
  display: none;
}

.rpf-chat-conversation.is-active {
  display: grid;
  gap: 14px;
}

.rpf-chat-conversation header,
.rpf-chat-context,
.rpf-chat-compose {
  border: 1px solid var(--rpf-line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.rpf-chat-conversation header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
}

.rpf-chat-conversation header strong,
.rpf-chat-context strong {
  display: block;
  color: var(--rpf-bone-bright);
}

.rpf-chat-conversation header span,
.rpf-chat-context p {
  color: var(--rpf-muted);
  font-size: 0.86rem;
}

.rpf-chat-conversation header a {
  color: var(--rpf-green);
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: none;
}

.rpf-chat-context {
  padding: 14px;
}

.rpf-chat-context p {
  margin: 5px 0 0;
  line-height: 1.45;
}

.rpf-chat-bubbles {
  display: grid;
  gap: 10px;
  max-height: 420px;
  overflow: auto;
  padding-right: 4px;
}

.rpf-chat-bubble {
  max-width: min(620px, 92%);
  padding: 12px 14px;
  border: 1px solid var(--rpf-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.rpf-chat-bubble.is-customer {
  justify-self: end;
  border-color: rgba(51, 255, 153, 0.25);
  background: rgba(51, 255, 153, 0.1);
}

.rpf-chat-bubble.is-system {
  justify-self: start;
}

.rpf-chat-bubble strong {
  display: block;
  color: var(--rpf-bone-bright);
  font-size: 0.82rem;
}

.rpf-chat-bubble p {
  margin: 6px 0 0;
  color: var(--rpf-bone-soft);
  line-height: 1.45;
}

.rpf-chat-bubble small {
  display: block;
  margin-top: 8px;
  color: var(--rpf-muted);
  font-size: 0.72rem;
}

.rpf-chat-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}

.rpf-chat-attachments a {
  display: grid;
  min-width: 54px;
  min-height: 54px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--rpf-line);
  border-radius: 12px;
  color: var(--rpf-bone-bright);
  font-size: 0.74rem;
  text-decoration: none;
}

.rpf-chat-attachments img {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: cover;
}

.rpf-chat-compose {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.rpf-chat-compose textarea {
  width: 100%;
  min-height: 90px;
  padding: 12px;
  border: 1px solid var(--rpf-line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--rpf-bone-bright);
  font: inherit;
  resize: vertical;
}

.rpf-chat-file-placeholder {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px dashed rgba(51, 255, 153, 0.34);
  border-radius: 16px;
  color: var(--rpf-green);
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.rpf-chat-file-placeholder input {
  display: none;
}

.rpf-chat-compose .rpf-button {
  justify-self: end;
  border: 0;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .rpf-product-grid,
  .rpf-artist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .rpf-product-grid,
  .rpf-artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rpf-share-box,
  .rpf-inline-form,
  .rpf-chat-shell {
    grid-template-columns: 1fr;
  }

  .rpf-share-actions {
    justify-content: stretch;
  }

  .rpf-share-actions input,
  .rpf-share-actions .rpf-button,
  .rpf-inline-form .rpf-button {
    width: 100%;
  }

  .rpf-chat-area {
    min-height: 0;
  }
}

.rpf-list-row-static {
  cursor: default;
}

.rpf-list-row-static:hover,
.rpf-list-row-static:focus {
  transform: none;
}

/* v0.1.15: Centro Reunioon como experiencia tipo app/secciones */
body.rpf-profile-page .rpf-shell {
  scroll-snap-type: y proximity;
  scroll-padding-top: clamp(12px, 1.6vw, 28px);
  padding-right: max(clamp(14px, 1.4vw, 30px), env(safe-area-inset-right));
  padding-left: max(clamp(14px, 1.4vw, 30px), env(safe-area-inset-left));
}

body.rpf-profile-page .rpf-layout,
body.rpf-profile-page .rpf-layout-single {
  width: 100%;
  max-width: none;
  min-height: auto;
}

body.rpf-profile-page .rpf-main {
  display: grid;
  gap: clamp(16px, 1.6vw, 28px);
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}


/* Panel seccional para vistas internas: mantiene la lectura ordenada en desktop
   y evita que las tarjetas queden demasiado pegadas al borde. */
.rpf-view-screen {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(16px, 1.6vw, 26px);
  min-height: calc(100dvh - var(--rpf-adminbar-offset) - clamp(24px, 3.2vw, 56px));
  padding: clamp(18px, 2.2vw, 42px);
  border: 1px solid var(--rpf-line);
  border-radius: clamp(24px, 2.4vw, 42px);
  background:
    radial-gradient(circle at 10% 0%, rgba(51, 255, 153, 0.13), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(242, 237, 224, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  box-shadow: var(--rpf-shadow);
  backdrop-filter: blur(20px);
}

.rpf-view-screen::after {
  content: "";
  position: absolute;
  right: -18vmin;
  bottom: -22vmin;
  z-index: 1;
  width: 42vmin;
  height: 42vmin;
  min-width: 240px;
  min-height: 240px;
  border: 1px solid rgba(242, 237, 224, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.rpf-view-screen > * {
  position: relative;
  z-index: 2;
  width: min(100%, 1560px);
  margin-right: auto;
  margin-left: auto;
}

.rpf-view-screen > .rpf-hero {
  margin-top: 0;
}

.rpf-view-screen .rpf-card-grid,
.rpf-view-screen .rpf-stats-grid,
.rpf-view-screen .rpf-panel,
.rpf-view-screen .rpf-chat-shell,
.rpf-view-screen .rpf-profile-card,
.rpf-view-screen .rpf-section-nav {
  max-width: 1560px;
}

@media (max-width: 980px) {
  .rpf-view-screen {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .rpf-view-screen {
    padding: 12px;
    border-radius: 24px;
  }
}

.rpf-app-screen {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: clamp(16px, 1.6vw, 26px);
  min-height: calc(100dvh - var(--rpf-adminbar-offset) - clamp(24px, 3.2vw, 56px));
  padding: clamp(18px, 2.2vw, 42px);
  border: 1px solid var(--rpf-line);
  border-radius: clamp(24px, 2.4vw, 42px);
  background:
    radial-gradient(circle at 10% 0%, rgba(51, 255, 153, 0.13), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(242, 237, 224, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  box-shadow: var(--rpf-shadow);
  scroll-snap-align: start;
  backdrop-filter: blur(20px);
}

.rpf-app-screen > * {
  position: relative;
  z-index: 2;
  width: min(100%, 1560px);
  margin-right: auto;
  margin-left: auto;
}

.rpf-app-screen::after {
  content: "";
  position: absolute;
  right: -18vmin;
  bottom: -22vmin;
  z-index: 1;
  width: 42vmin;
  height: 42vmin;
  min-width: 240px;
  min-height: 240px;
  border: 1px solid rgba(242, 237, 224, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.rpf-app-screen .rpf-hero {
  margin-top: 0;
}

.rpf-app-screen-hero {
  align-content: center;
}

.rpf-app-screen-priority {
  align-content: center;
}

.rpf-app-screen-priority .rpf-notifications-panel,
.rpf-app-screen-modules .rpf-modules-panel {
  margin-top: 0;
}

.rpf-app-screen-modules {
  align-content: center;
}

.rpf-app-screen .rpf-card-grid,
.rpf-app-screen .rpf-stats-grid,
.rpf-app-screen .rpf-panel {
  max-width: 1560px;
}



.rpf-app-screen-home .rpf-notifications-panel {
  margin-top: clamp(4px, 0.8vw, 12px);
}

.rpf-app-screen-home .rpf-notification-list {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.rpf-app-screen-home .rpf-panel-head h2 {
  font-size: clamp(1.35rem, 1.5vw, 2rem);
}

@media (min-width: 1440px) {
  .rpf-app-screen .rpf-hero h1 {
    font-size: clamp(3.6rem, 4.6vw, 6.3rem);
  }

  .rpf-app-screen .rpf-hero p:not(.rpf-eyebrow) {
    max-width: 860px;
  }
}

@media (max-width: 980px) {
  body.rpf-profile-page .rpf-shell {
    scroll-snap-type: none;
  }

  .rpf-app-screen {
    min-height: auto;
    align-content: start;
  }
}

@media (max-width: 640px) {
  .rpf-app-screen {
    padding: 12px;
    border-radius: 24px;
  }
}

/* Colección depurada */
.rpf-collection-hub {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.rpf-collection-tile {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--rpf-line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  color: var(--rpf-bone-bright);
  text-decoration: none;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.rpf-collection-tile::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -44px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(242, 237, 224, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.rpf-collection-tile:hover,
.rpf-collection-tile:focus {
  transform: translateY(-2px);
  border-color: rgba(51, 255, 153, 0.45);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    linear-gradient(180deg, rgba(51, 255, 153, 0.08), transparent);
  color: var(--rpf-bone-bright);
}

.rpf-collection-tile.is-primary {
  border-color: rgba(51, 255, 153, 0.34);
  background:
    radial-gradient(circle at 10% 0%, rgba(51, 255, 153, 0.17), transparent 52%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
}

.rpf-collection-icon,
.rpf-collection-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.rpf-collection-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(51, 255, 153, 0.38);
  background: var(--rpf-green-soft);
  color: var(--rpf-green);
  font-size: 1rem;
}

.rpf-collection-arrow {
  width: 32px;
  height: 32px;
  color: var(--rpf-muted);
  font-size: 0.82rem;
}

.rpf-collection-tile:hover .rpf-collection-arrow,
.rpf-collection-tile:focus .rpf-collection-arrow {
  background: var(--rpf-green);
  color: var(--rpf-black);
}

.rpf-collection-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  gap: 4px;
}

.rpf-collection-copy small {
  color: var(--rpf-green);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rpf-collection-copy strong {
  color: var(--rpf-bone-bright);
  font-size: clamp(1.05rem, 1.45vw, 1.42rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.rpf-collection-copy em {
  color: var(--rpf-bone-soft);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.35;
}

.rpf-view-screen-coleccion .rpf-product-grid,
.rpf-view-screen-obras .rpf-product-grid,
.rpf-view-screen-deseos .rpf-product-grid,
.rpf-view-screen-artistas .rpf-artist-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
}

.rpf-view-screen-coleccion .rpf-product-card,
.rpf-view-screen-deseos .rpf-product-card,
.rpf-view-screen-obras .rpf-product-card {
  min-width: 0;
}

@media (max-width: 980px) {
  .rpf-collection-hub {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .rpf-collection-tile {
    min-height: 96px;
    padding: 14px;
    border-radius: 20px;
  }

  .rpf-collection-icon {
    width: 40px;
    height: 40px;
  }
}

/* Colección v0.1.20: tabs con la misma lógica visual del resumen */
.rpf-collection-tabs {
  margin-top: 0;
  margin-bottom: clamp(2px, 0.6vw, 10px);
}

.rpf-collection-tabs .rpf-collection-tile {
  min-height: 104px;
}

.rpf-collection-tabs .rpf-collection-tile.is-active {
  border-color: rgba(51, 255, 153, 0.5);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(51, 255, 153, 0.1);
}

.rpf-collection-tabs .rpf-collection-tile.is-active .rpf-collection-arrow {
  background: var(--rpf-green);
  color: var(--rpf-black);
}

@media (max-width: 980px) {
  .rpf-collection-tabs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .rpf-collection-tabs {
    gap: 8px;
  }

  .rpf-collection-tabs .rpf-collection-tile {
    min-height: 92px;
  }
}

.rpf-view-screen-obras .rpf-empty-panel,
.rpf-view-screen-artistas .rpf-panel,
.rpf-view-screen-deseos .rpf-panel {
  overflow: hidden;
}

.rpf-empty-panel {
  display: grid;
  align-content: center;
  min-height: 260px;
}

.rpf-empty-panel .rpf-actions {
  margin-top: 18px;
}

.rpf-view-screen-obras .rpf-product-grid,
.rpf-view-screen-deseos .rpf-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  align-items: start;
}

.rpf-view-screen-artistas .rpf-artist-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.rpf-view-screen-artistas .rpf-artist-card {
  display: grid;
  min-height: 150px;
  place-items: center;
  gap: 8px;
  padding: 22px;
  text-align: center;
}

.rpf-view-screen-artistas .rpf-artist-avatar {
  margin-bottom: 4px;
}

@media (min-width: 1180px) {
  .rpf-view-screen-coleccion .rpf-hero,
  .rpf-view-screen-obras .rpf-hero,
  .rpf-view-screen-deseos .rpf-hero,
  .rpf-view-screen-artistas .rpf-hero {
    min-height: clamp(220px, 26vh, 360px);
  }
}

@media (max-width: 720px) {
  .rpf-collection-tabs {
    gap: 7px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .rpf-collection-tabs::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .rpf-collection-tabs a {
    min-height: 36px !important;
    padding: 8px 12px !important;
    font-size: 0.78rem !important;
  }
}

/* Colección v0.1.21: resumen como tab + vitrina cinematográfica de deseos */
.rpf-collection-hub,
.rpf-collection-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rpf-wishlist-cinema {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
  min-height: clamp(360px, 42vh, 560px);
  overflow: hidden;
}

.rpf-wishlist-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(51, 255, 153, 0.12), transparent 38%),
    radial-gradient(circle at 88% 74%, rgba(255, 255, 255, 0.12), transparent 32%);
  pointer-events: none;
}

.rpf-cinema-stage,
.rpf-cinema-copy,
.rpf-cinema-empty-icon,
.rpf-wishlist-cinema.is-empty > div {
  position: relative;
  z-index: 2;
}

.rpf-cinema-stage {
  min-height: clamp(300px, 38vh, 500px);
  border: 1px solid rgba(242, 237, 224, 0.16);
  border-radius: clamp(24px, 2.2vw, 36px);
  background: rgba(0, 0, 0, 0.24);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.rpf-cinema-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  color: var(--rpf-bone-bright);
  text-decoration: none;
  transition: opacity 900ms ease;
}

.rpf-cinema-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.rpf-cinema-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04) translate3d(0, 0, 0);
  transition: transform 6200ms ease;
}

.rpf-cinema-slide.is-active img {
  transform: scale(1.12) translate3d(-1.5%, -1.2%, 0);
}

.rpf-cinema-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.25), transparent 50%);
  pointer-events: none;
}

.rpf-cinema-caption {
  position: absolute;
  z-index: 3;
  left: clamp(16px, 2vw, 28px);
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  display: grid;
  gap: 4px;
  max-width: 620px;
  padding: clamp(12px, 1.2vw, 18px);
  border: 1px solid rgba(242, 237, 224, 0.16);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.rpf-cinema-caption strong {
  color: var(--rpf-bone-bright);
  font-size: clamp(1.15rem, 1.7vw, 2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.rpf-cinema-caption em {
  color: var(--rpf-bone-soft);
  font-size: 0.9rem;
  font-style: normal;
}

.rpf-cinema-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(4px, 0.6vw, 12px);
}

.rpf-cinema-copy h2,
.rpf-wishlist-cinema.is-empty h2 {
  margin: 0;
  color: var(--rpf-bone-bright);
  font-size: clamp(2rem, 3vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.rpf-cinema-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 6px;
}

.rpf-cinema-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(242, 237, 224, 0.16);
  border-radius: 999px;
  color: var(--rpf-bone-soft);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
  font-weight: 800;
}

.rpf-cinema-meta strong {
  color: var(--rpf-green);
}

.rpf-wishlist-cinema.is-empty {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 300px;
}

.rpf-cinema-empty-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(51, 255, 153, 0.34);
  border-radius: 28px;
  color: var(--rpf-green);
  background: var(--rpf-green-soft);
  font-size: 1.55rem;
}

@media (max-width: 1180px) {
  .rpf-collection-hub,
  .rpf-collection-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rpf-wishlist-cinema {
    grid-template-columns: 1fr;
  }

  .rpf-cinema-copy {
    align-content: start;
  }
}

@media (max-width: 720px) {
  .rpf-collection-hub,
  .rpf-collection-tabs {
    grid-template-columns: 1fr;
  }

  .rpf-wishlist-cinema {
    min-height: auto;
  }

  .rpf-cinema-stage {
    min-height: 320px;
  }

  .rpf-cinema-copy h2,
  .rpf-wishlist-cinema.is-empty h2 {
    font-size: clamp(1.7rem, 11vw, 3rem);
  }

  .rpf-wishlist-cinema.is-empty {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rpf-cinema-slide,
  .rpf-cinema-slide img {
    transition: none !important;
  }

  .rpf-cinema-slide img,
  .rpf-cinema-slide.is-active img {
    transform: none !important;
  }
}


/* Mensajes Reunioon bridge */
.rpf-mensajes-reunioon-bridge {
  width: min(100%, 1180px);
  margin: clamp(14px, 2vw, 22px) auto 0;
}

.rpf-mensajes-reunioon-bridge .mensajes-reunioon-center {
  width: 100%;
}


/* Ajuste Mensajes Reunioon: igualar ancho con el hero del perfil */
.rpf-view-screen-mensajes > .rpf-mensajes-reunioon-bridge {
  width: min(100%, 1560px);
  max-width: 1560px;
  margin: clamp(14px, 2vw, 22px) auto 0;
}

.rpf-view-screen-mensajes .rpf-mensajes-reunioon-bridge .mensajes-reunioon-center,
.rpf-view-screen-mensajes .mensajes-reunioon-center[data-mr-context="perfil"] {
  width: 100% !important;
  max-width: none !important;
}

@media (max-width: 640px) {
  .rpf-view-screen-mensajes > .rpf-mensajes-reunioon-bridge {
    margin-top: 12px;
  }
}

/* Reunioon Perfil v0.1.25 — Aprendizaje integra Reunioon/OWO dentro del perfil.
   El perfil controla el marco general; OWO conserva intactas las clases/tarjetas internas. */
.rpf-view-screen-aprendizaje {
  align-content: start;
}

.rpf-learning-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(242, 237, 224, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.rpf-learning-nav a,
.rpf-learning-nav a:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 16px;
  border: 1px solid rgba(242, 237, 224, 0.13);
  border-radius: 999px;
  color: rgba(242, 237, 224, 0.76);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.rpf-learning-nav a:hover,
.rpf-learning-nav a:focus-visible,
.rpf-learning-nav a.is-active {
  transform: translateY(-1px);
  border-color: rgba(51, 255, 153, 0.54);
  background: var(--rpf-green);
  color: var(--rpf-black);
  outline: 0;
}

.rpf-learning-nav span {
  margin-left: auto;
  padding: 0 12px;
  color: var(--rpf-muted);
  font-size: 0.8rem;
  font-weight: 760;
}

.rpf-learning-embed {
  overflow: visible;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
}

.rpf-learning-embed:not(.rpf-learning-embed-curso) .owo-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent !important;
  color: var(--rpf-bone);
}

.rpf-learning-embed-avance .owo-player-dashboard,
.rpf-learning-embed-cursos .owo-vitrine-hero {
  display: none !important;
}

.rpf-learning-embed .owo-section-heading {
  margin: clamp(8px, 1vw, 16px) 0 clamp(14px, 1.4vw, 22px);
}

.rpf-learning-embed .owo-section-heading .owo-kicker,
.rpf-learning-embed .owo-kicker {
  color: var(--rpf-green);
}

.rpf-learning-embed .owo-section-heading h2 {
  color: var(--rpf-bone-bright);
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.44);
}

.rpf-learning-embed .owo-empty {
  border: 1px solid rgba(242, 237, 224, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: var(--rpf-bone-soft);
}

.rpf-learning-embed .owo-collection-grid,
.rpf-learning-embed .owo-pack-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 440px));
  justify-content: start;
  align-items: start;
  gap: clamp(16px, 1.6vw, 26px);
}

.rpf-learning-embed .owo-collection-set,
.rpf-learning-embed .owo-course-pack,
.rpf-learning-embed .owo-course-pack-clean {
  max-width: 440px;
  border-color: rgba(242, 237, 224, 0.12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.rpf-learning-embed .owo-set-cover,
.rpf-learning-embed .owo-course-pack-clean .owo-pack-cover {
  min-height: 260px;
}

.rpf-learning-embed .owo-course-pack-clean .owo-pack-body h2,
.rpf-learning-embed .owo-set-head h3 {
  font-size: clamp(2rem, 2.4vw, 2.85rem);
}

.rpf-learning-embed .owo-button,
.rpf-learning-embed .owo-button:visited {
  text-decoration: none;
}

.rpf-learning-embed-curso {
  width: min(100%, 1560px);
  max-width: 1560px;
}

.rpf-learning-embed-curso .owo-course-shell-reel {
  min-height: min(980px, calc(100dvh - var(--rpf-adminbar-offset) - 120px));
  border-radius: clamp(22px, 2vw, 34px);
  overflow: hidden;
}

@media (max-width: 760px) {
  .rpf-learning-nav {
    border-radius: 22px;
  }

  .rpf-learning-nav a {
    flex: 1 1 150px;
  }

  .rpf-learning-nav span {
    flex-basis: 100%;
    margin-left: 0;
    padding: 4px 8px 2px;
  }

  .rpf-learning-embed .owo-collection-grid,
  .rpf-learning-embed .owo-pack-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rpf-learning-embed .owo-collection-set,
  .rpf-learning-embed .owo-course-pack,
  .rpf-learning-embed .owo-course-pack-clean {
    max-width: none;
  }
}

/* Reunioon Perfil v0.1.26 — Curso enfocado tipo reel.
   En la vista de curso el perfil deja de imprimir marco educativo, hero, stats o fondos claros:
   solo queda la tarjeta/clase activa sobre un fondo oscuro neutro y el dock global. */
body.rpf-profile-page.rpf-course-focus-page {
  background: #050506 !important;
}

body.rpf-profile-page .rpf-shell.rpf-shell-course-focus {
  padding: 0 !important;
  background: #050506 !important;
  overflow: hidden !important;
}

.rpf-shell-course-focus .rpf-ambient {
  display: none !important;
}

body.rpf-profile-page .rpf-shell-course-focus .rpf-layout,
body.rpf-profile-page .rpf-shell-course-focus .rpf-layout-single,
body.rpf-profile-page .rpf-shell-course-focus .rpf-main {
  width: 100% !important;
  max-width: none !important;
  min-height: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

body.rpf-profile-page .rpf-shell-course-focus .rpf-main {
  display: block !important;
  gap: 0 !important;
}

.rpf-view-screen-course-focus {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #050506 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: hidden !important;
}

.rpf-view-screen-course-focus::after {
  display: none !important;
}

.rpf-view-screen-course-focus > * {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
}

.rpf-course-focus-stage {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #050506 !important;
  overflow: hidden !important;
}

.rpf-course-focus-stage .rpf-learning-embed-curso,
.rpf-course-focus-stage .owo-course-shell-reel,
.rpf-course-focus-stage .owo-feed-reel {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: #050506 !important;
  overflow: hidden !important;
}

.rpf-course-focus-stage .owo-reel-topbar {
  display: none !important;
}

.rpf-course-focus-stage .owo-feed-reel {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  scroll-snap-type: y mandatory !important;
  scrollbar-width: none !important;
}

.rpf-course-focus-stage .owo-feed-reel::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

.rpf-course-focus-stage .owo-card-experience.owo-lesson-reel,
.rpf-course-focus-stage .owo-lesson-reel {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  min-height: 100% !important;
  height: 100% !important;
  padding: clamp(18px, 4vh, 44px) clamp(14px, 4vw, 56px) !important;
  background: #050506 !important;
  scroll-snap-align: start !important;
}

.rpf-course-focus-stage .owo-card-experience .owo-lesson-card {
  width: min(calc((100dvh - var(--rpf-adminbar-offset) - 72px) * 0.5625), calc(100vw - 42px), 640px) !important;
  height: auto !important;
  aspect-ratio: 9 / 16 !important;
  min-height: 0 !important;
  max-height: calc(100dvh - var(--rpf-adminbar-offset) - 72px) !important;
  margin: 0 auto !important;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 255, 255, 0.055) inset !important;
}

@media (max-width: 760px) {
  body.rpf-profile-page .rpf-shell.rpf-shell-course-focus {
    padding: 0 !important;
  }

  .rpf-course-focus-stage .owo-card-experience.owo-lesson-reel,
  .rpf-course-focus-stage .owo-lesson-reel {
    padding: 0 !important;
  }

  .rpf-course-focus-stage .owo-card-experience .owo-lesson-card {
    width: 100vw !important;
    max-width: 100vw !important;
    height: calc(100dvh - var(--rpf-adminbar-offset)) !important;
    max-height: calc(100dvh - var(--rpf-adminbar-offset)) !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    border-radius: 0 !important;
  }

  .rpf-course-focus-stage .owo-card-front,
  .rpf-course-focus-stage .owo-card-back-large,
  .rpf-course-focus-stage .owo-info-overlay,
  .rpf-course-focus-stage .owo-info-panel {
    border-radius: 0 !important;
  }
}

/* Reunioon Perfil v0.1.29 — Compras y datos personales integrados */
.rpf-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(242, 237, 224, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--rpf-bone-bright);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.rpf-notice strong,
.rpf-notice span {
  display: block;
}

.rpf-notice strong {
  font-weight: 950;
}

.rpf-notice span {
  color: var(--rpf-bone-soft);
  font-size: 0.92rem;
}

.rpf-notice.is-ok {
  border-color: rgba(51, 255, 153, 0.45);
  background: linear-gradient(135deg, rgba(51, 255, 153, 0.16), rgba(255, 255, 255, 0.06));
}

.rpf-notice.is-error {
  border-color: rgba(255, 210, 80, 0.45);
  background: linear-gradient(135deg, rgba(255, 210, 80, 0.12), rgba(255, 255, 255, 0.055));
}

.rpf-orders-panel .rpf-panel-head,
.rpf-customer-summary .rpf-panel-head,
.rpf-profile-form .rpf-panel-head {
  align-items: center;
}

.rpf-order-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rpf-order-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(242, 237, 224, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(51, 255, 153, 0.11), transparent 42%),
    rgba(0, 0, 0, 0.22);
}

.rpf-order-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.rpf-order-card h3 {
  margin: 0;
  color: var(--rpf-bone-bright);
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.rpf-order-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(51, 255, 153, 0.42);
  border-radius: 999px;
  background: rgba(51, 255, 153, 0.12);
  color: var(--rpf-green);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rpf-order-status.is-pending,
.rpf-order-status.is-on-hold {
  border-color: rgba(255, 210, 80, 0.42);
  background: rgba(255, 210, 80, 0.11);
  color: #ffe28f;
}

.rpf-order-thumbs {
  display: flex;
  gap: 8px;
}

.rpf-order-thumbs img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 1px solid rgba(242, 237, 224, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.rpf-order-meta,
.rpf-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.rpf-order-meta span,
.rpf-detail-grid > div {
  padding: 12px;
  border: 1px solid rgba(242, 237, 224, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--rpf-bone-soft);
  font-size: 0.82rem;
}

.rpf-order-meta strong,
.rpf-detail-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--rpf-bone-bright);
  font-size: 0.98rem;
}

.rpf-detail-grid span {
  display: block;
  color: var(--rpf-muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rpf-detail-wide {
  grid-column: 1 / -1;
}

.rpf-order-note {
  margin: 0;
  color: var(--rpf-bone-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.rpf-order-actions,
.rpf-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.rpf-profile-form {
  display: grid;
  gap: 18px;
}

.rpf-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rpf-form-grid label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.rpf-form-grid span {
  color: var(--rpf-muted);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rpf-form-grid input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(242, 237, 224, 0.16);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.26);
  color: var(--rpf-bone-bright);
  font: inherit;
  font-weight: 760;
  outline: none;
}

.rpf-form-grid input:focus {
  border-color: rgba(51, 255, 153, 0.52);
  box-shadow: 0 0 0 4px rgba(51, 255, 153, 0.1);
}

.rpf-form-wide {
  grid-column: 1 / -1;
}

@media (max-width: 820px) {
  .rpf-order-grid,
  .rpf-order-meta,
  .rpf-detail-grid,
  .rpf-form-grid {
    grid-template-columns: 1fr;
  }

  .rpf-order-card-head,
  .rpf-notice {
    align-items: flex-start;
    flex-direction: column;
  }

  .rpf-order-actions .rpf-button,
  .rpf-form-actions .rpf-button,
  .rpf-orders-panel .rpf-panel-head .rpf-button,
  .rpf-customer-summary .rpf-panel-head .rpf-button {
    width: 100%;
  }
}

/* 0.1.30 — Timeline animado de pedidos dentro de Reunioon Perfil */
.rpf-order-grid {
  grid-template-columns: 1fr;
}

.rpf-order-card {
  position: relative;
  overflow: hidden;
  gap: 16px;
}

.rpf-order-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at var(--rpf-order-glow-x, 0%) 0%, rgba(51, 255, 153, 0.13), transparent 42%);
  opacity: 0.8;
  z-index: 0;
}

.rpf-order-card > * {
  position: relative;
  z-index: 1;
}

.rpf-order-card-head {
  align-items: flex-start;
}

.rpf-order-card-head .rpf-eyebrow {
  margin-bottom: 8px;
}

.rpf-order-progress {
  margin-top: 2px;
  padding: 16px;
  border: 1px solid rgba(242, 237, 224, 0.12);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.rpf-order-progress-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.rpf-order-progress-current-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(51, 255, 153, 0.35);
  border-radius: 999px;
  background: rgba(51, 255, 153, 0.14);
  color: var(--rpf-green);
  font-size: 1.05rem;
  box-shadow: 0 0 0 7px rgba(51, 255, 153, 0.07), 0 14px 30px rgba(0, 0, 0, 0.24);
  animation: rpfOrderPulse 1.9s ease-in-out infinite;
}

.rpf-order-progress-head strong {
  display: block;
  color: var(--rpf-bone-bright);
  font-size: 0.98rem;
  line-height: 1.1;
}

.rpf-order-progress-head p {
  margin: 4px 0 0;
  color: var(--rpf-bone-soft);
  font-size: 0.84rem;
  line-height: 1.35;
}

.rpf-order-pill-track {
  position: relative;
  height: 16px;
  margin: 0 10px 14px;
  border-radius: 999px;
  background: rgba(242, 237, 224, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 16px 34px rgba(0, 0, 0, 0.2);
  isolation: isolate;
  overflow: visible;
}

.rpf-order-pill-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--rpf-order-progress);
  max-width: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(90deg, #4cd62f, var(--rpf-green));
  box-shadow: 0 0 26px rgba(51, 255, 153, 0.24);
  transition: width 380ms ease;
  z-index: 1;
}

.rpf-order-pill-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-120%);
  animation: rpfOrderShimmer 2.7s ease-in-out infinite;
}

.rpf-order-pill-thumb {
  position: absolute;
  top: 50%;
  left: clamp(10px, var(--rpf-order-progress), calc(100% - 10px));
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: #4cd62f;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  z-index: 3;
  animation: rpfOrderThumbPulse 1.85s ease-in-out infinite;
}

.rpf-order-pill-thumb::after {
  content: '';
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(76, 214, 47, 0.34);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.72);
  animation: rpfOrderThumbHalo 1.85s ease-in-out infinite;
  pointer-events: none;
}

.rpf-order-progress.is-stage-1 .rpf-order-pill-fill {
  width: 28% !important;
}

.rpf-order-progress.is-stage-1 .rpf-order-pill-thumb {
  animation: rpfOrderPaymentMove 2.2s ease-in-out infinite !important;
}

.rpf-order-progress.is-stage-2 .rpf-order-pill-thumb,
.rpf-order-progress.is-stage-3 .rpf-order-pill-thumb {
  animation: rpfOrderThumbPulse 1.85s ease-in-out infinite !important;
}

.rpf-order-icon-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.rpf-order-icon-row::before,
.rpf-order-pill-step::before {
  display: none !important;
}

.rpf-order-pill-step {
  display: grid !important;
  justify-items: center !important;
  gap: 7px !important;
  padding: 0 !important;
  text-align: center !important;
}

.rpf-order-pill-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242, 237, 224, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(242, 237, 224, 0.62);
  font-size: 1rem;
  line-height: 1;
}

.rpf-order-pill-label {
  color: var(--rpf-bone-soft);
  font-size: 0.72rem;
  line-height: 1.14;
}

.rpf-order-pill-step.is-complete .rpf-order-pill-icon,
.rpf-order-pill-step.is-current .rpf-order-pill-icon {
  border-color: rgba(51, 255, 153, 0.34);
  background: rgba(51, 255, 153, 0.13);
  color: var(--rpf-green);
}

.rpf-order-pill-step.is-current .rpf-order-pill-icon {
  box-shadow: 0 0 0 7px rgba(51, 255, 153, 0.08);
}

.rpf-order-pill-step.is-complete .rpf-order-pill-label,
.rpf-order-pill-step.is-current .rpf-order-pill-label {
  color: var(--rpf-bone-bright);
}

.rpf-order-alert {
  padding: 14px 16px;
  border: 1px solid rgba(255, 110, 110, 0.28);
  border-radius: 18px;
  background: rgba(255, 110, 110, 0.1);
}

.rpf-order-alert strong {
  display: block;
  color: #ffb6b6;
  font-weight: 950;
}

.rpf-order-alert p {
  margin: 5px 0 0;
  color: var(--rpf-bone-soft);
  font-size: 0.88rem;
}

@keyframes rpfOrderShimmer {
  0% { transform: translateX(-120%); opacity: 0; }
  28% { opacity: 0.9; }
  62% { transform: translateX(120%); opacity: 0.18; }
  100% { transform: translateX(120%); opacity: 0; }
}

@keyframes rpfOrderPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.05); filter: brightness(1.12); }
}

@keyframes rpfOrderThumbPulse {
  0%, 100% { filter: brightness(1); transform: translate(-50%, -50%) scale(1); }
  50% { filter: brightness(1.14); transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes rpfOrderThumbHalo {
  0% { opacity: 0; transform: scale(0.72); }
  42% { opacity: 0.5; }
  100% { opacity: 0; transform: scale(1.28); }
}

@keyframes rpfOrderPaymentMove {
  0%, 100% { left: 8%; filter: brightness(1); transform: translate(-50%, -50%) scale(1); }
  50% { left: 28%; filter: brightness(1.16); transform: translate(-50%, -50%) scale(1.05); }
}

@media (max-width: 820px) {
  .rpf-order-progress {
    padding: 12px;
  }

  .rpf-order-progress-head {
    align-items: flex-start;
  }

  .rpf-order-icon-row {
    gap: 8px !important;
  }

  .rpf-order-pill-icon {
    width: 34px;
    height: 34px;
    font-size: 0.92rem;
  }

  .rpf-order-pill-label {
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rpf-order-progress-current-icon,
  .rpf-order-pill-fill::after,
  .rpf-order-pill-thumb,
  .rpf-order-pill-thumb::after {
    animation: none !important;
  }
}

/* Guest / logged-out screen: Centro Reunioon invitation */
.rpf-guest-screen {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(100vh - 84px);
  min-height: calc(100dvh - 84px);
  place-items: center;
  padding: clamp(18px, 4vw, 60px);
}

.rpf-guest-orb {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.9;
}

.rpf-guest-orb-a {
  top: 8%;
  left: 2%;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  background: radial-gradient(circle, rgba(51, 255, 153, 0.28), rgba(51, 255, 153, 0.08) 44%, transparent 72%);
}

.rpf-guest-orb-b {
  right: -12%;
  bottom: -18%;
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  border: 1px solid rgba(242, 237, 224, 0.14);
  background: radial-gradient(circle, rgba(242, 237, 224, 0.16), rgba(242, 237, 224, 0.04) 48%, transparent 74%);
}

.rpf-guest-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  width: min(100%, 1220px);
  min-height: min(720px, calc(100dvh - 118px));
  padding: clamp(26px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(242, 237, 224, 0.17);
  border-radius: clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 6% 4%, rgba(51, 255, 153, 0.24), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(242, 237, 224, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(24px);
}

.rpf-guest-card::before,
.rpf-guest-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.rpf-guest-card::before {
  right: -160px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(242, 237, 224, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.rpf-guest-card::after {
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: inherit;
}

.rpf-guest-copy,
.rpf-guest-preview {
  position: relative;
  z-index: 2;
}

.rpf-guest-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--rpf-bone-bright);
  font-size: clamp(3.2rem, 7vw, 7.3rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.rpf-guest-copy p:not(.rpf-eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(242, 237, 224, 0.78);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  line-height: 1.55;
}

.rpf-guest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.rpf-guest-actions .rpf-button {
  min-height: 52px;
  padding-inline: 22px;
}

.rpf-guest-primary {
  gap: 10px;
  box-shadow: 0 18px 52px rgba(51, 255, 153, 0.2);
}

.rpf-guest-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.rpf-guest-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(242, 237, 224, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(242, 237, 224, 0.74);
  font-size: 0.82rem;
  font-weight: 850;
}

.rpf-guest-trust i {
  color: var(--rpf-green);
}

.rpf-guest-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
  min-height: 500px;
}

.rpf-guest-mark {
  grid-column: 1 / -1;
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 1px solid rgba(51, 255, 153, 0.24);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(51, 255, 153, 0.22), transparent 62%),
    linear-gradient(145deg, rgba(3, 3, 3, 0.26), rgba(255, 255, 255, 0.08));
  color: rgba(242, 237, 224, 0.96);
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  font-weight: 950;
  letter-spacing: -0.14em;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.64);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 24px 70px rgba(0, 0, 0, 0.34);
}

.rpf-guest-mini-card {
  display: grid;
  gap: 8px;
  min-height: 152px;
  padding: 18px;
  align-content: end;
  border: 1px solid rgba(242, 237, 224, 0.14);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
}

.rpf-guest-mini-card i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(51, 255, 153, 0.38);
  border-radius: 999px;
  background: rgba(51, 255, 153, 0.13);
  color: var(--rpf-green);
  font-size: 1rem;
}

.rpf-guest-mini-card strong {
  color: var(--rpf-bone-bright);
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.rpf-guest-mini-card span {
  color: rgba(242, 237, 224, 0.62);
  font-size: 0.82rem;
  font-weight: 750;
}

.rpf-guest-mini-card.is-learning,
.rpf-guest-mini-card.is-messages {
  transform: translateY(22px);
}

@media (max-width: 980px) {
  .rpf-guest-screen {
    align-items: start;
    min-height: auto;
    padding: 0;
  }

  .rpf-guest-card {
    grid-template-columns: 1fr;
    min-height: calc(100dvh - 118px);
    padding: 28px;
  }

  .rpf-guest-preview {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .rpf-guest-card {
    gap: 24px;
    padding: 24px;
    border-radius: 30px;
  }

  .rpf-guest-copy h1 {
    font-size: clamp(3rem, 17vw, 4.9rem);
  }

  .rpf-guest-preview {
    grid-template-columns: 1fr;
  }

  .rpf-guest-mark {
    min-height: 132px;
  }

  .rpf-guest-mini-card {
    min-height: 112px;
  }

  .rpf-guest-mini-card.is-learning,
  .rpf-guest-mini-card.is-messages {
    transform: none;
  }

  .rpf-guest-actions .rpf-button {
    width: 100%;
  }

  .rpf-guest-trust span {
    width: 100%;
  }
}


/* Guest login refinement 0.1.32: OWO SINPE Pago + centered feature grid */
.rpf-guest-preview {
  align-content: center;
}

.rpf-guest-mark.rpf-guest-owo-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 218px;
  padding: clamp(24px, 3vw, 34px);
  text-align: left;
  letter-spacing: normal;
  gap: 12px;
}

.rpf-guest-owo-kicker {
  color: var(--rpf-green);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rpf-guest-mark.rpf-guest-owo-card strong {
  color: var(--rpf-bone-bright);
  font-size: clamp(2.15rem, 4.1vw, 4.25rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  max-width: 560px;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.52);
}

.rpf-guest-mark.rpf-guest-owo-card p {
  margin: 0;
  max-width: 520px;
  color: rgba(242, 237, 224, 0.76);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.45;
  font-weight: 750;
}

.rpf-guest-owo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.rpf-guest-owo-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(51, 255, 153, 0.2);
  border-radius: 999px;
  background: rgba(51, 255, 153, 0.08);
  color: rgba(242, 237, 224, 0.78);
  font-size: 0.74rem;
  font-weight: 900;
}

.rpf-guest-mini-card {
  align-content: center;
  min-height: 148px;
}

.rpf-guest-mini-card.is-learning,
.rpf-guest-mini-card.is-messages {
  transform: none !important;
}

@media (max-width: 640px) {
  .rpf-guest-mark.rpf-guest-owo-card {
    min-height: 210px;
  }

  .rpf-guest-mark.rpf-guest-owo-card strong {
    font-size: clamp(2rem, 14vw, 3.55rem);
  }
}

/* Reunioon Perfil v0.1.34 — login global del Centro Reunioon */
body.rpf-login-page,
body.rpf-login-page #page,
body.rpf-login-page .site,
body.rpf-login-page .rm-page,
body.rpf-login-page .rm-entry-content,
body.rpf-login-page .entry-content {
  background: #020403 !important;
  color: var(--rpf-bone-bright) !important;
}

body.rpf-login-page .rm-site-header,
body.rpf-login-page .rm-site-footer,
body.rpf-login-page .rm-entry-header,
body.rpf-login-page .entry-header,
body.rpf-login-page .page-title,
body.rpf-login-page .wp-block-post-title {
  display: none !important;
}

body.rpf-login-page .rm-container,
body.rpf-login-page .site-main,
body.rpf-login-page main,
body.rpf-login-page article,
body.rpf-login-page .entry-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.rpf-login-screen {
  min-height: 100dvh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px) 18px;
  background:
    radial-gradient(circle at 14% 22%, rgba(51, 255, 153, 0.30), transparent 34%),
    radial-gradient(circle at 88% 74%, rgba(246, 242, 234, 0.18), transparent 28%),
    linear-gradient(135deg, #020403 0%, #070907 48%, #11120f 100%);
  color: var(--rpf-bone-bright);
  font-family: var(--rpf-font);
  box-sizing: border-box;
}

.rpf-login-screen *,
.rpf-login-screen *::before,
.rpf-login-screen *::after {
  box-sizing: border-box;
}

.rpf-login-ambient {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.72;
}

.rpf-login-ambient-a {
  inset: 0 auto auto -12%;
  width: 38vw;
  height: 38vw;
  min-width: 320px;
  min-height: 320px;
  background: radial-gradient(circle, rgba(51, 255, 153, 0.34), transparent 68%);
}

.rpf-login-ambient-b {
  inset: auto -12% -16% auto;
  width: 42vw;
  height: 42vw;
  min-width: 340px;
  min-height: 340px;
  background: radial-gradient(circle, rgba(245, 240, 228, 0.22), transparent 68%);
}

.rpf-login-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.15fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid rgba(242, 237, 224, 0.16);
  border-radius: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 0% 0%, rgba(51, 255, 153, 0.26), transparent 46%);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(22px) saturate(1.12);
}

.rpf-login-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 440px;
}

.rpf-login-hero h1 {
  margin: 0 0 18px;
  max-width: 520px;
  color: var(--rpf-bone-bright);
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: -0.09em;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.5);
}

.rpf-login-hero p {
  margin: 0;
  max-width: 560px;
  color: rgba(242, 237, 224, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.5;
  font-weight: 720;
}

.rpf-login-hero-pills,
.rpf-login-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.rpf-login-hero-pills span,
.rpf-login-register-note {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(242, 237, 224, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(242, 237, 224, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
}

.rpf-login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 20px);
  align-items: stretch;
}

.rpf-login-card {
  position: relative;
  min-width: 0;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(242, 237, 224, 0.15);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(10, 12, 10, 0.78), rgba(255, 255, 255, 0.07));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.rpf-login-card h1,
.rpf-login-card h2 {
  margin: 0;
  color: var(--rpf-bone-bright);
  font-size: clamp(2.2rem, 3.6vw, 4.3rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.rpf-login-card h2 {
  font-size: clamp(2rem, 3vw, 3.45rem);
}

.rpf-login-card-compact h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.rpf-login-card p:not(.rpf-eyebrow) {
  margin: 12px 0 0;
  color: rgba(242, 237, 224, 0.70);
  line-height: 1.5;
  font-weight: 680;
}

.rpf-login-intro {
  margin-bottom: 18px;
}

.rpf-login-error,
.rpf-login-success {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--rpf-bone-bright);
  font-size: 0.86rem;
  font-weight: 850;
  background: rgba(51, 255, 153, 0.13);
  border: 1px solid rgba(51, 255, 153, 0.24);
}

.rpf-login-error {
  background: rgba(255, 78, 78, 0.15);
  border-color: rgba(255, 78, 78, 0.28);
}

.rpf-login-form {
  display: grid;
  gap: 13px;
}

.rpf-login-form label {
  display: grid;
  gap: 7px;
  color: rgba(242, 237, 224, 0.78);
  font-size: 0.84rem;
  font-weight: 900;
}

.rpf-login-form input[type="text"],
.rpf-login-form input[type="email"],
.rpf-login-form input[type="password"] {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(242, 237, 224, 0.16);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--rpf-bone-bright);
  padding: 0 15px;
  outline: none;
  font: inherit;
  font-weight: 800;
}

.rpf-login-form input::placeholder {
  color: rgba(242, 237, 224, 0.38);
}

.rpf-login-form input[type="text"]:focus,
.rpf-login-form input[type="email"]:focus,
.rpf-login-form input[type="password"]:focus {
  border-color: rgba(51, 255, 153, 0.52);
  box-shadow: 0 0 0 4px rgba(51, 255, 153, 0.12);
}

.rpf-login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 5px;
}

.rpf-login-remember {
  display: inline-flex !important;
  grid-template-columns: none !important;
  grid-auto-flow: column;
  align-items: center;
  justify-content: flex-start;
  gap: 9px !important;
  margin: 0;
}

.rpf-login-remember input {
  width: 16px;
  height: 16px;
  accent-color: var(--rpf-green);
}

.rpf-login-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--rpf-bone-bright);
  font-weight: 950;
  text-decoration: none;
}

.rpf-login-link:hover {
  color: var(--rpf-green);
}

.rpf-login-register-note {
  border-radius: 18px;
  padding: 12px 13px;
  line-height: 1.35;
  color: rgba(242, 237, 224, 0.74);
}

.rpf-login-card .rpf-button {
  min-height: 46px;
}

.rpf-button-wide {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

body.woocommerce-account:not(.logged-in):not(.rpf-login-page) .woocommerce {
  width: min(1100px, calc(100vw - 32px));
  margin: clamp(30px, 7vw, 90px) auto !important;
  padding: clamp(22px, 4vw, 42px) !important;
  border: 1px solid rgba(242, 237, 224, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 0% 0%, rgba(51, 255, 153, 0.22), transparent 46%);
  color: var(--rpf-bone-bright);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.50);
}

body.woocommerce-account:not(.logged-in):not(.rpf-login-page) .woocommerce h2,
body.woocommerce-account:not(.logged-in):not(.rpf-login-page) .woocommerce h1 {
  color: var(--rpf-bone-bright) !important;
  font-size: clamp(3.2rem, 6vw, 5.6rem) !important;
  line-height: 0.88 !important;
  letter-spacing: -0.08em !important;
}

body.woocommerce-account:not(.logged-in):not(.rpf-login-page) .woocommerce form.login,
body.woocommerce-account:not(.logged-in):not(.rpf-login-page) .woocommerce form.register {
  border: 1px solid rgba(242, 237, 224, 0.16) !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--rpf-bone-bright) !important;
  padding: clamp(18px, 2.4vw, 28px) !important;
}

body.woocommerce-account:not(.logged-in):not(.rpf-login-page) .woocommerce form.login input.input-text,
body.woocommerce-account:not(.logged-in):not(.rpf-login-page) .woocommerce form.register input.input-text {
  border-radius: 16px !important;
  border: 1px solid rgba(242, 237, 224, 0.18) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--rpf-bone-bright) !important;
  min-height: 48px !important;
}

body.woocommerce-account:not(.logged-in):not(.rpf-login-page) .woocommerce form.login .button,
body.woocommerce-account:not(.logged-in):not(.rpf-login-page) .woocommerce form.register .button {
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--rpf-green) !important;
  color: #020403 !important;
  font-weight: 950 !important;
  padding: 12px 18px !important;
}

@media (max-width: 980px) {
  .rpf-login-shell {
    grid-template-columns: 1fr;
  }

  .rpf-login-hero {
    min-height: auto;
  }

  .rpf-login-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .rpf-login-screen {
    padding: 16px;
    min-height: 100dvh;
  }

  .rpf-login-shell {
    width: 100%;
    padding: 18px;
    border-radius: 28px;
  }

  .rpf-login-hero h1 {
    font-size: clamp(3.2rem, 17vw, 5.4rem);
  }

  .rpf-login-row {
    align-items: stretch;
    flex-direction: column;
  }

  .rpf-login-row .rpf-button,
  .rpf-login-actions .rpf-button {
    width: 100%;
    justify-content: center;
  }
}

/* Reunioon Perfil v0.1.46 — compatibilidad oficial con OWO Educación.
   Perfil conserva el shell global; OWO Educación queda como módulo interno de aprendizaje. */
body.rpf-global-ready .owo-edu-user-dock,
body.rpf-global-ready [data-owo-edu-user-dock] {
  display: none !important;
}

.rpf-education-embed {
  width: 100%;
  max-width: 100%;
}

.rpf-learning-embed:not(.rpf-learning-embed-curso) .owo-edu-wrap {
  margin: 0;
  padding: 0;
  max-width: none;
  background: transparent;
}

.rpf-learning-embed-avance .owo-edu-player-dashboard,
.rpf-learning-embed-cursos .owo-edu-vitrine-hero {
  margin-top: 0;
}

.rpf-learning-embed .owo-edu-section-heading,
.rpf-learning-embed .owo-edu-section-heading .owo-edu-kicker,
.rpf-learning-embed .owo-edu-kicker {
  color: var(--rpf-muted);
}

.rpf-learning-embed .owo-edu-section-heading h2 {
  color: var(--rpf-cream);
}

.rpf-learning-embed .owo-edu-empty {
  color: var(--rpf-muted);
}

.rpf-learning-embed .owo-edu-collection-grid,
.rpf-learning-embed .owo-edu-pack-grid {
  width: 100%;
}

.rpf-learning-embed .owo-edu-course-pack,
.rpf-learning-embed .owo-edu-course-pack-clean {
  border-radius: 24px;
}

.rpf-learning-embed .owo-edu-button,
.rpf-learning-embed .owo-edu-button:visited {
  text-decoration: none !important;
}

.rpf-course-focus-stage .rpf-learning-embed-curso,
.rpf-course-focus-stage .owo-edu-course-shell-reel,
.rpf-course-focus-stage .owo-edu-feed-reel {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  overflow: hidden !important;
}

.rpf-course-focus-stage .owo-edu-feed-reel {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

/* Reunioon Perfil v0.1.48 — restauración reel OWO Educación.
   La migración a OWO cambió las clases internas del curso. Esta capa vuelve a aplicar
   el comportamiento full-screen tipo reel/TikTok dentro del Perfil para las clases .owo-edu-*.
*/
.rpf-course-focus-stage .rpf-learning-embed-curso,
.rpf-course-focus-stage .owo-edu-course-shell-reel,
.rpf-course-focus-stage .owo-edu-course-stage,
.rpf-course-focus-stage .owo-edu-feed-reel {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: #050506 !important;
}

.rpf-course-focus-stage .owo-edu-course-shell-reel,
.rpf-course-focus-stage .owo-edu-course-stage {
  overflow: hidden !important;
}

.rpf-course-focus-stage .owo-edu-reel-topbar,
.rpf-course-focus-stage .owo-edu-lms-top-toggle {
  display: none !important;
}

.rpf-course-focus-stage .owo-edu-feed-reel {
  display: block !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  scroll-snap-type: y mandatory !important;
  scroll-behavior: smooth !important;
  scrollbar-width: none !important;
  overscroll-behavior-y: contain !important;
  -webkit-overflow-scrolling: touch !important;
}

.rpf-course-focus-stage .owo-edu-feed-reel::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

.rpf-course-focus-stage .owo-edu-card-experience.owo-edu-lesson-reel,
.rpf-course-focus-stage .owo-edu-lesson-reel {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  min-height: 100% !important;
  height: 100% !important;
  padding: clamp(18px, 4vh, 44px) clamp(14px, 4vw, 56px) !important;
  background: #050506 !important;
  scroll-snap-align: start !important;
  scroll-snap-stop: always !important;
}

.rpf-course-focus-stage .owo-edu-card-experience .owo-edu-lesson-card,
.rpf-course-focus-stage .owo-edu-lesson-card {
  width: min(calc((100dvh - var(--rpf-adminbar-offset) - 72px) * 0.5625), calc(100vw - 42px), 640px) !important;
  height: auto !important;
  aspect-ratio: 9 / 16 !important;
  min-height: 0 !important;
  max-height: calc(100dvh - var(--rpf-adminbar-offset) - 72px) !important;
  margin: 0 auto !important;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 255, 255, 0.055) inset !important;
}

.rpf-course-focus-stage .owo-edu-lms-floating-toggle {
  z-index: 1405 !important;
}

@media (max-width: 760px) {
  .rpf-course-focus-stage .owo-edu-card-experience.owo-edu-lesson-reel,
  .rpf-course-focus-stage .owo-edu-lesson-reel {
    padding: 0 !important;
  }

  .rpf-course-focus-stage .owo-edu-card-experience .owo-edu-lesson-card,
  .rpf-course-focus-stage .owo-edu-lesson-card {
    width: 100vw !important;
    max-width: 100vw !important;
    height: calc(100dvh - var(--rpf-adminbar-offset)) !important;
    max-height: calc(100dvh - var(--rpf-adminbar-offset)) !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    border-radius: 0 !important;
  }

  .rpf-course-focus-stage .owo-edu-card-front,
  .rpf-course-focus-stage .owo-edu-card-back-large,
  .rpf-course-focus-stage .owo-edu-info-overlay,
  .rpf-course-focus-stage .owo-edu-info-panel {
    border-radius: 0 !important;
  }
}



/* Reunioon Perfil 0.1.49 — control de lecciones OWO como botón circular superior */
.rpf-course-focus-stage .owo-edu-lms-floating-toggle,
.rpf-course-focus-stage .owo-edu-lms-toggle.owo-edu-lms-floating-toggle {
  position: fixed !important;
  left: calc(max(18px, env(safe-area-inset-left)) + 0px) !important;
  top: calc(max(18px, env(safe-area-inset-top)) + var(--rpf-adminbar-offset, 0px)) !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 1505 !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  padding: 0 !important;
  gap: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(54, 232, 120, 0.48) !important;
  background:
    radial-gradient(circle at 38% 25%, rgba(54, 232, 120, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(8, 24, 15, 0.88), rgba(2, 3, 3, 0.88)) !important;
  color: #36e878 !important;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(54, 232, 120, 0.12),
    0 0 28px rgba(54, 232, 120, 0.12) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.rpf-course-focus-stage .owo-edu-lms-floating-toggle span:not(.owo-edu-lms-toggle-icon):not(.owo-edu-sr-only) {
  display: none !important;
}

.rpf-course-focus-stage .owo-edu-lms-toggle-icon,
.rpf-course-focus-stage .owo-edu-lms-toggle-icon svg {
  display: block !important;
  width: 24px !important;
  height: 24px !important;
}

.rpf-course-focus-stage .owo-edu-lms-toggle-icon svg {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.75 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.rpf-course-focus-stage .owo-edu-course-shell-lms.is-lms-open .owo-edu-lms-floating-toggle {
  opacity: 1 !important;
  pointer-events: auto !important;
  border-color: rgba(246, 242, 234, 0.24) !important;
  color: #f6f2ea !important;
  background:
    radial-gradient(circle at 38% 25%, rgba(246, 242, 234, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(28, 28, 27, 0.90), rgba(4, 4, 4, 0.92)) !important;
}

.rpf-course-focus-stage .owo-course-shell-lms.is-lms-open .owo-edu-lms-floating-toggle span:last-child::after,
.rpf-course-focus-stage .owo-edu-course-shell-lms.is-lms-open .owo-edu-lms-floating-toggle span:last-child::after {
  content: none !important;
}

@media (max-width: 760px) {
  .rpf-course-focus-stage .owo-edu-lms-floating-toggle,
  .rpf-course-focus-stage .owo-edu-lms-toggle.owo-edu-lms-floating-toggle {
    left: calc(max(12px, env(safe-area-inset-left)) + 0px) !important;
    top: calc(max(12px, env(safe-area-inset-top)) + var(--rpf-adminbar-offset, 0px)) !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
  }

  .rpf-course-focus-stage .owo-edu-lms-toggle-icon,
  .rpf-course-focus-stage .owo-edu-lms-toggle-icon svg {
    width: 22px !important;
    height: 22px !important;
  }
}


/* OWO Organizaciones dentro de Reunioon Perfil */
.rpf-view-screen-organizaciones {
  width: min(1500px, calc(100vw - 32px)) !important;
  max-width: 1500px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.rpf-view-screen-organizaciones > .rpf-organizations-embed {
  width: 100% !important;
  max-width: 1420px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.rpf-organizations-embed {
  width: 100%;
}

.rpf-organizations-embed .reo-wrap {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.rpf-organizations-embed .reo-hero-card {
  margin-top: 0 !important;
}

.rpf-organizations-embed .reo-hero-card,
.rpf-organizations-embed .reo-form,
.rpf-organizations-embed .reo-empty,
.rpf-organizations-embed .reo-card,
.rpf-organizations-embed .reo-profile-section {
  border-radius: 28px;
}

.rpf-organizations-embed .reo-button {
  text-decoration: none;
}

.rpf-organizations-embed .reo-form {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .rpf-view-screen-organizaciones {
    width: min(100%, calc(100vw - 18px)) !important;
  }
}
