/**
 * price.css – Página de preços / planos do Torpedo de Voz
 * Depende: voz-variables.css (--voz-background-btn, --voz-box-shadow-btn, --voz-gradient)
 */

/* ========== Navbar: igual em todas as price (Voz, RCS, WhatsApp) – transparente no topo; ao rolar usa regras globais ========== */
#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;
}

/* Estado ao rolar: [data-theme="dark"] .tra-menu.white-scroll .wsmainfull.scroll (em rcs-themes/blue-theme) */

/* Botão Teste Gratuito no header da página de preços (evita depender do estilo base do menu) */
#header a.botao-voz {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  padding: 0 13px;
  min-height: 42px;
  background: var(--voz-background-btn);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: var(--voz-box-shadow-btn);
  text-decoration: none;
  border: none;
}

#header a.botao-voz:hover {
  background: var(--voz-background-btn-hover);
  color: #000000;
  box-shadow: var(--voz-box-shadow-btn-hover);
}

/* ========== Página: fundo + fade-in ao carregar (JS adiciona .is-visible) ========== */
/* Radial mais suave (estilo WhatsApp): luz no topo, escurece menos até embaixo */
.voz-pricing-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 180% 100% at 50% 0%,
      rgba(46, 133, 191, 0.28) 0%,
      rgba(30, 100, 150, 0.2) 18%,
      rgba(15, 60, 90, 0.12) 32%,
      transparent 48%),
    linear-gradient(180deg, #000000 0%, #021a28 30%, #032235 55%, #051c28 75%, #030d14 100%);
  color: #fff;
  padding: 80px 0;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.voz-pricing-page.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .voz-pricing-page {
    opacity: 1;
  }
}

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

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

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

/* ========== Hero ========== */
.voz-pricing-hero {
  position: relative;
  z-index: 1;
  padding: 56px 0 36px;
  text-align: center;
}

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

.voz-pricing-hero .voz-pricing-bg-title {
  display: block;
  font-size: clamp(5rem, 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, #fff 0%, rgba(255, 255, 255, 0.9) 35%, rgba(8, 192, 245, 0.95) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

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

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

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

/* ========== Cards de plano + efeito dominó (cascata) ========== */
.voz-price-card {
  display: flex;
  flex-flow: column nowrap;
  flex: 1;
  min-width: 180px;
  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);
}

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

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

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

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

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

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

.voz-pricing-grid.is-visible .voz-price-card:nth-child(6) {
  animation-delay: 0.5s;
}

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

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

  .voz-pricing-grid.is-visible .voz-price-card {
    animation: none;
  }
}

.voz-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;
}

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

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

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

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

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

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

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

.voz-price-card__note {
  text-align: center;
  margin: 10px 0 0;
  font-size: 0.78rem;
  color: rgba(8, 192, 245, 0.9);
}

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

.voz-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;
}

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

.voz-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='%2325D366'%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 (igual WhatsApp – layout; cores Voz) ========== */
.voz-pricing-page .voz-cta {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  min-height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  font-family: inherit;
}

.voz-pricing-page .voz-cta:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-1px);
}

.voz-pricing-page .voz-cta--primary {
  background: var(--voz-background-btn);
  color: #ffffff;
  border: none;
  padding: 14px 24px;
  box-shadow: var(--voz-box-shadow-btn);
}

.voz-pricing-page .voz-cta--primary:hover {
  background: var(--voz-background-btn-hover);
  color: #ffffff;
  border: none;
  box-shadow: var(--voz-box-shadow-btn-hover);
  transform: translateY(-1px);
}

.voz-price-card.is-featured {
  border-color: rgba(8, 192, 245, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.voz-pricing-grid.is-visible .voz-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(8, 192, 245, 0.35);
}

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

.voz-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 ========== */
.voz-billing-wrap {
  text-align: center;
  padding: 0;
}

.voz-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);
}

.voz-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;
}

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

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

/* ========== FAQ (override para página de preços) ========== */
.voz-pricing-page .voz-faq .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;
}

.voz-pricing-page .voz-faq .voz-faq-item:hover {
  border-color: rgba(8, 192, 245, 0.4);
  box-shadow: 0 4px 20px rgba(8, 192, 245, 0.15);
}

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

.voz-pricing-page .voz-faq .voz-section-title {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: #fff;
  font-weight: 800;
  font-size: 3rem;
}

.voz-pricing-page .voz-faq .voz-section-description {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

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

.voz-pricing-page .voz-faq .voz-faq-question:hover {
  color: #fff;
  opacity: 0.95;
}

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

.voz-pricing-page .voz-faq .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='%2308c0f5' 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;
}

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

.voz-pricing-page .voz-faq .voz-faq-question:focus-visible {
  outline: 3px solid rgba(8, 192, 245, 0.5);
  outline-offset: 2px;
  border-radius: 12px;
}

.voz-pricing-page .voz-faq .voz-faq-answer p {
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
}

.voz-pricing-page .voz-faq {
  padding: 100px 0 120px;
}

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

/* Mesmas proporções do grid (container + padding) */
.voz-pricing-compare .container.voz-pricing-compare-container {
  padding-left: 25px;
  padding-right: 25px;
  max-width: 1700px;
}

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

.voz-pricing-compare__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: #fff;
}

.voz-pricing-compare__intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
}

.voz-pricing-compare__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.voz-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) {
  .voz-pricing-compare__wrap::after {
    display: none;
  }
}

.voz-pricing-compare__table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.voz-pricing-compare__table th,
.voz-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;
}

.voz-pricing-compare__table thead th {
  font-weight: 700;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.voz-pricing-compare__table th:first-child,
.voz-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);
}

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

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

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

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

.voz-pricing-compare__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.25);
  color: #25d366;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

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

.voz-pricing-compare__plan--featured {
  background: rgba(8, 192, 245, 0.12);
}

.voz-pricing-compare__table th.voz-pricing-compare__plan--featured {
  background: rgba(8, 192, 245, 0.22);
  color: #fff;
  border-bottom-color: rgba(8, 192, 245, 0.3);
}

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

.voz-pricing-compare__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(8, 192, 245, 0.5);
  color: #fff;
  letter-spacing: 0.02em;
}

/* ========== Modal do plano (layout igual WhatsApp – cores Voz) ========== */
.voz-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;
}

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

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

.voz-plan-modal__box {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 100%;
  max-height: 100vh;
  background: linear-gradient(180deg, #0a1820 0%, #051218 100%);
  border-left: 1px solid rgba(8, 192, 245, 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;
  scrollbar-width: thin;
  scrollbar-color: rgba(8, 192, 245, 0.5) rgba(255, 255, 255, 0.06);
}

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

.voz-plan-modal__box::-webkit-scrollbar {
  width: 10px;
}

.voz-plan-modal__box::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.voz-plan-modal__box::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  margin: 16px 4px;
}

.voz-plan-modal__box::-webkit-scrollbar-thumb {
  background: rgba(8, 192, 245, 0.4);
  border-radius: 10px;
}

.voz-plan-modal__box::-webkit-scrollbar-thumb:hover {
  background: rgba(8, 192, 245, 0.65);
}

/* Modal Falar com vendas (igual WhatsApp – sem SVG) */
.voz-pricing-vendas-modal .voz-plan-modal__box {
  display: flex;
  flex-direction: column;
}

.voz-pricing-vendas-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.voz-pricing-vendas-modal__enviar {
  width: 100%;
  padding: 16px 24px;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  background: var(--voz-background-btn);
  color: #ffffff;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.voz-pricing-vendas-modal__enviar:hover {
  background: var(--voz-background-btn-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--voz-box-shadow-btn);
}

.voz-pricing-vendas-modal__enviar:focus-visible {
  outline: 2px solid rgba(8, 192, 245, 0.9);
  outline-offset: 2px;
}

.voz-pricing-vendas-modal__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}

.voz-pricing-vendas-modal__intro {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 24px;
  line-height: 1.5;
}

.voz-pricing-vendas-modal__form {
  margin-top: 0;
}

.voz-pricing-vendas-modal__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  margin-top: 0;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.voz-pricing-vendas-modal__whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.voz-pricing-vendas-modal__whatsapp:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

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

.voz-plan-modal__close:hover {
  background: rgba(8, 192, 245, 0.25);
}

.voz-plan-modal__close:focus-visible {
  outline: 2px solid rgba(8, 192, 245, 0.9);
  outline-offset: 2px;
}

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

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

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

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

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

.voz-plan-modal__value {
  font-size: 2rem;
  font-weight: 900;
  color: #08c0f5;
}

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

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

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

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

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

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

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

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

.voz-plan-modal__optional {
  font-weight: 400;
  color: #08c0f5;
}

.voz-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;
}

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

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

.voz-plan-modal__input:focus {
  outline: none;
  border-color: #08c0f5;
  box-shadow: 0 0 0 3px rgba(8, 192, 245, 0.2);
}

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

.voz-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;
}

.voz-plan-modal__checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #08c0f5;
  cursor: pointer;
}

.voz-plan-modal__checkbox-text a {
  color: #08c0f5;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.voz-plan-modal__checkbox-text a:hover {
  color: #2dd4ff;
}

.voz-plan-modal__form .voz-cta--modal {
  width: 100%;
  padding: 16px 24px;
  margin-top: 8px;
  justify-content: center;
  background: var(--voz-background-btn);
  box-shadow: var(--voz-box-shadow-btn);
  border: 1px solid rgba(8, 192, 245, 0.5);
  border-radius: 12px;
  font-weight: 700;
}

.voz-plan-modal__form .voz-cta--modal:hover {
  box-shadow: 0 6px 28px rgba(8, 192, 245, 0.45);
  border-color: #08c0f5;
}

@media (max-width: 576px) {
  .voz-plan-modal__box {
    max-width: 100%;
    padding: 48px 20px 28px;
  }

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

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

  .voz-plan-modal__close {
    top: 16px;
    right: 16px;
  }

  .voz-pricing-vendas-modal__title {
    font-size: 1.35rem;
  }

  .voz-pricing-vendas-modal__intro {
    margin-bottom: 16px;
  }
}

/* ========== CTA final da página de preços – layout próprio (não usa voz-cta) ========== */
.voz-pricing-end-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.voz-pricing-end-cta__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.85);
  animation: voz-pricing-end-cta-float 8s ease-in-out infinite;
}

.voz-pricing-end-cta__bg-inner {
  display: block;
  width: 100%;
  max-width: min(1000px, 92vw);
  height: 700px;
  object-fit: contain;
}

.voz-pricing-end-cta__rotate {
  transform-origin: 230px 230px;
  animation: voz-pricing-end-cta-spin 32s linear infinite;
}

.voz-pricing-end-cta__ring {
  animation: voz-pricing-end-cta-dash 28s ease-in-out infinite;
}

@keyframes voz-pricing-end-cta-float {

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

  50% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 0.6;
  }
}

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

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

@keyframes voz-pricing-end-cta-dash {

  0%,
  100% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: 40;
  }
}

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

  .voz-pricing-end-cta__bg,
  .voz-pricing-end-cta__rotate,
  .voz-pricing-end-cta__ring {
    animation: none;
  }
}

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

.voz-pricing-end-cta__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.voz-pricing-end-cta__text {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 50px;
  line-height: 1.8;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.voz-pricing-end-cta__text strong {
  color: #fff;
  font-weight: 700;
}

.voz-pricing-end-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.voz-pricing-end-cta__btn:hover {
  transform: translateY(-2px);
}

.voz-pricing-end-cta__btn:active {
  transform: translateY(-2px) scale(1.02);
}

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

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

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

/* ========== Responsive ========== */
@media (max-width: 1199px) {
  .voz-price-card {
    min-width: calc(33.333% - 12px);
  }
}

@media (max-width: 991px) {
  /* No drawer mobile do price, cada item deve ocupar a linha inteira */
  #header .wsmenu > .wsmenu-list > li,
  #header .wsmenu > .wsmenu-list > li.nl-simple {
    display: block !important;
    width: 100%;
  }

  /* CTA "Teste Gratuito" no mobile com estilo estável */
  #header .wsmenu > .wsmenu-list > li > a.botao-voz {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: calc(100% - 20px);
    margin: 12px 10px 18px;
    padding: 0 20px !important;
    min-height: 50px;
    border-radius: 14px;
    border: none !important;
    background: var(--voz-background-btn) !important;
    color: #fff !important;
    box-shadow: var(--voz-box-shadow-btn) !important;
    font-weight: 700;
    font-size: 1.06rem;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    top: 0 !important;
  }

  #header .wsmenu > .wsmenu-list > li > a.botao-voz:hover {
    background: var(--voz-background-btn-hover) !important;
    color: #fff !important;
    box-shadow: var(--voz-box-shadow-btn-hover) !important;
  }

  .voz-price-card {
    min-width: calc(50% - 9px);
  }

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

@media (max-width: 768px) {
  .voz-pricing-hero {
    padding: 48px 0 28px;
  }

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

  .voz-pricing-hero .voz-pricing-bg-title {
    font-size: clamp(5.5rem, 20vw, 12rem);
  }

  .voz-pricing-compare__title {
    font-size: 2.75rem;
  }

  .voz-pricing-compare__intro {
    font-size: 1.15rem;
    margin-bottom: 36px;
  }



  .voz-price-card {
    padding: 34px 28px;
  }

  .voz-price-card__plan {
    font-size: 1.5rem;
  }

  .voz-price__value {
    font-size: 2.5rem;
  }


  .voz-pricing-end-cta {
    padding: 100px 0;
  }

  .voz-pricing-end-cta__bg-inner {
    width: auto;
    max-width: 600px;
    height: 520px;
  }

  .voz-pricing-end-cta__title {
    font-size: 2.75rem;
  }

  .voz-pricing-end-cta__text {
    font-size: 1.15rem;
  }

  .voz-pricing-end-cta__btn {
    padding: 18px 35px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .voz-pricing-end-cta {
    padding: 80px 0;
  }

  .voz-pricing-end-cta__title {
    font-size: 2.1rem;
    margin-bottom: 16px;
  }

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

  .voz-pricing-end-cta__btn {
    padding: 16px 30px;
    font-size: 1rem;
  }

  .voz-pricing-end-cta__bg-inner {
    width: auto;
    max-width: 440px;
    height: 440px;
  }

  .voz-pricing-grid {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .voz-price-card {
    min-width: 100%;
    padding: 32px 24px;
  }

  .voz-pricing-hero {
    padding: 44px 0 24px;
  }

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

  .voz-pricing-hero .voz-pricing-bg-title {
    font-size: clamp(4rem, 16vw, 11rem);
  }

  .voz-pricing-compare__title {
    font-size: 2.5rem;
  }

  .voz-pricing-compare__intro {
    font-size: 1.18rem;
  }

  .voz-price-card__plan {
    font-size: 1.6rem;
  }

  .voz-price__value {
    font-size: 2.6rem;
  }


}