.lp-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #3D5166;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
.lp-nav-back svg {
  stroke: #6B8A9A;
  transition: stroke 0.18s, transform 0.18s;
}
.lp-nav-back:hover {
  color: #1C3A4A;
  background: #E0F5F4;
}
.lp-nav-back:hover svg {
  stroke: #00A89D;
  transform: translateX(-2px);
}
@media (max-width: 768px) {
  nav .n-cta {
    display: flex;
    font-size: 11px;
    padding: 8px 14px;
  }
  .lp-nav-back {
    display: none;
  }
}
.lp-hero {
  padding-top: 88px;
  background: #F4F7F9;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E0F5F4 0%, transparent 55%);
  pointer-events: none;
}
.lp-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00A89D;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.lp-badge::before {
  content: '★';
  font-size: 9px;
}
.lp-hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 900;
  color: #1C3A4A;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.lp-hero-h1 em {
  font-style: italic;
  color: #00A89D;
}
.lp-hero-sub {
  font-size: 16px;
  line-height: 1.78;
  color: #3D5166;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 520px;
}
.lp-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.lp-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #D0DAE0;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #3D5166;
}
.lp-chip::before {
  content: '✓';
  color: #00A89D;
  font-weight: 800;
}
.lp-hero-visual {
  position: relative;
}
.lp-hero-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  height: 520px;
  position: relative;
}
.lp-hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(28, 58, 74, 0.45) 100%);
}
.lp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.lp-hero-img-wrap:hover .lp-hero-img {
  transform: scale(1.03);
}
.lp-float-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 8px 32px rgba(28, 58, 74, 0.18);
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-float-badge .lfb-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #E0F5F4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-float-badge .lfb-icon svg {
  width: 22px;
  height: 22px;
  stroke: #00A89D;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-float-badge .lfb-val {
  font-size: 20px;
  font-weight: 900;
  color: #1C3A4A;
  line-height: 1;
}
.lp-float-badge .lfb-lbl {
  font-size: 11px;
  color: #6B8A9A;
  font-weight: 500;
  margin-top: 2px;
}
.lp-alert-bar {
  background: #1C3A4A;
  padding: 18px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.lp-alert-bar .lab-emoji {
  font-size: 18px;
}
.lp-alert-bar p {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.lp-alert-bar p em {
  font-style: normal;
  color: #4DC4BB;
  font-weight: 800;
}
.lp-problema {
  background: #ffffff;
  padding: 100px 64px;
}
.lp-problema-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.lp-hdr {
  margin-bottom: 56px;
}
.lp-prob-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-prob-card {
  background: #F4F7F9;
  border: 1px solid #D0DAE0;
  border-radius: 20px;
  padding: 32px 26px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.lp-prob-card:hover {
  box-shadow: 0 8px 32px rgba(28, 58, 74, 0.07);
  transform: translateY(-2px);
}
.lp-prob-card .lp-prob-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #E0F5F4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.lp-prob-card .lp-prob-icon svg {
  width: 24px;
  height: 24px;
  stroke: #00A89D;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-prob-card .lp-prob-title {
  font-size: 15px;
  font-weight: 700;
  color: #1C3A4A;
  margin-bottom: 10px;
  line-height: 1.3;
}
.lp-prob-card p {
  font-size: 13px;
  line-height: 1.68;
  color: #6B8A9A;
}
.lp-solucao {
  background: #1C3A4A;
  padding: 100px 64px;
}
.lp-solucao-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.lp-sol-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4DC4BB;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-sol-tag::before {
  content: '';
  width: 18px;
  height: 1px;
  background: #4DC4BB;
}
.lp-sol-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.lp-sol-h2 em {
  font-style: italic;
  color: #4DC4BB;
}
.lp-sol-p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
.lp-sol-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-sol-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  transition: background 0.2s, border-color 0.2s;
}
.lp-sol-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(77, 196, 187, 0.25);
}
.lp-sol-item .lp-sol-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 8px;
  background: #00A89D;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-sol-item .lp-sol-check svg {
  width: 13px;
  height: 13px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-sol-item .lp-sol-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}
.lp-sol-item .lp-sol-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}
.lp-steps {
  background: #F4F7F9;
  padding: 100px 64px;
}
.lp-steps-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
  position: relative;
}
.lp-steps-grid::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  background: linear-gradient(to right, #B2E4E1, #00A89D, #B2E4E1);
  z-index: 0;
}
.lp-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.lp-step .lp-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #00A89D;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 4px 20px rgba(0, 168, 157, 0.35);
}
.lp-step .lp-step-title {
  font-size: 15px;
  font-weight: 700;
  color: #1C3A4A;
  margin-bottom: 10px;
}
.lp-step p {
  font-size: 13px;
  line-height: 1.68;
  color: #6B8A9A;
}
.lp-beneficios {
  background: #ffffff;
  padding: 100px 64px;
}
.lp-beneficios-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.lp-ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.lp-ben-card {
  border: 1px solid #D0DAE0;
  border-radius: 20px;
  padding: 32px 28px;
  background: #ffffff;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.lp-ben-card:hover {
  box-shadow: 0 10px 40px rgba(28, 58, 74, 0.08);
  transform: translateY(-3px);
  border-color: #B2E4E1;
}
.lp-ben-card .lp-ben-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: #E0F5F4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.lp-ben-card .lp-ben-icon svg {
  width: 22px;
  height: 22px;
  stroke: #00A89D;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-ben-card .lp-ben-title {
  font-size: 16px;
  font-weight: 700;
  color: #1C3A4A;
  margin-bottom: 8px;
}
.lp-ben-card p {
  font-size: 13px;
  line-height: 1.68;
  color: #6B8A9A;
}
.lp-cta-section {
  background: #F4F7F9;
  padding: 100px 64px;
}
.lp-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lp-cta-text {
  padding-top: 8px;
}
.lp-cta-text h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 900;
  color: #1C3A4A;
  line-height: 1.1;
  margin-bottom: 16px;
}
.lp-cta-text h2 em {
  font-style: italic;
  color: #00A89D;
}
.lp-cta-text p {
  font-size: 15px;
  line-height: 1.75;
  color: #3D5166;
  font-weight: 300;
  margin-bottom: 32px;
}
.lp-cta-text .lp-cta-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-cta-text .lp-cta-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #3D5166;
}
.lp-cta-text .lp-cta-line svg {
  width: 18px;
  height: 18px;
  stroke: #00A89D;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}
.lp-cta-text .lp-cta-line strong {
  color: #1C3A4A;
}
.lp-cta-text .lp-cta-line a {
  color: #00A89D;
  text-decoration: none;
}
.lp-cta-text .lp-cta-line a:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .lp-hero-inner {
    gap: 40px;
  }
  .lp-solucao-inner {
    gap: 48px;
  }
  .lp-cta-inner {
    gap: 48px;
  }
  .lp-prob-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-alert-bar {
    padding: 16px 40px;
  }
  .lp-problema,
  .lp-solucao,
  .lp-steps,
  .lp-beneficios,
  .lp-cta-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .lp-hero {
    min-height: auto;
    padding-top: 76px;
  }
  .lp-hero-inner {
    grid-template-columns: 1fr;
    padding: 28px 20px 48px;
    gap: 28px;
  }
  .lp-hero-h1 {
    font-size: 28px;
  }
  .lp-hero-sub {
    font-size: 15px;
  }
  .lp-hero-img-wrap {
    height: 240px;
    border-radius: 20px;
  }
  .lp-float-badge {
    display: none;
  }
  .lp-hero-btns {
    flex-direction: column;
  }
  .lp-alert-bar {
    padding: 14px 20px;
    flex-direction: column;
    gap: 6px;
  }
  .lp-problema,
  .lp-solucao,
  .lp-steps,
  .lp-beneficios,
  .lp-cta-section {
    padding: 56px 20px;
  }
  .lp-hdr {
    margin-bottom: 32px;
  }
  .lp-prob-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .lp-solucao-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  .lp-steps-grid::before {
    display: none;
  }
  .lp-ben-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }
  .lp-cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .lp-steps-grid {
    grid-template-columns: 1fr;
  }
  .lp-prob-grid {
    grid-template-columns: 1fr;
  }
}
