/* ===========================================================
   Vertex — estilos personalizados (marca, i18n, pricing)
   Complementa o CSS base do template. Cores da marca:
   #2A2F32 escuro · #18C4FF azul · #D1F2FD azul claro
   =========================================================== */

/* ---------- Seletor de idioma ---------- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #f2f4f5;
  border-radius: 8px;
  padding: 3px;
  margin-right: 14px;
}
.lang-btn {
  border: 0;
  background: transparent;
  color: #5d6c7b;
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 6px 9px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s ease;
}
.lang-btn:hover { color: #2a2f32; }
.lang-btn.is-active {
  background: #2a2f32;
  color: #fff;
}
.nav-desk-button { display: flex; align-items: center; }

/* Seletor dentro do menu mobile: escondido no desktop, visível no menu mobile */
.lang-switcher.mobile {
  display: none;
  margin: 0 0 4px 0;
  background: #f2f4f5;
}
@media (max-width: 991px) {
  .lang-switcher.mobile { display: inline-flex; }
}

/* ---------- Pricing (pagamento único) ---------- */
.pricing-item { position: relative; }

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #18c4ff;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(24, 196, 255, .35);
}

.price-note {
  display: block;
  color: #5d6c7b;
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
}

/* garante alinhamento das listas de features de tamanhos diferentes */
.pricing-item .pricing-footer { align-content: start; }

/* transição suave ao trocar de idioma */
[data-i18n] { transition: opacity .12s ease; }
.i18n-fading [data-i18n] { opacity: .35; }

/* ===========================================================
   Barra de consentimento de cookies
   =========================================================== */
.vz-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #ffffff;
  border: 1px solid #e2e6e8;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(20, 20, 43, .18);
  font-family: 'Work Sans', Arial, sans-serif;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease;
}
.vz-cookie.is-visible { opacity: 1; transform: translateY(0); }
.vz-cookie-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.vz-cookie-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #3a4247;
  flex: 1;
}
.vz-cookie-text a { color: #0082f3; text-decoration: none; }
.vz-cookie-text a:hover { text-decoration: underline; }
.vz-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.vz-cookie-btn {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all .2s ease;
}
.vz-cookie-btn.primary { background: #18c4ff; color: #fff; }
.vz-cookie-btn.primary:hover { background: #10b3ec; }
.vz-cookie-btn.ghost { background: #fff; color: #2a2f32; border-color: #d5dadd; }
.vz-cookie-btn.ghost:hover { border-color: #2a2f32; }

@media (max-width: 640px) {
  .vz-cookie { left: 10px; right: 10px; bottom: 10px; }
  .vz-cookie-inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px 18px; }
  .vz-cookie-actions { flex-direction: column-reverse; }
  .vz-cookie-btn { width: 100%; }
}

/* ---------- Consentimento no formulário ---------- */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 4px 0 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #5d6c7b;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: #18c4ff;
  flex-shrink: 0;
  cursor: pointer;
}
.form-consent a { color: #0082f3; text-decoration: underline; }

/* ---------- Link "Preferências de cookies" no rodapé ---------- */
.vz-footer-col button.vz-linklike {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: #c5cdd2;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  transition: color .2s ease;
}
.vz-footer-col button.vz-linklike:hover { color: #18c4ff; }

/* ===========================================================
   Rodapé profissional (responsivo desktop + mobile)
   =========================================================== */
.vz-footer {
  background: #2a2f32;
  color: #c5cdd2;
  font-family: 'Work Sans', Arial, sans-serif;
  padding: 64px 24px 28px;
}
.vz-footer-inner { max-width: 1200px; margin: 0 auto; }

.vz-footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.15fr 1.3fr;
  gap: 40px;
}
.vz-footer-logo { height: 26px; width: auto; margin-bottom: 18px; display: block; }
.vz-footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: #949ea4;
  max-width: 340px;
  margin: 0;
}
.vz-footer-h {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 18px;
}
.vz-footer-col { display: flex; flex-direction: column; gap: 11px; }
.vz-footer-col a {
  color: #c5cdd2;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  width: -moz-fit-content;
  width: fit-content;
  transition: color .2s ease;
}
.vz-footer-col a:hover { color: #18c4ff; }
.vz-footer-merchant {
  font-size: 12.5px;
  line-height: 1.75;
  color: #838d93;
  margin: 8px 0 0;
}

.vz-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.vz-footer-copy, .vz-footer-pay { font-size: 12.5px; color: #838d93; margin: 0; }

@media (max-width: 900px) {
  .vz-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .vz-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .vz-footer { padding: 48px 22px 28px; }
  .vz-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .vz-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ===========================================================
   Páginas legais
   =========================================================== */
.legal-topbar {
  border-bottom: 1px solid #eceff0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.legal-topbar-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-topbar img { height: 26px; width: auto; display: block; }
.legal-back {
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2a2f32;
  text-decoration: none;
}
.legal-back:hover { color: #18c4ff; }

.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 88px;
  font-family: 'Work Sans', Arial, sans-serif;
  color: #3a4247;
  line-height: 1.75;
}
.legal-wrap h1 {
  font-size: 34px;
  line-height: 1.2;
  color: #2a2f32;
  margin: 0 0 8px;
}
.legal-updated { color: #86909a; font-size: 14px; margin: 0 0 12px; }
.legal-intro { font-size: 16px; color: #4a5359; }
.legal-wrap h2 {
  font-size: 21px;
  color: #2a2f32;
  margin: 40px 0 12px;
  padding-top: 8px;
}
.legal-wrap h3 { font-size: 16.5px; color: #2a2f32; margin: 24px 0 8px; }
.legal-wrap p, .legal-wrap li { font-size: 15.5px; }
.legal-wrap ul, .legal-wrap ol { padding-left: 22px; margin: 10px 0; }
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap a { color: #0082f3; text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }
.legal-wrap strong { color: #2a2f32; }
.legal-box {
  background: #f6fbfe;
  border: 1px solid #d1f2fd;
  border-radius: 10px;
  padding: 20px 22px;
  margin: 24px 0;
}
.legal-box p { margin: 0 0 6px; }
.legal-box p:last-child { margin-bottom: 0; }
.legal-toc {
  background: #fafafa;
  border: 1px solid #eceff0;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 28px 0 8px;
}
.legal-toc ol { margin: 8px 0 0; }
.legal-toc a { color: #2a2f32; }
@media (max-width: 560px) {
  .legal-wrap { padding: 40px 22px 64px; }
  .legal-wrap h1 { font-size: 27px; }
}
