/* =========================================================
   Central de Ajuda — Relinq Beauty
   Depende de: bootstrap, style.css, relinq-beauty-theme.css
   ========================================================= */

:root {
  --rb-help-ink: #2b2130;
  --rb-help-muted: #6b6270;
  --rb-help-line: #ece6ea;
  --rb-help-snow: #fdf7fa;
  --rb-help-accent: #e05b7c;
  --rb-help-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.rb-help-body,
.rb-help-body p,
.rb-help-body h1,
.rb-help-body h2,
.rb-help-body h3,
.rb-help-body h4,
.rb-help-body li,
.rb-help-body a,
.rb-help-body input,
.rb-help-body button,
.rb-help-body span {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.rb-help-body {
  background: #fff;
  color: var(--rb-help-ink);
}

/* garante logo preta sobre header branco */
#header .logo-black {
  display: block;
}
#header .logo-white {
  display: none;
}

/* estado ativo no menu */
.wsmenu-list > li > a.rb-nav-active {
  color: var(--rb-primary) !important;
}

/* =========================================================
   HEADER — barra de navegação padrão
   (mesmas regras da index.html / como-funciona.html / sobre.html)
   ========================================================= */
.tra-menu .wsmainfull.scroll,
.white-menu .wsmainfull.scroll {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  box-shadow: 0 1px 0 rgba(187, 38, 73, 0.08),
    0 4px 24px rgba(0, 0, 0, 0.06) !important;
  border-bottom: 1px solid rgba(187, 38, 73, 0.1);
}
.wsmenu > .wsmenu-list > li > a:not(.last-link) {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.18s;
}
.wsmenu-list .last-link,
.wsmenu-list li a.last-link,
.navbar-dark .wsmenu > .wsmenu-list > li > a.last-link {
  background: linear-gradient(135deg, #cc3366 0%, #a02050 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 9px 22px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(187, 38, 73, 0.28) !important;
  transition: box-shadow 0.2s, transform 0.2s !important;
}
.wsmenu-list .last-link:hover,
.wsmenu-list li a.last-link:hover,
.navbar-dark .wsmenu > .wsmenu-list > li > a.last-link:hover {
  background: linear-gradient(135deg, #cc3366 0%, #a02050 100%) !important;
  box-shadow: 0 6px 20px rgba(187, 38, 73, 0.38) !important;
  transform: translateY(-1px);
  color: #fff !important;
}
#rb-nav-close {
  display: none;
}

/* ---------------------------------------------------------
   HERO + BUSCA
   --------------------------------------------------------- */
.rb-help-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 78px;
  background: linear-gradient(180deg, var(--rb-help-snow) 0%, #fff 100%);
  text-align: center;
}
.rb-help-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -240px;
  width: 1120px;
  height: 660px;
  transform: translateX(-50%);
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(204, 51, 102, 0.18) 0%,
    rgba(204, 51, 102, 0) 72%
  );
  pointer-events: none;
}

.rb-help-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.5;
  pointer-events: none;
}
.rb-help-orb-1 {
  width: 190px;
  height: 190px;
  left: -60px;
  top: 130px;
  background: radial-gradient(circle at 30% 30%, #f7b6cb, rgba(247, 182, 203, 0));
}
.rb-help-orb-2 {
  width: 250px;
  height: 250px;
  right: -90px;
  top: 70px;
  background: radial-gradient(circle at 30% 30%, #ffd8c0, rgba(255, 216, 192, 0));
}

.rb-help-hero > .container {
  position: relative;
  z-index: 1;
}

.rb-help-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-primary);
  background: rgba(204, 51, 102, 0.09);
  border: 1px solid rgba(204, 51, 102, 0.16);
  padding: 6px 15px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.rb-help-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rb-primary);
}

.rb-help-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--rb-help-ink);
}

.rb-help-hero > .container p {
  font-size: 1.08rem;
  color: var(--rb-help-muted);
  margin: 0 0 30px;
}

.rb-help-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--rb-help-line);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(43, 33, 48, 0.04),
    0 22px 50px -26px rgba(94, 30, 56, 0.3);
  padding: 8px 8px 8px 54px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.rb-help-search:focus-within {
  border-color: var(--rb-primary);
  box-shadow: 0 1px 2px rgba(43, 33, 48, 0.04),
    0 26px 60px -22px rgba(204, 51, 102, 0.45);
  transform: translateY(-2px);
}

.rb-help-search-ico {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.02rem;
  color: var(--rb-primary);
  transition: transform 0.2s var(--rb-help-ease);
}
.rb-help-search:focus-within .rb-help-search-ico {
  transform: translateY(-50%) scale(1.14);
}

.rb-help-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1rem;
  padding: 14px 8px;
  color: var(--rb-help-ink);
}
.rb-help-search input::placeholder {
  color: #a99faf;
}

.rb-help-search button {
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 13px;
  background-image: linear-gradient(
    135deg,
    var(--rb-primary) 0%,
    var(--rb-help-accent) 100%
  );
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 24px;
  cursor: pointer;
  transition: box-shadow 0.18s, transform 0.18s;
}
.rb-help-search button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-18deg);
}
.rb-help-search button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(204, 51, 102, 0.6);
}

.rb-help-hints {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--rb-help-muted);
}
.rb-help-hints-label {
  font-weight: 600;
}
.rb-help-hints a {
  color: var(--rb-help-ink) !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--rb-help-line);
  padding: 7px 14px;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s, border-color 0.15s,
    transform 0.15s, box-shadow 0.15s;
}
.rb-help-hints a:hover {
  color: #fff !important;
  background: var(--rb-primary);
  border-color: var(--rb-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -10px rgba(204, 51, 102, 0.55);
}

/* ---------------------------------------------------------
   ANIMAÇÕES
   --------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .rb-help-orb-1 {
    animation: rbFloat 9s ease-in-out infinite;
  }
  .rb-help-orb-2 {
    animation: rbFloat 11s ease-in-out infinite reverse;
  }
  .rb-help-eyebrow::before {
    animation: rbPulse 2.4s ease-out infinite;
  }
  .rb-help-hero .rb-help-eyebrow {
    animation: rbHeroUp 0.5s 0.04s both var(--rb-help-ease);
  }
  .rb-help-hero h1 {
    animation: rbHeroUp 0.5s 0.12s both var(--rb-help-ease);
  }
  .rb-help-hero > .container p {
    animation: rbHeroUp 0.5s 0.2s both var(--rb-help-ease);
  }
  .rb-help-search {
    animation: rbHeroUp 0.55s 0.28s both var(--rb-help-ease);
  }
  .rb-help-hints {
    animation: rbHeroUp 0.55s 0.36s both var(--rb-help-ease);
  }
  .rb-help-search button:hover::after {
    animation: rbShine 0.9s ease;
  }
}

@keyframes rbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 26px, 0);
  }
}
@keyframes rbPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 51, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(204, 51, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 51, 102, 0);
  }
}
@keyframes rbHeroUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes rbShine {
  to {
    left: 140%;
  }
}

/* reveal on scroll — só ativa quando o JS adiciona .rb-anim no <html> */
.rb-anim .rb-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s var(--rb-help-ease);
  will-change: opacity, transform;
}
.rb-anim .rb-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.rb-anim .rb-help-cat-row > .rb-reveal:nth-child(2) {
  transition-delay: 0.05s;
}
.rb-anim .rb-help-cat-row > .rb-reveal:nth-child(3) {
  transition-delay: 0.1s;
}
.rb-anim .rb-help-cat-row > .rb-reveal:nth-child(4) {
  transition-delay: 0.15s;
}
.rb-anim .rb-help-cat-row > .rb-reveal:nth-child(5) {
  transition-delay: 0.2s;
}
@media (prefers-reduced-motion: reduce) {
  .rb-anim .rb-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------------------------------------------------------
   CORPO
   --------------------------------------------------------- */
.rb-help-body-sec {
  padding: 54px 0 96px;
}
#rb-help-results:not([hidden]) {
  padding-top: 4px;
}

.rb-help-cats-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}
.rb-help-cats-head h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--rb-help-ink);
}
.rb-help-cats-head p {
  font-size: 0.98rem;
  color: var(--rb-help-muted);
  margin: 0;
}

.rb-help-cat-row {
  --bs-gutter-y: 28px;
}

.rb-help-cat {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rb-help-line);
  border-radius: 20px;
  padding: 30px 28px;
  transition: transform 0.28s var(--rb-help-ease), box-shadow 0.28s,
    border-color 0.28s;
}
.rb-help-cat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rb-primary), var(--rb-help-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--rb-help-ease);
}
.rb-help-cat:hover {
  transform: translateY(-6px);
  border-color: rgba(204, 51, 102, 0.28);
  box-shadow: 0 30px 60px -32px rgba(94, 30, 56, 0.38);
}
.rb-help-cat:hover::before {
  transform: scaleX(1);
}

.rb-help-cat-top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}
.rb-help-cat-ico {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(204, 51, 102, 0.13),
    rgba(224, 91, 124, 0.13)
  );
  color: var(--rb-primary);
  font-size: 1.32rem;
  transition: transform 0.28s var(--rb-help-ease);
}
.rb-help-cat:hover .rb-help-cat-ico {
  transform: scale(1.08) rotate(-5deg);
}
.rb-help-cat-count {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rb-primary);
  background: rgba(204, 51, 102, 0.09);
  padding: 4px 10px;
  border-radius: 999px;
}

.rb-help-cat h3 {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--rb-help-ink);
}

.rb-help-cat > p {
  font-size: 0.92rem;
  color: var(--rb-help-muted);
  margin: 0 0 14px;
}

.rb-help-cat ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rb-help-cat li {
  border-top: 1px solid var(--rb-help-line);
}
.rb-help-cat li a {
  position: relative;
  display: block;
  padding: 11px 22px 11px 0;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--rb-help-ink) !important;
  text-decoration: none;
  transition: color 0.15s, padding 0.15s;
}
.rb-help-cat li a::after {
  content: "\203A";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  opacity: 0;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--rb-primary);
  transition: opacity 0.15s, transform 0.15s;
}
.rb-help-cat li a:hover {
  color: var(--rb-primary) !important;
  padding-left: 6px;
}
.rb-help-cat li a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ---------------------------------------------------------
   RESULTADOS DE BUSCA
   --------------------------------------------------------- */
.rb-help-results {
  max-width: 760px;
  margin: 0 auto;
}

.rb-help-count {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rb-help-muted);
  margin: 0 0 14px;
}

.rb-help-hit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rb-help-hit {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid var(--rb-help-line);
  border-radius: 15px;
  padding: 18px 46px 18px 20px;
  text-decoration: none;
  transition: border-color 0.16s, box-shadow 0.16s, transform 0.16s;
}
.rb-help-hit::after {
  content: "\203A";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--rb-primary);
  opacity: 0;
  transition: opacity 0.16s, right 0.16s;
}
.rb-help-hit:hover {
  border-color: rgba(204, 51, 102, 0.35);
  box-shadow: 0 18px 44px -26px rgba(94, 30, 56, 0.36);
  transform: translateY(-2px);
}
.rb-help-hit:hover::after {
  opacity: 1;
  right: 16px;
}

.rb-help-hit-cat {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rb-primary);
  margin-bottom: 5px;
}
.rb-help-hit-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rb-help-ink);
  margin-bottom: 3px;
}
.rb-help-hit-ex {
  display: block;
  font-size: 0.9rem;
  color: var(--rb-help-muted);
  line-height: 1.5;
}
.rb-help-hit mark,
.rb-help-empty mark {
  background: rgba(204, 51, 102, 0.16);
  color: inherit;
  padding: 0 2px;
  border-radius: 3px;
}

.rb-help-empty {
  text-align: center;
  background: var(--rb-help-snow);
  border: 1px solid var(--rb-help-line);
  border-radius: 18px;
  padding: 46px 26px;
}
.rb-help-empty h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px;
}
.rb-help-empty p {
  color: var(--rb-help-muted);
  margin: 0 0 18px;
}

/* ---------------------------------------------------------
   CONTATO
   --------------------------------------------------------- */
.rb-help-contact {
  position: relative;
  overflow: hidden;
  margin-top: 64px;
  text-align: center;
  border: 0;
  border-radius: 26px;
  padding: 56px 30px;
  color: #fff;
  background: linear-gradient(135deg, #cc3366 0%, #d9497a 45%, #ec8aa6 100%);
  box-shadow: 0 44px 84px -44px rgba(204, 51, 102, 0.65);
}
.rb-help-contact::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -12%;
  width: 55%;
  height: 220%;
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}
.rb-help-contact::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 42px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.rb-help-contact > * {
  position: relative;
  z-index: 1;
}
.rb-help-contact h3 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}
.rb-help-contact p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  margin: 0 0 24px;
}
/* ---------------------------------------------------------
   BOTÕES DE CTA — mesmo padrão da index (#cta-final)
   --------------------------------------------------------- */

/* pílula branca sobre fundo rosa (igual .btn-cta-primary da index) */
.rb-help-contact .btn,
.rb-help-contact .btn.btn-violet-red {
  display: inline-block;
  text-align: center;
  background: #fff !important;
  background-image: none !important;
  border: 0 !important;
  color: var(--rb-primary) !important;
  font-weight: 700 !important;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 30px !important;
  padding: 14px 32px !important;
  box-shadow: 0 8px 22px -6px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s, box-shadow 0.2s;
}
.rb-help-contact .btn:hover,
.rb-help-contact .btn.btn-violet-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.3);
  color: var(--rb-primary) !important;
}

/* pílula rosa sólida sobre fundo claro (artigo + busca sem resultado) */
.rb-article-help .btn,
.rb-article-help .btn.btn-violet-red,
.rb-help-empty .btn,
.rb-help-empty .btn.btn-violet-red {
  display: inline-block;
  text-align: center;
  background: var(--rb-primary) !important;
  background-image: none !important;
  border: 0 !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.98rem;
  line-height: 1.2;
  border-radius: 30px !important;
  padding: 13px 28px !important;
  box-shadow: 0 10px 24px -8px rgba(204, 51, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.rb-article-help .btn:hover,
.rb-article-help .btn.btn-violet-red:hover,
.rb-help-empty .btn:hover,
.rb-help-empty .btn.btn-violet-red:hover {
  transform: translateY(-2px);
  background: var(--rb-primary-dark) !important;
  box-shadow: 0 16px 32px -10px rgba(204, 51, 102, 0.5);
  color: #fff !important;
}

.rb-help-contact .btn span,
.rb-article-help .btn span,
.rb-help-empty .btn span {
  margin-right: 8px;
}

/* ---------------------------------------------------------
   PÁGINA DE ARTIGO
   --------------------------------------------------------- */
.rb-article {
  padding: 132px 0 90px;
}

.rb-crumbs {
  font-size: 0.85rem;
  color: var(--rb-help-muted);
  margin-bottom: 22px;
}
.rb-crumbs a {
  color: var(--rb-help-muted);
  text-decoration: none;
  font-weight: 600;
}
.rb-crumbs a:hover {
  color: var(--rb-primary);
}
.rb-crumbs span {
  margin: 0 8px;
  opacity: 0.6;
}

.rb-article-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rb-primary);
  background: rgba(204, 51, 102, 0.09);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.rb-article h1 {
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--rb-help-ink);
}

.rb-article-lead {
  font-size: 1.1rem;
  color: var(--rb-help-muted);
  line-height: 1.55;
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rb-help-line);
}

.rb-article-content {
  font-size: 1.02rem;
  line-height: 1.72;
  color: #3f3646;
}
.rb-article-content p {
  margin: 0 0 18px;
}
.rb-article-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 32px 0 12px;
  color: var(--rb-help-ink);
}
.rb-article-content ul,
.rb-article-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.rb-article-content li {
  margin-bottom: 9px;
}
.rb-article-content a {
  color: var(--rb-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(204, 51, 102, 0.3);
}
.rb-article-content a:hover {
  border-bottom-color: var(--rb-primary);
}
.rb-article-content strong {
  color: var(--rb-help-ink);
}

.rb-article-help {
  margin-top: 40px;
  padding: 24px 26px;
  background: var(--rb-help-snow);
  border: 1px solid var(--rb-help-line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.rb-article-help span {
  font-weight: 700;
  color: var(--rb-help-ink);
}

/* relacionados */
.rb-related {
  margin-top: 50px;
  padding-top: 34px;
  border-top: 1px solid var(--rb-help-line);
}
.rb-related h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 16px;
}
.rb-related ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.rb-related li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--rb-help-line);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--rb-help-ink);
  text-decoration: none;
  transition: color 0.12s;
}
.rb-related li a span {
  font-size: 0.7rem;
  color: var(--rb-primary);
}
.rb-related li a:hover {
  color: var(--rb-primary);
}
.rb-related-all {
  display: inline-block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--rb-primary);
  text-decoration: none;
}
.rb-related-all:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------
   MENU MOBILE (drawer) — barra padrão (mesma da index/sobre/como-funciona)
   --------------------------------------------------------- */
@media (max-width: 991px) {
  html,
  body,
  .wsmenucontainer {
    overflow-x: hidden;
    max-width: 100%;
  }

  .wsmobileheader {
    z-index: 99999 !important;
    height: 62px !important;
    background: linear-gradient(135deg, #d95075 0%, #cc3366 100%) !important;
    border-bottom: none !important;
    box-shadow: 0 4px 24px rgba(139, 28, 60, 0.4) !important;
  }
  .wsmobileheader .smllogo {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    padding-left: 20px !important;
    margin-top: 0 !important;
  }
  .wsmobileheader .smllogo img {
    height: 30px !important;
    width: auto !important;
    display: block !important;
  }

  #rb-nav-close {
    display: none;
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 99999;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
  }
  .wsactive #rb-nav-close {
    display: flex;
  }

  .wsanimated-arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 42px !important;
    height: 42px !important;
    background: rgba(255, 255, 255, 0.16) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
  }
  .wsanimated-arrow span {
    position: absolute !important;
    top: 20px !important;
    left: 11px !important;
    width: 20px !important;
    height: 2px !important;
    background: #fff !important;
    border-radius: 2px !important;
  }
  .wsanimated-arrow span::before {
    content: "" !important;
    position: absolute !important;
    display: block !important;
    top: -7px !important;
    left: 0 !important;
    width: 20px !important;
    height: 2px !important;
    background: #fff !important;
    border-radius: 2px !important;
  }
  .wsanimated-arrow span::after {
    content: "" !important;
    position: absolute !important;
    display: block !important;
    bottom: -7px !important;
    left: 0 !important;
    width: 13px !important;
    height: 2px !important;
    background: #fff !important;
    border-radius: 2px !important;
  }
  .wsactive .wsanimated-arrow span {
    background-color: transparent !important;
  }
  .wsactive .wsanimated-arrow span::before {
    top: -2px !important;
    left: -1px !important;
    width: 20px !important;
  }
  .wsactive .wsanimated-arrow span::after {
    bottom: auto !important;
    top: -2px !important;
    left: -1px !important;
    width: 20px !important;
  }

  .wsactive .wsmenucontainer,
  .wsactive .wsmobileheader {
    margin-right: 0 !important;
  }
  .wsactive .wsmenu .overlapblackbg {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .wsmenu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99990 !important;
    pointer-events: none;
  }
  .wsactive .wsmenu {
    visibility: visible !important;
    pointer-events: auto;
  }
  .wsmenu > .wsmenu-list {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: linear-gradient(160deg, #e0507a 0%, #cc3366 100%) !important;
    padding-top: 80px !important;
    text-align: left !important;
    overflow-y: auto !important;
    z-index: 99990 !important;
  }
  .wsactive .wsmenu > .wsmenu-list {
    transform: translateX(0) !important;
  }
  .wsmenu > .wsmenu-list::before {
    display: none !important;
  }

  body.wsactive .wsmenu > .wsmenu-list > li > a,
  body.wsactive .nav-violet-red-hover .wsmenu-list > li > a,
  body.wsactive .nav-violet-red-hover .wsmenu-list > li > a:hover,
  body.wsactive .nav-violet-red-hover .wsmenu-list > li:hover > a {
    color: #fff !important;
  }
  .wsactive .wsmenu > .wsmenu-list > li > a {
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    padding: 17px 28px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: transparent !important;
  }
  .wsactive .wsmenu > .wsmenu-list > li:first-child > a {
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  }
  .wsactive .wsmenu > .wsmenu-list > li > a:active {
    background: rgba(255, 255, 255, 0.12) !important;
  }
  .wsmenu > .wsmenu-list > li:last-child,
  .wsmenu > .wsmenu-list > li:last-child > a.last-link {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    background: transparent !important;
  }
  .wsmenu > .wsmenu-list > li:last-child > a.last-link {
    display: block !important;
    margin: 24px 24px 32px !important;
    padding: 15px 28px !important;
    background: #fff !important;
    color: #cc3366 !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-align: center !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2) !important;
    line-height: 2 !important;
  }
}

/* ---------------------------------------------------------
   RESPONSIVO
   --------------------------------------------------------- */
@media (max-width: 767.98px) {
  .rb-help-hero {
    padding: 120px 0 50px;
  }
  .rb-help-orb {
    display: none;
  }
  .rb-help-search {
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 16px;
  }
  .rb-help-search-ico {
    display: none;
  }
  .rb-help-search input {
    flex: 1 1 100%;
    padding: 11px 8px;
    font-size: 0.95rem;
  }
  .rb-help-search button {
    flex: 1 1 100%;
    padding: 12px 16px;
    font-size: 0.92rem;
  }
  .rb-help-body-sec {
    padding: 40px 0 64px;
  }
  .rb-help-contact {
    padding: 40px 20px;
    border-radius: 20px;
  }
  .rb-help-contact::after {
    display: none;
  }
  .rb-article {
    padding: 104px 0 64px;
  }
  .rb-article .container,
  .rb-help-hero > .container,
  .rb-help-body-sec > .container {
    padding-left: 22px;
    padding-right: 22px;
  }
  .rb-article-help {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .rb-article-content ul,
  .rb-article-content ol {
    padding-left: 20px;
  }

  .rb-help-contact .btn,
  .rb-help-empty .btn,
  .rb-article-help .btn {
    display: block;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}
