/* Bate no Ponto — CSS consolidado (menos requests bloqueantes) */

/* ===== css/tokens.css ===== */
:root {
  --bp-green: #00bf63;
  --bp-green-hover: #00a656;
  --bp-green-soft: #5ef7a5;
  --bp-green-tint: rgba(0, 191, 99, 0.1);
  --bp-green-glow: rgba(0, 191, 99, 0.22);
  --bp-black: #000000;
  --bp-white: #ffffff;

  --bp-bg: #f5f7f9;
  --bp-bg-soft: #fafbfc;
  --bp-bg-elevated: #ffffff;
  --bp-text: #1a1d21;
  --bp-text-muted: #5c6570;
  --bp-border: rgba(0, 0, 0, 0.06);
  --bp-border-soft: rgba(255, 255, 255, 0.65);

  --bp-whatsapp: #25d366;
  --bp-whatsapp-dark: #128c7e;

  --bp-font: "Poppins", system-ui, -apple-system, sans-serif;

  --bp-radius-sm: 12px;
  --bp-radius: 16px;
  --bp-radius-lg: 24px;
  --bp-radius-xl: 28px;
  --bp-radius-pill: 999px;

  --bp-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --bp-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  --bp-shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.08);
  --bp-shadow-green: 0 8px 24px rgba(0, 191, 99, 0.22);

  --bp-pad-x: 20px;
  --bp-pad-section: 72px;
  --bp-header-h: 68px;
  --bp-max: 1080px;
  --bp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bp-transition: 0.22s var(--bp-ease);

  --bp-glass-bg: rgba(255, 255, 255, 0.55);
  --bp-glass-border: rgba(255, 255, 255, 0.7);
  --bp-glass-blur: 22px;
}

@media (min-width: 768px) {
  :root {
    --bp-pad-x: 32px;
    --bp-pad-section: 96px;
  }
}


/* ===== css/base.css ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  /* ScrollSmoother no desktop; CSS smooth só em telas menores */
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 1023px) {
  html {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

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

body {
  margin: 0;
  font-family: var(--bp-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--bp-text);
  background: var(--bp-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--bp-green);
  outline-offset: 3px;
}

.bp-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--bp-black);
  color: var(--bp-white);
  padding: 12px 16px;
  border-radius: 0 0 8px 0;
}

.bp-skip:focus {
  left: 0;
}

.bp-container {
  width: min(100% - (var(--bp-pad-x) * 2), var(--bp-max));
  margin-inline: auto;
}

.bp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Loader inicial */
.bp-loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: var(--bp-bg-soft);
  transition: opacity 0.45s var(--bp-ease), visibility 0.45s;
}

.bp-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bp-loader__mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(0, 191, 99, 0.15);
  border-top-color: var(--bp-green);
  animation: bp-spin 0.7s linear infinite;
}

@keyframes bp-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1023px) {
  .bp-loader__mark {
    animation: none;
    border-top-color: var(--bp-green);
    opacity: 0.85;
  }
}


/* ===== css/layout.css ===== */
/* Header — glass desde o topo (hero claro) */
.bp-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--bp-header-h);
  background: var(--bp-glass-bg);
  backdrop-filter: blur(var(--bp-glass-blur)) saturate(1.35);
  -webkit-backdrop-filter: blur(var(--bp-glass-blur)) saturate(1.35);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--bp-ease), border-color 0.3s var(--bp-ease),
    box-shadow 0.3s var(--bp-ease);
}

.bp-header.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  border-bottom-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.bp-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bp-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.bp-logo img {
  height: 36px;
  width: auto;
}

.bp-logo__on-dark {
  display: none;
}

.bp-logo__on-light {
  display: block;
}

.bp-nav {
  display: none;
  align-items: center;
  gap: 2px;
}

.bp-nav a {
  padding: 8px 14px;
  border-radius: var(--bp-radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bp-text-muted);
  transition: background var(--bp-transition), color var(--bp-transition);
}

.bp-nav a:hover,
.bp-nav a.is-active {
  background: var(--bp-green-tint);
  color: var(--bp-green);
}

.bp-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.bp-header__actions .bp-btn--ghost {
  display: none;
  color: var(--bp-text);
  border-color: var(--bp-border);
  background: transparent;
  padding: 9px 16px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.bp-header__actions .bp-btn--ghost:hover {
  border-color: var(--bp-green);
  color: var(--bp-green);
  background: var(--bp-green-tint);
}

.bp-header__actions .bp-btn--primary {
  display: none;
  padding: 9px 18px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.bp-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: var(--bp-text);
  cursor: pointer;
}

.bp-menu-toggle svg {
  width: 20px;
  height: 20px;
}

/* Drawer */
.bp-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}

.bp-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.bp-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bp-drawer.is-open .bp-drawer__backdrop {
  opacity: 1;
}

.bp-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 300px);
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s var(--bp-ease);
  box-shadow: var(--bp-shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bp-drawer.is-open .bp-drawer__panel {
  transform: translateX(0);
}

.bp-drawer__close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--bp-bg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bp-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bp-drawer__nav a {
  padding: 13px 14px;
  border-radius: var(--bp-radius-sm);
  font-weight: 500;
  color: var(--bp-text);
}

.bp-drawer__nav a:hover {
  background: var(--bp-green-tint);
  color: var(--bp-green);
}

.bp-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

/* Footer */
.bp-footer {
  background: var(--bp-black);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 28px;
}

.bp-footer__grid {
  display: grid;
  gap: 32px;
}

.bp-footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.bp-footer__brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 260px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.bp-play-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
  border-radius: 12px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  color: #fff !important;
  text-decoration: none !important;
  transition: transform var(--bp-transition), border-color var(--bp-transition),
    background var(--bp-transition), box-shadow var(--bp-transition);
  max-width: fit-content;
}

.bp-play-badge:hover {
  color: #fff !important;
  background: #1a1a1a;
  border-color: rgba(0, 191, 99, 0.45);
  box-shadow: 0 8px 24px rgba(0, 191, 99, 0.18);
  transform: translateY(-2px);
}

.bp-play-badge__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.bp-play-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  gap: 1px;
}

.bp-play-badge__eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
}

.bp-play-badge__store {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.bp-footer h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bp-green);
  margin-bottom: 12px;
}

.bp-footer__links,
.bp-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bp-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--bp-transition);
}

.bp-footer a:hover {
  color: var(--bp-green);
}

.bp-footer__bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .bp-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .bp-nav {
    display: flex;
  }

  .bp-menu-toggle {
    display: none;
  }

  .bp-header__actions .bp-btn--ghost,
  .bp-header__actions .bp-btn--primary {
    display: inline-flex;
  }
}


/* ===== css/components.css ===== */
/* Buttons */
.bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--bp-radius-pill);
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: background var(--bp-transition), color var(--bp-transition),
    border-color var(--bp-transition), transform var(--bp-transition),
    box-shadow var(--bp-transition);
  -webkit-tap-highlight-color: transparent;
}

.bp-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.bp-btn--primary {
  background: var(--bp-green);
  color: #1c1c1c;
  box-shadow: var(--bp-shadow-green);
}

.bp-btn--primary:hover {
  background: var(--bp-green-hover);
  color: #1c1c1c;
}

/* Alias legado — contraste já é o padrão do primary */
.bp-btn--primary.bp-btn--ink,
.bp-btn--primary.bp-btn--ink:hover {
  color: #1c1c1c;
}

.bp-btn--dark {
  background: var(--bp-black);
  color: var(--bp-green);
}

.bp-btn--outline {
  background: transparent;
  color: var(--bp-text);
  border-color: var(--bp-border);
}

.bp-btn--outline:hover {
  border-color: var(--bp-green);
  color: var(--bp-green);
  background: var(--bp-green-tint);
}

.bp-btn--ghost {
  background: transparent;
  border-color: var(--bp-border);
}

.bp-btn--lg {
  padding: 14px 26px;
  font-size: 0.95rem;
}

.bp-btn--block {
  width: 100%;
}

.bp-btn:active {
  transform: scale(0.98);
}

/* Glass panel */
.bp-glass {
  background: var(--bp-glass-bg);
  backdrop-filter: blur(var(--bp-glass-blur)) saturate(1.3);
  -webkit-backdrop-filter: blur(var(--bp-glass-blur)) saturate(1.3);
  border: 1px solid var(--bp-glass-border);
  box-shadow: var(--bp-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Cards */
.bp-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--bp-radius-lg);
  padding: 26px 22px;
  box-shadow: var(--bp-shadow-sm);
  transition: transform var(--bp-transition), box-shadow var(--bp-transition),
    border-color var(--bp-transition);
}

.bp-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bp-green-tint);
  color: var(--bp-green);
  margin-bottom: 16px;
}

.bp-card__icon svg {
  width: 24px;
  height: 24px;
}

.bp-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.bp-card p {
  color: var(--bp-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Section */
.bp-section {
  padding: var(--bp-pad-section) 0;
  position: relative;
}

.bp-section__head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
}

.bp-section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bp-green);
  margin-bottom: 10px;
}

.bp-section__head h2 {
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--bp-text);
}

.bp-section__head p {
  color: var(--bp-text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* WhatsApp FAB + QR */
.bp-whatsapp-fab {
  position: fixed;
  right: 16px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 120;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bp-whatsapp);
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.32);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.bp-whatsapp-fab[hidden],
#bpCalcCtaOrcamento[hidden] {
  display: none !important;
}

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

.bp-whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.bp-whatsapp-fab:active {
  transform: scale(0.96);
}

@media (min-width: 1024px) {
  .bp-whatsapp-fab {
    bottom: 28px;
    right: 28px;
  }
}

.bp-whatsapp-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
}

.bp-whatsapp-qr-modal.is-visible {
  display: flex;
}

.bp-whatsapp-qr-modal__card {
  position: relative;
  width: min(100%, 340px);
  padding: 28px 22px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.bp-whatsapp-qr-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f3f4f6;
  color: #6b7280;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bp-whatsapp-qr-modal__close svg {
  width: 18px;
  height: 18px;
}

.bp-whatsapp-qr-modal__title {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 600;
}

.bp-whatsapp-qr-modal__desc {
  margin: 0 0 16px;
  font-size: 0.88rem;
  color: var(--bp-text-muted);
}

.bp-whatsapp-qr-modal__img {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: #f8fafc;
}

.bp-whatsapp-qr-modal__link {
  font-size: 0.82rem;
  color: var(--bp-whatsapp-dark);
  word-break: break-all;
}

/* Formulário de contato */
.bp-form {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--bp-radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
}

.bp-form__fields {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.bp-form input,
.bp-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius-sm);
  background: #fff;
  font: inherit;
  color: var(--bp-text);
}

.bp-form input:focus,
.bp-form textarea:focus {
  outline: 2px solid rgba(0, 191, 99, 0.35);
  outline-offset: 1px;
  border-color: var(--bp-green, #00bf63);
}

.bp-form__note {
  font-size: 0.82rem;
  color: var(--bp-text-muted);
  margin-top: 10px;
}

.bp-form__status {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.bp-form__status.is-error {
  color: #b91c1c;
}

.bp-form__status.is-success {
  color: #047857;
}

/* Compat: classes antigas do placeholder */
.bp-form-placeholder {
  border: 1px dashed rgba(0, 0, 0, 0.1);
  border-radius: var(--bp-radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
}

.bp-form-placeholder__fields {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  opacity: 0.5;
  pointer-events: none;
}

.bp-form-placeholder input,
.bp-form-placeholder textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius-sm);
  background: #fff;
}

.bp-form-placeholder__note {
  font-size: 0.82rem;
  color: var(--bp-text-muted);
  margin-top: 10px;
}


/* ===== css/sections.css ===== */
/* ── Hero (fundo claro) ── */
.bp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--bp-header-h) + 28px) 0 48px;
  background: var(--bp-bg-soft);
  color: var(--bp-text);
  overflow: hidden;
}

.bp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bp-hero__grad {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 40% at 15% 30%, rgba(0, 191, 99, 0.12), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 70%, rgba(94, 247, 165, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0, 0, 0, 0.02), transparent 60%);
  will-change: transform;
}

.bp-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.5;
  will-change: transform;
}

.bp-hero__blob--1 {
  width: min(48vw, 380px);
  height: min(48vw, 380px);
  background: linear-gradient(135deg, rgba(0, 191, 99, 0.35), rgba(94, 247, 165, 0.2));
  top: 5%;
  left: -5%;
}

.bp-hero__blob--2 {
  width: min(36vw, 280px);
  height: min(36vw, 280px);
  background: rgba(0, 191, 99, 0.12);
  bottom: 8%;
  right: 0;
}

.bp-hero__float {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  will-change: transform;
}

.bp-hero__float--1 {
  width: 14px;
  height: 14px;
  top: 22%;
  left: 48%;
  background: rgba(0, 191, 99, 0.35);
}

.bp-hero__float--2 {
  width: 10px;
  height: 10px;
  top: 58%;
  left: 42%;
  background: rgba(0, 191, 99, 0.2);
}

.bp-hero__float--3 {
  width: 8px;
  height: 8px;
  top: 35%;
  right: 42%;
}

.bp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  align-items: center;
  justify-items: center;
  width: 100%;
}

.bp-hero__content {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.bp-hero h1 {
  font-size: clamp(1.65rem, 4.2vw, 2.55rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--bp-text);
}

.bp-hero h1 .bp-accent {
  color: var(--bp-green);
}

.bp-hero__lead {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--bp-text-muted);
  margin: 0 auto 24px;
  max-width: 38ch;
  line-height: 1.6;
}

.bp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 22px;
}

.bp-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.bp-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--bp-radius-pill);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--bp-text-muted);
}

.bp-hero__pill svg {
  width: 13px;
  height: 13px;
  color: var(--bp-green);
}

.bp-hero__visual {
  position: relative;
  width: min(100%, 340px);
}

.bp-hero__photo-wrap {
  position: relative;
  border-radius: var(--bp-radius-xl);
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 20px 48px rgba(0, 0, 0, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 1);
}

.bp-hero__photo-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 12%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.55));
  pointer-events: none;
  z-index: 1;
}

.bp-hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: #ffffff;
}

.bp-hero__badge {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--bp-radius-pill);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bp-text);
  white-space: nowrap;
}

.bp-hero__badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bp-green);
  box-shadow: 0 0 0 3px rgba(0, 191, 99, 0.2);
}

@media (min-width: 900px) {
  .bp-hero {
    padding: calc(var(--bp-header-h) + 28px) 0 48px;
  }

  .bp-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 56px 72px;
    align-items: center;
    justify-items: stretch;
    max-width: var(--bp-max);
    margin-inline: auto;
    padding-inline: clamp(24px, 4vw, 56px);
    min-height: calc(100svh - var(--bp-header-h) - 48px);
  }

  .bp-hero__content {
    text-align: left;
    max-width: 440px;
    justify-self: center;
    padding-left: clamp(12px, 2vw, 32px);
  }

  .bp-hero__lead {
    margin-left: 0;
    margin-right: 0;
  }

  .bp-hero__ctas {
    justify-content: flex-start;
    gap: 12px;
  }

  .bp-hero__pills {
    justify-content: flex-start;
  }

  .bp-hero__visual {
    width: 100%;
    max-width: 400px;
    justify-self: center;
  }
}

/* ── Features ── */
.bp-features {
  background: var(--bp-bg);
}

.bp-features__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .bp-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .bp-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

/* ── Steps ── */
.bp-steps {
  background: var(--bp-bg-soft);
}

.bp-steps__list {
  display: grid;
  gap: 14px;
  counter-reset: bp-step;
  list-style: none;
}

@media (min-width: 768px) {
  .bp-steps__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.bp-step {
  padding: 26px 22px;
  border-radius: var(--bp-radius-lg);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--bp-shadow-sm);
  backdrop-filter: blur(10px);
  counter-increment: bp-step;
}

.bp-step::before {
  content: counter(bp-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bp-black);
  color: var(--bp-green);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.bp-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.bp-step p {
  color: var(--bp-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ── Pricing (só calculadora) ── */
.bp-pricing {
  background: var(--bp-bg);
}

.bp-pricing__panel {
  max-width: 520px;
  margin-inline: auto;
  border-radius: var(--bp-radius-xl);
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--bp-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
  .bp-pricing__panel {
    padding: 36px 40px;
  }
}

.bp-calc__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--bp-text-muted);
}

.bp-calc__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bp-green);
  letter-spacing: -0.02em;
}

.bp-calc__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--bp-radius-pill);
  background: linear-gradient(
    to right,
    var(--bp-green) 0%,
    var(--bp-green) var(--bp-slider-pct, 6.7%),
    #e8eaed var(--bp-slider-pct, 6.7%),
    #e8eaed 100%
  );
  outline: none;
  margin: 4px 0 6px;
  cursor: pointer;
}

.bp-calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--bp-green);
  box-shadow: 0 2px 10px rgba(0, 191, 99, 0.3);
  cursor: grab;
}

.bp-calc__slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--bp-green);
  box-shadow: 0 2px 10px rgba(0, 191, 99, 0.3);
  cursor: grab;
}

.bp-calc__range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--bp-text-muted);
  margin-bottom: 24px;
}

.bp-calc__result {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: var(--bp-radius);
  background: var(--bp-black);
  color: #fff;
  margin-bottom: 18px;
}

.bp-calc__result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.bp-calc__result-row strong {
  color: #fff;
  font-weight: 600;
}

.bp-calc__result-total {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bp-calc__result-total strong {
  font-size: 1.45rem;
  color: var(--bp-green);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bp-calc__unit {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.bp-calc__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bp-benefits {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  max-width: 720px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .bp-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (min-width: 900px) {
  .bp-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bp-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--bp-radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--bp-shadow-sm);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
}

.bp-benefit__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bp-green-tint);
  color: var(--bp-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bp-benefit__icon svg {
  width: 14px;
  height: 14px;
}

/* ── Contact ── */
.bp-contact {
  background: var(--bp-bg-soft);
}

.bp-contact__grid {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin-inline: auto;
}

@media (min-width: 800px) {
  .bp-contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.bp-contact__card {
  padding: 26px 22px;
  border-radius: var(--bp-radius-lg);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--bp-shadow-sm);
  backdrop-filter: blur(10px);
}

.bp-contact__card h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.bp-contact__card > p {
  color: var(--bp-text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.bp-contact__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bp-contact__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--bp-radius-sm);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--bp-border);
  transition: border-color var(--bp-transition), box-shadow var(--bp-transition);
}

.bp-contact__item:hover {
  border-color: rgba(0, 191, 99, 0.35);
  box-shadow: 0 4px 16px rgba(0, 191, 99, 0.08);
}

.bp-contact__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bp-green-tint);
  color: var(--bp-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bp-contact__item-icon svg {
  width: 18px;
  height: 18px;
}

.bp-contact__item-label {
  display: block;
  font-size: 0.72rem;
  color: var(--bp-text-muted);
  font-weight: 500;
}

.bp-contact__item-value {
  font-weight: 600;
  font-size: 0.92rem;
}

/* CTA band */
.bp-cta-band {
  padding: 40px 0 0;
}

.bp-cta-band__inner {
  border-radius: var(--bp-radius-xl);
  padding: 36px 28px;
  background: var(--bp-black);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin-inline: auto;
}

.bp-cta-band__inner::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 191, 99, 0.3), transparent 70%);
  top: -45%;
  right: -8%;
  pointer-events: none;
}

.bp-cta-band h2 {
  position: relative;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.bp-cta-band p {
  position: relative;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  max-width: 36ch;
  margin-inline: auto;
  font-size: 0.92rem;
}

.bp-cta-band .bp-btn {
  position: relative;
}

/* ── FAQ ── */
.bp-faq-section {
  background: var(--bp-bg-soft);
}

.bp-faq {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bp-faq__item {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--bp-radius);
  box-shadow: var(--bp-shadow-sm);
  overflow: hidden;
  transition: border-color var(--bp-transition), box-shadow var(--bp-transition);
}

.bp-faq__item[open] {
  border-color: rgba(0, 191, 99, 0.22);
  box-shadow: var(--bp-shadow);
}

.bp-faq__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--bp-text);
  line-height: 1.4;
  -webkit-tap-highlight-color: transparent;
}

.bp-faq__summary::-webkit-details-marker {
  display: none;
}

.bp-faq__summary::marker {
  content: "";
}

.bp-faq__summary:focus-visible {
  outline: 2px solid var(--bp-green);
  outline-offset: -2px;
  border-radius: var(--bp-radius);
}

.bp-faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--bp-green-tint);
  color: var(--bp-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--bp-transition), background var(--bp-transition);
}

.bp-faq__icon svg {
  width: 14px;
  height: 14px;
  transition: transform var(--bp-transition);
}

.bp-faq__item[open] .bp-faq__icon {
  background: var(--bp-green);
  color: var(--bp-white);
}

.bp-faq__item[open] .bp-faq__icon svg {
  transform: rotate(45deg);
}

.bp-faq__answer {
  padding: 0 20px 18px;
}

.bp-faq__answer p {
  margin: 0;
  border-top: 1px solid var(--bp-border);
  padding-top: 14px;
  color: var(--bp-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .bp-faq__summary {
    padding: 20px 24px;
    font-size: 1rem;
  }

  .bp-faq__answer {
    padding: 0 24px 20px;
  }
}

@media (max-width: 1023px) {
  .bp-contact {
    padding-bottom: calc(var(--bp-pad-section) * 0.6 + 64px);
  }

  .bp-footer {
    padding-bottom: calc(36px + env(safe-area-inset-bottom, 0px));
  }
}

/* SEO Programático — conteúdo local + vídeo + refinamentos UX (só páginas de cidade) */
.bp-seo-prose {
  max-width: 720px;
  margin: 0 auto;
  color: var(--bp-text, #1e293b);
  font-size: 1.02rem;
  line-height: 1.7;
}

.bp-seo-prose h2,
.bp-seo-prose h3 {
  margin: 1.5em 0 0.65em;
  line-height: 1.3;
  color: var(--bp-text);
}

.bp-seo-prose h2:first-child,
.bp-seo-prose h3:first-child {
  margin-top: 0;
}

.bp-seo-prose p {
  margin: 0 0 1.05em;
}

.bp-seo-prose ul,
.bp-seo-prose ol {
  margin: 0 0 1.15em;
  padding-left: 1.25em;
}

.bp-seo-prose li {
  margin-bottom: 0.45em;
}

.bp-seo-prose li:last-child {
  margin-bottom: 0;
}

.bp-seo-prose--benefits ul {
  display: grid;
  gap: 0.35em 1.25em;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .bp-seo-prose--benefits ul {
    grid-template-columns: 1fr 1fr;
  }
}

.bp-seo-prose .bp-btn {
  display: inline-flex;
  margin: 0.35em 0.5em 0.35em 0;
  vertical-align: middle;
}

.bp-seo-cidade-media {
  padding-block: calc(var(--bp-pad-section, 64px) * 0.45);
}

.bp-seo-cidade-media__figure {
  margin: 0 auto;
  max-width: 960px;
  border-radius: var(--bp-radius-md, 12px);
  overflow: hidden;
}

.bp-seo-cidade-media__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.bp-seo-mid-cta {
  padding-block: calc(var(--bp-pad-section, 64px) * 0.35);
}

.bp-seo-mid-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border: 1px solid color-mix(in srgb, var(--bp-border, #e2e8f0) 85%, transparent);
  border-radius: var(--bp-radius-md, 12px);
  background: color-mix(in srgb, var(--bp-green-tint, #ecfdf5) 55%, #fff);
}

.bp-seo-mid-cta__copy {
  flex: 1 1 240px;
  min-width: 0;
}

.bp-seo-mid-cta__copy h2 {
  margin: 0 0 0.35em;
  font-size: 1.2rem;
  line-height: 1.3;
}

.bp-seo-mid-cta__copy p {
  margin: 0;
  color: var(--bp-muted, #64748b);
  font-size: 0.95rem;
  line-height: 1.5;
}

.bp-seo-mid-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex: 0 1 auto;
}

.bp-seo-video {
  max-width: 880px;
  margin: 0 auto;
}

.bp-seo-video__frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #0f172a;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
}

.bp-seo-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Breadcrumb (páginas de cidade) */
.bp-seo-breadcrumb {
  width: 100%;
  margin: 0 0 16px;
}

.bp-seo-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--bp-text-muted);
}

.bp-seo-breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--bp-text-muted);
  opacity: 0.7;
  speak: never;
}

.bp-seo-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.bp-seo-breadcrumb a:hover {
  color: var(--bp-green);
  text-decoration: underline;
}

.bp-seo-breadcrumb a:focus-visible {
  outline: 2px solid var(--bp-green);
  outline-offset: 3px;
  border-radius: 4px;
}

.bp-seo-breadcrumb__item--current span {
  color: var(--bp-text);
  font-weight: 500;
}

/* Refinamentos exclusivos das landings /sistema-de-ponto/{slug} */
body.bp-page-cidade .bp-hero h1 {
  margin-bottom: 18px;
}

body.bp-page-cidade .bp-hero__lead {
  margin-bottom: 26px;
}

body.bp-page-cidade .bp-section__head {
  margin-bottom: 32px;
}

body.bp-page-cidade .bp-section__head h2 {
  margin-bottom: 14px;
}

body.bp-page-cidade .bp-section__eyebrow {
  margin-bottom: 12px;
}

body.bp-page-cidade .bp-section__head p {
  margin: 0;
  max-width: 46ch;
  margin-inline: auto;
}

body.bp-page-cidade .bp-section__head + .bp-seo-prose,
body.bp-page-cidade .bp-section__head + .bp-seo-video,
body.bp-page-cidade .bp-section__head + .bp-faq,
body.bp-page-cidade .bp-section__head + .bp-features__grid,
body.bp-page-cidade .bp-section__head + .bp-steps__list,
body.bp-page-cidade .bp-section__head + .bp-pricing__panel,
body.bp-page-cidade .bp-section__head + .bp-contact__grid {
  margin-top: 4px;
}

body.bp-page-cidade .bp-cta-band h2 {
  margin-bottom: 12px;
}

body.bp-page-cidade .bp-cta-band p {
  margin-bottom: 18px;
}

body.bp-page-cidade .bp-faq {
  margin-top: 8px;
}

body.bp-page-cidade .bp-faq__item + .bp-faq__item {
  margin-top: 10px;
}

body.bp-page-cidade .bp-faq__answer {
  padding-top: 2px;
}

@media (max-width: 899px) {
  body.bp-page-cidade .bp-seo-breadcrumb {
    margin: 0 0 20px;
    text-align: center;
  }

  body.bp-page-cidade .bp-seo-breadcrumb__list {
    justify-content: center;
  }

  body.bp-page-cidade .bp-hero h1 {
    margin-bottom: 20px;
  }

  body.bp-page-cidade .bp-hero__lead {
    margin-bottom: 28px;
  }

  body.bp-page-cidade .bp-section__head {
    margin-bottom: 28px;
  }

  body.bp-page-cidade .bp-section__head h2 {
    margin-bottom: 14px;
  }

  body.bp-page-cidade .bp-seo-prose {
    font-size: 1rem;
    line-height: 1.72;
  }
}

@media (min-width: 900px) {
  body.bp-page-cidade .bp-seo-breadcrumb {
    margin: 0 0 18px;
    text-align: left;
  }

  body.bp-page-cidade .bp-seo-breadcrumb__list {
    justify-content: flex-start;
  }

  body.bp-page-cidade .bp-hero h1 {
    margin-bottom: 18px;
  }

  body.bp-page-cidade .bp-section__head {
    margin-bottom: 36px;
  }
}

/* Abaixo da dobra: hint de renderização sem CLS agressivo (sem #contato — scroll precisa de geometria real) */
body.bp-page-cidade .bp-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 480px;
}

/* Offset para âncoras com header fixo */
#inicio,
#funcionalidades,
#precos,
#faq,
#contato,
#conteudo-local,
#video-institucional,
#como-funciona,
body.bp-page-cidade .bp-section[id] {
  scroll-margin-top: calc(var(--bp-header-h) + 12px);
}

/* Ex-responsive.css — mesclado para evitar CSS render-blocking extra */
@media (max-width: 640px) {
  .bp-hero__ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .bp-hero__ctas .bp-btn {
    width: auto;
    max-width: 260px;
    min-width: 200px;
  }
}




