:root {
  --landing-bg: #f6f3ff;
  --landing-primary: #5b3cc4;
  --landing-primary-dark: #3a2391;
  --landing-secondary: #7b5df0;
  --landing-text: #1f1b2d;
  --landing-muted: #5f5a72;
  --landing-border: rgba(91, 60, 196, 0.15);
  --landing-radius: 20px;
  --landing-shadow: 0 25px 60px rgba(66, 36, 156, 0.15);
}

body.landing-implementacao {
  background: linear-gradient(180deg, rgba(5, 3, 20, 0.95) 0%, rgba(7, 5, 26, 0.9) 50%, rgba(10, 8, 32, 0.92) 100%);
  color: var(--landing-text);
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.landing-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: #030112;
}

.landing-background__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.landing-background__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 4, 18, 0.78) 0%, rgba(6, 4, 18, 0.72) 40%, rgba(9, 7, 26, 0.88) 100%);
  pointer-events: none;
}

.landing-implementacao .top-banner,
.landing-implementacao #content,
.landing-implementacao .landing-footer {
  position: relative;
  z-index: 2;
}

.landing-implementacao .landing-sticky-cta {
  z-index: 60;
}

.top-banner {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-banner img {
  display: block;
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(120%);
}

.section {

  background: linear-gradient(180deg, #ffffff 0%, var(--landing-bg) 60%, #ffffff 100%);
  /* fundo branco chapado */
}

.section--highlight {}

.section--muted {
  background: linear-gradient(135deg, rgba(91, 60, 196, 0.92), rgba(123, 93, 240, 0.85)) !important;

}

/* Grid (layout em grade) que organiza os 4 passos */
.steps-grid {
  display: grid;
  /* grid = layout em grade bidimensional */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* Cartão de cada passo */
.step-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(91, 60, 196, 0.12);
  /* box-shadow = sombra ao redor do elemento */
  box-shadow: 0 18px 36px rgba(6, 4, 18, 0.22);
}

/* Bolinha/número do passo */
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(91, 60, 196, 0.12);
  color: var(--landing-primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

/* Título do passo */
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--landing-text);
}

/* Texto do passo */
.step-card p {
  margin: 0;
  color: var(--landing-muted);
  line-height: 1.5;
}

/* Ajustes em telas menores (responsivo = se adapta a diferentes tamanhos de tela) */
@media (max-width: 768px) {
  .steps-grid {
    gap: 20px;
  }

  .step-card {
    padding: 22px;
  }

  .body.landing-implementacao {
    padding-top: 20px;
  }
}

.included-grid {
  display: grid;
  /* grid (layout em grade bidimensional) */
  gap: 16px;
  /* menos espaço entre os cards */
}

.included-grid li {
  list-style: none;
  background: #ffffff;
  padding: 18px 20px;
  /* padding (espaçamento interno) menor */
  border-radius: 16px;
  border: 1px solid rgba(91, 60, 196, 0.12);
  box-shadow: 0 10px 24px rgba(6, 4, 18, 0.06);
  color: var(--landing-muted);
  line-height: 1.5;
  /* line-height (altura da linha) um pouco mais curta */
  font-size: 0.95rem;
}

.included-grid li strong {
  display: block;
  /* block (elemento ocupa a linha inteira) */
  margin-bottom: 4px;
  font-weight: 600;
  color: var(--landing-text);
}

.landing-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  background: rgba(7, 5, 20, 0.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-header__brand img {
  height: 40px;
  width: auto;
}

.landing-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--landing-primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(91, 60, 196, 0.3);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-header__cta:hover,
.landing-header__cta:focus {
  text-decoration: none;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(91, 60, 196, 0.4);
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
  color: #f2f1ff;
}

.hero h1 {
  color: #ffffff !important;
}

.metric-card h3 {
  color: white;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

.hero__headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 18px 0;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}

.hero__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(9, 6, 26, 0.7);
  border-radius: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(6, 4, 18, 0.4);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

.hero__list svg {
  flex-shrink: 0;
  color: #6ff7c0;
  margin-top: 4px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(120deg, var(--landing-primary) 0%, var(--landing-secondary) 100%);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 18px 40px rgba(91, 60, 196, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: normal;
}

.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(91, 60, 196, 0.45);
}

.btn-link-secondary {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}

.hero__seal {
  margin-top: 28px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__seal span {
  display: inline-flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.hero__media {
  position: relative;
  padding: 24px;
}

/* .hero__media::before {
  content: "";
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle at top right, rgba(123, 93, 240, 0.35), transparent 65%);
  filter: blur(0px);
  z-index: 0;
} */

.hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: block;
  border-radius: 28px;
  box-shadow: var(--landing-shadow);
}

.section {
  padding: 72px 24px;
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.section__subtitle {
  color: var(--landing-muted);
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.section--highlight {
  background: #fff;
}

.section--muted {
  background: rgba(255, 255, 255, 0.9);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(91, 60, 196, 0.12);
  border: 1px solid rgba(91, 60, 196, 0.08);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--landing-muted);
  line-height: 1.5;
}

.card ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--landing-primary);
  margin-top: 8px;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 28px;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(91, 60, 196, 0.12);
  box-shadow: 0 18px 38px rgba(91, 60, 196, 0.12);
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(91, 60, 196, 0.15), rgba(123, 93, 240, 0.25));
  color: var(--landing-primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.process-step__content h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.process-step__content p {
  margin: 0;
  color: var(--landing-muted);
  line-height: 1.6;
}

.process-step__list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--landing-muted);
  display: grid;
  gap: 10px;
}

.process-step__list li {
  line-height: 1.5;
}

.results-grid {
  display: grid;
  gap: 24px;
}

.metric-card {
  background: linear-gradient(135deg, rgba(91, 60, 196, 0.92), rgba(123, 93, 240, 0.85));
  color: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 25px 45px rgba(91, 60, 196, 0.35);
}

.metric-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}

.metric-card ul li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  margin-right: 12px;
}

.testimonials {
  display: grid;
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(91, 60, 196, 0.1);
  box-shadow: 0 14px 34px rgba(91, 60, 196, 0.12);
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: var(--landing-primary);
}

.investment-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
  color: var(--landing-muted);
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(91, 60, 196, 0.18);
  border: 1px solid rgba(91, 60, 196, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.form-card label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--landing-text);
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(91, 60, 196, 0.25);
  background: rgba(255, 255, 255, 0.9);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--landing-primary);
  box-shadow: 0 0 0 3px rgba(91, 60, 196, 0.15);
}

.form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.form-card .form-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-card .form-actions p {
  color: var(--landing-muted);
  font-size: 0.9rem;
  margin: 0;
}

.whatsapp-modal {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 18px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-modal:hover,
.whatsapp-modal:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(37, 211, 102, 0.45);
}

.whatsapp-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.whatsapp-modal__icon svg {
  width: 26px;
  height: 26px;
}

.whatsapp-modal__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.whatsapp-modal__content strong {
  font-size: 1rem;
  font-weight: 700;
}

.whatsapp-modal__content span {
  font-size: 0.9rem;
  line-height: 1.4;
}

.alert-inline {
  margin-top: 16px;
  font-weight: 600;
}

.faq {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(91, 60, 196, 0.08);
  box-shadow: 0 12px 28px rgba(91, 60, 196, 0.12);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(91, 60, 196, 0.12), rgba(123, 93, 240, 0.18));
  border-radius: 28px;
  padding: 48px 24px;
  box-shadow: 0 25px 50px rgba(91, 60, 196, 0.15);
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--landing-muted);
  margin-bottom: 28px;
}

.landing-footer {
  text-align: center;
  padding: 32px 24px 48px;
  background: transparent;
}

.landing-footer__logo img {
  height: 38px;
  margin-bottom: 12px;
}

.landing-footer__legal {
  color: var(--landing-muted);
  font-size: 0.85rem;
  margin: 0;
}

.landing-sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  width: calc(100% - 40px);
  max-width: 420px;
  display: none;
}

.landing-sticky-cta button {
  width: 100%;
}

@media (max-width: 768px) {
  .landing-header__cta {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

  /* .hero__list li {
    background: rgba(255, 255, 255, 0.95);
  } */

  .process-step {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .process-step__number {
    width: 40px;
    height: 40px;
  }

  .whatsapp-modal {
    right: 16px;
    left: 16px;
    bottom: 16px;
    justify-content: flex-start;
  }

  .landing-sticky-cta {
    display: block;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}