/* PCProntoFarmaSite — site institucional (logística farmacêutica) */

:root {
  --pf-bg: #ffffff;
  --pf-teal: #7d9523;
  --pf-navy: #343585;
  --pf-cyan: #b4d147;
  --pf-ink: #0f172a;
  --pf-ink-2: #334155;
  --pf-muted: #64748b;
  --pf-line: #e6eaef;
  --pf-line-strong: #d6dbe3;
  --pf-surface: #ffffff;
  --pf-surface-2: #f7f9fb;
  --pf-teal-soft: #eef4d7;
  --pf-navy-soft: #eef2f6;
  --pf-danger: #dc2626;
  --pf-ok: #059669;
  --pf-warn: #d97706;
  --pf-radius: 18px;
  --pf-radius-sm: 12px;
  --pf-radius-xs: 8px;
  --pf-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  --pf-shadow-lg: 0 24px 50px rgba(15, 23, 42, 0.1);
  --pf-font: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --pf-display: "Sora", "Manrope", "Segoe UI", system-ui, sans-serif;
  --pf-header-h: 76px;
  --pf-topbar-h: 38px;
  --pf-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pf-wrap: min(1180px, calc(100% - 2.5rem));
  --pf-banner-h: 520px;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--pf-font);
  color: var(--pf-ink);
  background: var(--pf-bg);
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.011em;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.pf-menu-open { overflow: hidden; }

main { flex: 1 0 auto; width: 100%; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4,
.pf-logo-text strong,
.pf-section-head h2,
.pf-page-hero h1,
.pf-banner-title,
.pf-stat-value,
.pf-card-title {
  font-family: var(--pf-display);
  letter-spacing: -0.025em;
  font-weight: 700;
  line-height: 1.15;
}

.pf-wrap {
  width: 100%;
  max-width: var(--pf-wrap);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(1.15rem, 3.5vw, 1.35rem);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--pf-navy);
  color: #fff;
  border-radius: 0 0 var(--pf-radius-xs) 0;
  font-weight: 700;
}

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

.hide-sm { display: inline-flex; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 50px;
  padding: 0 1.35rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: 0.2s var(--pf-ease);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn:disabled { opacity: 0.55; cursor: not-allowed; }

.btn-primary {
  background: var(--pf-navy);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.22);
}

.btn-accent {
  background: linear-gradient(135deg, var(--pf-teal), var(--pf-cyan));
  color: #fff;
  box-shadow: 0 8px 22px rgba(125, 149, 35, 0.28);
}

.btn-accent:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(125, 149, 35, 0.34);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: inherit;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--pf-line-strong);
  color: var(--pf-navy);
}

.btn-outline:hover {
  border-color: var(--pf-teal);
  color: var(--pf-teal);
  background: var(--pf-teal-soft);
}

.btn-block { width: 100%; }

.btn-sm {
  height: 40px;
  padding: 0 1rem;
  font-size: 0.9rem;
  border-radius: 12px;
}

.btn-lg {
  height: 56px;
  padding: 0 1.65rem;
  font-size: 1rem;
  border-radius: 16px;
}

/* ========== HEADER / TOPBAR / NAV ========== */
.pf-header {
  position: sticky;
  top: 0;
  z-index: 90;
  width: 100%;
  transition: box-shadow 0.35s var(--pf-ease), background 0.35s var(--pf-ease);
}

.pf-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
}

.pf-topbar {
  background: var(--pf-surface);
  color: var(--pf-ink-2);
  border-bottom: 1px solid var(--pf-line);
  font-size: 0.78rem;
  font-weight: 600;
  min-height: var(--pf-topbar-h);
  display: flex;
  align-items: center;
}

.pf-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  min-height: var(--pf-topbar-h);
}

.pf-topbar span,
.pf-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.pf-topbar i { color: var(--pf-teal); }

.pf-topbar a {
  color: var(--pf-navy);
  transition: color 0.2s;
}

.pf-topbar a:hover { color: var(--pf-teal); }

.pf-nav-bar {
  position: relative;
  border-bottom: 1px solid var(--pf-line);
}

/* Efeito de vidro aplicado numa camada própria (::before), não no elemento
   em si: um backdrop-filter direto em .pf-nav-bar viraria o "containing
   block" de qualquer position:fixed dentro dela (ex.: o menu mobile),
   fazendo o drawer nascer a partir da barra de nav em vez do topo real da tela. */
.pf-nav-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(1.1) blur(16px);
  -webkit-backdrop-filter: saturate(1.1) blur(16px);
}

.pf-header.is-scrolled .pf-nav-bar::before {
  background: rgba(255, 255, 255, 0.94);
}

.pf-nav-inner {
  position: relative;
  z-index: 1;
  min-height: var(--pf-header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.pf-logo {
  display: inline-flex;
  align-items: center;
}

.pf-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.pf-footer .pf-logo-img { height: 72px; }

.pf-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.pf-nav-link {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--pf-ink-2);
  transition: 0.2s var(--pf-ease);
}

.pf-nav-link:hover {
  color: var(--pf-teal);
  background: rgba(125, 149, 35, 0.08);
}

.pf-nav-link.is-active {
  color: var(--pf-navy);
  background: var(--pf-teal-soft);
}

.pf-nav-link.is-cta {
  background: linear-gradient(135deg, var(--pf-teal), var(--pf-cyan));
  color: #fff;
  box-shadow: 0 6px 18px rgba(125, 149, 35, 0.25);
}

.pf-nav-link.is-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.pf-nav-cta {
  white-space: nowrap;
  gap: 0.45rem;
}

@media (max-width: 980px) {
  .pf-nav-cta {
    height: 38px;
    padding: 0 0.75rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .pf-nav-cta {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
  }

  .pf-nav-cta-label {
    display: none;
  }
}

.pf-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: end;
}

.pf-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--pf-line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 95;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: 0.2s var(--pf-ease);
}

.pf-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--pf-navy);
  border-radius: 2px;
  transition: 0.25s var(--pf-ease);
}

.pf-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.pf-burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.pf-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.pf-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--pf-ease), visibility 0.3s;
}

.pf-nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ========== BANNER CAROUSEL ========== */
.pf-banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: var(--pf-banner-h, 520px);
  overflow: hidden;
  background: var(--pf-navy);
  isolation: isolate;
}

.pf-banner-track {
  position: absolute;
  inset: 0;
}

.pf-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition: opacity 1.1s var(--pf-ease), transform 1.1s var(--pf-ease), filter 1.1s var(--pf-ease), visibility 1.1s;
  display: flex;
  align-items: stretch;
  background-color: var(--pf-navy);
  background-repeat: no-repeat;
}

.pf-banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.pf-banner-slide.is-exit { z-index: 1; }

/* Fade padrão: em vez de um corte seco, o slide que sai afasta-se com leve
   zoom + desfoque enquanto o novo entra por cima, criando uma dissolução
   suave em vez de "desaparece / aparece". */
.pf-banner-slide[data-anim="fade"].is-active {
  transform: scale(1);
  filter: blur(0);
}

.pf-banner-slide[data-anim="fade"]:not(.is-active) {
  transform: scale(1.045);
  filter: blur(6px);
}

.pf-banner-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.1), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.pf-banner-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  pointer-events: none;
  z-index: 1;
}

.pf-banner-scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

/* Faíscas independentes: cada uma percorre uma única linha do quadriculado
   (uma coluna vertical ou uma fileira horizontal), com posição, velocidade
   e atraso próprios (definidos via PHP em includes/banners.php), para que
   o brilho pareça aleatório em vez de um sweep único e sincronizado. Nada
   aqui pinta uma linha estática nem altera a cor original do fundo. */
.pf-banner-spark {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: var(--pf-spark-op, 0.45);
  will-change: transform;
}

.pf-banner-spark--v {
  top: -14%;
  left: calc(var(--pf-spark-col, 1) * 44px);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(235, 245, 210, 0.9) 50%, transparent 100%);
  animation: pfSparkV var(--pf-spark-dur, 9s) linear infinite;
  animation-delay: var(--pf-spark-delay, 0s);
}

.pf-banner-spark--h {
  left: -14%;
  bottom: calc(var(--pf-spark-row, 1) * 44px);
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent 0%, rgba(235, 245, 210, 0.9) 50%, transparent 100%);
  animation: pfSparkH var(--pf-spark-dur, 9s) linear infinite;
  animation-delay: var(--pf-spark-delay, 0s);
}

@keyframes pfSparkV {
  0% { top: -14%; }
  100% { top: 114%; }
}

@keyframes pfSparkH {
  0% { left: -14%; }
  100% { left: 114%; }
}

/* Floco de gelo no cruzamento V×H dos tracinhos */
.pf-spark-hit {
  position: absolute;
  width: 44px;
  height: 44px;
  left: var(--pf-hit-x, 0);
  bottom: var(--pf-hit-y, 0);
  pointer-events: none;
  overflow: visible;
  animation: pfSparkHitFade 3s ease-out forwards;
  z-index: 1;
}

.pf-spark-hit__ice {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 36px;
  transform: translate(-50%, 50%);
  opacity: 0;
  animation: pfSparkHitIce 3s ease-out forwards;
  filter: drop-shadow(0 0 6px rgba(180, 220, 255, 0.45));
}

.pf-spark-hit__ice svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Banner: gelo um pouco mais suave que no login */
.pf-banner .pf-spark-hit__ice {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 4px rgba(180, 220, 255, 0.28));
  animation-name: pfSparkHitIceSoft;
}

.pf-banner .pf-spark-hit {
  animation-name: pfSparkHitFadeSoft;
}

.pf-banner .pf-spark-hit__ice svg g {
  stroke: rgba(220, 238, 255, 0.52);
  stroke-width: 1.15;
}

.pf-banner .pf-spark-hit__ice svg circle {
  opacity: 0.72;
}

@keyframes pfSparkHitFadeSoft {
  0% { opacity: 0; }
  10% { opacity: 0.7; }
  50% { opacity: 0.55; }
  100% { opacity: 0; }
}

@keyframes pfSparkHitIceSoft {
  0% {
    opacity: 0;
    transform: translate(-50%, 50%) scale(0.4) rotate(-8deg);
  }
  14% {
    opacity: 0.72;
    transform: translate(-50%, 50%) scale(1.02) rotate(0deg);
  }
  35% {
    opacity: 0.55;
    transform: translate(-50%, 50%) scale(0.97) rotate(1deg);
  }
  55% {
    opacity: 0.62;
    transform: translate(-50%, 50%) scale(1) rotate(-0.5deg);
  }
  78% {
    opacity: 0.28;
    transform: translate(-50%, 50%) scale(1.04) rotate(2deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 50%) scale(1.08) rotate(4deg);
  }
}

@keyframes pfSparkHitFade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  45% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes pfSparkHitIce {
  0% {
    opacity: 0;
    transform: translate(-50%, 50%) scale(0.35) rotate(-12deg);
  }
  12% {
    opacity: 0.95;
    transform: translate(-50%, 50%) scale(1.08) rotate(0deg);
  }
  28% {
    opacity: 0.75;
    transform: translate(-50%, 50%) scale(0.96) rotate(2deg);
  }
  48% {
    opacity: 0.9;
    transform: translate(-50%, 50%) scale(1.02) rotate(-1deg);
  }
  70% {
    opacity: 0.45;
    transform: translate(-50%, 50%) scale(1.06) rotate(3deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 50%) scale(1.12) rotate(6deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pf-banner-spark,
  .pf-spark-hit {
    display: none;
  }
}

.pf-banner-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.75rem 0;
  gap: 0.85rem;
}

.pf-banner-align-center {
  align-items: center;
  text-align: center;
}

.pf-banner-align-right {
  align-items: flex-end;
  text-align: right;
}

.pf-banner-align-left {
  align-items: flex-start;
  text-align: left;
}

.pf-banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.pf-banner-kicker i { color: var(--pf-cyan); }

.pf-banner-title {
  margin: 0;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  line-height: 1.1;
  max-width: 18ch;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.pf-banner-align-center .pf-banner-title,
.pf-banner-align-center .pf-banner-sub { max-width: 36ch; }

.pf-banner-sub {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  opacity: 0.92;
  max-width: 44ch;
}

.pf-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.pf-banner-slide.is-active .pf-banner-kicker,
.pf-banner-slide.is-active .pf-banner-title,
.pf-banner-slide.is-active .pf-banner-sub,
.pf-banner-slide.is-active .pf-banner-actions {
  animation: pfBanIn 0.7s var(--pf-ease) both;
}

.pf-banner-slide.is-active .pf-banner-title { animation-delay: 0.04s; }
.pf-banner-slide.is-active .pf-banner-sub { animation-delay: 0.1s; }
.pf-banner-slide.is-active .pf-banner-actions { animation-delay: 0.16s; }

.pf-banner-slide[data-anim="slide"].is-active { transform: translateX(0); }
.pf-banner-slide[data-anim="slide"]:not(.is-active)[data-dir="next"] { transform: translateX(4%); }
.pf-banner-slide[data-anim="slide"]:not(.is-active)[data-dir="prev"] { transform: translateX(-4%); }
.pf-banner-slide[data-anim="zoom"].is-active { transform: scale(1); }
.pf-banner-slide[data-anim="zoom"]:not(.is-active) { transform: scale(1.06); }
.pf-banner-slide[data-anim="rise"].is-active { transform: translateY(0); }
.pf-banner-slide[data-anim="rise"]:not(.is-active) { transform: translateY(18px); }
.pf-banner-slide[data-anim="reveal"].is-active { clip-path: inset(0 0 0 0); }
.pf-banner-slide[data-anim="reveal"]:not(.is-active) {
  clip-path: inset(0 40% 0 0);
  opacity: 0;
}

@keyframes pfBanIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.pf-banner-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.18);
}

.pf-banner-progress > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--pf-teal), var(--pf-cyan));
  box-shadow: 0 0 12px rgba(125, 149, 35, 0.55);
}

.pf-banner-nav {
  position: absolute;
  top: auto;
  bottom: 0.9rem;
  z-index: 6;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 23, 42, 0.45);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: 0.2s;
}

.pf-banner-nav:hover {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.4);
}

.pf-banner-prev {
  left: 1.25rem;
}

.pf-banner-next {
  right: 1.25rem;
}

.pf-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 6;
}

.pf-banner-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.2s;
}

.pf-banner-dot.is-active {
  width: 22px;
  background: var(--pf-teal);
}

/* ========== SECTIONS ========== */
.pf-section {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.pf-section--tight {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.pf-section--alt {
  background: var(--pf-surface-2);
  border-block: 1px solid var(--pf-line);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.pf-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.pf-section-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  color: var(--pf-navy);
}

.pf-section-head p {
  margin: 0.35rem 0 0;
  color: var(--pf-muted);
  max-width: 52ch;
  font-size: 1rem;
}

.pf-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pf-teal);
  margin-bottom: 0.55rem;
}

.pf-section-link {
  color: var(--pf-teal);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.pf-section-link:hover { text-decoration: underline; }

/* ========== PAGE HERO ========== */
.pf-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: linear-gradient(180deg, var(--pf-surface-2) 0%, var(--pf-surface) 100%);
  border-bottom: 1px solid var(--pf-line);
  color: var(--pf-ink);
}

.pf-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(125, 149, 35, 0.1), transparent 45%),
    radial-gradient(circle at 6% 92%, rgba(52, 53, 133, 0.06), transparent 50%);
  pointer-events: none;
}

.pf-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.pf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

a.pf-card {
  text-decoration: none;
  color: inherit;
}

/* Honeypot anti-spam: fora da tela em vez de display:none, para continuar
   "visível" a bots simples que ignoram display/visibility. */
.pf-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pf-page-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 16ch;
  color: var(--pf-navy);
}

.pf-page-hero-lead {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--pf-ink-2);
  max-width: 46ch;
  line-height: 1.65;
}

.pf-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.pf-page-hero .btn-ghost {
  border-color: var(--pf-line-strong);
  color: var(--pf-navy);
}

.pf-page-hero .btn-ghost:hover {
  background: var(--pf-teal-soft);
  border-color: var(--pf-teal);
  color: var(--pf-teal);
}

.pf-page-hero-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pf-muted);
  margin-bottom: 1rem;
}

.pf-page-hero-breadcrumb a:hover { color: var(--pf-teal); }

.pf-page-hero-visual {
  display: grid;
  gap: 0.75rem;
}

.pf-page-hero-card {
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--pf-shadow);
}

.pf-page-hero-card strong {
  display: block;
  font-family: var(--pf-display);
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
  color: var(--pf-navy);
}

.pf-page-hero-card strong i { color: var(--pf-teal); }

.pf-page-hero-card span {
  font-size: 0.85rem;
  color: var(--pf-muted);
}

/* ========== CARDS ========== */
.pf-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.pf-card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pf-card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.pf-card {
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--pf-shadow);
  transition: transform 0.25s var(--pf-ease), box-shadow 0.25s var(--pf-ease), border-color 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pf-shadow-lg);
  border-color: rgba(125, 149, 35, 0.35);
}

.pf-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: var(--pf-teal-soft);
  color: var(--pf-teal);
  flex-shrink: 0;
}

.pf-card-title {
  margin: 0;
  font-size: 1.12rem;
  color: var(--pf-navy);
}

.pf-card-text {
  margin: 0;
  color: var(--pf-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pf-card-link {
  margin-top: auto;
  color: var(--pf-teal);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.pf-card-link:hover { text-decoration: underline; }

.pf-card--featured {
  background: linear-gradient(160deg, #1e293b, #0f172a);
  color: #fff;
  border-color: transparent;
}

.pf-card--featured .pf-card-text { color: rgba(255, 255, 255, 0.78); }
.pf-card--featured .pf-card-title { color: #fff; }
.pf-card--featured .pf-card-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.pf-service-card {
  position: relative;
  overflow: hidden;
}

.pf-service-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 149, 35, 0.12), transparent 70%);
  pointer-events: none;
}

/* ========== STATS ========== */
.pf-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pf-stat {
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius);
  padding: 1.25rem 1.3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--pf-shadow);
}

.pf-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pf-teal), var(--pf-cyan));
}

.pf-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pf-muted);
}

.pf-stat-value {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  color: var(--pf-navy);
}

.pf-stat-suffix {
  font-size: 0.95rem;
  color: var(--pf-teal);
  font-weight: 700;
}

.pf-stat-icon {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--pf-teal-soft);
  color: var(--pf-teal);
  font-size: 0.95rem;
}

.pf-stats-band {
  background: var(--pf-surface-2);
  border: 1px solid var(--pf-line);
  color: var(--pf-ink);
  border-radius: calc(var(--pf-radius) + 4px);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.pf-stats-band .pf-stat {
  background: var(--pf-surface);
  border-color: var(--pf-line);
  box-shadow: var(--pf-shadow);
}

.pf-stats-band .pf-stat::before { background: linear-gradient(90deg, var(--pf-teal), var(--pf-cyan)); }
.pf-stats-band .pf-stat-label { color: var(--pf-muted); }
.pf-stats-band .pf-stat-value { color: var(--pf-navy); }
.pf-stats-band .pf-stat-icon {
  background: var(--pf-teal-soft);
  color: var(--pf-teal);
}

/* ========== MANIFESTO / SLOGAN ========== */
.pf-manifesto {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #3b3c86 0%, var(--pf-navy) 55%, #262763 100%);
  color: #fff;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.pf-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(180, 209, 71, 0.22), transparent 45%),
    radial-gradient(circle at 4% 96%, rgba(180, 209, 71, 0.14), transparent 50%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 46px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 46px);
  pointer-events: none;
}

.pf-manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pf-manifesto-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pf-cyan);
}

.pf-manifesto h2 {
  margin: 0 0 1.1rem;
  font-family: var(--pf-display);
  font-size: clamp(1.9rem, 4.6vw, 2.85rem);
  line-height: 1.16;
  color: #fff;
}

.pf-manifesto h2 em {
  font-style: normal;
  color: var(--pf-cyan);
}

.pf-manifesto-lead {
  margin: 0 auto 2.5rem;
  max-width: 64ch;
  font-size: clamp(0.96rem, 1.6vw, 1.08rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.pf-manifesto-lead strong { color: #fff; }

.pf-manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.pf-manifesto-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--pf-radius);
  padding: 1.25rem 1.35rem;
}

.pf-manifesto-item i {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  color: var(--pf-cyan);
}

.pf-manifesto-item strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--pf-display);
  font-size: 0.98rem;
  color: #fff;
}

.pf-manifesto-item p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* ========== FORMS ========== */
.pf-form {
  display: grid;
  gap: 1rem;
}

.pf-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pf-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pf-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pf-ink-2);
}

.pf-field input,
.pf-field select,
.pf-field textarea {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid var(--pf-line-strong);
  background: #fff;
  color: var(--pf-ink);
  padding: 0.75rem 1rem;
  outline: none;
  transition: 0.2s var(--pf-ease);
}

.pf-field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.55;
}

.pf-field input:focus,
.pf-field select:focus,
.pf-field textarea:focus {
  border-color: var(--pf-teal);
  box-shadow: 0 0 0 4px rgba(125, 149, 35, 0.12);
}

.pf-field-hint {
  font-size: 0.78rem;
  color: var(--pf-muted);
}

.pf-field-error {
  font-size: 0.78rem;
  color: var(--pf-danger);
  font-weight: 600;
}

.pf-form-panel {
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--pf-shadow);
}

.pf-form-panel h3 {
  margin: 0 0 1rem;
  font-family: var(--pf-display);
  color: var(--pf-navy);
  font-size: 1.25rem;
}

.pf-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--pf-ink-2);
}

.pf-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--pf-teal);
}

/* ========== FAQ ========== */
.pf-faq {
  display: grid;
  gap: 0.75rem;
}

.pf-faq-item {
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius-sm);
  overflow: hidden;
  box-shadow: var(--pf-shadow);
}

.pf-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  font-weight: 700;
  color: var(--pf-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.2s;
}

.pf-faq-item summary::-webkit-details-marker { display: none; }

.pf-faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--pf-teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.pf-faq-item[open] summary {
  background: var(--pf-teal-soft);
}

.pf-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.pf-faq-body {
  padding: 0 1.2rem 1.1rem;
  color: var(--pf-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.pf-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* ========== CTA BAND ========== */
.pf-cta-band {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--pf-radius) + 6px);
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #f0fdfa 0%, var(--pf-surface-2) 100%);
  border: 1px solid var(--pf-line);
  color: var(--pf-ink);
  box-shadow: var(--pf-shadow);
}

.pf-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 25%, rgba(125, 149, 35, 0.12), transparent 42%),
    radial-gradient(circle at 92% 85%, rgba(52, 53, 133, 0.07), transparent 46%);
  pointer-events: none;
}

.pf-cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.pf-cta-band h2 {
  margin: 0 0 0.5rem;
  font-family: var(--pf-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--pf-navy);
}

.pf-cta-band p {
  margin: 0;
  color: var(--pf-ink-2);
  max-width: 48ch;
}

.pf-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pf-cta-band .btn-ghost {
  border-color: var(--pf-line-strong);
  color: var(--pf-navy);
}

.pf-cta-band .btn-ghost:hover {
  background: var(--pf-teal-soft);
  border-color: var(--pf-teal);
  color: var(--pf-teal);
}

/* ========== MARQUEE ========== */
.pf-marquee {
  overflow: hidden;
  border-block: 1px solid var(--pf-line);
  background: var(--pf-surface);
  padding: 0.85rem 0;
}

.pf-marquee-track {
  display: flex;
  width: max-content;
  animation: pfMarquee 32s linear infinite;
  gap: 2.5rem;
}

.pf-marquee:hover .pf-marquee-track {
  animation-play-state: paused;
}

.pf-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pf-ink-2);
}

.pf-marquee-item i {
  color: var(--pf-teal);
}

@keyframes pfMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== FOOTER ========== */
.pf-footer {
  position: relative;
  margin-top: auto;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6f8 100%);
  border-top: 1px solid var(--pf-line);
  color: var(--pf-ink-2);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.pf-footer-glow {
  display: none;
}

.pf-footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}

.pf-footer-brand p {
  margin: 0.85rem 0 0;
  max-width: 34ch;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--pf-muted);
}

.pf-footer-slogan {
  margin: 1rem 0 0 !important;
  font-family: var(--pf-display);
  font-size: 1.05rem !important;
  font-weight: 700;
  line-height: 1.4 !important;
  color: var(--pf-navy) !important;
}

.pf-footer-contact {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.pf-footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--pf-ink-2);
}

.pf-footer-contact a:hover { color: var(--pf-teal); }

.pf-footer h4 {
  margin: 0 0 0.85rem;
  font-family: var(--pf-display);
  font-size: 0.95rem;
  color: var(--pf-navy);
}

.pf-footer-links {
  display: grid;
  gap: 0.45rem;
}

.pf-footer-links a {
  font-size: 0.88rem;
  color: var(--pf-muted);
  transition: color 0.2s;
}

.pf-footer-links a:hover { color: var(--pf-teal); }

.pf-footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--pf-line);
  padding-block: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--pf-muted);
}

/* ========== WHATSAPP FAB ========== */
.pf-wa-fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s var(--pf-ease), box-shadow 0.2s;
}

.pf-wa-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}

.pf-wa-fab::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.55;
  animation: pfWaRing 2s ease-out infinite;
  pointer-events: none;
}

@keyframes pfWaRing {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ========== REVEAL ANIMATIONS ========== */
.pf-js [data-reveal].pf-reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--pf-ease), transform 0.55s var(--pf-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.pf-js [data-reveal].pf-reveal-ready.is-revealed {
  opacity: 1;
  transform: none;
}

[data-reveal="fade"] { transform: none !important; }
.pf-js [data-reveal="fade"].pf-reveal-ready { opacity: 0; }
.pf-js [data-reveal="fade"].pf-reveal-ready.is-revealed { opacity: 1; }

[data-reveal="scale"] { transform: scale(0.96) !important; }
.pf-js [data-reveal="scale"].pf-reveal-ready.is-revealed { transform: scale(1) !important; }

[data-reveal="left"] { transform: translateX(-24px) !important; }
.pf-js [data-reveal="left"].pf-reveal-ready.is-revealed { transform: none !important; }

[data-reveal="right"] { transform: translateX(24px) !important; }
.pf-js [data-reveal="right"].pf-reveal-ready.is-revealed { transform: none !important; }

/* ========== SPLIT / PANEL / TESTIMONIAL / PROCESS ========== */
.pf-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.pf-panel {
  background: var(--pf-surface-2);
  border-color: var(--pf-line);
  position: relative;
  overflow: hidden;
}

.pf-panel::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 149, 35, 0.16), transparent 70%);
  pointer-events: none;
}

.pf-panel h3 {
  position: relative;
  z-index: 1;
  font-family: var(--pf-display);
  color: var(--pf-navy);
  margin: 0 0 0.85rem;
  font-size: 1.18rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pf-panel h3 i { color: var(--pf-teal); }
.pf-panel > *:not(h3) { position: relative; z-index: 1; }

.pf-panel--dark {
  background: linear-gradient(155deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
}

.pf-panel--dark h3 { color: #fff; }
.pf-panel--dark h3 i { color: #5eead4; }
.pf-panel--dark .pf-card-text { color: rgba(255, 255, 255, 0.82); }

/* Testimonials */
.pf-testimonial {
  position: relative;
  padding-top: 2.75rem;
}

.pf-testimonial-quote {
  position: absolute;
  top: 1.1rem;
  left: 1.35rem;
  font-family: var(--pf-display);
  font-size: 2.75rem;
  line-height: 1;
  color: var(--pf-teal-soft);
  z-index: 0;
}

.pf-testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.pf-testimonial-text {
  margin: 0.65rem 0 0;
  color: var(--pf-ink-2);
  font-weight: 550;
  font-size: 1rem;
  line-height: 1.6;
}

.pf-testimonial-footer {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--pf-line);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pf-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--pf-display);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, var(--pf-teal), var(--pf-navy));
}

.pf-testimonial-who { display: flex; flex-direction: column; line-height: 1.3; }
.pf-testimonial-who strong { font-size: 0.92rem; color: var(--pf-navy); }
.pf-testimonial-who span { font-size: 0.8rem; color: var(--pf-muted); }

/* Process / steps */
.pf-process-card { position: relative; }

.pf-process-num {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  font-family: var(--pf-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--pf-line-strong);
  line-height: 1;
}

/* ========== UTILITIES ========== */
.pf-text-muted { color: var(--pf-muted); }
.pf-text-center { text-align: center; }
.pf-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.pf-prose { max-width: 68ch; line-height: 1.75; color: var(--pf-ink-2); }
.pf-prose h2, .pf-prose h3 { color: var(--pf-navy); margin-top: 1.75rem; }
.pf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--pf-teal-soft);
  color: var(--pf-teal);
}

.pf-badge--value {
  background: var(--pf-navy-soft);
  color: var(--pf-navy);
  text-transform: none;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
}

.pf-badge--value i { color: var(--pf-teal); }

.pf-values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

/* ========== TIMELINE (Nossa trajetória) ========== */
.pf-timeline-track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  padding: 0.25rem 0.25rem 1rem;
  scroll-snap-type: x proximity;
}

.pf-timeline-track::-webkit-scrollbar { height: 6px; }
.pf-timeline-track::-webkit-scrollbar-thumb { background: var(--pf-line-strong); border-radius: 999px; }

.pf-timeline-item {
  flex: 0 0 208px;
  scroll-snap-align: start;
}

.pf-timeline-dot-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.9rem;
}

.pf-timeline-dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pf-teal), var(--pf-navy));
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(52, 53, 133, 0.22);
}

.pf-timeline-line {
  flex: 1;
  height: 2px;
  background: var(--pf-line-strong);
  margin-left: 0.5rem;
}

.pf-timeline-item:last-child .pf-timeline-line { display: none; }

.pf-timeline-year {
  display: block;
  font-family: var(--pf-display);
  font-weight: 800;
  color: var(--pf-navy);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.pf-timeline-item p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--pf-ink-2);
}

/* ========== FOTO INSTITUCIONAL (sobre) ========== */
.pf-about-photo {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pf-about-photo img {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: var(--pf-shadow);
}

/* ========== GALERIA DE FROTA ========== */
.pf-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.pf-fleet-card {
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius);
  padding: 1rem 1rem 1.1rem;
  text-align: center;
  box-shadow: var(--pf-shadow);
}

.pf-fleet-card img {
  width: 100%;
  height: 128px;
  object-fit: contain;
  margin-bottom: 0.6rem;
}

.pf-fleet-card strong {
  display: block;
  color: var(--pf-navy);
  font-family: var(--pf-display);
  font-size: 0.95rem;
}

/* ========== SELOS DE CERTIFICAÇÃO ========== */
.pf-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius);
}

.pf-cert-row img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.08);
}

/* ========== FOTO DE ESTRUTURA (unidades) ========== */
.pf-structure-card {
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius);
  overflow: hidden;
  box-shadow: var(--pf-shadow);
}

.pf-structure-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.pf-structure-card-body { padding: 1.4rem 1.5rem 1.6rem; }

.pf-structure-card-body h3 {
  font-family: var(--pf-display);
  color: var(--pf-navy);
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.pf-structure-specs {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

.pf-structure-specs li {
  font-size: 0.85rem;
  color: var(--pf-ink-2);
  display: flex;
  gap: 0.4rem;
}

.pf-structure-specs i { color: var(--pf-teal); margin-top: 0.15rem; }

@media (max-width: 860px) {
  .pf-fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .pf-fleet-grid { grid-template-columns: 1fr; }
  .pf-structure-specs { grid-template-columns: 1fr; }
  .pf-about-photo { flex-direction: column; text-align: center; }
}

.pf-alert {
  padding: 0.85rem 1rem;
  border-radius: var(--pf-radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.pf-alert--ok {
  background: #d1fae5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.pf-alert--err {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* ========== RESPONSIVE — 980px ========== */
@media (max-width: 980px) {
  .hide-sm { display: none !important; }

  .pf-nav-inner {
    grid-template-columns: auto 1fr auto;
  }

  .pf-burger { display: inline-flex; }

  .pf-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, calc(100vw - 48px));
    height: 100dvh;
    z-index: 88;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.25rem;
    padding: calc(var(--pf-topbar-h) + var(--pf-header-h) + 1rem) 1.15rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid var(--pf-line);
    box-shadow: -20px 0 50px rgba(15, 23, 42, 0.1);
    transform: translateX(105%);
    transition: transform 0.35s var(--pf-ease);
    overflow-y: auto;
  }

  .pf-nav.is-open { transform: translateX(0); }

  .pf-nav-link {
    height: auto;
    min-height: 46px;
    border-radius: 12px;
    padding: 0.75rem 0.95rem;
  }

  .pf-page-hero-inner,
  .pf-faq-grid,
  .pf-form-row,
  .pf-grid-2,
  .pf-split {
    grid-template-columns: 1fr;
  }

  .pf-card-grid,
  .pf-card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-manifesto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pf-banner {
    height: min(var(--pf-banner-h, 520px), 68vw);
    min-height: 300px;
  }

  .pf-banner-prev { left: 10px; }
  .pf-banner-next { right: 10px; }
}

/* ========== RESPONSIVE — 560px ========== */
@media (max-width: 560px) {
  :root {
    --pf-header-h: 68px;
  }

  .pf-logo-img { height: 46px; }

  .pf-topbar-inner {
    justify-content: center;
    font-size: 0.72rem;
  }

  .pf-topbar span:first-child { display: none; }

  .pf-card-grid,
  .pf-card-grid--2,
  .pf-card-grid--4,
  .pf-stats,
  .pf-manifesto-grid {
    grid-template-columns: 1fr;
  }

  .pf-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pf-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .pf-cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pf-banner {
    height: auto;
    aspect-ratio: auto;
    min-height: 440px;
  }

  .pf-banner-inner {
    padding: 1.75rem 0 2.25rem;
    gap: 0.65rem;
  }

  .pf-banner-kicker {
    font-size: 0.7rem;
  }

  .pf-banner-title {
    font-size: 1.55rem;
    line-height: 1.2;
    max-width: 100%;
  }

  .pf-banner-sub {
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 100%;
  }

  .pf-banner-actions .btn {
    font-size: 0.88rem;
    padding: 0.65rem 1.1rem;
  }

  .pf-banner-nav {
    display: none;
  }

  .pf-wa-fab {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .pf-banner-slide,
  .pf-banner-slide.is-active .pf-banner-kicker,
  .pf-banner-slide.is-active .pf-banner-title,
  .pf-banner-slide.is-active .pf-banner-sub,
  .pf-banner-slide.is-active .pf-banner-actions {
    animation: none !important;
    transition: opacity 0.2s ease !important;
  }

  .pf-banner-progress { display: none; }

  .pf-marquee-track { animation: none; }

  .pf-js [data-reveal].pf-reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pf-wa-fab::after { animation: none; opacity: 0; }
}

@media (hover: none) {
  .pf-card:hover { transform: none; box-shadow: var(--pf-shadow); }
}
