/* Landing ANESTVET — site estático (upload via cPanel) */
:root {
  --font-sans: "Montserrat", system-ui, sans-serif;
  --lp-navy: #14427a;
  --lp-blue: #458bca;
  --lp-mid: #14427a;
  --lp-text: #1e293b;
  --lp-muted: #666666;
  --lp-line: rgba(20, 66, 122, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

.lp {
  background: #fff;
  color: var(--lp-text);
  min-height: 100vh;
}

.lp-wrap { width: min(100% - 2.5rem, 64rem); margin: 0 auto; }

.lp-kicker {
  margin: 0 0 .55rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--lp-mid);
}

.lp h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.35rem, 3.4vw, 1.85rem);
  line-height: 1.25;
  font-weight: 700;
  color: var(--lp-navy);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 2.75rem;
  padding: .7rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--lp-navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.lp-btn:hover { background: #003d70; color: #fff; }

.lp-btn-outline {
  background: #fff;
  color: var(--lp-navy);
  border: 2px solid var(--lp-navy);
}

.lp-btn-outline:hover {
  background: #eef4fa;
  color: var(--lp-navy);
}

.lp-ghost {
  color: var(--lp-navy);
  font-weight: 700;
  text-decoration: none;
  padding: .75rem .15rem;
}

.lp-ghost:hover { text-decoration: underline; }

.lp-muted { color: var(--lp-muted); }

.lp-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  color: var(--lp-navy);
}

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-line);
}

.lp-nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.lp-logo {
  display: block;
  height: 3.25rem;
  width: auto;
  max-width: min(14rem, 52vw);
  object-fit: contain;
}

.lp-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.lp-links a:not(.lp-btn) {
  color: var(--lp-text);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
}

.lp-links a:not(.lp-btn):hover { color: var(--lp-navy); }

.lp-links a.lp-btn:not(.lp-btn-outline) {
  color: #fff;
  font-size: .82rem;
  white-space: nowrap;
}

.lp-links a.lp-btn-outline,
.lp-links a.lp-nav-login {
  color: var(--lp-navy);
  background: #fff;
}

.lp-links button.lp-btn {
  color: #fff;
  font-size: .82rem;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}

.lp-links a.lp-btn:not(.lp-btn-outline):hover,
.lp-links button.lp-btn:hover { color: #fff; background: #003d70; }

.lp-links a.lp-btn-outline:hover,
.lp-links a.lp-nav-login:hover {
  color: var(--lp-navy);
  background: #eef4fa;
}

.lp-link-quiet { color: var(--lp-muted); font-weight: 600; }
.lp-link-quiet:hover { color: var(--lp-navy); }

.lp-nav-cta { min-height: 2.3rem; padding: .4rem .95rem; }
.lp-nav-cta-accent { background: var(--lp-mid); }
.lp-nav-cta-accent:hover { background: #004c8c; }

.lp-menu {
  display: none;
  border: 0;
  background: transparent;
  color: var(--lp-text);
  padding: .55rem;
  cursor: pointer;
}

.lp-hero { padding: 4.5rem 0 4.2rem; }
.lp-hero-copy { max-width: 38rem; }

.lp-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5.2vw, 3.15rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--lp-navy);
}

.lp-lead {
  margin: 0 0 1.6rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--lp-muted);
  max-width: 32rem;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

.lp-hero-note {
  margin: 1.15rem 0 0;
  font-size: .86rem;
  color: var(--lp-muted);
  font-weight: 600;
}

.lp-highlights,
.lp-details,
.lp-plans,
.lp-ig {
  padding: 3.4rem 0;
}

.lp-highlights { border-top: 1px solid var(--lp-line); }

.lp-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem 1.4rem;
}

.lp-highlight h3 {
  margin: .7rem 0 .35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-navy);
}

.lp-highlight p {
  margin: 0;
  color: var(--lp-muted);
  font-size: .94rem;
  line-height: 1.55;
}

.lp-details { background: #f4f8fc; }

.lp-detail-list { display: grid; }

.lp-detail {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--lp-line);
  padding: 1.5rem 0;
}

.lp-detail:last-child { border-bottom: 1px solid var(--lp-line); }

.lp-detail-index {
  font-size: .95rem;
  font-weight: 700;
  color: var(--lp-mid);
  letter-spacing: .08em;
  padding-top: .2rem;
}

.lp-detail h3 {
  margin: .1rem 0 .4rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lp-navy);
}

.lp-detail p {
  margin: 0 0 .75rem;
  color: var(--lp-muted);
  line-height: 1.6;
}

.lp-detail ul,
.lp-plan ul,
.lp-mobile ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .38rem;
}

.lp-detail li,
.lp-plan li,
.lp-mobile li {
  display: flex;
  gap: .45rem;
  align-items: flex-start;
  color: var(--lp-text);
  font-weight: 600;
  font-size: .92rem;
}

.lp-detail li .lp-icon,
.lp-plan li .lp-icon,
.lp-mobile li .lp-icon {
  margin-top: .12rem;
}

.lp-mobile {
  padding: 3.2rem 0;
  border-top: 1px solid var(--lp-line);
}

.lp-mobile > .lp-wrap > div > .lp-icon { margin-bottom: .7rem; }
.lp-mobile p { color: var(--lp-muted); line-height: 1.6; margin: 0; }

.lp-mobile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 2rem;
}

.lp-mobile ul { gap: .7rem; }

.lp-plans { border-top: 1px solid var(--lp-line); }

.lp-plans-lead {
  max-width: 34rem;
  margin: -.7rem 0 1.8rem;
}

.lp-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.lp-plan {
  border: 1px solid var(--lp-line);
  padding: 1.3rem 1.2rem;
  background: #fff;
}

.lp-plan.is-featured {
  border-color: var(--lp-navy);
  box-shadow: 0 8px 24px rgba(0, 76, 140, .08);
}

.lp-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lp-mid);
  margin-bottom: .5rem;
}

.lp-plan h3 { margin: 0; color: var(--lp-navy); font-weight: 700; }

.lp-plan-price {
  margin: .4rem 0 .35rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--lp-navy);
}

.lp-plan-price small {
  font-size: .78rem;
  font-weight: 600;
  color: var(--lp-muted);
  margin-left: .25rem;
}

.lp-plan ul { margin: .9rem 0 0; }

.lp-plans-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

.lp-ig { background: #f4f8fc; }

.lp-ig-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1.4rem;
}

.lp-ig-head h2 { margin: 0 0 .35rem; }
.lp-ig-head p { margin: 0; max-width: 30rem; }

.lp-ig-embed-wrap {
  background: #fff;
  border: 1px solid var(--lp-line);
  padding: .85rem;
}

.lp-ig-embed {
  width: 100%;
  min-height: 34rem;
  border: 0;
  background: #fafafa;
}

.lp-ig-fallback { margin: .75rem 0 0; }
.lp-ig-fallback a { color: var(--lp-mid); font-weight: 700; }

.lp-final {
  padding: 4rem 0;
  border-top: 1px solid var(--lp-line);
  text-align: center;
}

.lp-final p { margin: 0 0 1.3rem; color: var(--lp-muted); }
.lp-final .lp-btn { margin: 0 auto; width: min(100%, 18rem); }

.lp-footer {
  background: #fff;
  color: var(--lp-muted);
  padding: 1.3rem 0 2rem;
  font-size: .84rem;
  border-top: 1px solid var(--lp-line);
}

.lp-footer .lp-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-footer p { margin: 0; }

.lp-footer a {
  color: var(--lp-navy);
  margin-left: 1.1rem;
  text-decoration: none;
  font-weight: 600;
}

.lp-footer a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .lp-highlight-grid,
  .lp-plan-grid,
  .lp-mobile-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero { padding: 3.2rem 0 3rem; }
}

@media (max-width: 720px) {
  .lp-menu { display: grid; }

  .lp-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 4.5rem;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .4rem 1.25rem 1rem;
    border-bottom: 1px solid var(--lp-line);
    box-shadow: 0 12px 28px rgba(15, 40, 70, .1);
  }

  .lp-links.open { display: flex; }

  .lp-links a,
  .lp-nav-cta {
    min-height: 2.6rem;
    display: flex;
    align-items: center;
  }

  .lp-ig-head { flex-direction: column; align-items: flex-start; }
  .lp-footer .lp-wrap { flex-direction: column; }
  .lp-footer a { margin-left: 0; margin-right: 1rem; }
}

/* Visual 2026 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background: #f8f9fa;
  font-weight: 400;
}

.lp {
  --lp-navy: #14427a;
  --lp-blue: #458bca;
  --lp-mid: #14427a;
  --lp-cyan: #54c8d8;
  --lp-text: #1e293b;
  --lp-muted: #666666;
  --lp-line: rgba(20, 66, 122, .12);
  overflow: hidden;
}

.lp-wrap {
  width: min(100% - 3rem, 76rem);
}

.lp h2 {
  max-width: 46rem;
  margin-bottom: 2.25rem;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -.035em;
}

.lp-kicker {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .8rem;
  font-size: .69rem;
  letter-spacing: .16em;
}

.lp-kicker > span {
  width: 1.75rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--lp-mid), var(--lp-cyan));
}

.lp-btn {
  min-height: 3.15rem;
  padding: .82rem 1.4rem;
  border-radius: .9rem;
  box-shadow: 0 9px 24px rgba(0, 76, 140, .15);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.lp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 76, 140, .22);
}

.lp-btn-primary {
  background: linear-gradient(135deg, #14427a, #458bca);
  box-shadow: 0 12px 32px rgba(20, 66, 122, .25);
}

.lp-btn-outline {
  border: 1px solid rgba(0, 76, 140, .25);
  background: rgba(255, 255, 255, .76);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.lp-nav {
  background: rgba(255, 255, 255, .82);
  border-bottom-color: rgba(15, 83, 132, .09);
  box-shadow: 0 4px 28px rgba(14, 58, 90, .045);
}

.lp-nav-inner {
  min-height: 5.4rem;
}

.lp-nav-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.lp-logo {
  width: clamp(14rem, 19vw, 17rem);
  height: auto;
  max-width: none;
}

.lp-links {
  gap: clamp(.65rem, 1.35vw, 1.25rem);
}

.lp-links a:not(.lp-btn) {
  position: relative;
  font-size: .8rem;
}

.lp-links a:not(.lp-btn)::after {
  position: absolute;
  right: 0;
  bottom: -.45rem;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--lp-mid);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.lp-links a:not(.lp-btn):hover::after {
  transform: scaleX(1);
}

.lp-links a.lp-btn {
  font-size: .75rem;
}

.lp-links a.lp-btn-outline,
.lp-links a.lp-nav-login {
  color: var(--lp-navy);
  background: rgba(255, 255, 255, .92);
}

.lp-links a.lp-btn-outline:hover,
.lp-links a.lp-nav-login:hover {
  color: var(--lp-navy);
  background: #eef4fa;
}

.lp-nav-cta {
  min-height: 2.65rem;
  padding: .55rem 1rem;
  border-radius: .75rem;
}

.lp-nav-cta-accent {
  background: linear-gradient(135deg, #14427a, #458bca);
}

.lp-nav-login {
  min-height: 2.65rem;
  padding: .55rem 1rem;
}

.lp-problem {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: #fff;
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
}

.lp-problem-inner {
  max-width: 46rem;
}

.lp-problem h2 {
  margin-bottom: 1rem;
}

.lp-problem p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.lp-problem strong {
  color: var(--lp-navy);
}

.lp-highlight-grid-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-benefit-icon {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: .85rem;
  background: linear-gradient(145deg, #eaf3fb, #f5fafd);
  font-size: 1.2rem;
}

.lp-badge-soon {
  display: inline-block;
  margin-left: .35rem;
  padding: .15rem .45rem;
  border-radius: 999px;
  background: #fff3d6;
  color: #9a6700;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.lp-footnote {
  margin: 1rem 0 0;
  color: var(--lp-muted);
  font-size: .78rem;
}

.lp-detail-steps .lp-detail p {
  margin: 0;
}

.lp-plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 52rem;
}

.lp-plan-cta {
  width: 100%;
  margin-top: 1.1rem;
  text-decoration: none;
}

.lp-plans-anchor {
  max-width: 44rem;
  margin: 2rem auto 0;
  color: var(--lp-muted);
  line-height: 1.7;
  font-size: .95rem;
  text-align: center;
}

.lp-plans-foot {
  margin: 1rem 0 0;
  font-size: .85rem;
  text-align: center;
}

.lp-plans-anchor strong {
  color: var(--lp-navy);
}

.lp-faq {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #fff;
}

.lp-faq-list {
  display: grid;
  gap: .75rem;
  max-width: 44rem;
}

.lp-faq-item {
  border: 1px solid var(--lp-line);
  border-radius: 1rem;
  background: #f8f9fa;
  overflow: hidden;
}

.lp-faq-item summary {
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--lp-navy);
  list-style: none;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--lp-blue);
}

.lp-faq-item[open] summary::after {
  content: "−";
}

.lp-faq-item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--lp-muted);
  line-height: 1.65;
  font-size: .94rem;
}

.lp-device-stack {
  position: relative;
  z-index: 2;
  width: min(100%, 36rem);
}

.lp-device-tablet {
  width: 100%;
}

.lp-device-phone {
  position: absolute;
  right: -.5rem;
  bottom: 1.5rem;
  width: 7.5rem;
  padding: .45rem;
  border-radius: 1.1rem;
  background: #0f172a;
  box-shadow: 0 18px 40px rgba(15, 40, 70, .28);
  transform: rotate(4deg);
}

.lp-phone-screen {
  display: grid;
  gap: .35rem;
  padding: .55rem .45rem .65rem;
  border-radius: .75rem;
  background: linear-gradient(160deg, #0b2844, #14427a);
  color: #fff;
  font-size: .58rem;
}

.lp-phone-label {
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
}

.lp-phone-monitor {
  display: grid;
  gap: .2rem;
  padding: .45rem;
  border-radius: .45rem;
  background: rgba(255, 255, 255, .08);
  font-variant-numeric: tabular-nums;
}

.lp-phone-status {
  color: #8ee0d5;
  font-weight: 700;
}

.lp-chart-marker-tri {
  fill: #e85d4a;
}

.lp-chart-marker-dot {
  fill: #458bca;
  stroke: #fff;
  stroke-width: 1.5;
}

.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.1rem;
}

.lp-footer-links a {
  margin-left: 0;
}

@media (max-width: 900px) {
  .lp-highlight-grid-benefits,
  .lp-plan-grid {
    grid-template-columns: 1fr;
  }

  .lp-device-phone {
    right: 0;
    bottom: .5rem;
    width: 6.5rem;
  }
}

@media (max-width: 720px) {
  .lp-links a.lp-btn-outline {
    justify-content: center;
  }
}

.lp-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(4.5rem, 8vw, 7.3rem) 0 2.3rem;
  background:
    radial-gradient(circle at 12% 22%, rgba(91, 167, 221, .14), transparent 30%),
    radial-gradient(circle at 86% 42%, rgba(71, 196, 205, .14), transparent 27%),
    linear-gradient(145deg, #f8fcff 0%, #fff 48%, #f3f9fd 100%);
}

.lp-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(0, 76, 140, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 76, 140, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  content: "";
}

.lp-hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.lp-hero-glow-one {
  top: 5rem;
  right: -8rem;
  width: 26rem;
  height: 26rem;
  background: rgba(78, 190, 211, .11);
}

.lp-hero-glow-two {
  bottom: 3rem;
  left: -10rem;
  width: 22rem;
  height: 22rem;
  background: rgba(85, 151, 213, .1);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(27rem, 1.06fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.lp-hero-copy {
  max-width: 39rem;
}

.lp-hero h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.65rem, 5.2vw, 4.65rem);
  line-height: .99;
  letter-spacing: -.055em;
}

.lp-hero h1 strong {
  color: transparent;
  background: linear-gradient(100deg, #167bb9, #52b9ca);
  background-clip: text;
  -webkit-background-clip: text;
}

.lp-lead {
  max-width: 36rem;
  margin-bottom: 1.8rem;
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.72;
}

.lp-hero-actions {
  gap: .7rem;
}

.lp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 1.35rem;
  color: var(--lp-muted);
  font-size: .74rem;
  font-weight: 600;
}

.lp-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.lp-hero-trust svg {
  color: #259f90;
}

.lp-hero-visual {
  position: relative;
  min-height: 28rem;
  display: grid;
  place-items: center;
}

.lp-visual-orbit {
  position: absolute;
  border: 1px solid rgba(37, 135, 186, .13);
  border-radius: 50%;
}

.lp-orbit-one {
  width: 28rem;
  height: 28rem;
}

.lp-orbit-two {
  width: 21rem;
  height: 21rem;
  border-style: dashed;
  animation: lp-spin 28s linear infinite;
}

.lp-dashboard-card {
  position: relative;
  z-index: 2;
  width: min(100%, 34rem);
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 28px 70px rgba(23, 78, 116, .18), inset 0 0 0 1px rgba(0, 92, 160, .035);
  backdrop-filter: blur(18px);
  transform: perspective(900px) rotateY(-3deg) rotateX(2deg);
}

.lp-dashboard-top,
.lp-dashboard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-dashboard-label {
  display: block;
  margin-bottom: .25rem;
  color: var(--lp-muted);
  font-size: .66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lp-dashboard-top strong {
  display: block;
  color: var(--lp-navy);
  font-size: 1.15rem;
}

.lp-dashboard-top strong small {
  color: var(--lp-muted);
  font-size: .72rem;
  font-weight: 500;
}

.lp-live {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem .7rem;
  border-radius: 999px;
  color: #168171;
  background: #e8faf5;
  font-size: .66rem;
  font-weight: 700;
}

.lp-live i {
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: #25aa95;
  box-shadow: 0 0 0 4px rgba(37, 170, 149, .12);
  animation: lp-pulse-dot 1.6s ease-in-out infinite;
}

.lp-vitals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
  margin: 1.15rem 0 .7rem;
}

.lp-vitals > div {
  padding: .85rem;
  border: 1px solid rgba(0, 76, 140, .08);
  border-radius: 1rem;
  background: linear-gradient(145deg, #f8fbfe, #fff);
}

.lp-vitals span {
  display: block;
  color: var(--lp-muted);
  font-size: .64rem;
  font-weight: 700;
}

.lp-vitals strong {
  margin-right: .2rem;
  color: var(--lp-navy);
  font-size: 1.65rem;
}

.lp-vitals small {
  color: var(--lp-muted);
  font-size: .58rem;
}

.lp-chart {
  height: 9rem;
  overflow: hidden;
  border-radius: 1rem;
  background:
    linear-gradient(rgba(0, 76, 140, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 76, 140, .045) 1px, transparent 1px),
    #f8fbfe;
  background-size: 28px 28px;
}

.lp-chart svg {
  width: 100%;
  height: 100%;
}

.lp-chart-area {
  fill: url(#chartFill);
}

.lp-chart-line {
  fill: none;
  stroke: #3c97ce;
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 3px 3px rgba(41, 140, 198, .25));
  stroke-dasharray: 800;
  animation: lp-draw 2.2s ease-out both;
}

.lp-dashboard-foot {
  margin-top: .8rem;
  color: var(--lp-muted);
  font-size: .65rem;
}

.lp-dashboard-foot strong {
  color: var(--lp-text);
}

.lp-dashboard-action {
  padding: .5rem .7rem;
  border-radius: .55rem;
  color: #fff;
  background: var(--lp-navy);
  font-weight: 700;
}

.lp-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 12rem;
  padding: .78rem .9rem;
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 38px rgba(24, 78, 115, .16);
  animation: lp-float 4s ease-in-out infinite;
}

.lp-float-card strong,
.lp-float-card small {
  display: block;
}

.lp-float-card strong {
  color: var(--lp-text);
  font-size: .68rem;
}

.lp-float-card small {
  margin-top: .15rem;
  color: var(--lp-muted);
  font-size: .6rem;
}

.lp-float-card > svg {
  margin-left: auto;
  color: #24a18e;
}

.lp-float-icon {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border-radius: .65rem;
  color: #0878b7;
  background: #e9f5fc;
  font-size: 1.05rem;
  font-weight: 800;
}

.lp-float-ai {
  top: 2rem;
  right: -1rem;
}

.lp-float-alarm {
  bottom: 2rem;
  left: -1.6rem;
  animation-delay: -2s;
}

.lp-hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4.4rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(0, 76, 140, .09);
  color: var(--lp-muted);
  font-size: .7rem;
}

.lp-hero-proof > span {
  text-transform: uppercase;
  letter-spacing: .09em;
}

.lp-hero-proof div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lp-hero-proof b {
  color: #587084;
  font-size: .7rem;
}

.lp-hero-proof i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #78b9d7;
}

.lp-highlights,
.lp-details,
.lp-plans,
.lp-ig {
  padding: clamp(5rem, 8vw, 7rem) 0;
}

.lp-highlights {
  border: 0;
  background: #fff;
}

.lp-highlight-grid {
  gap: 1rem;
}

.lp-highlight {
  position: relative;
  min-height: 13.5rem;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #fff, #fbfdff);
  box-shadow: 0 9px 30px rgba(16, 68, 105, .055);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.lp-highlight::after {
  position: absolute;
  right: -2.5rem;
  bottom: -3rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(89, 171, 218, .07);
  content: "";
  transition: transform .3s ease;
}

.lp-highlight:hover {
  border-color: rgba(20, 120, 189, .24);
  box-shadow: 0 18px 42px rgba(16, 68, 105, .1);
  transform: translateY(-5px);
}

.lp-highlight:hover::after {
  transform: scale(1.4);
}

.lp-highlight > .lp-icon {
  box-sizing: content-box;
  padding: .72rem;
  border-radius: .85rem;
  background: linear-gradient(145deg, #eaf6fd, #f3fbfc);
}

.lp-highlight h3 {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.lp-details {
  position: relative;
  background:
    radial-gradient(circle at 90% 10%, rgba(75, 183, 205, .1), transparent 28%),
    #f3f8fc;
}

.lp-detail-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lp-detail {
  grid-template-columns: 3.3rem minmax(0, 1fr);
  padding: 1.6rem;
  border: 1px solid rgba(0, 76, 140, .09);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 10px 32px rgba(24, 77, 113, .05);
  backdrop-filter: blur(8px);
}

.lp-detail:last-child {
  border-bottom: 1px solid rgba(0, 76, 140, .09);
}

.lp-detail-index {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  place-items: center;
  border-radius: .8rem;
  color: #fff;
  background: linear-gradient(145deg, #0d6daa, #55b8ca);
  box-shadow: 0 8px 18px rgba(9, 105, 166, .18);
}

.lp-detail h3 {
  font-size: 1.2rem;
}

.lp-detail li,
.lp-plan li,
.lp-mobile li {
  font-weight: 500;
}

.lp-mobile {
  padding: clamp(4.5rem, 7vw, 6rem) 0;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 100%, rgba(85, 188, 205, .24), transparent 34%),
    linear-gradient(120deg, #063e69, #075c8d);
}

.lp-mobile h2,
.lp-mobile p,
.lp-mobile li,
.lp-mobile .lp-icon {
  color: #fff;
}

.lp-mobile p {
  color: rgba(255, 255, 255, .74);
}

.lp-mobile-grid {
  gap: 5rem;
  align-items: center;
}

.lp-mobile ul {
  gap: .8rem;
}

.lp-mobile li {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .85rem;
  background: rgba(255, 255, 255, .07);
}

.lp-plans {
  border: 0;
  background: #fff;
}

.lp-plan-grid {
  gap: 1.25rem;
  align-items: stretch;
}

.lp-plan {
  padding: 1.7rem;
  border-radius: 1.4rem;
  box-shadow: 0 12px 36px rgba(17, 68, 104, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.lp-plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(17, 68, 104, .12);
}

.lp-plan.is-featured {
  position: relative;
  border-color: transparent;
  color: #fff;
  background: linear-gradient(145deg, #064c7e, #0874a8);
  box-shadow: 0 22px 52px rgba(5, 82, 130, .24);
}

.lp-plan.is-featured h3,
.lp-plan.is-featured .lp-plan-price,
.lp-plan.is-featured li,
.lp-plan.is-featured .lp-plan-badge {
  color: #fff;
}

.lp-plan.is-featured .lp-muted,
.lp-plan.is-featured .lp-plan-price small {
  color: rgba(255, 255, 255, .72);
}

.lp-plan.is-featured .lp-icon {
  color: #8ae0db;
}

.lp-plan-badge {
  padding: .42rem .65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
}

.lp-plan-price {
  margin: .65rem 0;
  font-size: 1.85rem;
}

.lp-ig {
  background: #f3f8fc;
}

.lp-ig-embed-wrap {
  padding: 1rem;
  border-radius: 1.4rem;
  box-shadow: 0 14px 40px rgba(19, 73, 110, .08);
}

.lp-ig-embed {
  border-radius: .9rem;
}

.lp-final {
  position: relative;
  padding: clamp(5rem, 8vw, 7rem) 0;
  overflow: hidden;
  border: 0;
  color: #fff;
  background: linear-gradient(120deg, #053b66, #086999);
}

.lp-final::before,
.lp-final::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  content: "";
}

.lp-final::before {
  top: -14rem;
  left: -8rem;
  width: 30rem;
  height: 30rem;
}

.lp-final::after {
  right: -7rem;
  bottom: -18rem;
  width: 34rem;
  height: 34rem;
}

.lp-final .lp-wrap {
  position: relative;
  z-index: 1;
}

.lp-final h2 {
  max-width: none;
  color: #fff;
}

.lp-final p {
  color: rgba(255, 255, 255, .75);
}

.lp-final .lp-btn {
  color: var(--lp-navy);
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .16);
}

.lp-footer {
  padding: 2rem 0;
  background: #f8fbfd;
}

@keyframes lp-spin {
  to { transform: rotate(360deg); }
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes lp-pulse-dot {
  50% { box-shadow: 0 0 0 7px rgba(37, 170, 149, 0); }
}

@keyframes lp-draw {
  from { stroke-dashoffset: 800; }
  to { stroke-dashoffset: 0; }
}

@media (max-width: 1080px) {
  .lp-links a[href^="#"] {
    display: none;
  }

  .lp-hero-grid {
    grid-template-columns: minmax(0, .85fr) minmax(25rem, 1.15fr);
    gap: 2rem;
  }

  .lp-float-ai { right: 0; }
  .lp-float-alarm { left: 0; }
}

@media (max-width: 900px) {
  .lp-hero {
    padding-top: 4.5rem;
  }

  .lp-hero-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-copy {
    max-width: 43rem;
    text-align: center;
    margin: 0 auto;
  }

  .lp-hero-copy .lp-kicker,
  .lp-hero-actions,
  .lp-hero-trust {
    justify-content: center;
  }

  .lp-hero-visual {
    width: min(100%, 38rem);
    margin: 0 auto;
  }

  .lp-detail-list {
    grid-template-columns: 1fr;
  }

  .lp-highlight-grid,
  .lp-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-plan.is-featured {
    order: -1;
  }
}

@media (max-width: 720px) {
  .lp-wrap {
    width: min(100% - 2rem, 76rem);
  }

  .lp-nav-inner {
    min-height: 5rem;
  }

  .lp-logo {
    width: 13.5rem;
  }

  .lp-menu {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    border: 1px solid var(--lp-line);
    border-radius: .75rem;
    background: #f5f9fc;
  }

  .lp-links {
    top: 5rem;
    gap: .35rem;
    padding: .75rem 1rem 1.1rem;
    border-radius: 0 0 1.1rem 1.1rem;
  }

  .lp-links a[href^="#"] {
    display: flex;
  }

  .lp-links a:not(.lp-btn) {
    padding: 0 .75rem;
  }

  .lp-links a:not(.lp-btn)::after {
    display: none;
  }

  .lp-links .lp-btn {
    justify-content: center;
    margin-top: .3rem;
  }

  .lp-hero {
    padding-top: 3.6rem;
  }

  .lp-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .lp-hero-visual {
    min-height: 24rem;
  }

  .lp-dashboard-card {
    transform: none;
  }

  .lp-float-card {
    min-width: 10.6rem;
  }

  .lp-float-ai {
    top: 0;
    right: -.25rem;
  }

  .lp-float-alarm {
    bottom: .5rem;
    left: -.25rem;
  }

  .lp-hero-proof {
    flex-direction: column;
    gap: .8rem;
    margin-top: 2.5rem;
    text-align: center;
  }

  .lp-hero-proof div {
    justify-content: center;
    flex-wrap: wrap;
  }

  .lp-highlight-grid,
  .lp-plan-grid {
    grid-template-columns: 1fr;
  }

  .lp-highlight {
    min-height: auto;
  }

  .lp-detail {
    grid-template-columns: 1fr;
  }

  .lp-mobile-grid {
    gap: 2rem;
  }
}

@media (max-width: 460px) {
  .lp-logo {
    width: 12rem;
  }

  .lp-hero-actions .lp-btn {
    width: 100%;
  }

  .lp-hero-trust {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }

  .lp-hero-visual {
    min-height: 22rem;
  }

  .lp-dashboard-card {
    padding: .9rem;
  }

  .lp-vitals {
    gap: .35rem;
  }

  .lp-vitals > div {
    padding: .65rem .5rem;
  }

  .lp-vitals strong {
    font-size: 1.3rem;
  }

  .lp-chart {
    height: 7rem;
  }

  .lp-float-card {
    padding: .65rem;
    transform: scale(.88);
  }

  .lp-float-ai {
    right: -1rem;
    transform-origin: right center;
  }

  .lp-float-alarm {
    left: -1rem;
    transform-origin: left center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Solicitar acesso — modal fixo no topo (perto do botão) */
.lp-footer-link {
  border: 0;
  background: transparent;
  color: var(--lp-navy);
  margin-left: 1.1rem;
  padding: 0;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.lp-footer-link:hover { text-decoration: underline; }

.lp-access-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 100000 !important;
  display: none !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding: 5.5rem 1rem 2rem !important;
  overflow-y: auto !important;
  box-sizing: border-box !important;
  background: rgba(8, 28, 48, .55) !important;
  -webkit-overflow-scrolling: touch;
}

.lp-access-backdrop.is-open {
  display: flex !important;
}

body.lp-access-open {
  overflow: hidden !important;
}

.lp-access-modal {
  display: block !important;
  width: min(100%, 26rem) !important;
  margin: 0 auto !important;
  background: #fff !important;
  border: 1px solid rgba(0, 76, 140, .14) !important;
  border-radius: 1rem !important;
  padding: 1.25rem 1.25rem 1.4rem !important;
  box-shadow: 0 24px 60px rgba(0, 40, 80, .22) !important;
  box-sizing: border-box !important;
}

.lp-access-head {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 1rem !important;
  margin: 0 0 1rem !important;
}

.lp-access-head > div {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.lp-access-head h2 {
  margin: 0 0 .35rem !important;
  font-size: 1.25rem !important;
  line-height: 1.25 !important;
  color: var(--lp-navy) !important;
}

.lp-access-head .lp-muted {
  margin: 0 !important;
  font-size: .9rem !important;
}

.lp-access-close {
  flex: 0 0 auto !important;
  border: 0 !important;
  background: #eef4fa !important;
  color: #475569 !important;
  width: 2.25rem !important;
  height: 2.25rem !important;
  border-radius: .65rem !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
  cursor: pointer !important;
  padding: 0 !important;
}

.lp-access-form {
  display: flex !important;
  flex-direction: column !important;
  gap: .85rem !important;
  width: 100% !important;
}

.lp-access-form label {
  display: flex !important;
  flex-direction: column !important;
  gap: .35rem !important;
  width: 100% !important;
  font-size: .85rem !important;
  font-weight: 700 !important;
  color: #3f5961 !important;
  text-align: left !important;
}

.lp-access-form input:not(.lp-honeypot) {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  min-height: 2.75rem !important;
  border: 1px solid rgba(0, 76, 140, .18) !important;
  border-radius: .75rem !important;
  padding: .7rem .9rem !important;
  font: inherit !important;
  color: var(--lp-text) !important;
  background: #fff !important;
}

.lp-access-form input:not(.lp-honeypot):focus {
  outline: none !important;
  border-color: var(--lp-mid) !important;
  box-shadow: 0 0 0 3px rgba(0, 90, 160, .14) !important;
}

.lp-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

.lp-access-submit {
  width: 100% !important;
  justify-content: center !important;
  margin-top: .15rem !important;
}

.lp-access-msg {
  margin: 0 !important;
  font-size: .88rem !important;
  font-weight: 600 !important;
}

.lp-access-msg.is-ok { color: #18794e !important; }
.lp-access-msg.is-fail { color: #b42318 !important; }

.lp-final .lp-btn {
  display: inline-flex;
  justify-content: center;
  cursor: pointer;
  font-family: inherit;
  border: 0;
}
