/* ==========================================================================
   Pontoelo — Landing Page CSS
   Versão: 1.0.0
   Prefixo: lp- (evita conflitos com o tema WordPress)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & BASE
   -------------------------------------------------------------------------- */
.lp-body *,
.lp-body *::before,
.lp-body *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lp-body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.5;
}

.lp-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

.lp-body a {
  text-decoration: none;
  color: inherit;
}

/* --------------------------------------------------------------------------
   2. VARIÁVEIS DE DESIGN
   -------------------------------------------------------------------------- */
.lp-body {
  --lp-brand:          #f6732c;
  --lp-brand-glow:     #f89a33;
  --lp-brand-fg:       #ffffff;
  --lp-brand-10:       rgba(246, 115, 44, 0.10);
  --lp-brand-15:       rgba(246, 115, 44, 0.15);
  --lp-brand-20:       rgba(246, 115, 44, 0.20);
  --lp-brand-40:       rgba(246, 115, 44, 0.40);
  --lp-brand-45:       rgba(246, 115, 44, 0.45);

  --lp-bg:             #ffffff;
  --lp-fg:             #1a1a1a;
  --lp-card:           #ffffff;
  --lp-surface:        #fafafa;
  --lp-surface-muted:  #f5f5f5;
  --lp-muted:          #f5f5f5;
  --lp-muted-fg:       #6b6b6b;
  --lp-border:         #ebebeb;

  --lp-radius-xl:      1rem;
  --lp-radius-2xl:     1.25rem;
  --lp-radius-3xl:     1.5rem;
  --lp-radius-4xl:     2rem;
  --lp-radius-full:    9999px;

  --lp-shadow-card:    0 1px 0 rgba(0,0,0,0.04), 0 12px 40px -12px rgba(0,0,0,0.12);
  --lp-shadow-glow:    0 20px 60px -20px rgba(246, 115, 44, 0.45);
  --lp-shadow-soft:    0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);

  --lp-gradient-brand: linear-gradient(135deg, #f6732c, #f89a33);
  --lp-gradient-radial: radial-gradient(circle at 50% 0%, rgba(249, 154, 51, 0.35), transparent 60%);
}

/* --------------------------------------------------------------------------
   3. CONTAINER
   -------------------------------------------------------------------------- */
.lp-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* --------------------------------------------------------------------------
   4. BOTÕES
   -------------------------------------------------------------------------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--lp-radius-full);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}

.lp-btn--brand {
  background: var(--lp-brand);
  color: var(--lp-brand-fg);
  padding: 0.875rem 1.5rem;
  box-shadow: var(--lp-shadow-glow);
}
.lp-btn--brand:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px -15px rgba(246, 115, 44, 0.6);
}

.lp-btn--outline {
  background: var(--lp-bg);
  color: var(--lp-fg);
  padding: 0.875rem 1.5rem;
  border: 1px solid var(--lp-border);
  font-weight: 500;
}
.lp-btn--outline:hover {
  border-color: rgba(26,26,26,0.3);
  background: var(--lp-surface);
}

.lp-btn--dark {
  background: var(--lp-fg);
  color: var(--lp-bg);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.lp-btn--dark:hover {
  background: rgba(26,26,26,0.9);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.lp-btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.lp-btn--full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   5. ÍCONES (SVG inline via PHP helper)
   -------------------------------------------------------------------------- */
.lp-body .lp-icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}
.lp-body .lp-icon--xs  { width: 0.75rem; height: 0.75rem; }
.lp-body .lp-icon--sm  { width: 1rem;    height: 1rem;    }
.lp-body .lp-icon--md  { width: 1.25rem; height: 1.25rem; }
.lp-body .lp-icon--lg  { width: 1.75rem; height: 1.75rem; }
.lp-body .lp-icon--xl  { width: 2rem;    height: 2rem;    }
.lp-body .lp-icon--2xl { width: 2.5rem;  height: 2.5rem;  }

/* WhatsApp inline SVG */
.lp-wa-icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  fill: currentColor;
}
.lp-wa-icon--sm  { width: 1rem;    height: 1rem;    }
.lp-wa-icon--md  { width: 1.25rem; height: 1.25rem; }
.lp-wa-icon--lg  { width: 1.75rem; height: 1.75rem; }
.lp-wa-icon--2xl { width: 2.5rem;  height: 2.5rem;  }

/* --------------------------------------------------------------------------
   6. NAVEGAÇÃO
   -------------------------------------------------------------------------- */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(235, 235, 235, 0.6);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.lp-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.lp-nav__logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #f6732c;
  border: 3px solid #f8f9fa;
  flex-shrink: 0;
}

.lp-nav__logo-text {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--lp-fg);
}

.lp-nav__logo-text .lp-brand-dot {
  color: var(--lp-brand);
}

.lp-nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--lp-muted-fg);
}

.lp-nav__links a {
  transition: color 0.15s;
  text-decoration: none;
}
.lp-nav__links a:hover {
  color: var(--lp-fg);
}

.lp-nav__mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--lp-fg);
  border-radius: 0.5rem;
  transition: background 0.15s;
}
.lp-nav__mobile-btn:hover {
  background: var(--lp-muted);
}

.lp-nav__cta-text {
  display: none;
}

/* Mobile dropdown */
.lp-nav__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 1rem;
  border-top: 1px solid var(--lp-border);
  background: var(--lp-bg);
}
.lp-nav__mobile-menu.is-open {
  display: flex;
}
.lp-nav__mobile-menu a {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--lp-fg);
  border-bottom: 1px solid var(--lp-border);
  text-decoration: none;
}
.lp-nav__mobile-menu a:last-child {
  border-bottom: none;
}
.lp-nav__mobile-menu .lp-btn {
  margin-top: 0.75rem;
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.lp-hero {
  position: relative;
  overflow: hidden;
}

.lp-hero__bg-top {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--lp-gradient-radial);
}

.lp-hero__bg-ellipse {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 600px;
  z-index: 0;
  background: radial-gradient(ellipse at top, rgba(249, 154, 51, 0.15), transparent 60%);
}

.lp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem 5rem;
}

.lp-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: lp-fade-in 0.7s ease-out both;
}

.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  border-radius: var(--lp-radius-full);
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lp-muted-fg);
}

.lp-hero__badge-dot {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}
.lp-hero__badge-dot-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--lp-brand);
  opacity: 0.75;
  animation: lp-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.lp-hero__badge-dot-solid {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-brand);
}

.lp-hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--lp-fg);
  text-wrap: balance;
}

.lp-hero__title .lp-gradient-text {
  background: linear-gradient(90deg, var(--lp-brand), var(--lp-brand-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.lp-hero__desc {
  margin-top: 1.5rem;
  max-width: 38rem;
  font-size: 1rem;
  color: var(--lp-muted-fg);
  line-height: 1.65;
}

.lp-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.lp-hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-top: 2.5rem;
}

.lp-hero__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--lp-muted-fg);
}

.lp-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lp-fade-in 0.9s ease-out both;
}

.lp-hero__visual-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 3rem;
  background: linear-gradient(135deg, rgba(246,115,44,0.2), transparent, rgba(248,154,51,0.1));
  filter: blur(48px);
}

.lp-hero__img-wrap {
  position: relative;
  width: 100%;
  z-index: 1;
}

.lp-hero__img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
  border-radius: 1rem;
}

/* Floating cards (hidden on mobile, shown on sm+) */
.lp-hero__float-card {
  display: none;
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--lp-border);
  border-radius: 1rem;
  padding: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--lp-shadow-card);
}

.lp-hero__float-card--left {
  left: -8px;
  bottom: 1.5rem;
  width: 224px;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.lp-hero__float-card--right {
  right: -8px;
  top: 2.5rem;
  width: 208px;
}

.lp-hero__float-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: var(--lp-brand-10);
  color: var(--lp-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-hero__float-label {
  font-size: 0.75rem;
  color: var(--lp-muted-fg);
}

.lp-hero__float-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-fg);
  margin-top: 0.125rem;
}

.lp-hero__float-stat {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.lp-hero__float-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-fg);
  line-height: 1;
}

.lp-hero__float-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lp-brand);
  padding-bottom: 2px;
}

/* --------------------------------------------------------------------------
   8. PAIN POINTS (seção escura)
   -------------------------------------------------------------------------- */
.lp-pain {
  position: relative;
  overflow: hidden;
  background: var(--lp-fg);
  color: var(--lp-bg);
}

.lp-pain::before {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(246, 115, 44, 0.18), transparent 55%);
}

.lp-pain__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.lp-section-header {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.lp-section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-brand);
}

.lp-section-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-wrap: balance;
}

.lp-section-title--light {
  color: var(--lp-fg);
}

.lp-section-title--dark {
  color: var(--lp-bg);
}

.lp-section-desc {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
}

.lp-section-desc--light {
  color: var(--lp-muted-fg);
}

.lp-section-desc--dark {
  color: rgba(255,255,255,0.60);
}

.lp-pain__grid {
  display: grid;
  gap: 1rem;
  margin-top: 3.5rem;
}

.lp-pain-card {
  border-radius: var(--lp-radius-2xl);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.lp-pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246,115,44,0.4);
  background: rgba(255,255,255,0.06);
}

.lp-pain-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: var(--lp-brand-15);
  color: var(--lp-brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-pain-card__title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lp-bg);
}

.lp-pain-card__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.60);
}

/* --------------------------------------------------------------------------
   9. SOLUÇÕES
   -------------------------------------------------------------------------- */
.lp-solutions {
  position: relative;
}

.lp-solutions__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.lp-solutions__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.lp-solution-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--lp-radius-3xl);
  border: 1px solid var(--lp-border);
  background: var(--lp-card);
  padding: 1.75rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.lp-solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246,115,44,0.4);
  box-shadow: var(--lp-shadow-card);
}

.lp-solution-card__glow {
  pointer-events: none;
  position: absolute;
  right: -32px;
  top: -32px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--lp-gradient-brand);
  opacity: 0;
  filter: blur(24px);
  transition: opacity 0.3s ease;
}
.lp-solution-card:hover .lp-solution-card__glow {
  opacity: 1;
}

.lp-solution-card__icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: var(--lp-fg);
  color: var(--lp-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-solution-card__title {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--lp-fg);
}

.lp-solution-card__desc {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--lp-muted-fg);
}

/* --------------------------------------------------------------------------
   10. SHOWCASE (bento grid de imagens)
   -------------------------------------------------------------------------- */
.lp-showcase {
  background: var(--lp-surface);
}

.lp-showcase__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.lp-showcase__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.lp-showcase__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--lp-radius-3xl);
  border: 1px solid var(--lp-border);
  background: var(--lp-bg);
  aspect-ratio: 4 / 3;
}

/* White-background product photos — contain to show full product */
.lp-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 1rem 1rem 3.5rem; /* bottom space for overlay label */
  background: #ffffff;
  transition: transform 0.5s ease;
}

.lp-showcase__item:hover img {
  transform: scale(1.04);
}

/* Overlay: light fade from bottom so text is readable over white bg */
.lp-showcase__overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(255,255,255,1) 55%, rgba(255,255,255,0.85) 75%, transparent);
}

.lp-showcase__item--large .lp-showcase__overlay {
  padding: 1.25rem 2rem 1.5rem;
}

.lp-showcase__tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-brand);
}

.lp-showcase__name {
  margin-top: 0.2rem;
  font-weight: 600;
  color: #1a1a1a;
}

.lp-showcase__item--large .lp-showcase__name {
  font-size: 1.5rem;
}

.lp-showcase__item--sm .lp-showcase__name {
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   11. CONFIANÇA (seção escura)
   -------------------------------------------------------------------------- */
.lp-trust {
  position: relative;
  overflow: hidden;
  background: var(--lp-fg);
  color: var(--lp-bg);
}

.lp-trust::before {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(246, 115, 44, 0.18), transparent 55%);
}

.lp-trust__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.lp-trust__grid {
  display: grid;
  gap: 1rem;
  margin-top: 3.5rem;
}

.lp-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: var(--lp-radius-2xl);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 1.5rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lp-trust-item:hover {
  border-color: rgba(246,115,44,0.4);
  background: rgba(255,255,255,0.06);
}

.lp-trust-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: var(--lp-brand);
  color: var(--lp-brand-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-trust-item__body {}

.lp-trust-item__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-trust-item__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-bg);
}

.lp-trust-item__check {
  color: var(--lp-brand);
}

.lp-trust-item__desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
}

/* --------------------------------------------------------------------------
   12. FINAL CTA
   -------------------------------------------------------------------------- */
.lp-cta {
  position: relative;
  overflow: hidden;
}

.lp-cta__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.lp-cta__box {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  border: 1px solid var(--lp-border);
  background: var(--lp-card);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--lp-shadow-card);
}

.lp-cta__bg-radial {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background: var(--lp-gradient-radial);
}

.lp-cta__bg-glow {
  pointer-events: none;
  position: absolute;
  bottom: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 16rem;
  border-radius: 50%;
  background: var(--lp-brand-20);
  filter: blur(48px);
}

.lp-cta__content {
  position: relative;
  z-index: 1;
}

.lp-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--lp-radius-full);
  border: 1px solid var(--lp-border);
  background: var(--lp-bg);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lp-muted-fg);
}

.lp-cta__title {
  margin-top: 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--lp-fg);
  text-wrap: balance;
}

.lp-cta__title .lp-gradient-text {
  background: linear-gradient(90deg, var(--lp-brand), var(--lp-brand-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-cta__desc {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  font-size: 1rem;
  color: var(--lp-muted-fg);
  line-height: 1.65;
}

.lp-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.lp-cta__note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--lp-muted-fg);
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.lp-footer {
  border-top: 1px solid var(--lp-border);
  background: var(--lp-bg);
}

.lp-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.lp-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-footer__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
}

.lp-footer__logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 0.5rem;
  background: var(--lp-fg);
  color: var(--lp-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.lp-footer__logo-text {
  font-size: 0.875rem;
  font-weight: 600;
}

.lp-footer__copy {
  font-size: 0.75rem;
  color: var(--lp-muted-fg);
}

/* --------------------------------------------------------------------------
   14. BOTÃO FLUTUANTE WHATSAPP
   -------------------------------------------------------------------------- */
.lp-float-wa {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--lp-brand);
  color: var(--lp-brand-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--lp-shadow-glow);
  transition: transform 0.2s ease;
}
.lp-float-wa:hover {
  transform: scale(1.1);
}

.lp-float-wa__ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--lp-brand-40);
  animation: lp-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: -1;
}

/* --------------------------------------------------------------------------
   15. ANIMAÇÕES
   -------------------------------------------------------------------------- */
@keyframes lp-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lp-ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* --------------------------------------------------------------------------
   16. RESPONSIVO — sm (640px)
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .lp-container,
  .lp-hero__grid,
  .lp-pain__inner,
  .lp-solutions__inner,
  .lp-showcase__inner,
  .lp-trust__inner,
  .lp-cta__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lp-nav__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lp-nav__cta-text {
    display: inline;
  }

  .lp-nav__mobile-btn {
    display: none;
  }

  .lp-nav__links {
    display: flex;
  }

  .lp-hero__title {
    font-size: 3rem;
  }

  .lp-hero__actions {
    flex-direction: row;
  }

  .lp-hero__features {
    grid-template-columns: repeat(4, 1fr);
  }

  .lp-hero__float-card {
    display: flex;
  }

  .lp-hero__float-card--left {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .lp-hero__float-card--right {
    display: block;
  }

  .lp-pain__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-showcase__item {
    aspect-ratio: 16 / 10;
  }

  .lp-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-section-title {
    font-size: 2.25rem;
  }

  .lp-cta__box {
    padding: 4rem;
  }

  .lp-cta__title {
    font-size: 2.25rem;
  }

  .lp-cta__actions {
    flex-direction: row;
  }

  .lp-footer__inner {
    flex-direction: row;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   17. RESPONSIVO — md (768px)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .lp-hero__title {
    font-size: 3.5rem;
  }

  .lp-section-title {
    font-size: 2.5rem;
  }

  .lp-cta__title {
    font-size: 2.5rem;
  }
}

/* --------------------------------------------------------------------------
   18. RESPONSIVO — lg (1024px)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .lp-container,
  .lp-hero__grid,
  .lp-pain__inner,
  .lp-solutions__inner,
  .lp-showcase__inner,
  .lp-trust__inner,
  .lp-cta__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lp-nav__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lp-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-top: 5rem;
    padding-bottom: 8rem;
  }

  .lp-hero__title {
    font-size: 3.75rem;
  }

  .lp-pain__inner {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .lp-pain__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-solutions__inner {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .lp-solutions__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .lp-showcase__inner {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  /* Bento grid no desktop */
  .lp-showcase__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 260px;
    gap: 1.25rem;
  }

  .lp-showcase__item {
    aspect-ratio: unset;
  }

  .lp-showcase__item--large {
    grid-column: span 4;
    grid-row: span 2;
  }

  .lp-showcase__item--sm {
    grid-column: span 2;
  }

  .lp-trust__inner {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .lp-trust__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-section-title {
    font-size: 3rem;
  }

  .lp-cta__inner {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .lp-cta__box {
    padding: 5rem;
  }

  .lp-cta__title {
    font-size: 3rem;
  }
}

/* --------------------------------------------------------------------------
   19. RESPONSIVO — xl (1280px)
   -------------------------------------------------------------------------- */
@media (min-width: 1280px) {
  .lp-hero__title {
    font-size: 4.5rem;
  }

  .lp-cta__title {
    font-size: 3.75rem;
  }
}
