/*
 * CSS exclusivo da landing page pública (index.php), isolado do resto do
 * sistema de propósito: nada aqui reaproveita nem sobrescreve classes de
 * assets/css/style.css, então nenhuma outra página (admin, portal, faturas,
 * termos, etc.) é afetada. Paleta e comportamento seguem o site de produção
 * (iscast.com.br): azul #0061ff, títulos em navy escuro, cards claros.
 */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");
.rh-landing { font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.rh-landing {
  --lp-blue: #0061ff;
  --lp-blue-dark: #0044c9;
  --lp-navy: #0b1a33;
  --lp-title: #10161d;
  --lp-text: #55606e;
  --lp-bg-soft: #f4f7fd;
  --lp-bg-soft2: #e5efff;
  --lp-border: #e4e9f2;
  --lp-white: #fff;
}
[data-theme="dark"] .rh-landing {
  --lp-title: #eef2f8;
  --lp-text: #aab3c3;
  --lp-bg-soft: #10161f;
  --lp-bg-soft2: #101a2e;
  --lp-border: #232c3d;
  --lp-white: #151b26;
}

.rh-landing { overflow-x: hidden; }
.rh-landing section { position: relative; }
.rh-landing .container { max-width: 1200px; }

/* ---------- eyebrow / heading ---------- */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 8px;
  background: var(--lp-bg-soft2);
  border: 1px solid var(--lp-border);
  color: var(--lp-blue);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.lp-eyebrow img { width: 16px; height: 16px; display: block; }
.lp-heading h2 {
  color: var(--lp-title);
  font-weight: 600;
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.75rem);
  line-height: 1.18;
  margin-bottom: 12px;
}
.lp-heading p { color: var(--lp-text); font-size: 1.15rem; line-height: 1.6; max-width: 560px; }
.lp-heading.text-center p { margin-left: auto; margin-right: auto; }

/* ---------- botões ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 8px;
  background: var(--lp-blue);
  color: #fff;
  font-weight: 600;
  border: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 25px -10px rgba(0, 97, 255, .55);
}
.lp-btn:hover { background: var(--lp-blue-dark); color: #fff; transform: translateY(-3px); }
.lp-btn i, .lp-btn .bi { transition: transform .25s ease; }
.lp-btn:hover i, .lp-btn:hover .bi { transform: translateX(3px); }
.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 27px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  font-weight: 600;
  transition: all .25s ease;
}
.lp-btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-3px); }
.lp-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 8px;
  background: #fff;
  color: var(--lp-blue);
  font-weight: 700;
  transition: all .25s ease;
}
.lp-btn-light:hover { color: var(--lp-blue-dark); transform: translateY(-3px); }

/* ---------- navbar ---------- */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
  padding: 18px 0;
  background: transparent;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.lp-nav .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.lp-nav-logo { color: var(--lp-title); font-weight: 800; font-size: 1.15rem; text-decoration: none; display: inline-flex; align-items: center; }
.lp-nav-logo img { height: 46px; width: auto; display: block; }
.lp-nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.lp-nav-links a { color: var(--lp-text); font-weight: 500; font-size: 1rem; }
.lp-nav-links a:hover { color: var(--lp-title); }
.lp-nav-actions { display: flex; align-items: center; gap: 12px; }
.lp-nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 8px; border: 1px solid var(--lp-title);
  background: transparent; color: var(--lp-title); align-items: center; justify-content: center; font-size: 1.3rem;
}
.lp-nav-theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--lp-border);
  background: transparent; color: var(--lp-title); display: inline-flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.lp-nav-theme-toggle:hover { background: rgba(0,97,255,.1); }
/* nav rolado: fundo sólido claro (branco no claro / superfície escura no escuro — mesma
   variável --lp-white que o resto do sistema, então o texto --lp-title já acompanha) */
.lp-nav.lp-nav-scrolled { background: var(--lp-white); padding: 12px 0; box-shadow: 0 4px 30px rgba(0,0,0,.09); }
.lp-nav.lp-nav-scrolled .lp-nav-logo,
.lp-nav.lp-nav-scrolled .lp-nav-links a,
.lp-nav.lp-nav-scrolled .lp-nav-toggle,
.lp-nav.lp-nav-scrolled .lp-nav-theme-toggle { color: var(--lp-title); }
.lp-nav.lp-nav-scrolled .lp-nav-links a:hover { color: var(--lp-blue); }
.lp-nav.lp-nav-scrolled .lp-nav-toggle,
.lp-nav.lp-nav-scrolled .lp-nav-theme-toggle { border-color: var(--lp-border); }
.lp-nav.lp-nav-scrolled .lp-nav-theme-toggle:hover { background: rgba(0,97,255,.1); }
@media (max-width: 991px) {
  /* mobile sempre com fundo sólido branco (claro) / superfície escura (escuro) — a
     cor azul de destaque fica só no painel do menu (offcanvas), não na barra fixa */
  .lp-nav, .lp-nav.lp-nav-scrolled { background: var(--lp-white); padding: 14px 0; box-shadow: 0 4px 30px rgba(0,0,0,.09); }
  .lp-nav-logo, .lp-nav-toggle, .lp-nav-theme-toggle, .lp-nav-links a,
  .lp-nav.lp-nav-scrolled .lp-nav-logo, .lp-nav.lp-nav-scrolled .lp-nav-toggle,
  .lp-nav.lp-nav-scrolled .lp-nav-theme-toggle, .lp-nav.lp-nav-scrolled .lp-nav-links a { color: var(--lp-title); }
  .lp-nav-toggle, .lp-nav-theme-toggle,
  .lp-nav.lp-nav-scrolled .lp-nav-toggle, .lp-nav.lp-nav-scrolled .lp-nav-theme-toggle { border-color: var(--lp-border); }
  .lp-nav-theme-toggle:hover, .lp-nav.lp-nav-scrolled .lp-nav-theme-toggle:hover { background: rgba(0,97,255,.1); }
  .lp-nav-links { display: none; }
  .lp-nav-toggle { display: inline-flex; }
}

/* ---------- offcanvas mobile ---------- */
.lp-offcanvas-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1050; opacity: 0; visibility: hidden; transition: opacity .3s ease;
}
.lp-offcanvas-overlay.is-open { opacity: 1; visibility: visible; }
.lp-offcanvas {
  position: fixed; top: 0; right: -320px; width: 300px; max-width: 85vw; height: 100%;
  background: var(--lp-blue); z-index: 1060; padding: 28px 22px; transition: right .35s ease;
  overflow-y: auto;
}
[data-theme="dark"] .lp-offcanvas { background: var(--lp-navy); }
.lp-offcanvas.is-open { right: 0; }
.lp-offcanvas-logo { color: #fff; font-weight: 800; }
.lp-offcanvas-logo img { filter: brightness(0) invert(1); }
[data-theme="dark"] .lp-offcanvas-logo img { filter: none; }
.lp-offcanvas-close { background: transparent; border: 1px solid rgba(255,255,255,.25); color: #fff; width: 36px; height: 36px; border-radius: 8px; }
.lp-offcanvas nav { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.lp-offcanvas nav a { color: rgba(255,255,255,.85); padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 500; }
.lp-offcanvas-contact { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.lp-offcanvas-contact a { color: rgba(255,255,255,.8); font-size: .9rem; }
.lp-offcanvas-social { display: flex; gap: 10px; margin-top: 18px; }
.lp-offcanvas-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; color: #fff;
}

/* ---------- hero (mesma cor clara da imagem original hero1-bg.jpg — sem
   camada escura por cima, texto em tom escuro pra ler bem no fundo claro) ---------- */
.lp-hero {
  min-height: 92vh;
  display: flex; align-items: center;
  background-color: #b8d1f0;
  background-size: cover; background-position: center bottom; background-repeat: no-repeat;
  padding: 150px 0 60px;
  color: var(--lp-title);
}
[data-theme="dark"] .lp-hero { background-color: var(--lp-navy); color: var(--lp-title); }
.lp-hero h1 {
  font-weight: 700;
  font-size: clamp(2.1rem, 1.4rem + 3vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--lp-title);
}
.lp-hero h1 .lp-price { color: var(--lp-blue); }
.lp-hero p.lead { color: var(--lp-text); font-size: 1.15rem; max-width: 520px; }
.lp-hero p.lead strong { font-weight: 700; color: var(--lp-title); }
.lp-hero-image { position: relative; text-align: center; }
.lp-hero-image img { max-width: 100%; filter: drop-shadow(0 30px 50px rgba(15,35,70,.25)); }
@keyframes lp-fade-up-word { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.lp-split-word { display: inline-block; opacity: 0; animation: lp-fade-up-word .5s ease both; }

/* ---------- requisitos ---------- */
.lp-requisitos { padding: 46px 0; background: var(--lp-bg-soft); }
.lp-requisitos-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px; text-align: center; }
.lp-requisitos-item { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 130px; }
.lp-requisitos-item i, .lp-requisitos-item .bi { font-size: 1.5rem; color: var(--lp-blue); background: rgba(0,97,255,.1); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lp-requisitos-item span { color: var(--lp-title); font-weight: 600; font-size: .92rem; }
.lp-requisitos-sep { font-size: 1.6rem; font-weight: 700; color: var(--lp-blue); }
@media (max-width: 767px) {
  .lp-requisitos-row {
    flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity; padding: 4px 20px 10px; margin: 0 -20px; width: calc(100% + 40px);
  }
  .lp-requisitos-row::-webkit-scrollbar { display: none; }
  .lp-requisitos-row { scrollbar-width: none; }
  .lp-requisitos-item, .lp-requisitos-sep { flex-shrink: 0; scroll-snap-align: center; }
  .lp-requisitos-item { min-width: 108px; }
}

/* ---------- entrada suave ao carregar (100% CSS, sem depender de scroll/JS
   — conteúdo de vendas nunca deve ficar invisível esperando um observer) ---------- */
@keyframes lp-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.lp-reveal { animation: lp-fade-up .7s cubic-bezier(.2,.8,.2,1) both; }
.lp-reveal-delay-1 { animation-delay: .08s; }
.lp-reveal-delay-2 { animation-delay: .16s; }
.lp-reveal-delay-3 { animation-delay: .24s; }
.lp-reveal-delay-4 { animation-delay: .32s; }
.lp-reveal-delay-5 { animation-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .lp-reveal, .lp-split-word { animation: none !important; opacity: 1 !important; transform: none !important; } }

/* ---------- about/radio ---------- */
#radio, #funcoes, #aplicativo, #precos, #clientes, #faq, #suporte { scroll-margin-top: 90px; }
.lp-about { padding: 90px 0; }
.lp-about-image img { max-width: 100%; border-radius: 16px; }
.lp-about-list { list-style: none; margin: 24px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.lp-about-list li { display: flex; align-items: center; gap: 10px; color: var(--lp-title); font-weight: 500; }
.lp-about-list .lp-check { width: 22px; height: 22px; border-radius: 50%; background: var(--lp-blue); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; flex-shrink: 0; }
@media (max-width: 575px) { .lp-about-list { grid-template-columns: 1fr; } }

/* ---------- funções ---------- */
.lp-funcoes { padding: 90px 0; background: var(--lp-bg-soft); }
.lp-funcoes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 991px) { .lp-funcoes-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .lp-funcoes-grid { grid-template-columns: 1fr; } }
.lp-funcao-card { background: var(--lp-white); border-radius: 14px; padding: 32px 26px; text-align: center; transition: transform .3s ease, box-shadow .3s ease; }
.lp-funcao-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px -18px rgba(0,97,255,.35); }
.lp-funcao-icon { width: 88px; height: 88px; border-radius: 50%; background: rgba(0,97,255,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.lp-funcao-icon img { width: 44px; height: 44px; }
.lp-funcao-card h5 { color: var(--lp-title); font-weight: 700; margin-bottom: 8px; }
.lp-funcao-card p { color: var(--lp-text); font-size: .97rem; margin: 0; }
.lp-funcao-card a { color: var(--lp-blue); font-weight: 600; font-size: .89rem; }

/* ---------- aplicativo ---------- */
.lp-app { padding: 90px 0; }
.lp-app-image { text-align: center; }
.lp-app-image img { max-width: 100%; filter: drop-shadow(0 30px 40px rgba(0,0,0,.15)); }
.lp-app-tabs-nav { display: flex; justify-content: center; margin-bottom: 48px; }
.lp-app-tabs { display: inline-flex; gap: 6px; background: var(--lp-bg-soft); border-radius: 10px; padding: 6px; flex-wrap: wrap; justify-content: center; }
.lp-app-tabs .nav-link { border: none; border-radius: 8px; padding: 10px 22px; font-weight: 600; font-size: 1rem; color: var(--lp-text); background: transparent; transition: all .2s ease; }
.lp-app-tabs .nav-link:hover { color: var(--lp-blue); }
.lp-app-tabs .nav-link.active { background: var(--lp-blue); color: #fff; }
@media (max-width: 575px) {
  .lp-app-tabs { width: 100%; }
  .lp-app-tabs .nav-item { flex: 1 1 auto; }
  .lp-app-tabs .nav-link { width: 100%; padding: 10px 8px; font-size: .88rem; }
}

/* ---------- preços (linha horizontal título+preço / recursos, igual ao original) ---------- */
.lp-precos { padding: 90px 0; background: var(--lp-bg-soft); }
.lp-pricing-list { margin-top: 30px; display: flex; flex-direction: column; gap: 30px; }
.lp-price-row {
  padding: 28px 32px; border-radius: 9px; background: var(--lp-white) url('../imagens/bg-precos.jpg') center center / cover no-repeat;
  box-shadow: 0 4px 30px rgba(0,0,0,.08); transition: transform .4s ease, box-shadow .4s ease;
}
[data-theme="dark"] .lp-price-row { background-image: none; }
.lp-price-row:hover { transform: translateY(-8px); }
.lp-price-row-title h5 { color: var(--lp-title); font-size: 1.05rem; font-weight: 500; margin: 0; }
.lp-price-row-title h2 { color: var(--lp-title); font-size: 2.35rem; font-weight: 600; margin: 0; padding: 14px 0; }
.lp-price-row-title h2 span { font-size: .9rem; color: var(--lp-text); font-weight: 500; }
.lp-price-row-title p { color: var(--lp-text); font-size: .95rem; line-height: 1.5; margin: 0 0 16px; }
.lp-price-row-title .lp-plan-btn { margin-bottom: 6px; }
.lp-price-row-list { padding: 22px 24px; border-radius: 8px; background: var(--lp-bg-soft2); }
.lp-price-row-list h4 { color: var(--lp-title); font-size: 1.05rem; font-weight: 600; text-transform: uppercase; margin: 0 0 4px; }
.lp-price-row-list ul { list-style: none; margin: 0; padding: 0; }
.lp-price-row-list li { display: flex; align-items: center; gap: 6px; color: var(--lp-title); font-size: .96rem; font-weight: 500; padding-top: 18px; }
.lp-price-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%; color: #fff; font-size: .68rem; flex-shrink: 0;
  background: var(--lp-blue);
}
@media (max-width: 991px) {
  .lp-price-row-list { margin-top: 24px; }
}
@media (max-width: 767px) {
  .lp-price-row { padding: 24px; }
}

/* ---------- clientes / depoimentos (fiel ao HTML/CSS de referência: um único
   card contendo o slider, setas empilhadas fora do card à direita) ---------- */
.lp-clientes { padding: 50px 0 30px; }
.lp-clientes-photo img { max-width: 100%; border-radius: 18px; }
.lp-tes-all { background: var(--lp-bg-soft2); border-radius: 8px; padding: 32px; position: relative; margin-right: 70px; }
.lp-tes-track { display: flex; overflow: hidden; scroll-behavior: smooth; }
.lp-tes-slide { flex: 0 0 100%; }
.lp-tes-stars { color: #ffb020; font-size: .9rem; }
.lp-tes-all p.quote { color: var(--lp-title); font-size: 1rem; padding: 14px 0; margin-bottom: 10px; }
.lp-tes-person { display: flex; align-items: center; gap: 12px; }
.lp-tes-person img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.lp-tes-person strong { display: block; color: var(--lp-title); }
.lp-tes-person span { color: var(--lp-text); font-size: .82rem; }
.lp-tes-arrows {
  position: absolute; right: -70px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px;
}
.lp-tes-arrows button { width: 42px; height: 42px; border-radius: 50%; border: none; background: var(--lp-white); color: var(--lp-blue); }
.lp-tes-arrows button:hover { background: var(--lp-blue); color: #fff; }
@media (max-width: 991px) {
  .lp-tes-all { margin-right: 0; }
  .lp-tes-arrows { position: static; transform: none; flex-direction: row; margin-top: 16px; }
}

/* ---------- faq ---------- */
.lp-faq { padding: 30px 0 90px; background: var(--lp-bg-soft); }
.lp-faq-image img { max-width: 100%; }
.lp-faq .accordion-item { border: 1px solid var(--lp-border); border-radius: 10px !important; margin-bottom: 12px; overflow: hidden; background: var(--lp-white); }
.lp-faq .accordion-button { font-weight: 600; color: var(--lp-title); background: var(--lp-white); }
.lp-faq .accordion-button:not(.collapsed) { color: #fff; background: var(--lp-blue); box-shadow: none; }
.lp-faq .accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.lp-faq .accordion-button:focus { box-shadow: none; }
.lp-faq .accordion-body { color: var(--lp-text); }
.lp-faq .accordion-collapse.collapse.show .accordion-body,
.lp-faq .accordion-collapse.collapsing .accordion-body { color: #fff; background: var(--lp-blue); }

/* ---------- cta suporte (texto+botão à esquerda, imagem à direita, fundo
   azul — mesma cor do botão principal — no tema claro) ---------- */
.lp-cta { padding: 40px 0; background: var(--lp-blue); color: #fff; }
.lp-cta .container { max-width: 860px; }
[data-theme="dark"] .lp-cta { background: var(--lp-navy); }
.lp-cta img { max-width: 260px; width: 100%; display: block; margin: 0 auto; }
.lp-cta h2 { font-weight: 700; margin-bottom: 12px; }
.lp-cta p { color: rgba(255,255,255,.85); max-width: 440px; margin: 0 0 20px; }
.lp-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 991px) {
  /* Mesmo padrão da hero (texto alinhado à esquerda, imagem centralizada
     abaixo) — texto à direita aqui era a inconsistência que deixava a
     seção com uma cara diferente do resto da landing no mobile. */
  .lp-cta { text-align: left; }
  .lp-cta p { margin: 0 0 26px; }
  .lp-cta-actions { justify-content: flex-start; }
}

/* ---------- botão flutuante voltar ao topo (fiel ao original: fundo
   transparente, anel de progresso que preenche conforme rola a página) ---------- */
.lp-scroll-top {
  position: fixed; right: 20px; bottom: 90px; z-index: 1030;
  width: 50px; height: 50px; border-radius: 50%; border: none; padding: 0;
  background: transparent; color: var(--lp-title); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: inset 0 0 0 2px var(--lp-border);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .2s linear, transform .2s linear, visibility .2s linear;
}
.lp-scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.lp-scroll-top i { position: relative; z-index: 2; }
.lp-scroll-top-svg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.lp-scroll-top-svg path { fill: none; stroke: var(--lp-blue); stroke-width: 4; box-sizing: border-box; transition: stroke-dashoffset 10ms linear; }
@media (max-width: 575px) { .lp-scroll-top { bottom: 84px; right: 16px; width: 44px; height: 44px; font-size: 1rem; } }

/* ---------- footer (fundo branco no claro — segue --lp-white, que já vira
   escuro sozinho no tema dark via a raiz .rh-landing) ---------- */
.lp-footer { background: var(--lp-white); color: var(--lp-text); padding: 70px 0 0; border-top: 1px solid var(--lp-border); font-size: 1.05rem; }
.lp-footer h6 { color: var(--lp-title); font-weight: 500; font-size: 1.4rem; margin-bottom: 24px; }
.lp-footer a { color: var(--lp-text); font-size: 1.05rem; }
.lp-footer a:hover { color: var(--lp-blue); }
.lp-footer-logo { color: var(--lp-title); font-weight: 800; font-size: 1.05rem; margin-bottom: 16px; }
.lp-footer-logo img { height: 48px; margin-bottom: 16px; }
.lp-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-footer-copy.small { font-size: 1.05rem !important; }
.lp-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.lp-footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--lp-border); background: var(--lp-bg-soft); color: var(--lp-title); display: flex; align-items: center; justify-content: center; }
.lp-footer-social a:hover { background: var(--lp-blue); border-color: var(--lp-blue); color: #fff; }
.lp-footer-bottom { border-top: 1px solid var(--lp-border); margin-top: 46px; padding: 22px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.lp-footer-pay { display: flex; align-items: center; gap: 14px; }
.lp-footer-pay img { height: 22px; opacity: .85; }
.lp-footer-newsletter { display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 6px; }
.lp-footer-newsletter input { flex: 1 1 auto; min-width: 0; border-radius: 8px; border: 1px solid var(--lp-border); background: var(--lp-bg-soft); color: var(--lp-title); padding: 10px 14px; font-size: .9rem; }
.lp-footer-newsletter input::placeholder { color: var(--lp-text); }
.lp-footer-newsletter button {
  display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto; white-space: nowrap;
  border-radius: 8px; border: none; background: var(--lp-blue); color: #fff; padding: 0 16px; font-size: .88rem;
}
@media (max-width: 420px) {
  .lp-footer-newsletter button span,
  .lp-footer-newsletter button { font-size: .82rem; padding: 0 12px; }
}
.lp-footer-copy { color: var(--lp-text) !important; }

@media (max-width: 767px) {
  .lp-hero { padding-top: 130px; text-align: left; }
  .lp-hero p.lead { margin-left: 0; margin-right: 0; }
  .lp-hero .mt-4 { display: flex; }
  .lp-about, .lp-funcoes, .lp-app, .lp-precos, .lp-clientes, .lp-faq { padding: 60px 0; }
  .lp-plan-btn { width: 100%; justify-content: center; }
}
