/* ============================================================
   Smart Services — sistema de componentes das landing pages
   (Metalurgia Industrial / Construção Civil Industrial)

   Reutiliza a identidade real da marca (mesmas fontes, cores e
   nav/footer das páginas espelhadas do WordPress), com upgrade de
   hierarquia, densidade de informação e componentes de conversão
   (barra de confiança, portfólio, FAQ, CTA fixo mobile).

   NÃO é usado pelas páginas espelhadas (home / incêndio / gás) —
   elas continuam com CSS 100% próprio, intocado.
   ============================================================ */

@font-face {
  font-family: "Unbounded";
  src: url("/wp-content/uploads/2024/10/Unbounded-Regular.woff2") format("woff2");
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "Sora font";
  src: url("/wp-content/uploads/2024/10/Sora-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Sora font";
  src: url("/wp-content/uploads/2024/10/Sora-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Sora font";
  src: url("/wp-content/uploads/2024/10/Sora-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #91FF00;
  --green-dark: #6fd400;
  --blue: #02AEEE;
  --dark: #12161c;
  --steel: #2b3542;
  --text-light: #5b6472;
  --white: #fff;
  --gray-bg: #f5f6f8;
  --gray-line: #e4e8ec;
  --nav-bg: #d6eaf5;
  --radius: 14px;
}

html { scroll-behavior: smooth; }
body {
  font-family: "Sora font", sans-serif;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
section { padding: 88px 6%; }
@media (max-width: 900px) { section { padding: 56px 6%; } }

.gradiente {
  background: -webkit-linear-gradient(180deg, #02AEEE, #8CC541) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0px 0px #00000000 !important;
  padding: 6px 0px;
  display: inline;
}

.container { max-width: 1240px; margin: 0 auto; }

/* ---------- NAV (mesmo padrão visual das páginas reais) ---------- */
nav.ls-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 80px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.ls-nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.ls-nav-logo img { height: 44px; width: auto; }
.ls-nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.ls-nav-links a {
  font-family: "Sora font", sans-serif; font-size: 0.85rem; font-weight: 400;
  color: var(--dark); text-decoration: none; transition: color .2s;
}
.ls-nav-links a:hover { color: var(--blue); }
.ls-nav-cta {
  background: var(--green); color: var(--dark) !important;
  padding: 10px 22px; border-radius: 6px;
  font-weight: 700 !important; font-size: 0.85rem !important;
}
.ls-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.ls-hamburger span { display: block; width: 26px; height: 2.5px; background: var(--dark); border-radius: 2px; }
@media (max-width: 960px) {
  .ls-hamburger { display: flex; }
  .ls-nav-links {
    display: none; position: fixed; top: 80px; left: 0; right: 0;
    background: var(--nav-bg); flex-direction: column; padding: 20px 6% 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 18px; z-index: 99;
  }
  .ls-nav-links.open { display: flex; }
  .ls-nav-links .ls-nav-cta { text-align: center; padding: 14px; }
}

/* ---------- HERO ---------- */
.ls-hero {
  min-height: 96vh;
  display: flex; align-items: center;
  padding: 128px 6% 64px;
  position: relative;
  background-color: #10151c;
  background-image: var(--hero-bg-desktop);
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 700px) {
  .ls-hero { background-image: var(--hero-bg-mobile, var(--hero-bg-desktop)); }
}
.ls-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,14,20,.92) 0%, rgba(10,14,20,.72) 42%, rgba(10,14,20,.32) 100%);
}
.ls-hero-inner { position: relative; z-index: 1; max-width: 660px; }
.ls-hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(145,255,0,0.14); border: 1px solid rgba(145,255,0,0.4);
  color: var(--green); font-family: "Sora font", sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 30px; margin-bottom: 22px;
}
.ls-hero h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.18; color: var(--white); font-weight: 700;
  margin-bottom: 20px;
}
.ls-hero-sub {
  font-family: "Sora font", sans-serif; font-size: 1.02rem; font-weight: 300;
  color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 560px; margin-bottom: 32px;
}
.ls-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Sora font", sans-serif; font-weight: 700; font-size: 0.9rem;
  padding: 16px 30px; border-radius: 10px 26px 10px 10px;
  text-decoration: none; transition: filter .2s, transform .15s; border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--dark); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); padding: 14.5px 28px; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.ls-hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.ls-hero-trust span {
  display: flex; align-items: center; gap: 8px;
  font-family: "Sora font", sans-serif; font-size: 0.82rem; font-weight: 400;
  color: rgba(255,255,255,0.82);
}
.ls-hero-trust svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

@media (max-width: 700px) {
  .ls-hero { min-height: 100svh; align-items: flex-end; padding: 110px 6% 48px; }
  .ls-hero-inner { max-width: 100%; }
  .ls-hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ---------- TRUST BAR (logos reais de clientes já usados no site) ---------- */
.ls-trustbar { background: var(--dark); padding: 30px 6%; }
.ls-trustbar-inner {
  max-width: 1240px; margin: 0 auto; display: flex; align-items: center;
  gap: 32px; flex-wrap: wrap; justify-content: center;
}
.ls-trustbar-label {
  font-family: "Sora font", sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.ls-trustbar-logos { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.ls-trustbar-logos img {
  height: 40px; width: 40px; object-fit: contain; border-radius: 50%;
  background: var(--white); padding: 4px;
}

/* ---------- SECTION HEADER ---------- */
.ls-section-head { max-width: 680px; margin-bottom: 44px; }
.ls-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.ls-tag {
  font-family: "Sora font", sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--blue);
  display: block; margin-bottom: 10px;
}
.ls-title {
  font-family: "Unbounded", sans-serif; font-weight: 700; color: var(--dark);
  font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.22; margin-bottom: 14px;
}
.ls-sub { font-family: "Sora font", sans-serif; font-size: 0.98rem; color: var(--text-light); line-height: 1.75; font-weight: 300; }

/* ---------- INTRO SPLIT (imagem + texto) ---------- */
.ls-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ls-split-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3.1; }
.ls-split-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .ls-split { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- SERVICE CARDS (principais) ---------- */
.ls-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ls-service-card {
  background: var(--white); border: 1.5px solid var(--gray-line); border-radius: var(--radius);
  padding: 30px 26px; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ls-service-card:hover { border-color: var(--blue); box-shadow: 0 14px 34px rgba(2,174,238,0.12); transform: translateY(-3px); }
.ls-service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(2,174,238,0.12), rgba(140,197,65,0.16));
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.ls-service-icon svg { width: 26px; height: 26px; color: var(--blue); }
.ls-service-card h3 { font-family: "Unbounded", sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.ls-service-card p { font-family: "Sora font", sans-serif; font-size: 0.88rem; color: var(--text-light); line-height: 1.65; font-weight: 300; }
.ls-service-card.featured { border-color: var(--green); background: linear-gradient(180deg, rgba(145,255,0,0.06), transparent 60%); }
@media (max-width: 960px) { .ls-services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .ls-services-grid { grid-template-columns: 1fr; } }

/* ---------- OUTROS SERVIÇOS (grade compacta, não é catálogo pesado) ---------- */
.ls-services-compact { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ls-compact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; background: var(--gray-bg); border-radius: 10px;
  font-family: "Sora font", sans-serif; font-size: 0.85rem; font-weight: 400; color: var(--dark);
}
.ls-compact-item svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
@media (max-width: 960px) { .ls-services-compact { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ls-services-compact { grid-template-columns: 1fr; } }

/* ---------- PORTFÓLIO (mídia real — carrossel horizontal) ---------- */
.ls-media-group { margin-bottom: 44px; }
.ls-media-group:last-child { margin-bottom: 0; }
.ls-media-group-title {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  font-family: "Unbounded", sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--dark);
}
.ls-media-group-title svg { width: 18px; height: 18px; color: var(--blue); }
.ls-portfolio-track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 18px; margin: 0 -6px; padding-left: 6px;
  scrollbar-width: thin; scrollbar-color: var(--gray-line) transparent;
}
.ls-portfolio-track::-webkit-scrollbar { height: 8px; }
.ls-portfolio-track::-webkit-scrollbar-thumb { background: var(--gray-line); border-radius: 10px; }
.ls-portfolio-item {
  scroll-snap-align: start; flex: 0 0 auto; width: min(320px, 78vw);
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 4/5; background: var(--steel); cursor: pointer;
}
.ls-portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.ls-portfolio-item:hover img { transform: scale(1.05); }
.ls-portfolio-item.placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; background: repeating-linear-gradient(135deg, #232b35, #232b35 10px, #1b2129 10px, #1b2129 20px);
  color: rgba(255,255,255,0.55); text-align: center; padding: 20px;
}
.ls-portfolio-item.placeholder svg { width: 34px; height: 34px; opacity: .7; }
.ls-portfolio-item.placeholder span { font-family: "Sora font", sans-serif; font-size: 0.78rem; line-height: 1.5; }
.ls-portfolio-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color: var(--white); font-family: "Sora font", sans-serif; font-size: 0.8rem; font-weight: 400;
}
.ls-portfolio-nav { display: flex; gap: 10px; margin-top: 18px; }
.ls-portfolio-nav button {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--gray-line);
  background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.ls-portfolio-nav button:hover { border-color: var(--blue); background: var(--gray-bg); }
.ls-portfolio-nav svg { width: 18px; height: 18px; color: var(--dark); }

/* item de vídeo: poster + botão de play sobreposto */
.ls-video-item { background-size: cover; background-position: center; }
.ls-video-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.ls-video-play::before {
  content: ''; position: absolute; inset: 0; background: rgba(10,14,20,0.28);
}
.ls-video-play svg {
  position: relative; width: 56px; height: 56px; color: var(--white);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.45));
}
.ls-video-item:hover .ls-video-play svg { transform: scale(1.08); }
.ls-video-badge {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  background: rgba(10,14,20,0.65); color: var(--white);
  font-family: "Sora font", sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}

/* lightbox */
.ls-lightbox {
  position: fixed; inset: 0; background: rgba(10,14,20,0.94); z-index: 300;
  display: none; align-items: center; justify-content: center; padding: 5%;
}
.ls-lightbox.open { display: flex; }
.ls-lightbox img, .ls-lightbox video { max-width: 100%; max-height: 86vh; border-radius: 8px; }
.ls-lightbox-close {
  position: absolute; top: 24px; right: 28px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.ls-lightbox-close svg { width: 20px; height: 20px; color: var(--white); }

/* ---------- ADEQUAÇÕES / DESTAQUE ESTRATÉGICO (banner escuro) ---------- */
.ls-feature-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--steel) 100%);
  border-radius: 24px; padding: 56px 7%; position: relative; overflow: hidden;
}
.ls-feature-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(145,255,0,0.10) 0%, transparent 55%);
}
.ls-feature-banner-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ls-feature-banner h2 { font-family: "Unbounded", sans-serif; color: var(--white); font-size: clamp(1.35rem, 2.4vw, 1.8rem); font-weight: 700; margin-bottom: 16px; line-height: 1.28; }
.ls-feature-banner p { font-family: "Sora font", sans-serif; color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.75; font-weight: 300; }
.ls-feature-list { display: flex; flex-direction: column; gap: 14px; }
.ls-feature-list-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}
.ls-feature-list-item svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.ls-feature-list-item span { font-family: "Sora font", sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.88); font-weight: 300; }
@media (max-width: 900px) { .ls-feature-banner-inner { grid-template-columns: 1fr; } .ls-feature-banner { border-radius: 18px; padding: 40px 7%; } }

/* ---------- COMO TRABALHAMOS (steps) ---------- */
.ls-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.ls-step { position: relative; padding: 28px 22px 22px; background: var(--gray-bg); border-radius: var(--radius); }
.ls-step-num {
  font-family: "Unbounded", sans-serif; font-size: 0.75rem; font-weight: 700;
  color: var(--white); background: var(--dark); width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.ls-step h4 { font-family: "Unbounded", sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.ls-step p { font-family: "Sora font", sans-serif; font-size: 0.83rem; color: var(--text-light); line-height: 1.6; font-weight: 300; }
@media (max-width: 900px) { .ls-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ls-steps { grid-template-columns: 1fr; } }

/* ---------- ÁREA DE ATENDIMENTO ---------- */
.ls-area {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
  background: var(--gray-bg); border-radius: 24px; padding: 48px 7%;
}
.ls-area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.ls-area-tags span {
  font-family: "Sora font", sans-serif; font-size: 0.8rem; font-weight: 400;
  background: var(--white); border: 1px solid var(--gray-line); color: var(--dark);
  padding: 8px 16px; border-radius: 30px;
}
.ls-area-map { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.ls-area-map iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .ls-area { grid-template-columns: 1fr; border-radius: 18px; padding: 36px 7%; } }

/* ---------- FAQ ---------- */
.ls-faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.ls-faq-item { border: 1.5px solid var(--gray-line); border-radius: 12px; overflow: hidden; }
.ls-faq-q {
  width: 100%; text-align: left; background: var(--white); border: none; cursor: pointer;
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: "Sora font", sans-serif; font-size: 0.94rem; font-weight: 700; color: var(--dark);
}
.ls-faq-q svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; transition: transform .2s; }
.ls-faq-item.open .ls-faq-q svg { transform: rotate(45deg); }
.ls-faq-a {
  max-height: 0; overflow: hidden; transition: max-height .25s ease;
  font-family: "Sora font", sans-serif; font-size: 0.88rem; color: var(--text-light); line-height: 1.7; font-weight: 300;
}
.ls-faq-a-inner { padding: 0 22px 20px; }
.ls-faq-item.open .ls-faq-a { max-height: 400px; }

/* ---------- CTA FINAL ---------- */
.ls-cta-final {
  background: linear-gradient(135deg, var(--dark), var(--steel));
  border-radius: 24px; padding: 56px 7%; text-align: center;
}
.ls-cta-final h2 { font-family: "Unbounded", sans-serif; color: var(--white); font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 14px; font-weight: 700; }
.ls-cta-final p { font-family: "Sora font", sans-serif; color: rgba(255,255,255,0.72); font-size: 0.95rem; max-width: 560px; margin: 0 auto 30px; line-height: 1.7; font-weight: 300; }
.ls-cta-final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER (mesmo padrão das páginas reais) ---------- */
footer.ls-footer { background: #111; padding: 52px 6% 0; }
.ls-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr 0.8fr; gap: 48px; margin-bottom: 40px; align-items: start; }
.ls-footer-brand-name { font-family: "Unbounded", sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 2px; }
.ls-footer-brand-sub { font-family: "Sora font", sans-serif; font-size: 0.62rem; font-weight: 200; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.ls-footer-col-title { font-family: "Sora font", sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--green); margin-bottom: 16px; display: block; }
.ls-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ls-footer-col ul a { font-family: "Sora font", sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.75); text-decoration: none; font-weight: 200; }
.ls-footer-col ul a:hover { color: var(--green); }
.ls-footer-col p { font-family: "Sora font", sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.8; font-weight: 200; }
.ls-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; font-family: "Sora font", sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.4); font-weight: 200; }
.ls-footer-bottom a { color: var(--green); text-decoration: none; }
@media (max-width: 900px) { .ls-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ls-footer-grid { grid-template-columns: 1fr; } }

/* ---------- FLOAT WHATSAPP + STICKY MOBILE CTA ---------- */
.ls-float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: #25D366; color: #fff; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none; transition: transform .2s;
}
.ls-float-wa:hover { transform: scale(1.1); }

.ls-sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 190;
  background: var(--white); border-top: 1px solid var(--gray-line);
  padding: 12px 5%; box-shadow: 0 -6px 24px rgba(0,0,0,0.08);
}
.ls-sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green); color: var(--dark); font-family: "Sora font", sans-serif;
  font-weight: 700; font-size: 0.9rem; padding: 15px; border-radius: 10px; text-decoration: none;
}
@media (max-width: 700px) {
  .ls-sticky-cta { display: block; padding-bottom: max(12px, env(safe-area-inset-bottom)); }
  .ls-float-wa { display: none; }
  body { padding-bottom: 78px; }
}

/* ---------- utilidades ---------- */
.ls-badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.ls-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gray-bg); border-radius: 30px; padding: 8px 16px;
  font-family: "Sora font", sans-serif; font-size: 0.78rem; font-weight: 400; color: var(--dark);
}
.ls-badge svg { width: 14px; height: 14px; color: var(--blue); }
