/**
 * price.css – Página de preços / planos RCS for Business
 * Depende: rcs-themes.css (--rcs-primary-color, --rcs-gradient, etc.)
 * Responsividade: 991px (grid 2 col), 575px (grid 1 col), 768/575/414 (seções) – mesmo padrão WhatsApp
 */

/* ----- Navbar (só na página de preços): no desktop, Produtos fechado por padrão, abre só no hover ----- */
@media (min-width: 992px) {

  .rcs-price-page #header .wsmainfull .wsmenu .wsmenu-list>li>ul.sub-menu,
  .rcs-price-page #header .wsmainfull .wsmenu .wsmenu-list>li>ul.novo-menu-rcs {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .rcs-price-page #header .wsmainfull .wsmenu .wsmenu-list>li:hover>ul.sub-menu,
  .rcs-price-page #header .wsmainfull .wsmenu .wsmenu-list>li:hover>ul.novo-menu-rcs {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* ========== Navbar: igual ao Voz – fundo transparente no topo; ao rolar usa regras globais [data-theme="dark"] .tra-menu.white-scroll .wsmainfull.scroll ========== */
#header.tra-menu.navbar-dark.white-scroll .wsmainfull {
  background-color: transparent !important;
  box-shadow: none !important;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

/* Logo sempre branca em todos os tamanhos de tela (página escura) */
.rcs-price-page #header .desktoplogo .logo-white {
  display: block !important;
}

/* Hover nos links do menu (Home, Produtos, Sobre, Planos, Blog) */
.rcs-price-page #header .wsmenu>.wsmenu-list>li>a.h-link {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.rcs-price-page #header .wsmenu>.wsmenu-list>li>a.h-link:hover {
  color: rgba(255, 255, 255, 0.85) !important;
  opacity: 1;
}

.rcs-price-page #header .wsmainfull.scroll .wsmenu>.wsmenu-list>li>a.h-link:hover {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Botão Teste Gratuito no header – estilo tema escuro (página sempre escura) */
#header a.botao-rcs,
#header a.botao-rcs--dark,
.rcs-price-page #header a.botao-rcs,
.rcs-price-page #header a.botao-rcs--dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  min-height: 42px;
  background: linear-gradient(35deg, #7b2fff 0%, #9a6cff 100%);
  color: var(--rcs-text-light) !important;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 0px 10px rgb(138, 92, 246);
  text-decoration: none;
  border: none;
  pointer-events: auto;
  cursor: pointer;
}

#header a.botao-rcs:hover,
#header a.botao-rcs--dark:hover,
.rcs-price-page #header a.botao-rcs:hover,
.rcs-price-page #header a.botao-rcs--dark:hover {
  background: linear-gradient(-35deg, #7b2fff 0%, #9a6cff 100%);
  color: #000000 !important;
  box-shadow: 0 0 14px rgb(23, 23, 24);
}

/* ====== PLANOS RCS – Estilo dark glass com cores RCS ====== */
.rcs-pricing-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  /* Luz de cima: radial forte no topo, cor descendo; embaixo bem escuro */
  background:
    radial-gradient(ellipse 220% 140% at 50% -15%, rgba(123, 47, 255, 0.6) 0%, rgba(80, 30, 180, 0.4) 15%, rgba(39, 11, 123, 0.25) 30%, transparent 52%),
    linear-gradient(180deg, #0d0818 0%, #0a0612 15%, #080510 35%, #060408 60%, #100021 100%);
  color: var(--rcs-text-light);
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Scroll reveal – fade por item (entra ao rolar pra baixo, sai ao voltar) */
.rcs-pricing-page .scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.rcs-pricing-page .scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .rcs-pricing-page .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Hero: wrapper em coluna, título + toggle com gap */
.rcs-pricing-hero {
  position: relative;
  z-index: 1;
  padding: 56px 0 36px;
  text-align: center;
}

.rcs-pricing-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.rcs-pricing-hero .rcs-pricing-bg-title {
  display: block;
  font-size: clamp(3rem, 15vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  pointer-events: none;
  user-select: none;
  background: linear-gradient(90deg, var(--rcs-text-light) 0%, color-mix(in srgb, var(--rcs-text-light) 90%, transparent) 35%, var(--rcs-primary-color) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.rcs-pricing-hero .rcs-billing-wrap {
  margin: 0;
  padding: 0;
}

.rcs-pricing-grid-section {
  position: relative;
  z-index: 1;
  padding: 0px 0 72px;
}

.rcs-pricing-grid-container {
  max-width: 100%;
}

.rcs-pricing-grid-section .container.rcs-pricing-grid-container {
  padding-left: 25px;
  padding-right: 25px;
  max-width: 1700px;
}

.rcs-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  margin: 0 auto;
}

/* Cards – mesmo padrão WhatsApp + efeito dominó (entra/sai com fade ao rolar) */
.rcs-price-card {
  display: flex;
  flex-flow: column nowrap;
  flex: 1;
  min-width: 0;
  max-width: none;
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 28px 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.rcs-price-card:hover {
  transform: translateY(-4px);
}

.rcs-pricing-grid.is-visible .rcs-price-card {
  animation: rcs-price-card-reveal 0.5s ease-out forwards;
}

.rcs-pricing-grid.is-visible .rcs-price-card:nth-child(1) {
  animation-delay: 0.15s;
}

.rcs-pricing-grid.is-visible .rcs-price-card:nth-child(2) {
  animation-delay: 0.22s;
}

.rcs-pricing-grid.is-visible .rcs-price-card:nth-child(3) {
  animation-delay: 0.29s;
}

.rcs-pricing-grid.is-visible .rcs-price-card:nth-child(4) {
  animation-delay: 0.36s;
}

.rcs-pricing-grid.is-visible .rcs-price-card:nth-child(5) {
  animation-delay: 0.43s;
}

@keyframes rcs-price-card-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rcs-price-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .rcs-pricing-grid.is-visible .rcs-price-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.rcs-price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.rcs-price-card__head {
  position: relative;
  z-index: 1;
}

.rcs-price-card__plan {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.rcs-price-card__desc {
  opacity: 0.8;
  margin-top: 6px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.rcs-price {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.rcs-price__currency {
  opacity: 0.85;
  font-weight: 700;
  font-size: 1.1rem;
}

.rcs-price__value {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.rcs-price__period {
  opacity: 0.8;
  font-weight: 600;
  font-size: 0.95rem;
}

.rcs-price--custom .rcs-price__value {
  font-size: 1.25rem;
}

.rcs-price-card__features {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
  flex: 1;
  min-height: 0;
}

.rcs-price-card__features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  opacity: 0.92;
}

.rcs-price-card__features li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233ac6ff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Botões dos cards */
.rcs-cta {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 14px 14px;
  min-height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.rcs-cta:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.rcs-cta:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.rcs-cta:focus-visible {
  outline: 2px solid rgba(123, 47, 255, 0.8);
  outline-offset: 3px;
}

.rcs-cta--primary {
  background: linear-gradient(35deg, #7b2fff 0%, #9a6cff 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  padding: 16px 32px;
  box-shadow: 0 0px 10px rgb(138, 92, 246);
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.rcs-cta--primary:hover {
  background: linear-gradient(-35deg, #7b2fff 0%, #9a6cff 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(58, 198, 255, 0.45);
}

.rcs-cta--primary:active {
  transform: translateY(0);
}

.rcs-cta--primary:focus-visible {
  outline: 2px solid rgba(123, 47, 255, 0.9);
  outline-offset: 3px;
}

.rcs-price-card.is-featured {
  border-color: rgba(123, 47, 255, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.rcs-pricing-grid.is-visible .rcs-price-card.is-featured {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(123, 47, 255, 0.35);
}

.rcs-pricing-grid.is-visible .rcs-price-card.is-featured:hover {
  transform: translateY(-12px) scale(1.055);
}

/* Matriz Básico vs Mídia (cards) */
.rcs-price-duo {
  margin-top: 14px;
  padding: 12px 12px 10px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(2, 6, 23, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rcs-price-duo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.rcs-price-duo__cell {
  padding: 10px 10px 12px;
  border-radius: 14px;
}

.rcs-price-duo__label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(226, 232, 240, 0.92);
  margin-bottom: 10px;
}

.rcs-price-duo__value {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(248, 250, 252, 0.98);
  line-height: 1.05;
  white-space: nowrap;
}

.rcs-price-duo.is-custom .rcs-price-duo__value {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.rcs-price-card__note {
  margin: 10px 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(148, 163, 184, 0.9);
  opacity: 0.9;
}

.rcs-compare__note {
  margin: 12px auto 0;
  text-align: center;
  font-size: 12px;
  color: rgba(148, 163, 184, 0.9);
  line-height: 1.45;
  max-width: 860px;
}

.rcs-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.3);
}

/* Toggle Mensal / Semestral */
.rcs-billing-wrap {
  text-align: center;
  padding: 0;
}

.rcs-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
}

.rcs-billing-toggle__btn {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.85;
  cursor: pointer;
}

.rcs-billing-toggle__btn.is-active {
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.rcs-billing-toggle .rcs-save {
  margin-left: 6px;
  font-size: 0.8rem;
  opacity: 0.9;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .rcs-pricing-page .rcs-cta {
  background: #1a1d24;
  color: #fff;
}

/* ----- FAQ na página de preços (estilo completo, variáveis RCS) ----- */
.rcs-pricing-page .voz-faq {
  padding: 100px 0 120px;
}

.rcs-pricing-page .voz-faq .voz-section-header {
  margin-bottom: 48px;
}

.rcs-pricing-page .voz-faq .voz-section-title {
  text-align: center;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: var(--rcs-text-light);
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 16px;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
}

.rcs-pricing-page .voz-faq .voz-section-description {
  text-align: center;
  color: var(--rcs-text-secondary);
  opacity: 0.95;
  font-size: 1.1rem;
  line-height: 1.6;
}

.rcs-pricing-page .voz-faq-list {
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.rcs-pricing-page .voz-faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rcs-pricing-page .voz-faq-item:hover {
  border-color: rgba(123, 47, 255, 0.4);
  box-shadow: 0 4px 20px rgba(123, 47, 255, 0.15);
}

.rcs-pricing-page .voz-faq-item[open] {
  border-color: rgba(123, 47, 255, 0.35);
  box-shadow: 0 4px 24px rgba(123, 47, 255, 0.12);
}

.rcs-pricing-page .voz-faq-question {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rcs-text-light);
  font-family: inherit;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
}

.rcs-pricing-page .voz-faq-question::-webkit-details-marker {
  display: none;
}

.rcs-pricing-page .voz-faq-question::after {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b2fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.25s ease;
}

.rcs-pricing-page .voz-faq-item[open] .voz-faq-question::after {
  transform: rotate(180deg);
}

.rcs-pricing-page .voz-faq-question:hover {
  color: var(--rcs-text-light);
  opacity: 0.95;
}

.rcs-pricing-page .voz-faq-question:focus-visible {
  outline: 3px solid rgba(123, 47, 255, 0.5);
  outline-offset: 2px;
  border-radius: 12px;
}

.rcs-pricing-page .voz-faq-answer {
  padding: 0 24px 20px;
}

.rcs-pricing-page .voz-faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--rcs-text-secondary);
  opacity: 0.95;
  font-weight: 400;
}

/* Comparativo dos planos */
.rcs-pricing-compare {
  position: relative;
  z-index: 1;
  padding: 96px 0 88px;
}

.rcs-pricing-compare__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--rcs-text-light);
}

.rcs-pricing-compare__intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--rcs-text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Comparativo (mesmas proporções do RCS (container + padding)) */
.rcs-pricing-compare .container.rcs-pricing-compare-container {
  padding-left: 25px;
  padding-right: 25px;
  max-width: 1700px;
}

@media (max-width: 992px) {
  .rcs-pricing-compare-container {
    max-width: 1120px;
  }
}

.rcs-pricing-compare__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  border: 1px solid var(--rcs-border-color);
  background: var(--rcs-card-bg);
  backdrop-filter: blur(16px);
  box-shadow: var(--rcs-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rcs-pricing-compare__wrap::after {
  content: "Arraste para ver mais →";
  display: block;
  text-align: center;
  padding: 10px 0 4px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 992px) {
  .rcs-pricing-compare__wrap::after {
    display: none;
  }
}

.rcs-pricing-compare__table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.rcs-pricing-compare__table th,
.rcs-pricing-compare__table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  vertical-align: middle;
}

.rcs-pricing-compare__table thead th {
  font-weight: 700;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.2);
  color: var(--rcs-text-light);
  padding: 20px;
  border-bottom: 2px solid var(--rcs-border-color);
}

.rcs-pricing-compare__table th:first-child,
.rcs-pricing-compare__table td:first-child {
  text-align: left;
  padding-left: 24px;
  width: 26%;
  min-width: 180px;
  background: rgba(0, 0, 0, 0.12);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.rcs-pricing-compare__table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.rcs-pricing-compare__table tbody tr:hover td:first-child {
  background: rgba(0, 0, 0, 0.18);
}

.rcs-pricing-compare__table tbody tr:nth-child(even) td:first-child {
  background: rgba(0, 0, 0, 0.15);
}

.rcs-pricing-compare__table tbody tr:last-child td {
  border-bottom: 0;
}

.rcs-pricing-compare__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(58, 198, 255, 0.25);
  color: #3ac6ff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.rcs-pricing-compare__nao {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.rcs-pricing-compare__plan--featured {
  background: color-mix(in srgb, var(--rcs-primary-color) 12%, transparent);
}

.rcs-pricing-compare__table th.rcs-pricing-compare__plan--featured {
  background: color-mix(in srgb, var(--rcs-primary-color) 22%, transparent);
  color: var(--rcs-text-light);
  border-bottom-color: color-mix(in srgb, var(--rcs-primary-color) 30%, transparent);
}

.rcs-pricing-compare__table th.rcs-pricing-compare__plan--featured .rcs-pricing-compare__badge {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
}

.rcs-pricing-compare__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--rcs-primary-color) 50%, transparent);
  color: var(--rcs-text-light);
  letter-spacing: 0.02em;
}

/* ----- Modal do plano (layout igual WhatsApp – cores RCS) ----- */
.rcs-plan-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.rcs-plan-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.rcs-plan-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.rcs-plan-modal__box {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 100%;
  max-height: 100vh;
  background: linear-gradient(180deg, #120a1e 0%, #0a0612 100%);
  border-left: 1px solid rgba(123, 47, 255, 0.2);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  padding: 56px 28px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease-out;
  scrollbar-gutter: stable;
}

.rcs-plan-modal.is-open .rcs-plan-modal__box {
  transform: translateX(0);
}

.rcs-plan-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.rcs-plan-modal__close:hover {
  background: rgba(123, 47, 255, 0.25);
}

.rcs-plan-modal__plan {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}

.rcs-plan-modal__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 20px;
  line-height: 1.45;
}

.rcs-plan-modal__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.rcs-plan-modal__price-wrap.is-custom .rcs-plan-modal__currency,
.rcs-plan-modal__price-wrap.is-custom .rcs-plan-modal__period {
  display: none;
}

.rcs-plan-modal__currency {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.rcs-plan-modal__value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--rcs-primary-color);
}

.rcs-plan-modal__period {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.rcs-plan-modal__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.rcs-plan-modal__features li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.rcs-plan-modal__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--rcs-primary-color);
  border-radius: 50%;
  opacity: 0.9;
}

.rcs-plan-modal__form {
  margin-top: 0;
}

.rcs-plan-modal__field {
  margin-bottom: 16px;
}

.rcs-plan-modal__field--checkbox {
  margin-bottom: 20px;
}

.rcs-plan-modal__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 6px;
}

.rcs-plan-modal__label [aria-hidden="true"],
.rcs-plan-modal__optional {
  font-weight: 400;
  color: var(--rcs-primary-color);
}

.rcs-plan-modal__input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.rcs-plan-modal__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.rcs-plan-modal__input:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.rcs-plan-modal__input:focus {
  outline: none;
  border-color: var(--rcs-primary-color);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--rcs-primary-color) 30%, transparent);
}

.rcs-plan-modal__input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(255, 120, 100, 0.5);
}

.rcs-plan-modal__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.rcs-plan-modal__checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--rcs-primary-color);
  cursor: pointer;
}

.rcs-plan-modal__checkbox-text a {
  color: var(--rcs-primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rcs-plan-modal__checkbox-text a:hover {
  color: color-mix(in srgb, var(--rcs-primary-color) 85%, white);
}

.rcs-plan-modal__form .rcs-cta--modal {
  width: 100%;
  padding: 16px 24px;
  margin-top: 8px;
  justify-content: center;
  background: linear-gradient(35deg, #7b2fff 0%, #9a6cff 100%);
  color: var(--rcs-text-light);
  border-radius: 12px;
  font-weight: 700;
}

.rcs-plan-modal__form .rcs-cta--modal:hover {
  background: linear-gradient(-35deg, #7b2fff 0%, #9a6cff 100%);
  box-shadow: 0 0 14px rgb(23, 23, 24);
  color: #000000 !important;
}

/* CTA final – seção normal, sem card nem background decorativo */
/* ========== CTA final da página de preços – SVG RCS (mesmo do CTA do RCS) ========== */
.rcs-pricing-end-cta {
  position: relative;
  padding: 100px 0 120px;
  text-align: center;
  overflow: hidden;
}

.rcs-pricing-end-cta__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.25;
  pointer-events: none;
}

.rcs-pricing-end-cta__bg-inner {
  display: block;
  width: 100%;
  max-width: min(869px, 90vw);
  height: 575px;
  object-fit: contain;
}

.rcs-pricing-end-cta .circle-outer {
  animation: rcs-pricing-cta-spin 24s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.rcs-pricing-end-cta .circle-inner {
  animation: rcs-pricing-cta-spin-rev 18s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes rcs-pricing-cta-float {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 0.65;
  }
}

@keyframes rcs-pricing-cta-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rcs-pricing-cta-spin-rev {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@media (prefers-reduced-motion: reduce) {

  .rcs-pricing-end-cta__bg,
  .rcs-pricing-end-cta .circle-outer,
  .rcs-pricing-end-cta .circle-inner {
    animation: none;
  }
}

.rcs-pricing-end-cta__container {
  position: relative;
  z-index: 1;
}

.rcs-pricing-end-cta__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.rcs-pricing-end-cta__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--rcs-text-light);
  margin: 0 0 18px;
}

.rcs-pricing-end-cta__text {
  font-size: 1.2rem;
  color: var(--rcs-text-secondary);
  margin: 0 auto 32px;
  line-height: 1.6;
}

.rcs-pricing-end-cta__text strong {
  color: var(--rcs-text-light);
  font-weight: 700;
}

.rcs-pricing-end-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: linear-gradient(35deg, #7b2fff 0%, #9a6cff 100%);
  color: var(--rcs-text-light);
  box-shadow: 0 0px 10px rgb(138, 92, 246);
}

.rcs-pricing-end-cta__btn:hover {
  background: linear-gradient(-35deg, #7b2fff 0%, #9a6cff 100%);
  box-shadow: 0 0 14px rgb(23, 23, 24);
  color: #000000 !important;
  transform: translateY(-2px);
}

.rcs-pricing-end-cta__btn .voz-btn-primary-icon {
  transition: transform 0.3s ease;
}

.rcs-pricing-end-cta__btn:hover .voz-btn-primary-icon {
  transform: translateX(8px);
}

/* ========== Responsividade (mesmo padrão WhatsApp: 991, 575, 414) ========== */
@media (max-width: 991px) {

  /* No drawer mobile do price, cada item precisa ocupar linha inteira (não inline-block) */
  #header .wsmenu>.wsmenu-list>li,
  #header .wsmenu>.wsmenu-list>li.nl-simple {
    display: block !important;
    width: 100%;
  }

  .rcs-pricing-grid {
    gap: 16px;
  }

  .rcs-price-card {
    min-width: 160px;
    max-width: none;
    flex: 1 1 calc(50% - 8px);
  }

  .rcs-price-card.is-featured {
    transform: none;
  }
}

@media (max-width: 768px) {



  .rcs-pricing-hero__inner {
    gap: 20px;
  }

  .rcs-pricing-grid-section {
    padding-bottom: 56px;
  }

  /* FAQ */
  .rcs-pricing-page .voz-faq {
    padding: 64px 0 80px;
  }

  .rcs-pricing-page .voz-faq .voz-section-title {
    font-size: 2.25rem;
  }

  .rcs-pricing-page .voz-faq .voz-section-description {
    font-size: 1rem;
  }

  .rcs-pricing-page .voz-faq-list {
    max-width: 100%;
    padding: 0 16px;
  }

  .rcs-pricing-page .voz-faq-question {
    padding: 16px 18px;
    font-size: 1rem;
  }

  .rcs-pricing-page .voz-faq-question::after {
    width: 18px;
    height: 18px;
  }

  .rcs-pricing-page .voz-faq-answer {
    padding: 0 18px 16px;
  }

  .rcs-pricing-page .voz-faq-answer p {
    font-size: 0.95rem;
  }

  /* Compare */
  .rcs-pricing-compare {
    padding: 64px 0 56px;
  }

  .rcs-pricing-compare__title {
    font-size: 2.25rem;
  }

  .rcs-pricing-compare__intro {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  /* CTA final */
  .rcs-pricing-end-cta {
    padding: 64px 0 80px;
  }

  .rcs-pricing-end-cta__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .rcs-pricing-end-cta__content {
    max-width: 100%;
  }

  .rcs-pricing-end-cta__title {
    font-size: 2.25rem;
    margin-bottom: 12px;
  }

  .rcs-pricing-end-cta__text {
    font-size: 1.05rem;
    margin-bottom: 28px;
  }

  .rcs-pricing-end-cta__bg-inner {
    width: auto;
    max-width: min(1000px, 70vw);
    height: 450px;
  }

  .rcs-pricing-end-cta__btn {
    font-size: 1rem;
    padding: 14px 28px;
  }

  /* Modal */
  .rcs-plan-modal__box {
    padding: 48px 20px 28px;
  }

  .rcs-plan-modal__plan {
    font-size: 1.35rem;
  }

  .rcs-plan-modal__value {
    font-size: 1.85rem;
  }
}

@media (max-width: 575px) {

  .rcs-pricing-hero__inner {
    gap: 18px;
  }

  .rcs-price-card {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
  }

  .rcs-billing-toggle__btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  /* FAQ */
  .rcs-pricing-page .voz-faq {
    padding: 48px 0 64px;
  }

  .rcs-pricing-page .voz-faq .voz-section-title {
    font-size: 1.85rem;
  }

  .rcs-pricing-page .voz-faq .voz-section-description {
    font-size: 0.9375rem;
  }

  .rcs-pricing-page .voz-faq-list {
    padding: 0 14px;
  }

  .rcs-pricing-page .voz-faq-question {
    padding: 14px 16px;
    font-size: 0.9375rem;
  }

  .rcs-pricing-page .voz-faq-question::after {
    width: 16px;
    height: 16px;
  }

  .rcs-pricing-page .voz-faq-answer {
    padding: 0 16px 14px;
  }

  .rcs-pricing-page .voz-faq-answer p {
    font-size: 0.9rem;
  }

  /* Compare */
  .rcs-pricing-compare {
    padding: 48px 0 44px;
  }

  .rcs-pricing-compare__title {
    font-size: 1.85rem;
  }

  .rcs-pricing-compare__intro {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }

  .rcs-pricing-compare__table th,
  .rcs-pricing-compare__table td {
    padding: 14px 12px;
    font-size: 0.875rem;
  }

  .rcs-pricing-compare__table th:first-child,
  .rcs-pricing-compare__table td:first-child {
    padding-left: 16px;
    min-width: 140px;
  }

  /* CTA final */
  .rcs-pricing-end-cta {
    padding: 48px 0 64px;
  }

  .rcs-pricing-end-cta__container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rcs-pricing-end-cta__title {
    font-size: 1.85rem;
    margin-bottom: 10px;
  }

  .rcs-pricing-end-cta__text {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .rcs-pricing-end-cta__bg-inner {
    width: auto;
    max-width: min(1000px, 70vw);
    height: 335px;
  }

  .rcs-pricing-end-cta__btn {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }

  /* Modal */
  .rcs-plan-modal__box {
    max-width: 100%;
    padding: 44px 16px 24px;
  }

  .rcs-plan-modal__plan {
    font-size: 1.25rem;
  }

  .rcs-plan-modal__value {
    font-size: 1.75rem;
  }
}

@media (max-width: 414px) {

  .rcs-pricing-page .voz-faq {
    padding: 40px 0 56px;
  }

  .rcs-pricing-page .voz-faq .voz-section-title {
    font-size: 1.6rem;
  }

  .rcs-pricing-page .voz-faq-question {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .rcs-pricing-compare {
    padding: 40px 0 36px;
  }

  .rcs-pricing-compare__title {
    font-size: 1.6rem;
  }

  .rcs-pricing-end-cta {
    padding: 40px 0 56px;
  }

  .rcs-pricing-end-cta__container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .rcs-pricing-end-cta__title {
    font-size: 1.6rem;
  }

  .rcs-pricing-end-cta__text {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }

  .rcs-pricing-end-cta__bg-inner {
    width: auto;
    max-width: min(1000px, 75vw);
    height: 320px;
  }

  .rcs-pricing-end-cta__btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .rcs-plan-modal__box {
    padding: 40px 14px 20px;
  }
}