/* Start custom CSS *//* ============================================================
   ALMA FILMS — Landing Page | style.css
   Mobile-first · breakpoint 768px · prefixo lp-
   ============================================================ */

:root {
  --lp-accent: #FF1E5A;
  --lp-accent-2: #FF5C7C;
  --lp-bg: #0D0D0F;
  --lp-bg-soft: #121216;
  --lp-ink: #F5F4F6;
  --lp-muted: rgba(235, 232, 238, 0.74);
  --lp-glass: rgba(255, 255, 255, 0.03);
  --lp-line: rgba(255, 30, 90, 0.20);
  --lp-radius: 18px;
  --lp-font-title: "Space Grotesk", "Segoe UI", sans-serif;
  --lp-font-body: "Inter", "Segoe UI", sans-serif;
  --lp-wa: #25D366;
}

html {
  scroll-behavior: smooth;
}

/* Fundo escuro também no html/body: nenhuma fresta branca aparece
   nas laterais, mesmo com zoom, scrollbar ou container do tema */
html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--lp-bg);
}

/* WordPress/Elementor: zera o respiro do container em volta da página
   (o padding padrão do container criava uma moldura branca no celular) */
.e-con:has(.lp-page),
.elementor-widget-html:has(.lp-page) {
  padding: 0 !important;
  max-width: 100% !important;
}

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

.lp-page {
  position: relative;
  background-color: var(--lp-bg);
  color: var(--lp-ink);
  font-family: var(--lp-font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: clip;
}

/* Textura: grid sutil + ruído */
.lp-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 72px 72px, 72px 72px, 160px 160px;
}

/* Vinheta geral */
.lp-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(130% 100% at 50% 30%, transparent 62%, rgba(0, 0, 0, 0.42) 100%);
}

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

/* ---------- Tipografia base ---------- */

.lp-page h1,
.lp-page h2,
.lp-page h3 {
  font-family: var(--lp-font-title);
  margin: 0;
}

.lp-page p {
  margin: 0;
}

.lp-accent {
  color: var(--lp-accent);
}

.lp-eyebrow {
  font-family: var(--lp-font-title);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 14px;
}

.lp-title {
  font-size: clamp(1.75rem, 5.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 21em;
}

.lp-lead {
  color: var(--lp-muted);
  font-size: 1.0625rem;
  max-width: 40em;
  margin-top: 18px;
}

/* ---------- Botões ---------- */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--lp-font-title);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.lp-btn--solid {
  background: linear-gradient(120deg, var(--lp-accent), var(--lp-accent-2));
  color: #fff;
  border: none;
  box-shadow: 0 8px 28px rgba(255, 30, 90, 0.32);
}

.lp-btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 30, 90, 0.45);
}

.lp-btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--lp-ink);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.lp-btn--ghost:hover {
  border-color: var(--lp-accent);
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 30, 90, 0.22);
}

.lp-btn--lg {
  min-height: 60px;
  padding: 18px 34px;
  font-size: 1.0625rem;
}

/* ---------- Header ---------- */

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.lp-header--solid {
  background: rgba(13, 13, 15, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 30px rgba(0, 0, 0, 0.35);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
}

.lp-header__logo img {
  display: block;
  height: 34px;
  width: auto;
}

.lp-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lp-header__phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--lp-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.lp-header__phone svg {
  color: var(--lp-wa);
}

.lp-header__phone:hover {
  color: var(--lp-accent-2);
}

.lp-header__cta {
  min-height: 48px;
  padding: 11px 20px;
  font-size: 0.95rem;
}

/* ---------- Hero — cinematic scroll ---------- */

.lp-hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* !important: temas WordPress costumam forçar "img { height: auto }",
   o que cortava o poster na metade do hero no celular */
.lp-hero__poster,
.lp-hero__video {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.08) saturate(1.05);
}

.lp-hero__video {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.lp-hero__video--ready {
  opacity: 1;
}

/* Gradiente cinematográfico por cima do vídeo
   (inset -2px: cobre o arredondamento de subpixel da camada do vídeo,
   que deixava um risco claro na borda inferior do hero) */
.lp-hero__shade {
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(180deg, rgba(13, 13, 15, 0) 82%, rgba(13, 13, 15, 1) 99%),
    linear-gradient(180deg, rgba(13, 13, 15, 0.55) 0%, rgba(13, 13, 15, 0.15) 30%, rgba(13, 13, 15, 0.65) 100%),
    linear-gradient(90deg, rgba(13, 13, 15, 0.92) 0%, rgba(13, 13, 15, 0.55) 45%, rgba(13, 13, 15, 0.35) 100%);
}

/* Glow rosa atrás do texto */
.lp-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 420px at 18% 62%, rgba(255, 30, 90, 0.20), transparent 70%);
}

.lp-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 20px 40px;
}

.lp-hero__kicker {
  font-family: var(--lp-font-title);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 18px;
}

.lp-hero__title {
  font-size: clamp(2.15rem, 7.5vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 13em;
  text-wrap: balance;
}

.lp-hero__sub {
  color: var(--lp-muted);
  font-size: 1.0625rem;
  max-width: 34em;
  margin-top: 22px;
}

.lp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* Linha de prova social abaixo dos CTAs */
.lp-hero__proof {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--lp-muted);
}

/* Entrada suave do conteúdo do hero (CSS puro, não bloqueia LCP) */
@media (prefers-reduced-motion: no-preference) {
  .lp-hero__kicker,
  .lp-hero__title,
  .lp-hero__sub,
  .lp-hero__ctas,
  .lp-hero__proof {
    animation: lp-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .lp-hero__title { animation-delay: 0.08s; }
  .lp-hero__sub { animation-delay: 0.16s; }
  .lp-hero__ctas { animation-delay: 0.24s; }
  .lp-hero__proof { animation-delay: 0.32s; }
}

@keyframes lp-rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Dica de scroll */
.lp-hero__hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 244, 246, 0.6);
}

.lp-hero__hint-text {
  font-family: var(--lp-font-title);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lp-hero__hint-arrow {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--lp-accent), transparent);
}

@media (prefers-reduced-motion: no-preference) {
  .lp-hero__hint-arrow {
    animation: lp-drop 1.8s ease-in-out infinite;
  }
}

@keyframes lp-drop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1) translateY(10px); opacity: 0; }
}

/* Fallback estático (mobile / reduced motion / sem suporte) */
.lp-hero--static .lp-hero__video {
  display: none;
}

/* Sem efeito de scroll, a dica não faz sentido (e sobrepõe o texto) */
.lp-hero--static .lp-hero__hint {
  display: none;
}

/* Garantia extra: abaixo do breakpoint o vídeo nunca aparece,
   mesmo que o estado do JS atrase — o poster segura o fundo */
@media (max-width: 767.98px) {
  .lp-hero__video,
  .lp-hero__hint {
    display: none;
  }

}

/* ---------- Seções ---------- */

.lp-section {
  position: relative;
  padding: 64px 0;
}

.lp-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-container--wide {
  max-width: 1200px;
}

/* ---------- Cards glass (base) ---------- */

.lp-card {
  background: var(--lp-glass);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.lp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 30, 90, 0.45);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4), 0 0 34px rgba(255, 30, 90, 0.16);
}

.lp-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 10px;
}

.lp-card__text {
  color: var(--lp-muted);
  font-size: 0.98rem;
}

.lp-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 18px;
  color: var(--lp-accent);
  background: rgba(255, 30, 90, 0.10);
  border: 1px solid rgba(255, 30, 90, 0.25);
}

/* ---------- Problema / Dor ---------- */

.lp-pain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(640px 420px at 85% 0%, rgba(255, 30, 90, 0.07), transparent 70%);
}

.lp-pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}

.lp-pain__close {
  margin-top: 36px;
  font-size: 1.0625rem;
  color: var(--lp-ink);
  max-width: 42em;
  border-left: 3px solid var(--lp-accent);
  padding-left: 18px;
}

/* ---------- Diferenciais ---------- */

.lp-feats::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(720px 480px at 0% 40%, rgba(255, 30, 90, 0.08), transparent 70%);
}

.lp-feats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}

/* ---------- Portfólio ---------- */

.lp-work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.lp-work__item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lp-radius);
  overflow: hidden;
  background: var(--lp-bg-soft);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.lp-work__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 257;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lp-work__item:hover,
.lp-work__item:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 30, 90, 0.55);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45), 0 0 38px rgba(255, 30, 90, 0.22);
}

.lp-work__item:hover img,
.lp-work__item:focus-visible img {
  transform: scale(1.045);
}

.lp-work__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: rgba(13, 13, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.lp-work__play svg {
  margin-left: 3px;
}

.lp-work__item:hover .lp-work__play,
.lp-work__item:focus-visible .lp-work__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 30, 90, 0.85);
  border-color: transparent;
}

/* ---------- Como funciona ---------- */

.lp-steps__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 40px 0 0;
  padding: 0;
}

.lp-card--step {
  position: relative;
  padding-top: 34px;
}

.lp-steps__num {
  display: block;
  font-family: var(--lp-font-title);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 30, 90, 0.75);
  margin-bottom: 16px;
}

/* ---------- Depoimentos ---------- */

.lp-quotes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}

.lp-card--quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lp-quotes__text {
  margin: 0;
  font-size: 1.02rem;
  color: var(--lp-ink);
  line-height: 1.55;
}

.lp-quotes__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.9rem;
}

.lp-quotes__author strong {
  font-family: var(--lp-font-title);
  font-weight: 600;
}

.lp-quotes__author span {
  color: var(--lp-muted);
}

/* ---------- CTA final + FAQ ---------- */

.lp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(760px 520px at 50% 20%, rgba(255, 30, 90, 0.12), transparent 70%);
}

.lp-cta__action {
  margin-top: 34px;
}

.lp-cta__note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--lp-muted);
}

.lp-faq {
  margin-top: 56px;
  max-width: 720px;
}

.lp-faq__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.lp-faq__item {
  background: var(--lp-glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.lp-faq__item[open] {
  border-color: rgba(255, 30, 90, 0.4);
}

.lp-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 48px 18px 20px;
  position: relative;
  font-family: var(--lp-font-title);
  font-weight: 600;
  font-size: 1rem;
  min-height: 48px;
}

.lp-faq__q::-webkit-details-marker {
  display: none;
}

.lp-faq__q::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--lp-accent);
  transition: transform 0.3s ease;
}

.lp-faq__item[open] .lp-faq__q::after {
  transform: translateY(-50%) rotate(45deg);
}

.lp-faq__a {
  padding: 0 20px 20px;
  color: var(--lp-muted);
  font-size: 0.98rem;
}

/* ---------- Footer ---------- */

.lp-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.015);
  padding-top: 48px;
}

.lp-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.lp-footer__brand img {
  display: block;
  height: 30px;
  width: auto;
  margin-bottom: 14px;
}

.lp-footer__brand p,
.lp-footer__text {
  color: var(--lp-muted);
  font-size: 0.95rem;
  max-width: 30em;
}

.lp-footer__heading {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 14px;
}

.lp-footer__link {
  display: block;
  color: var(--lp-ink);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 6px 0;
}

.lp-footer__link:hover {
  color: var(--lp-accent-2);
}

.lp-footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 20px;
  text-align: center;
}

.lp-footer__base p {
  color: rgba(235, 232, 238, 0.5);
  font-size: 0.85rem;
}

/* ---------- Botão WhatsApp flutuante ---------- */

.lp-whats-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--lp-wa);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
  transition: transform 0.25s ease;
}

.lp-whats-float:hover {
  transform: translateY(-3px) scale(1.05);
}

@media (prefers-reduced-motion: no-preference) {
  .lp-whats-float {
    animation: lp-pulse 2.6s ease-out infinite;
  }
}

@keyframes lp-pulse {
  0% { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Lightbox ---------- */

.lp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.lp-lightbox[hidden] {
  display: none;
}

.lp-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 8, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* Vídeos do portfólio são verticais (9:16): o player acompanha,
   limitado pela altura da tela para caber inteiro */
.lp-lightbox__dialog {
  position: relative;
  width: min(92vw, calc((100svh - 120px) * 9 / 16));
}

.lp-lightbox__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 30, 90, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 30, 90, 0.18);
}

.lp-lightbox__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lp-lightbox__close {
  position: absolute;
  top: -52px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(13, 13, 15, 0.6);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.lp-lightbox__close:hover {
  background: var(--lp-accent);
  border-color: transparent;
  transform: scale(1.06);
}

@media (prefers-reduced-motion: no-preference) {
  .lp-lightbox:not([hidden]) .lp-lightbox__dialog {
    animation: lp-zoom 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .lp-lightbox:not([hidden]) .lp-lightbox__backdrop {
    animation: lp-fade 0.3s ease both;
  }
}

@keyframes lp-zoom {
  from { opacity: 0; transform: scale(0.94) translateY(14px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes lp-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Trava de scroll quando o lightbox está aberto */
.lp-noscroll,
body.lp-noscroll {
  overflow: hidden !important;
}

/* ============================================================
   DESKTOP (min-width: 768px)
   ============================================================ */

@media (min-width: 768px) {

  .lp-section {
    padding: 112px 0;
  }

  .lp-lead {
    font-size: 1.125rem;
  }

  .lp-header__inner {
    padding: 16px 32px;
  }

  .lp-header__logo img {
    height: 38px;
  }

  .lp-header__phone {
    display: inline-flex;
  }

  .lp-hero__inner {
    padding: 120px 32px 60px;
  }

  .lp-hero__sub {
    font-size: 1.1875rem;
  }

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

  .lp-feats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .lp-card {
    padding: 32px 30px;
  }

  .lp-work__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .lp-steps__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .lp-quotes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .lp-footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
  }

  .lp-whats-float {
    right: 28px;
    bottom: 28px;
    width: 62px;
    height: 62px;
  }
}/* End custom CSS */