/* CentralVix Landing — fidelidade à referência visual */
:root {
  --cv-navy: #07111f;
  --cv-dark: #0a1628;
  --cv-blue: #3b82f6;
  --cv-cyan: #22d3ee;
  --cv-teal: #14b8a6;
  --cv-green: #10b981;
  --cv-white: #ffffff;
  --cv-gray: #64748b;
  --cv-gray-light: #f1f5f9;
  --cv-border: rgba(148, 163, 184, 0.18);
  --cv-text: #e2e8f0;
  --cv-radius: 14px;
  --cv-radius-sm: 10px;
  --cv-shadow: 0 18px 50px rgba(2, 8, 23, 0.28);
  --cv-shadow-card: 0 10px 28px rgba(15, 23, 42, 0.08);
  --cv-font: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --cv-container: 1180px;
  --lp-primary: var(--cv-teal);
  --lp-secondary: var(--cv-navy);
  --lp-button: var(--cv-teal);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.lp-body {
  margin: 0;
  font-family: var(--cv-font);
  color: #0f172a;
  background: var(--cv-white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.cv-hero__container,
.cv-modules__container,
.cv-pricing__container,
.cv-cta__container,
.cv-footer__container,
.cv-header__inner {
  width: min(100% - 2.5rem, var(--cv-container));
  margin-inline: auto;
}

/* ========== Buttons ========== */
.cv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  padding: 0.72rem 1.2rem;
  font-weight: 650;
  font-size: 0.92rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.cv-btn:hover { transform: translateY(-1px); }
.cv-btn--lg { padding: 0.92rem 1.45rem; font-size: 0.98rem; }
.cv-btn--block { width: 100%; }
.cv-btn--primary {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  color: #fff;
  box-shadow: 0 10px 28px rgba(20, 184, 166, 0.35);
}
.cv-btn--primary:hover { filter: brightness(1.06); color: #fff; }
.cv-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.cv-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.cv-btn--outline {
  background: transparent;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.16);
}
.cv-btn--outline:hover {
  border-color: var(--cv-teal);
  color: #0f172a;
  background: rgba(20, 184, 166, 0.06);
}

.cv-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(34, 211, 238, 0.45);
  color: var(--cv-cyan);
  border-radius: 999px;
  padding: 0.38rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(34, 211, 238, 0.06);
}
.cv-pill--soft {
  border-color: rgba(34, 211, 238, 0.35);
  color: var(--cv-cyan);
}
.cv-label {
  display: inline-block;
  color: var(--cv-teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ========== Header ========== */
.cv-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
}
.cv-header.is-scrolled {
  position: fixed;
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(2, 8, 23, 0.35);
}
.cv-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cv-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  flex-shrink: 0;
}
.cv-brand__mark { display: grid; place-items: center; }
.cv-brand__logo { height: 40px; width: auto; }
.cv-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.cv-brand__text strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cv-brand__text small {
  font-size: 0.68rem;
  color: var(--cv-cyan);
  font-weight: 600;
  margin-top: 2px;
}
.cv-header__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  justify-content: flex-end;
}
.cv-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-right: auto;
  margin-left: 2rem;
}
.cv-nav a {
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.92rem;
  font-weight: 550;
  position: relative;
  padding: 0.2rem 0;
}
.cv-nav a:hover,
.cv-nav a.is-active { color: #fff; }
.cv-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: var(--cv-cyan);
}
.cv-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.cv-theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: grid;
  place-items: center;
}
.cv-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}
.cv-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 2px;
}

/* ========== Hero ========== */
.cv-hero {
  position: relative;
  min-height: 100vh;
  padding: 7.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 72% 42%, rgba(56, 189, 248, 0.16), transparent 60%),
    radial-gradient(ellipse 45% 40% at 18% 70%, rgba(20, 184, 166, 0.08), transparent 55%),
    linear-gradient(165deg, #050b16 0%, #07111f 45%, #0b1a30 100%);
  color: var(--cv-text);
  overflow: hidden;
}
.cv-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}
.cv-hero__glow--right {
  width: 520px;
  height: 520px;
  right: -40px;
  top: 18%;
  background: rgba(56, 189, 248, 0.12);
}
.cv-hero__glow--left {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: 10%;
  background: rgba(20, 184, 166, 0.1);
}
.cv-hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem 2.5rem;
  align-items: center;
}
.cv-hero__title {
  margin: 1.1rem 0 1rem;
  line-height: 0.98;
}
.cv-hero__title-main {
  display: block;
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}
.cv-hero__title-sub {
  display: block;
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cv-cyan);
  margin-top: 0.15rem;
}
.cv-hero__lead {
  max-width: 34rem;
  font-size: 1.05rem;
  color: rgba(226, 232, 240, 0.82);
  margin: 0 0 1.35rem;
}
.cv-hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin: 0 0 1.6rem;
}
.cv-hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(241, 245, 249, 0.95);
}
.cv-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex: 0 0 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(20, 184, 166, 0.18);
  color: var(--cv-teal);
  font-size: 0.65rem;
}
.cv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.cv-hero__photo {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--cv-shadow);
}

/* ========== Mockup devices ========== */
.cv-mock {
  position: relative;
  min-height: 420px;
  padding: 1.5rem 0 1rem;
}
.cv-laptop {
  position: relative;
  width: min(100%, 520px);
  margin-left: auto;
  margin-right: 2.5rem;
  z-index: 2;
  animation: cvFloat 5.5s ease-in-out infinite;
}
.cv-laptop__bezel {
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border-radius: 14px 14px 8px 8px;
  padding: 10px 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--cv-shadow);
}
.cv-laptop__camera {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #334155;
  margin: 0 auto 8px;
}
.cv-laptop__base {
  height: 12px;
  margin: 0 auto;
  width: 112%;
  margin-left: -6%;
  background: linear-gradient(180deg, #334155, #1e293b);
  border-radius: 0 0 10px 10px;
  position: relative;
}
.cv-laptop__base::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 28%;
  height: 6px;
  background: #475569;
  border-radius: 0 0 8px 8px;
}
.cv-laptop__shadow {
  height: 28px;
  margin: 10px auto 0;
  width: 80%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.35), transparent 70%);
}

.cv-dash {
  display: grid;
  grid-template-columns: 92px 1fr;
  background: #f8fafc;
  border-radius: 8px;
  overflow: hidden;
  min-height: 250px;
}
.cv-dash__side {
  background: linear-gradient(180deg, #0b1729, #10233f);
  color: rgba(226, 232, 240, 0.75);
  padding: 10px 8px;
  font-size: 0.52rem;
}
.cv-dash__logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #22d3ee, #14b8a6);
  color: #042f2e;
  font-weight: 800;
  font-size: 0.65rem;
  margin-bottom: 10px;
}
.cv-dash__side li {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 6px;
  border-radius: 6px;
  margin-bottom: 2px;
}
.cv-dash__side li.is-active {
  background: rgba(56, 189, 248, 0.15);
  color: #fff;
}
.cv-dash__side i { width: 10px; font-size: 0.58rem; }
.cv-dash__main { padding: 10px 12px; }
.cv-dash__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.cv-dash__top strong {
  font-size: 0.78rem;
  color: #0f172a;
}
.cv-dash__avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
}
.cv-dash__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}
.cv-dash__kpis article {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  padding: 6px 7px;
}
.cv-dash__kpis small {
  display: block;
  font-size: 0.45rem;
  color: #64748b;
}
.cv-dash__kpis strong {
  display: block;
  font-size: 0.72rem;
  color: #0f172a;
  margin: 2px 0;
}
.cv-dash__kpis em {
  font-style: normal;
  font-size: 0.45rem;
  color: #14b8a6;
  font-weight: 700;
}
.cv-dash__charts {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 6px;
  margin-bottom: 6px;
}
.cv-dash__chart {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  height: 78px;
  padding: 6px;
}
.cv-dash__chart--line svg { width: 100%; height: 100%; }
.cv-dash__chart--bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 8px 10px;
}
.cv-dash__chart--bars span {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #38bdf8, #6366f1);
  opacity: 0.85;
}
.cv-dash__activity {
  display: grid;
  gap: 4px;
}
.cv-dash__activity div {
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, #e2e8f0, #f8fafc);
}

.cv-phone {
  position: absolute;
  right: 0;
  bottom: 36px;
  width: 128px;
  height: 248px;
  background: #0f172a;
  border-radius: 22px;
  border: 3px solid #334155;
  padding: 10px 8px 8px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: cvFloat 5.5s ease-in-out infinite 0.4s;
}
.cv-phone__notch {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: #1e293b;
  margin: 0 auto 8px;
}
.cv-phone__screen {
  height: calc(100% - 14px);
  border-radius: 14px;
  background: linear-gradient(180deg, #0b1729, #13233d);
  padding: 10px 8px;
}
.cv-phone__header {
  color: #fff;
  font-size: 0.62rem;
  margin-bottom: 8px;
}
.cv-phone__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.cv-phone__grid span {
  aspect-ratio: 1;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--c) 22%, transparent);
  color: var(--c);
  font-size: 0.75rem;
}

.cv-float {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 650;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  max-width: 210px;
  animation: cvFloat 4.8s ease-in-out infinite;
}
.cv-float__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  flex-shrink: 0;
}
.cv-float__icon--teal {
  background: rgba(20, 184, 166, 0.22);
  color: #2dd4bf;
}
.cv-float__arrow { opacity: 0.55; font-size: 0.65rem; }
.cv-float--cloud { left: 0; top: 28%; }
.cv-float--shield { left: 8%; bottom: 14%; }
.cv-float--rocket {
  right: -8px;
  top: 8%;
  background: rgba(15, 118, 110, 0.45);
  border-color: rgba(45, 212, 191, 0.35);
}

/* ========== Modules ========== */
.cv-modules {
  background: var(--cv-white);
  padding: 5rem 0;
}
.cv-modules__container {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 2.5rem 2rem;
  align-items: start;
}
.cv-modules__intro h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0b1730;
  line-height: 1.15;
}
.cv-modules__intro p {
  margin: 0;
  color: var(--cv-gray);
  font-size: 0.98rem;
  max-width: 28rem;
}
.cv-modules__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.cv-mod-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  padding: 1.05rem 1rem 1rem;
  box-shadow: var(--cv-shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 138px;
  position: relative;
}
.cv-mod-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}
.cv-mod-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--mod) 14%, white);
  color: var(--mod);
  flex-shrink: 0;
  font-size: 0.95rem;
}
.cv-mod-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  flex: 1;
  padding-right: 0.5rem;
}
.cv-mod-card__body strong {
  font-size: 0.95rem;
  color: #0b1730;
  font-weight: 750;
}
.cv-mod-card__body small {
  font-size: 0.76rem;
  color: var(--cv-gray);
  line-height: 1.35;
}
.cv-mod-card__arrow {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  color: #3b82f6;
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ========== Pricing ========== */
.cv-pricing {
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(56, 189, 248, 0.1), transparent 55%),
    linear-gradient(165deg, #050b16, #07111f 55%, #0a1930);
  padding: 5rem 0 6.5rem;
  color: #fff;
}
.cv-pricing__container {
  display: grid;
  grid-template-columns: 0.78fr 1.42fr;
  gap: 2rem;
  align-items: center;
}
.cv-pricing__intro h2 {
  margin: 0.9rem 0 0.85rem;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.cv-pricing__intro p {
  color: rgba(226, 232, 240, 0.72);
  margin: 0 0 1.25rem;
  max-width: 26rem;
}
.cv-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  align-items: stretch;
}
.cv-price-card {
  position: relative;
  background: #fff;
  color: #0f172a;
  border-radius: 18px;
  padding: 1.35rem 1.15rem 1.2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 40px rgba(2, 8, 23, 0.2);
  display: flex;
  flex-direction: column;
}
.cv-price-card.is-featured {
  transform: translateY(-10px);
  border: 1.5px solid rgba(20, 184, 166, 0.55);
  box-shadow: 0 22px 50px rgba(20, 184, 166, 0.22);
}
.cv-price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.cv-price-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.cv-price-card__icon.is-blue { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.cv-price-card__icon.is-teal { background: rgba(20, 184, 166, 0.14); color: #0d9488; }
.cv-price-card__icon.is-navy { background: rgba(15, 23, 42, 0.1); color: #1e3a5f; }
.cv-price-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}
.cv-price-card__desc {
  margin: 0.35rem 0 0.85rem;
  color: var(--cv-gray);
  font-size: 0.84rem;
  min-height: 2.4em;
}
.cv-price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 0 0 0.9rem;
}
.cv-price-card__price strong {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.cv-price-card__price span {
  color: var(--cv-gray);
  font-size: 0.88rem;
}
.cv-price-card__list {
  margin: 0 0 1.15rem;
  flex: 1;
}
.cv-price-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.84rem;
  color: #334155;
  margin-bottom: 0.55rem;
}
.cv-price-card__feat {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  min-width: 0;
  flex: 1;
}
.cv-price-card__feat span {
  line-height: 1.35;
}
.cv-price-card__list i {
  color: var(--cv-teal);
  margin-top: 0.2rem;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.cv-price-card__val {
  font-weight: 750;
  color: #0b1730;
  white-space: nowrap;
  text-align: right;
}
.cv-price-card__trial {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: #0d9488;
}

/* ========== CTA ========== */
.cv-cta {
  margin-top: -2.75rem;
  position: relative;
  z-index: 5;
  padding-bottom: 0;
}
.cv-cta__card {
  background: #fff;
  border-radius: 18px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.cv-cta__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cv-cta__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(20, 184, 166, 0.12);
  color: var(--cv-teal);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cv-cta__card h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  color: #0b1730;
  letter-spacing: -0.02em;
}
.cv-cta__card p {
  margin: 0.25rem 0 0;
  color: var(--cv-gray);
  font-size: 0.9rem;
}

/* ========== Footer ========== */
.cv-footer {
  background: #050b16;
  color: rgba(226, 232, 240, 0.8);
  padding: 3.5rem 0 1.5rem;
  margin-top: -1px;
}
.cv-footer__links {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cv-footer__links h3 {
  color: #fff;
  font-size: 0.88rem;
  margin: 0 0 0.75rem;
}
.cv-footer__links a:hover { color: var(--cv-cyan); }
.cv-footer__links li { margin-bottom: 0.4rem; font-size: 0.88rem; }
.cv-footer__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}
.cv-footer__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.cv-footer__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}
.cv-footer__trust i { color: var(--cv-cyan); }
.cv-footer__copy {
  margin: 0;
  text-align: right;
  font-size: 0.82rem;
  color: rgba(148, 163, 184, 0.9);
}
.cv-brand--footer .cv-brand__text small { color: var(--cv-cyan); }

/* WhatsApp / cookie / toast (keep) */
.lp-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 1100;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}
.lp-whatsapp-left { left: 22px; right: auto; }
.lp-cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: rgba(7, 17, 31, 0.96);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}
.lp-cookie-inner {
  width: min(100% - 2rem, var(--cv-container));
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lp-cookie-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.lp-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1300;
  background: #0f172a;
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  max-width: 320px;
}
.lp-toast.is-error { background: #991b1b; }

/* Inner pages */
.lp-page-hero {
  background: linear-gradient(165deg, #050b16, #0b1a30);
  color: #fff;
  padding: 7rem 0 2.5rem;
}
.lp-page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin: 0.5rem 0;
}
.lp-section { padding: 3.5rem 0; }
.lp-section-light { background: var(--cv-gray-light); }
.lp-prose { max-width: 820px; color: #334155; line-height: 1.7; margin: 0 auto; }
.lp-form label { display: block; font-weight: 700; margin-bottom: 0.35rem; font-size: 0.9rem; }
.lp-form input,
.lp-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  background: #fff;
  font-family: inherit;
}
.lp-contact-aside {
  background: #fff;
  border-radius: var(--cv-radius);
  padding: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

@keyframes cvFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ========== Extra sections (benefits, steps, stats, testimonials, FAQ) ========== */
.cv-section { padding: 4.5rem 0; }
.cv-section--light { background: #f4f7fb; }
.cv-section__container {
  width: min(100% - 2.5rem, var(--cv-container));
  margin-inline: auto;
}
.cv-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.4rem;
}
.cv-section__head h2 {
  margin: 0.35rem 0 0.6rem;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0b1730;
}
.cv-section__head p { margin: 0; color: var(--cv-gray); }

.cv-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.cv-benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.35rem 1.2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--cv-shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.cv-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}
.cv-benefit-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(20, 184, 166, 0.12);
  color: var(--cv-teal);
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}
.cv-benefit-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 750;
  color: #0b1730;
}
.cv-benefit-card p {
  margin: 0;
  color: var(--cv-gray);
  font-size: 0.9rem;
}

.cv-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cv-step {
  background: #fff;
  border-radius: 16px;
  padding: 1.35rem 1.15rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--cv-shadow-card);
}
.cv-step__num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cv-teal);
  letter-spacing: -0.03em;
}
.cv-step__icon {
  display: inline-flex;
  margin: 0.4rem 0;
  color: #3b82f6;
}
.cv-step h3 {
  margin: 0.35rem 0;
  font-size: 1.02rem;
  font-weight: 750;
  color: #0b1730;
}
.cv-step p {
  margin: 0;
  color: var(--cv-gray);
  font-size: 0.88rem;
}

.cv-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cv-stat {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--cv-shadow-card);
}
.cv-stat > i {
  color: var(--cv-teal);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.cv-stat strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: #0b1730;
  letter-spacing: -0.03em;
}
.cv-stat h3 {
  margin: 0.45rem 0 0;
  font-size: 0.98rem;
  color: #0b1730;
}
.cv-stat p {
  margin: 0.3rem 0 0;
  color: var(--cv-gray);
  font-size: 0.84rem;
}

.cv-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cv-testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--cv-shadow-card);
  display: flex;
  flex-direction: column;
}
.cv-testimonial.is-featured {
  border-color: rgba(20, 184, 166, 0.35);
  box-shadow: 0 16px 40px rgba(20, 184, 166, 0.12);
}
.cv-stars { color: #cbd5e1; margin-bottom: 0.65rem; font-size: 0.82rem; }
.cv-stars .is-on { color: #f59e0b; }
.cv-testimonial blockquote {
  margin: 0 0 1.1rem;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}
.cv-testimonial__author {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
.cv-testimonial__author img,
.cv-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
}
.cv-avatar {
  display: grid;
  place-items: center;
  background: rgba(20, 184, 166, 0.15);
  color: #0f766e;
  font-weight: 800;
}
.cv-testimonial__author strong {
  display: block;
  font-size: 0.92rem;
  color: #0b1730;
}
.cv-testimonial__author span {
  display: block;
  color: var(--cv-gray);
  font-size: 0.8rem;
}

.cv-faq-wrap { max-width: 820px; }
.cv-faq {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 0.7rem;
  padding: 0.15rem 1rem;
  box-shadow: var(--cv-shadow-card);
}
.cv-faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.95rem 0;
  list-style: none;
  color: #0b1730;
}
.cv-faq summary::-webkit-details-marker { display: none; }
.cv-faq__body {
  color: var(--cv-gray);
  padding: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .cv-benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .cv-steps,
  .cv-stats { grid-template-columns: repeat(2, 1fr); }
  .cv-testimonials { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cv-benefit-grid,
  .cv-steps,
  .cv-stats,
  .cv-testimonials { grid-template-columns: 1fr; }
  .cv-section__container { width: min(100% - 1.5rem, var(--cv-container)); }
}

/* Module cards desktop */
@media (min-width: 1101px) {
  .cv-modules__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .cv-modules__grid { grid-template-columns: repeat(2, 1fr); }
  .cv-modules__container,
  .cv-pricing__container,
  .cv-hero__container { grid-template-columns: 1fr; }
  .cv-pricing__grid { grid-template-columns: repeat(3, 1fr); }
  .cv-nav { margin-left: 1rem; gap: 1rem; }
  .cv-laptop { margin-right: auto; margin-left: auto; }
  .cv-mock { max-width: 560px; margin: 0 auto; }
  .cv-footer__bar { grid-template-columns: 1fr; text-align: center; }
  .cv-footer__copy { text-align: center; }
  .cv-footer__bar .cv-brand { justify-content: center; }
}

@media (max-width: 900px) {
  .cv-nav-toggle { display: block; }
  .cv-header__menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: rgba(5, 11, 22, 0.97);
    backdrop-filter: blur(14px);
    padding: 1rem 1.25rem 1.35rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .cv-header__menu.is-open { display: flex; }
  .cv-nav {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    gap: 0.85rem;
  }
  .cv-nav a.is-active::after { bottom: -2px; }
  .cv-header__actions { flex-direction: column; align-items: stretch; }
  .cv-pricing__grid { grid-template-columns: 1fr; max-width: 380px; }
  .cv-price-card.is-featured { transform: none; }
  .cv-cta__card { flex-direction: column; text-align: center; }
  .cv-cta__left { flex-direction: column; }
  .cv-float { display: none; }
  .cv-phone { width: 100px; height: 196px; bottom: 28px; right: 4%; }
  .cv-hero { min-height: auto; padding-top: 6.5rem; }
  .cv-footer__links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .cv-hero__container,
  .cv-modules__container,
  .cv-pricing__container,
  .cv-cta__container,
  .cv-footer__container,
  .cv-header__inner {
    width: min(100% - 1.5rem, var(--cv-container));
  }
  .cv-modules__grid { grid-template-columns: 1fr; }
  .cv-footer__links { grid-template-columns: 1fr; }
  .cv-hero__checks { gap: 0.5rem 0.75rem; }
  .cv-header__actions .cv-btn--ghost span { display: none; }
  .cv-dash__side span { display: none; }
  .cv-dash { grid-template-columns: 42px 1fr; }
  .cv-dash__kpis { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cv-laptop,
  .cv-phone,
  .cv-float,
  .cv-btn,
  .cv-reveal { animation: none !important; transition: none !important; }
  .cv-reveal { opacity: 1; transform: none; }
}

/* ===== Compact spacing (priority) ===== */
.cv-hero {
  min-height: 0;
  padding: 5.5rem 0 2.25rem;
  display: flex;
  align-items: center;
}
.cv-hero__container {
  min-height: 340px;
  align-items: center;
}
.cv-hero__title-main { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
.cv-hero__title-sub { font-size: clamp(1.45rem, 2.8vw, 2.2rem); }
.cv-modules,
.cv-pricing { padding: 3rem 0; }
.cv-section { padding: 2.75rem 0; }
.cv-section--tight { padding: 2.25rem 0; }
.cv-cta { margin-top: -1.75rem; padding-bottom: 0; }

/* Hover interactions */
.cv-mod-card:hover,
.cv-benefit-card:hover,
.cv-step:hover,
.cv-testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.35);
}
.cv-mod-card:hover .cv-mod-card__icon,
.cv-benefit-card:hover .cv-benefit-card__icon {
  transform: translateY(-2px);
}
.cv-mod-card__icon,
.cv-benefit-card__icon {
  transition: transform 0.25s ease;
}
.cv-mod-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3b82f6;
}
.cv-mod-card__more i { transition: transform 0.25s ease; }
.cv-mod-card:hover .cv-mod-card__more i { transform: translateX(4px); }
.cv-mod-card__arrow { display: none; }

.cv-price-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.cv-price-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 50px rgba(2, 8, 23, 0.28);
}
.cv-price-card.is-featured:hover {
  transform: translateY(-14px) scale(1.02);
}
.cv-step:hover .cv-step__num { color: #0d9488; text-shadow: 0 0 18px rgba(20, 184, 166, 0.35); }

/* Reveal */
.cv-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.cv-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Showcase */
.cv-section--dark {
  background: linear-gradient(165deg, #050b16, #0a1930);
  color: #fff;
}
.cv-section__head--on-dark h2 { color: #fff; }
.cv-section__head--on-dark p { color: rgba(226, 232, 240, 0.72); }
.cv-showcase__frame,
.cv-showcase__img {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.cv-showcase__img { width: 100%; display: block; }
.cv-wide-dash {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 320px;
  background: #0b1729;
}
.cv-wide-dash aside {
  background: #07111f;
  padding: 1rem 0.85rem;
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.82rem;
}
.cv-wide-dash__brand {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #22d3ee, #14b8a6);
  color: #042f2e; font-weight: 800; margin-bottom: 1rem;
}
.cv-wide-dash aside li {
  display: flex; gap: 0.5rem; align-items: center;
  padding: 0.45rem 0.55rem; border-radius: 8px; margin-bottom: 0.2rem;
}
.cv-wide-dash aside li.is-on { background: rgba(56, 189, 248, 0.15); color: #fff; }
.cv-wide-dash__main { padding: 1rem 1.15rem; background: #f8fafc; color: #0f172a; }
.cv-wide-dash__main header { margin-bottom: 0.85rem; }
.cv-wide-dash__main header strong { display: block; font-size: 1.05rem; }
.cv-wide-dash__main header span { color: #64748b; font-size: 0.85rem; }
.cv-wide-dash__kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.65rem; margin-bottom: 0.75rem;
}
.cv-wide-dash__kpis article {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; padding: 0.7rem;
}
.cv-wide-dash__kpis small { color: #64748b; font-size: 0.72rem; }
.cv-wide-dash__kpis b { display: block; font-size: 1.1rem; margin: 0.15rem 0; }
.cv-wide-dash__kpis em { font-style: normal; color: #14b8a6; font-size: 0.72rem; font-weight: 700; }
.cv-wide-dash__charts { display: grid; grid-template-columns: 1.5fr 0.8fr; gap: 0.65rem; }
.cv-wide-dash__line, .cv-wide-dash__list {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; min-height: 120px; padding: 0.6rem;
}
.cv-wide-dash__line svg { width: 100%; height: 110px; }
.cv-wide-dash__list { display: grid; gap: 0.45rem; align-content: start; padding: 0.85rem; }
.cv-wide-dash__list div { height: 14px; border-radius: 6px; background: linear-gradient(90deg, #e2e8f0, #f8fafc); }

/* Footer reformulated */
.cv-footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}
.cv-footer__about p { color: rgba(148, 163, 184, 0.95); margin: 0.75rem 0; font-size: 0.9rem; max-width: 260px; }
.cv-footer__contacts { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.75rem; font-size: 0.88rem; }
.cv-footer__contacts a:hover { color: var(--cv-cyan); }
.cv-social { display: flex; gap: 0.45rem; }
.cv-social a {
  width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.08);
}
.cv-footer__col h3 { color: #fff; font-size: 0.88rem; margin: 0 0 0.7rem; }
.cv-footer__col li { margin-bottom: 0.4rem; font-size: 0.88rem; }
.cv-footer__col a:hover { color: var(--cv-cyan); }
.cv-footer__trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem;
  padding: 1rem 0; border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); margin-bottom: 1rem;
}
.cv-footer__bottom { text-align: center; font-size: 0.84rem; color: rgba(148, 163, 184, 0.9); }
.cv-footer__bottom p { margin: 0; }
.cv-cta__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: flex-end; }

/* Demo badge / pages / forms */
.cv-demo-badge { display: none !important; }
.cv-page-hero {
  background: linear-gradient(165deg, #050b16, #0b1a30);
  color: #fff;
  padding: 5.5rem 0 2rem;
}
.cv-page-hero h1 {
  margin: 0.55rem 0 0.4rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
}
.cv-page-hero p { margin: 0; color: rgba(226, 232, 240, 0.78); max-width: 36rem; }
.cv-contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
}
.cv-form, .cv-contact-aside {
  background: #fff;
  border-radius: 16px;
  padding: 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--cv-shadow-card);
}
.cv-form label { display: block; font-weight: 700; margin-bottom: 0.3rem; font-size: 0.88rem; }
.cv-form input, .cv-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  margin-bottom: 0.85rem;
  font-family: inherit;
}
.cv-form input:focus, .cv-form textarea:focus {
  outline: 2px solid rgba(20, 184, 166, 0.35);
  border-color: var(--cv-teal);
}
.cv-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.cv-contact-aside h2 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.cv-contact-aside__item { margin: 1rem 0; }
.cv-contact-aside__item strong { display: block; margin-bottom: 0.2rem; }
.cv-about-intro {
  max-width: 760px; margin: 0 auto 1.75rem; text-align: center; color: #334155; line-height: 1.7;
}
.cv-about-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem;
}
.cv-about-card {
  background: #fff; border-radius: 14px; padding: 1.15rem; border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--cv-shadow-card);
}
.cv-about-card h2 { margin: 0 0 0.45rem; font-size: 1.05rem; color: #0b1730; }
.cv-about-card p { margin: 0; color: #64748b; font-size: 0.9rem; }

/* ========== Register ========== */
.cv-register-page {
  padding: 6.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 50% 40% at 10% 0%, rgba(20, 184, 166, 0.12), transparent 55%),
    linear-gradient(180deg, #07111f 0%, #0a1628 28%, #f1f5f9 28%, #f8fafc 100%);
}
.cv-register-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(280px, 1.15fr);
  gap: 1.25rem;
  align-items: stretch;
}
.cv-register-aside {
  background: linear-gradient(165deg, #0b1730, #10243f);
  color: #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.28);
}
.cv-register-aside h1 {
  margin: 0.55rem 0 0.65rem;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
}
.cv-register-lead {
  margin: 0 0 1.35rem;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}
.cv-register-perks {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
}
.cv-register-perks li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: rgba(241, 245, 249, 0.92);
  font-size: 0.92rem;
  line-height: 1.4;
}
.cv-register-perks li > span:last-child {
  flex: 1;
  min-width: 0;
}
.cv-register-aside__note {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.9rem;
}
.cv-register-aside__note a {
  color: var(--cv-cyan);
  font-weight: 700;
}
.cv-register-panel {
  background: #fff;
  border-radius: 20px;
  padding: 1.6rem 1.45rem 1.45rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}
.cv-register-panel .cv-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}
.cv-register-panel .cv-form input,
.cv-register-panel .cv-form textarea,
.cv-register-panel .cv-form select {
  margin-bottom: 0;
}
.cv-register-panel__title {
  margin: 0 0 1.1rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0b1730;
}
.cv-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 0.9rem;
  margin-bottom: 0.35rem;
}
.cv-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-size: 0.86rem;
  color: #334155;
}
.cv-field input,
.cv-field select,
.cv-register-form .cv-select {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  background: #fff;
  font-family: inherit;
  color: #0f172a;
  margin: 0;
}
.cv-field input:focus,
.cv-field select:focus {
  outline: 2px solid rgba(20, 184, 166, 0.35);
  border-color: var(--cv-teal);
}
.cv-terms {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.7rem;
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
  margin: 1rem 0 1.1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #334155;
}
.cv-terms input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  accent-color: var(--cv-teal);
}
.cv-terms__text {
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}
.cv-terms a {
  color: var(--cv-teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cv-alert {
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.cv-alert--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.cv-alert ul { margin: 0.4rem 0 0 1rem; list-style: disc; }
.cv-form input.is-invalid,
.cv-form select.is-invalid {
  border-color: #ef4444;
}
.cv-price-card__year,
.cv-price-card__trial {
  margin: -0.45rem 0 0.75rem;
  font-size: 0.82rem;
  color: #64748b;
}
.cv-plans-page { padding-top: 2.5rem; }
.cv-plans-grid { max-width: 1100px; margin: 0 auto; }
.cv-empty-box {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
  color: #e2e8f0;
}
.cv-compare {
  margin-top: 3rem;
  background: #fff;
  border-radius: 18px;
  padding: 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.cv-compare h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: #0b1730;
}
.cv-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.cv-compare-table th,
.cv-compare-table td {
  padding: 0.75rem 0.65rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
  vertical-align: middle;
}
.cv-compare-table th {
  color: #0b1730;
  font-weight: 750;
  background: #f8fafc;
}
.cv-compare-table td:not(:first-child),
.cv-compare-table th:not(:first-child) {
  text-align: center;
  white-space: nowrap;
}
.cv-testimonial__author img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(20, 184, 166, 0.35);
}

/* ========== Themes ========== */
html[data-theme="dark"] body.lp-body {
  background: #050b16;
  color: #e2e8f0;
}
html[data-theme="dark"] .cv-section,
html[data-theme="dark"] .cv-section--light,
html[data-theme="dark"] .lp-section-light {
  background: #0a1628;
}
html[data-theme="dark"] .cv-section__head h2,
html[data-theme="dark"] .cv-benefit-card h3,
html[data-theme="dark"] .cv-step h3,
html[data-theme="dark"] .cv-stat strong,
html[data-theme="dark"] .cv-stat h3,
html[data-theme="dark"] .cv-faq summary,
html[data-theme="dark"] .cv-about-card h2,
html[data-theme="dark"] .cv-compare h2,
html[data-theme="dark"] .cv-mod-card h3,
html[data-theme="dark"] .cv-register-panel__title,
html[data-theme="dark"] .cv-field label {
  color: #f8fafc;
}
html[data-theme="dark"] .cv-section__head p,
html[data-theme="dark"] .cv-benefit-card p,
html[data-theme="dark"] .cv-step p,
html[data-theme="dark"] .cv-faq__body,
html[data-theme="dark"] .cv-about-intro,
html[data-theme="dark"] .cv-about-card p,
html[data-theme="dark"] .cv-mod-card p,
html[data-theme="dark"] .cv-stat p {
  color: #94a3b8;
}
html[data-theme="dark"] .cv-benefit-card,
html[data-theme="dark"] .cv-step,
html[data-theme="dark"] .cv-stat,
html[data-theme="dark"] .cv-testimonial,
html[data-theme="dark"] .cv-faq,
html[data-theme="dark"] .cv-about-card,
html[data-theme="dark"] .cv-form,
html[data-theme="dark"] .cv-contact-aside,
html[data-theme="dark"] .cv-register-panel,
html[data-theme="dark"] .cv-compare,
html[data-theme="dark"] .cv-mod-card,
html[data-theme="dark"] .cv-price-card,
html[data-theme="dark"] .cv-cta__card {
  background: #111c2e;
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  color: #e2e8f0;
}
html[data-theme="dark"] .cv-price-card h3,
html[data-theme="dark"] .cv-price-card__price strong,
html[data-theme="dark"] .cv-cta__card h2,
html[data-theme="dark"] .cv-testimonial blockquote,
html[data-theme="dark"] .cv-testimonial__author strong {
  color: #f8fafc;
}
html[data-theme="dark"] .cv-price-card__desc,
html[data-theme="dark"] .cv-price-card__year,
html[data-theme="dark"] .cv-price-card__trial,
html[data-theme="dark"] .cv-price-card__list,
html[data-theme="dark"] .cv-cta__card p,
html[data-theme="dark"] .cv-testimonial__author span {
  color: #94a3b8;
}
html[data-theme="dark"] .cv-btn--outline {
  color: #e2e8f0;
  border-color: rgba(226, 232, 240, 0.28);
  background: transparent;
}
html[data-theme="dark"] .cv-btn--outline:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
html[data-theme="dark"] .cv-form input,
html[data-theme="dark"] .cv-form textarea,
html[data-theme="dark"] .cv-form select,
html[data-theme="dark"] .cv-field input,
html[data-theme="dark"] .cv-field select,
html[data-theme="dark"] .cv-register-form .cv-select {
  background: #0a1628;
  border-color: rgba(148, 163, 184, 0.22);
  color: #f8fafc;
}
html[data-theme="dark"] .cv-terms {
  background: #0a1628;
  border-color: rgba(148, 163, 184, 0.18);
  color: #cbd5e1;
}
html[data-theme="dark"] .cv-compare-table th {
  background: #0a1628;
  color: #f8fafc;
}
html[data-theme="dark"] .cv-compare-table td,
html[data-theme="dark"] .cv-compare-table th {
  border-bottom-color: rgba(148, 163, 184, 0.14);
  color: #cbd5e1;
}
html[data-theme="dark"] .cv-header {
  background: rgba(5, 11, 22, 0.72);
}
html[data-theme="dark"] .cv-header.is-scrolled {
  background: rgba(5, 11, 22, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
html[data-theme="dark"] .cv-theme-btn {
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}
html[data-theme="dark"] .cv-register-page {
  background:
    radial-gradient(ellipse 50% 40% at 10% 0%, rgba(20, 184, 166, 0.14), transparent 55%),
    linear-gradient(180deg, #050b16 0%, #0a1628 100%);
}
html[data-theme="dark"] .cv-register-aside {
  background: rgba(17, 28, 46, 0.95);
}

/* Light theme — textos sempre legíveis */
html[data-theme="light"] body.lp-body {
  background: #f8fafc;
  color: #0f172a;
}
html[data-theme="light"] .cv-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(12px);
}
html[data-theme="light"] .cv-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .cv-brand,
html[data-theme="light"] .cv-brand__text strong,
html[data-theme="light"] .cv-nav a,
html[data-theme="light"] .cv-nav a.is-active,
html[data-theme="light"] .cv-theme-btn {
  color: #0b1730 !important;
}
html[data-theme="light"] .cv-nav a.is-active::after {
  background: var(--cv-teal);
}
html[data-theme="light"] .cv-hero,
html[data-theme="light"] .cv-pricing,
html[data-theme="light"] .cv-section--dark,
html[data-theme="light"] .cv-page-hero,
html[data-theme="light"] .cv-plans-page {
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(56, 189, 248, 0.16), transparent 60%),
    linear-gradient(165deg, #e0f2fe, #f8fafc 55%, #eef2ff);
  color: #0f172a;
}
html[data-theme="light"] .cv-hero__title-main,
html[data-theme="light"] .cv-pricing__intro h2,
html[data-theme="light"] .cv-section__head--on-dark h2,
html[data-theme="light"] .cv-page-hero h1,
html[data-theme="light"] .cv-section__head h2 {
  color: #0b1730 !important;
}
html[data-theme="light"] .cv-hero__title-sub {
  color: #0d9488 !important;
}
html[data-theme="light"] .cv-hero__lead,
html[data-theme="light"] .cv-hero__checks li,
html[data-theme="light"] .cv-pricing__intro p,
html[data-theme="light"] .cv-section__head--on-dark p,
html[data-theme="light"] .cv-section__head p,
html[data-theme="light"] .cv-page-hero p {
  color: #475569 !important;
}
html[data-theme="light"] .cv-btn--ghost {
  color: #0b1730 !important;
  border-color: rgba(15, 23, 42, 0.2);
  background: rgba(255, 255, 255, 0.55);
}
html[data-theme="light"] .cv-btn--ghost:hover {
  background: #fff;
  color: #0b1730 !important;
}
html[data-theme="light"] .cv-nav-toggle span { background: #0b1730; }
html[data-theme="light"] .cv-theme-btn {
  border-color: rgba(15, 23, 42, 0.16);
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .cv-pill,
html[data-theme="light"] .cv-label {
  color: #0f766e !important;
}
html[data-theme="light"] .cv-footer {
  background: #0b1730;
  color: rgba(226, 232, 240, 0.82);
}
html[data-theme="light"] .cv-footer__links h3,
html[data-theme="light"] .cv-footer__col h3,
html[data-theme="light"] .cv-brand--footer .cv-brand__text strong,
html[data-theme="light"] .cv-brand--footer {
  color: #fff !important;
}
html[data-theme="light"] .cv-footer a,
html[data-theme="light"] .cv-footer__bottom {
  color: rgba(226, 232, 240, 0.75) !important;
}
html[data-theme="light"] .cv-register-page {
  background:
    radial-gradient(ellipse 50% 40% at 10% 0%, rgba(20, 184, 166, 0.1), transparent 55%),
    linear-gradient(180deg, #e0f2fe 0%, #f8fafc 32%, #f8fafc 100%);
}
html[data-theme="light"] .cv-register-aside {
  background: #fff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: var(--cv-shadow-card);
}
html[data-theme="light"] .cv-register-aside h1 { color: #0b1730; }
html[data-theme="light"] .cv-register-lead,
html[data-theme="light"] .cv-register-perks li,
html[data-theme="light"] .cv-register-aside__note {
  color: #475569;
}
html[data-theme="light"] .cv-register-aside__note {
  border-top-color: rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .cv-register-aside__note a { color: var(--cv-teal); }
html[data-theme="light"] .cv-empty-box {
  background: #fff;
  color: #334155;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

@media (max-width: 1100px) {
  .cv-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .cv-benefit-grid > article { grid-column: auto !important; }
  .cv-footer__top { grid-template-columns: 1fr 1fr; }
  .cv-contact-grid,
  .cv-about-grid,
  .cv-wide-dash,
  .cv-register-shell { grid-template-columns: 1fr; }
  .cv-wide-dash__kpis { grid-template-columns: 1fr 1fr; }
  .cv-cta__actions { justify-content: center; }
}
@media (max-width: 640px) {
  .cv-hero__container { min-height: 0; }
  .cv-form__row,
  .cv-form__grid,
  .cv-footer__top,
  .cv-about-grid,
  .cv-benefit-grid { grid-template-columns: 1fr !important; }
  .cv-register-page { padding: 5.25rem 0 2rem; }
  .cv-register-aside,
  .cv-register-panel { padding: 1.25rem 1.1rem; border-radius: 16px; }
  .cv-price-card:hover,
  .cv-price-card.is-featured:hover { transform: translateY(-4px) scale(1); }
}

/* ========== Module detail page ========== */
.cv-module-hero__top {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 0.75rem 0 1.25rem;
}
.cv-module-hero__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--mod, #14B8A6) 18%, transparent);
  color: var(--mod, #14B8A6);
  font-size: 1.35rem;
  flex-shrink: 0;
}
.cv-module-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.cv-module-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}
.cv-module-main,
.cv-module-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--cv-shadow-card);
  padding: 1.35rem 1.25rem;
}
.cv-module-main h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: #0b1730;
}
.cv-module-main h2 + .cv-module-steps,
.cv-module-prose + h2 { margin-top: 1.75rem; }
.cv-module-prose {
  color: #475569;
  line-height: 1.7;
  font-size: 0.98rem;
}
.cv-module-main__img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 1.1rem;
}
.cv-module-steps { display: grid; gap: 0.75rem; }
.cv-module-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem;
  border-radius: 14px;
  background: #f8fafc;
}
.cv-module-step > span {
  font-weight: 800;
  color: var(--cv-teal);
  font-size: 1.05rem;
}
.cv-module-step strong { display: block; color: #0b1730; margin-bottom: 0.2rem; }
.cv-module-step p { margin: 0; color: #64748b; font-size: 0.9rem; }
.cv-module-aside { display: grid; gap: 0.9rem; }
.cv-module-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: #0b1730;
}
.cv-module-card ul { display: grid; gap: 0.55rem; margin: 0; }
.cv-module-card li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: #334155;
  font-size: 0.9rem;
}
.cv-module-card li i { color: var(--cv-teal); margin-top: 0.2rem; }
.cv-module-card--cta {
  background: linear-gradient(165deg, #0b1730, #10243f);
  color: #e2e8f0;
  border: 0;
}
.cv-module-card--cta h3 { color: #fff; }
.cv-module-card--cta p { color: rgba(226,232,240,0.78); margin: 0 0 1rem; font-size: 0.9rem; }
html[data-theme="dark"] .cv-module-main,
html[data-theme="dark"] .cv-module-card:not(.cv-module-card--cta) {
  background: #111c2e;
  border-color: rgba(148,163,184,0.14);
}
html[data-theme="dark"] .cv-module-main h2,
html[data-theme="dark"] .cv-module-card h3,
html[data-theme="dark"] .cv-module-step strong { color: #f8fafc; }
html[data-theme="dark"] .cv-module-prose,
html[data-theme="dark"] .cv-module-step p,
html[data-theme="dark"] .cv-module-card li { color: #94a3b8; }
html[data-theme="dark"] .cv-module-step { background: #0a1628; }
html[data-theme="dark"] .cv-price-card__val { color: #f8fafc; }
@media (max-width: 900px) {
  .cv-module-layout { grid-template-columns: 1fr; }
}
