/* PortalFIDC+IA — Institucional
   Paleta inspirada no design original (azul-escuro profundo + dourado/azul-claro). */

:root {
  --pf-bg: #0a1429;
  --pf-bg-2: #0f1e3d;
  --pf-bg-darker: #060d1c;
  --pf-bg-light: #f7f9fc;
  --pf-text: #1c2536;
  --pf-text-muted: #5a6678;
  --pf-accent: #4a90e2;
  --pf-accent-2: #c9a96e;
  --pf-border: #e3e8ef;
  --pf-shadow: 0 10px 30px rgba(10, 20, 41, 0.08);
  --pf-shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.35);
  --pf-radius: 14px;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Scrollbar transparente · Firefox */
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* IE/Edge legacy */
}

/* Scrollbar transparente · Chrome/Edge/Safari (Webkit) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--pf-text);
  background: var(--pf-bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ────────────────────────────────────────────────────────────── */
.pf-navbar {
  background: rgba(10, 20, 41, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.2s ease, background 0.2s ease;
}

.pf-navbar .nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem !important;
  transition: color 0.2s ease;
}

.pf-navbar .nav-link:hover,
.pf-navbar .nav-link:focus {
  color: #fff !important;
}

/* Item ativo (página atual) — "Portal FIDC + IA" na institucional.
   Visual canônico do <LandingNav> do público: borda inferior cyan-300 + texto cyan-300. */
.pf-navbar .nav-link.active,
.pf-navbar .nav-link[aria-current="page"] {
  color: #67e8f9 !important;
  /* cyan-300 */
  border-bottom: 2px solid #67e8f9;
  border-radius: 0;
}

.pf-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.25);
}

.pf-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* ── LOGO ──────────────────────────────────────────────────────────────── */
.pf-brand {
  padding: 0;
  display: inline-flex;
  align-items: center;
}

.pf-brand-logo {
  height: 70px;
  width: auto;
  display: block;
}

.pf-brand-logo-hero {
  display: block;
  height: 70px;
  width: auto;
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .pf-brand-logo-hero {
    height: 54px;
  }
}

@media (max-width: 575.98px) {
  .pf-brand-logo {
    height: 54px;
  }

  .pf-brand-logo-hero {
    height: 52px;
  }
}

/* ── BOTÕES ────────────────────────────────────────────────────────────── */
.btn-pf-primary {
  background: linear-gradient(135deg, var(--pf-accent) 0%, #2e5fa8 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-pf-primary:hover,
.btn-pf-primary:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74, 144, 226, 0.45);
}

.btn-pf-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.btn-pf-outline:hover,
.btn-pf-outline:focus {
  background: #fff;
  color: var(--pf-bg);
  border-color: #fff;
}

/* ── HERO ──────────────────────────────────────────────────────────────── */
.pf-hero {
  position: relative;
  min-height: 75vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-start;
}

.pf-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Hero: foto back_persona04 ocupa todo o background, sem véus tingindo a imagem */
.pf-hero-bg-pattern {
  background:
    url('../img/back_persona04.webp') center center / cover no-repeat,
    var(--pf-bg);
}

/* Coluna da persona — flex centralizado no desktop, vira camada full-body no mobile */
.pf-hero-persona-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pf-hero-persona {
  max-height: 78vh;
  width: auto;
  animation: pf-hero-rise 0.9s ease both;
}

/* Desktop · desce o bloco do texto da hero 200px (logo+h1+sub+CTA),
   sem mover a persona (position relative não afeta o flow). */
@media (min-width: 992px) {
  .pf-hero .col-lg-7 {
    position: relative;
    top: 100px;
  }
}

/* MOBILE — persona vira BACKGROUND full-body atrás do texto, sem corte */
@media (max-width: 991.98px) {

  /* Texto da hero precisa ficar acima da persona */
  .pf-hero .row {
    position: relative;
  }

  .pf-hero .col-lg-7 {
    position: relative;
    z-index: 2;
    margin-top: 30vh;
  }

  /* Coluna da persona ocupa toda a section como overlay de fundo · alinhada ao TOPO
     pra subir a figura e deixar o rosto/torso mais visível no mobile */
  .pf-hero-persona-col {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    padding: 0;
    margin: 0;
    align-items: flex-start;
    justify-content: center;
    pointer-events: none;
  }

  /* Imagem inteira visível, alinhada pelo topo, sem nenhum corte */
  .pf-hero-persona-col .pf-hero-persona {
    height: 100%;
    max-height: none;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center top;
    opacity: 0.55;
    /* permite leitura do texto sobreposto */
  }
}

@keyframes pf-hero-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Overlay leve: escurece só o lado ESQUERDO o suficiente pra legibilidade do título;
   lado direito fica quase limpo pra back_persona04 aparecer nítido. */
.pf-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(6, 13, 28, 0.62) 0%,
      rgba(10, 20, 41, 0.35) 45%,
      rgba(10, 20, 41, 0.05) 75%,
      rgba(10, 20, 41, 0.00) 100%);
  z-index: 1;
}

.pf-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
}

.pf-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
}

.pf-hero-title .pf-accent {
  color: var(--pf-accent-2);
}

.pf-hero-sub {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  line-height: 1.65;
}

.pf-hero-sub strong {
  color: var(--pf-accent-2);
  font-weight: 700;
}

.pf-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── SEÇÕES ────────────────────────────────────────────────────────────── */
.pf-section {
  padding: 5.5rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.pf-section>.container {
  width: 100%;
}

.pf-section-light {
  background: #fff;
}

.pf-section-dark {
  background: linear-gradient(180deg, var(--pf-bg) 0%, var(--pf-bg-2) 100%);
  color: #fff;
}

.pf-section-darker {
  background: var(--pf-bg-darker);
  color: #fff;
}

.pf-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pf-accent);
  margin-bottom: 1rem;
}

.pf-eyebrow-light {
  color: var(--pf-accent-2);
}

.pf-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
  color: var(--pf-text);
}

.pf-section-dark .pf-section-title,
.pf-section-darker .pf-section-title {
  color: #fff;
}

/* ── BULLETS ───────────────────────────────────────────────────────────── */
.pf-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--pf-text);
}

.pf-bullets li i {
  color: var(--pf-accent);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── PILLAR GRID (3 colunas: Operacionais / Regulatórios / Gerenciais) ── */
.pf-pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .pf-pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pf-pillar {
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  padding: 1.5rem 1.2rem;
  box-shadow: var(--pf-shadow);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pf-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 20, 41, 0.12);
}

.pf-pillar-accent {
  border-top: 4px solid var(--pf-accent-2);
}

.pf-pillar-icon {
  font-size: 2rem;
  color: var(--pf-accent);
  margin-bottom: 0.75rem;
}

.pf-pillar-accent .pf-pillar-icon {
  color: var(--pf-accent-2);
}

.pf-pillar h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--pf-text);
}

.pf-pillar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf-pillar ul li {
  font-size: 0.9rem;
  color: var(--pf-text-muted);
  padding: 0.2rem 0;
}

/* ── STAT GRID (copiloto) ─────────────────────────────────────────────── */
.pf-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.pf-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pf-radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
}

.pf-stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--pf-accent-2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pf-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ── CARD MINI (alertas) ──────────────────────────────────────────────── */
.pf-card-mini {
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  padding: 1.3rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(10, 20, 41, 0.04);
}

.pf-card-mini:hover {
  transform: translateY(-3px);
  box-shadow: var(--pf-shadow);
}

.pf-card-mini i {
  font-size: 1.6rem;
  color: var(--pf-accent);
  margin-bottom: 0.6rem;
  display: block;
}

.pf-card-mini h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.pf-card-mini p {
  font-size: 0.9rem;
  color: var(--pf-text-muted);
  margin: 0;
}

/* ── QUOTE CARD ───────────────────────────────────────────────────────── */
.pf-quote-card {
  background: linear-gradient(135deg, var(--pf-bg) 0%, var(--pf-bg-2) 100%);
  color: #fff;
  border-radius: var(--pf-radius);
  padding: 2rem;
  position: relative;
  box-shadow: var(--pf-shadow-dark);
}

.pf-quote-mark i {
  font-size: 2.5rem;
  color: var(--pf-accent-2);
  opacity: 0.6;
}

.pf-quote-text {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0.5rem 0;
}

.pf-quote-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

/* ── FEATURE CARD (regulatório) ──────────────────────────────────────── */
.pf-feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--pf-radius);
  padding: 2rem;
  height: 100%;
}

.pf-feature-accent {
  background: linear-gradient(160deg, rgba(201, 169, 110, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(201, 169, 110, 0.3);
}

.pf-feature-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.pf-feature-head i {
  font-size: 2rem;
  color: var(--pf-accent);
}

.pf-feature-accent .pf-feature-head i {
  color: var(--pf-accent-2);
}

.pf-feature-head h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.pf-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf-feature-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.pf-feature-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--pf-accent-2);
  font-weight: 700;
}

/* ── BADGE CARD ──────────────────────────────────────────────────────── */
.pf-badge-card {
  padding: 2rem 1.2rem;
}

.pf-badge-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pf-accent) 0%, #2e5fa8 100%);
  color: #fff;
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 24px rgba(74, 144, 226, 0.3);
}

.pf-badge-card:nth-child(2) .pf-badge-icon,
.pf-badge-card:has(+ .pf-badge-card)+.pf-badge-card .pf-badge-icon {
  /* só decoração; fallback abaixo */
}

.pf-badge-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.pf-badge-card p {
  color: var(--pf-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ── SOURCE CARD (ecossistema) ───────────────────────────────────────── */
.pf-source-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--pf-radius);
  padding: 1.5rem;
  height: 100%;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pf-source-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.4);
}

.pf-source-card i {
  font-size: 2.4rem;
  color: var(--pf-accent-2);
  display: block;
  margin-bottom: 0.8rem;
}

.pf-source-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.pf-source-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ── TESTIMONIAL ─────────────────────────────────────────────────────── */
.pf-testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: var(--pf-radius);
  padding: 3rem 2rem;
  box-shadow: none;
}

.pf-testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 500;
  color: var(--pf-text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.pf-testimonial-author strong {
  display: block;
  font-size: 1.05rem;
  color: var(--pf-text);
  font-weight: 700;
}

.pf-testimonial-author span {
  display: block;
  font-size: 0.9rem;
  color: var(--pf-text-muted);
  margin-top: 2px;
}

/* ── CTA FINAL ───────────────────────────────────────────────────────── */
.pf-cta-final {
  position: relative;
  padding: 6rem 0;
  /* Foto back_persona07 visível — só um veil leve à esquerda pra legibilidade do título */
  background: url('../img/back_persona07.webp') center / cover no-repeat;
  color: #fff;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Overlay leve dentro do CTA — só o suficiente pro título branco ler */
.pf-cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(6, 13, 28, 0.35) 0%,
      rgba(10, 20, 41, 0.20) 50%,
      rgba(10, 20, 41, 0.10) 100%);
  z-index: 1;
  pointer-events: none;
}

.pf-cta-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 12vh;
  text-align: left !important;
}

.pf-cta-content .pf-section-title,
.pf-cta-content .mt-4,
.pf-cta-content p {
  text-align: left !important;
}

/* Título da s13 · tamanho moderado, fica equilibrado sobre o background */
.pf-cta-final .pf-section-title {
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.65);
}

.pf-cta-final .pf-brand-logo-hero {
  margin-left: auto;
  margin-right: auto;
}

/* s13 · MOBILE — título sobe 33% (de 12vh pra 8vh), botão WhatsApp empurrado
   pra baixo e centralizado (título continua à esquerda como no desktop) */
@media (max-width: 991.98px) {
  #s13-cta-final .pf-cta-content {
    margin-top: 5.4vh;
  }

  #s13-cta-final .pf-cta-content .mt-4 {
    text-align: center !important;
    margin-top: 15.6rem !important;
  }

  #s13-cta-final .pf-cta-content>p {
    text-align: center !important;
  }
}

/* ── FOOTER ──────────────────────────────────────────────────────────── */
/* ── FOOTER · réplica do MinimalFooter.tsx da landpage fidc-portal-publico ── */
/* Fundo preto puro · logo PORTALFIDC à esquerda · copyright pequeno embaixo. */
.pf-footer {
  background: #000;
  color: #fff;
}

.pf-footer-inner {
  max-width: 1536px;
  /* max-w-screen-2xl */
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  /* py-14 px-6 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  /* gap-5 */
}

.pf-footer-logo {
  height: 64px;
  /* h-16 */
  width: auto;
}

.pf-footer-copy {
  font-size: 0.75rem;
  /* text-xs */
  color: rgba(255, 255, 255, 0.55);
  /* text-white/55 */
  letter-spacing: 0.025em;
  /* tracking-wide */
  margin: 0;
}

@media (min-width: 1024px) {
  .pf-footer-inner {
    padding: 4rem 2.5rem;
    /* lg:py-16 lg:px-10 */
  }

  .pf-footer-logo {
    height: 80px;
    /* lg:h-20 */
  }
}

/* ── S02 · AGENTE IA · composição persona + mobile + tabela 3-col ────── */
.pf-s02 {
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.pf-s02-grid {
  display: grid;
  /* Coluna da foto reduzida pra 30% · direita ocupa 70% */
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  min-height: 100vh;
  position: relative;
}

/* ESQUERDA — persona em background (mantém overflow:hidden pra conter a foto) */
.pf-s02-left {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  z-index: 1;
}

.pf-s02-persona {
  position: absolute;
  inset: 0;
  background: url('../img/back_persona02.webp') 0px center / cover no-repeat;
  z-index: 0;
}

/* Mobile é IRMÃO do grid · posicionado absoluto no .pf-s02 · z-index acima de tudo */
.pf-s02-mobile {
  position: absolute;
  top: 50%;
  /* Acompanha a nova boundary 30/70 — pousa logo após a foto */
  left: 30%;
  transform: translate(-50%, -50%);
  height: 52%;
  width: auto;
  z-index: 20;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  cursor: pointer;
  transform-origin: center center;
  pointer-events: auto;
}

/* hover: zoom suave no celular · volta ao sair */
.pf-s02-mobile:hover {
  transform: translate(-50%, -50%) scale(1.18);
}

/* DIREITA — conteúdo (logo + headline + tabela + bullets + cta) */
.pf-s02-right {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fa 100%);
  display: flex;
  align-items: center;
  /* padding-left generoso pra empurrar texto além da boundary onde flutua o mobile (≈38% do viewport) */
  padding: 4rem 3rem 4rem clamp(6rem, 14vw, 13rem);
  position: relative;
}

/* sutil pattern geométrico de fundo (igual à referência) */
.pf-s02-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(74, 144, 226, 0.04) 50%, transparent 60%),
    linear-gradient(45deg, transparent 60%, rgba(10, 20, 41, 0.03) 70%, transparent 80%);
  pointer-events: none;
}

.pf-s02-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

/* Logo oficial PortalFIDC (PNG) */
.pf-s02-logo-img {
  display: block;
  height: auto;
  width: auto;
  max-width: 280px;
  max-height: 70px;
  margin-bottom: 2rem;
  object-fit: contain;
}

.pf-s02-headline {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.45;
  color: #1c2536;
  margin: 0 0 2rem;
  letter-spacing: -0.2px;
}

.pf-s02-accent {
  color: #d97706;
  font-weight: 600;
}

/* Tabela 3-col estilo minimal */
.pf-s02-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.4rem;
  border: 1px solid rgba(28, 37, 54, 0.18);
  border-radius: 18px;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.6);
}

.pf-s02-col+.pf-s02-col {
  border-left: 1px solid rgba(28, 37, 54, 0.10);
  padding-left: 1.5rem;
}

.pf-s02-col-head {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #1c2536;
  border-bottom: 1px solid rgba(28, 37, 54, 0.25);
  padding-bottom: 0.5rem;
  margin: 0 0 0.85rem;
}

.pf-s02-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf-s02-col li {
  font-size: 0.95rem;
  color: #1c2536;
  padding: 0.18rem 0;
  font-weight: 400;
}

/* 3 bullets com check verde */
.pf-s02-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pf-s02-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.45rem 0;
  font-size: 0.98rem;
  color: #1c2536;
  line-height: 1.45;
}

.pf-s02-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA preto pill */
.pf-s02-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  background: #111827;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pf-s02-cta:hover,
.pf-s02-cta:focus {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.pf-s02-cta i {
  transition: transform 0.2s ease;
}

.pf-s02-cta:hover i {
  transform: translateX(4px);
}

/* RESPONSIVE — s02 */
@media (max-width: 991.98px) {
  .pf-s02-grid {
    grid-template-columns: 1fr;
  }

  .pf-s02-left {
    min-height: 460px;
  }

  /* Persona ancorada no canto inferior-esquerdo do container no mobile. */
  .pf-s02-persona {
    background-size: auto 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
  }

  /* Mobile celular · desce 40vh + bem à direita */
  .pf-s02-mobile {
    top: calc(230px + 40vh);
    left: auto;
    right: 4%;
    transform: translateY(-50%);
    height: auto;
    max-height: 420px;
  }

  .pf-s02-mobile:hover {
    transform: translateY(-50%) scale(1.12);
  }

  .pf-s02-mobile:hover {
    transform: translate(-50%, -50%) scale(1.12);
  }

  .pf-s02-right {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .pf-s02-left {
    min-height: 380px;
  }

  .pf-s02-mobile {
    top: 190px;
    max-height: 340px;
  }

  .pf-s02-table {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.2rem;
  }

  .pf-s02-col+.pf-s02-col {
    border-left: 0;
    border-top: 1px solid rgba(28, 37, 54, 0.10);
    padding-left: 0;
    padding-top: 1rem;
  }

  .pf-s02-logo-img {
    max-width: 220px;
    max-height: 56px;
  }

  .pf-s02-headline {
    font-size: 1.15rem;
  }
}

/* ── S03 · COPILOTO CONVERSACIONAL · réplica layout Wix ────────────────── */
/* Section inteira tem back_persona02 como background full bleed (1920x1080
   no original "back_persona_2_edited"). Persona_2.webp entra como cutout
   real sobreposto à direita; 2 mobiles à esquerda; logo + headline no topo. */
.pf-s03 {
  position: relative;
  padding: 5rem 0;
  color: #fff;
  overflow: hidden;
  background: var(--pf-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.pf-s03>.container {
  width: 100%;
}

.pf-s03-bg {
  position: absolute;
  inset: 0;
  background: url('../img/back_hero_azul.webp') center center / cover no-repeat;
  z-index: 0;
}

.pf-s03-container {
  position: relative;
  z-index: 1;
}

.pf-s03-frame {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 780px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 2.5rem 2.5rem 0;
  overflow: hidden;
  isolation: isolate;
}

/* Overlay suave dentro do frame: escurece bordas/esquerda pra dar legibilidade
   sem matar a foto de fundo. */
.pf-s03-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(6, 13, 28, 0.55) 0%,
      rgba(10, 20, 41, 0.30) 35%,
      rgba(10, 20, 41, 0.10) 60%,
      rgba(10, 20, 41, 0.00) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Persona_2.webp — recorte do businessman, alinhado à direita do frame.
   Wix usa focalPoint 48%/28% (face em cima). Espelhamos com object-position. */
.pf-s03-persona-img {
  position: absolute;
  right: 20px;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 55%;
  object-fit: contain;
  object-position: right bottom;
  z-index: 2;
  pointer-events: none;
}

/* Logo PortalFIDC+IA centralizado no topo */
.pf-s03-logo {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-bottom: 1.2rem;
}

.pf-s03-logo img {
  max-height: 56px;
  width: auto;
}

/* Headline — descreve o copiloto, alinhada à esquerda */
.pf-s03-headline {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.3px;
  max-width: 720px;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.pf-s03-headline-accent {
  color: var(--pf-accent-2);
  font-weight: 600;
}

/* Dois mobiles sobrepostos à esquerda — sem borda nem sombra · hover-zoom canônico */
.pf-s03-mobile {
  position: absolute;
  width: auto;
  height: 62%;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  cursor: pointer;
  transform-origin: center center;
  z-index: 3;
}

.pf-s03-mobile-back {
  left: 6%;
  bottom: 14%;
  transform: none;
}

.pf-s03-mobile-back:hover {
  transform: scale(1.12);
  z-index: 5;
}

.pf-s03-mobile-front {
  left: 22%;
  bottom: 4%;
  transform: none;
  z-index: 4;
}

.pf-s03-mobile-front:hover {
  transform: scale(1.12);
  z-index: 5;
}

/* RESPONSIVE — s03 */
@media (max-width: 991.98px) {
  .pf-s03-frame {
    min-height: auto;
    padding: 2rem 1.5rem 2.5rem;
    text-align: center;
  }

  .pf-s03-headline {
    font-size: 1.2rem;
    text-align: center;
    margin: 0 auto 1.5rem;
  }

  .pf-s03-persona-img {
    position: relative;
    right: auto;
    bottom: auto;
    height: auto;
    max-height: 320px;
    max-width: 70%;
    margin: 0 auto 1rem;
    display: block;
  }

  .pf-s03-mobile {
    position: relative;
    height: auto;
    max-height: 360px;
    max-width: 44%;
    width: auto;
    display: inline-block;
    vertical-align: bottom;
  }

  .pf-s03-mobile-back,
  .pf-s03-mobile-front {
    left: auto;
    bottom: auto;
    transform: none;
    margin: 0 0.5rem;
  }

  .pf-s03-mobile-back:hover,
  .pf-s03-mobile-front:hover {
    transform: scale(1.06);
  }
}

@media (max-width: 575.98px) {
  .pf-s03 {
    padding: 3rem 0;
  }

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

  .pf-s03-mobile {
    max-height: 280px;
  }

  .pf-s03-persona-img {
    max-height: 240px;
  }
}

/* ── S08 · TESTES DE CONCENTRAÇÃO · réplica layout Wix ─────────────────── */
/* Background full bleed back_persona05.webp (focal 25%/23%) · conteúdo
   à esquerda (logo + headline + body + tech link) · 2 mobiles à direita
   sem borda com hover-zoom. */
.pf-s08 {
  position: relative;
  padding: 5rem 0;
  color: #fff;
  overflow: hidden;
  background: var(--pf-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.pf-s08>.container {
  width: 100%;
}

.pf-s08-bg {
  position: absolute;
  inset: 0;
  background: url('../img/back_persona05.webp') no-repeat;
  background-size: cover;
  /* focalPoint Wix 25%/23% → object-position equivalente */
  background-position: 25% 23%;
  z-index: 0;
}

.pf-s08-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(6, 13, 28, 0.78) 0%,
      rgba(10, 20, 41, 0.52) 45%,
      rgba(10, 20, 41, 0.18) 75%,
      rgba(10, 20, 41, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

.pf-s08-container {
  position: relative;
  z-index: 2;
}

.pf-s08-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 460px;
}

/* ESQUERDA · conteúdo (logo + headline + body + tech link) */
.pf-s08-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.pf-s08-logo {
  max-height: 50px;
  width: auto;
}

.pf-s08-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.pf-s08-headline-accent {
  color: var(--pf-accent-2);
  font-weight: 600;
}

.pf-s08-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 540px;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.pf-s08-tech-link {
  display: inline-block;
  margin-top: 1rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.88;
}

.pf-s08-tech-link:hover {
  transform: translateY(-2px) scale(1.04);
  opacity: 1;
}

.pf-s08-tech-link img {
  height: 32px;
  width: auto;
}

/* DIREITA · 2 mobiles sobrepostos · sem borda · hover-zoom canônico */
.pf-s08-mobiles {
  position: relative;
  height: 460px;
}

.pf-s08-mobile {
  position: absolute;
  height: 100%;
  width: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  cursor: pointer;
  transform-origin: center center;
}

.pf-s08-mobile-back {
  left: 4%;
  top: 4%;
  transform: none;
  z-index: 1;
}

.pf-s08-mobile-back:hover {
  transform: scale(1.12);
  z-index: 3;
}

.pf-s08-mobile-front {
  left: 33%;
  top: 16%;
  transform: none;
  z-index: 2;
}

.pf-s08-mobile-front:hover {
  transform: scale(1.12);
  z-index: 3;
}

/* RESPONSIVE — s08 */
@media (max-width: 991.98px) {
  .pf-s08 {
    padding: 3.5rem 0;
  }

  .pf-s08-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .pf-s08-content {
    align-items: center;
  }

  .pf-s08-body {
    margin: 0 auto;
  }

  .pf-s08-mobiles {
    height: 380px;
  }

  .pf-s08-mobile-back {
    left: 18%;
  }

  .pf-s08-mobile-front {
    left: 44%;
  }
}

@media (max-width: 575.98px) {
  .pf-s08 {
    padding: 3rem 0;
  }

  .pf-s08-logo {
    max-height: 42px;
  }

  .pf-s08-mobiles {
    height: 320px;
  }

  .pf-s08-mobile-back {
    left: 8%;
  }

  .pf-s08-mobile-front {
    left: 38%;
  }
}

/* ── MOBILE FRAME (mockups Mobile01-06.png) ───────────────────────────── */
.pf-mobile-frame {
  display: inline-block;
  position: relative;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  max-width: 340px;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform-origin: center center;
  cursor: pointer;
}

.pf-mobile-frame:hover {
  transform: scale(1.12);
}

.pf-mobile-frame-light {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.pf-mobile-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

/* Frame de celular (case + bezel + notch) ao redor do video */
.pf-video-wrap {
  position: relative;
  background: linear-gradient(145deg, #1a1a22 0%, #0a0a10 100%);
  padding: 14px 10px;
  border-radius: 44px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1.5px rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Notch / Dynamic Island no topo */
.pf-video-wrap::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.pf-video-wrap .pf-mobile-img {
  border-radius: 32px;
  display: block;
}

@media (max-width: 575.98px) {
  .pf-video-wrap {
    padding: 10px 7px;
    border-radius: 34px;
  }

  .pf-video-wrap::before {
    width: 72px;
    height: 18px;
    top: 7px;
  }

  .pf-video-wrap .pf-mobile-img {
    border-radius: 24px;
  }
}

.pf-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(10, 20, 41, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  pointer-events: none;
  opacity: 0.88;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pf-video-wrap:hover .pf-video-play,
.pf-video-wrap.is-playing .pf-video-play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.2);
  pointer-events: none;
}

@media (max-width: 575.98px) {
  .pf-video-play {
    width: 56px;
    height: 56px;
    font-size: 1.9rem;
  }
}

.pf-mobile-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  justify-items: center;
}

@media (max-width: 576px) {
  .pf-mobile-pair {
    grid-template-columns: 1fr;
  }
}

/* ── BACKGROUND PERSONAS (sections com foto + overlay) ────────────────── */
.pf-section-bg-office,
.pf-section-bg-laptop,
.pf-section-bg-armchair {
  position: relative;
  overflow: hidden;
}

.pf-section-bg-office {
  background: var(--pf-bg-darker) url('../img/back_persona03.webp') center / cover no-repeat;
}

.pf-section-bg-laptop {
  background: var(--pf-bg-darker) url('../img/back_persona05.webp') center / cover no-repeat;
}

.pf-section-bg-armchair {
  background: var(--pf-bg-darker) url('../img/back_persona06.webp') right center / cover no-repeat;
}

/* Background abstrato (s07-badges) — imagem visível sem overlay; cards usam glass */
.pf-section-bg-abstract {
  background: url('../img/back_abstract.webp') center / cover no-repeat;
  position: relative;
}

.pf-section-bg-abstract .pf-badge-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--pf-radius);
  box-shadow: 0 20px 50px rgba(10, 20, 41, 0.18);
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pf-section-bg-abstract .pf-badge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(10, 20, 41, 0.26);
}

.pf-section-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg,
      rgba(6, 13, 28, 0.92) 0%,
      rgba(10, 20, 41, 0.82) 45%,
      rgba(10, 20, 41, 0.55) 100%);
  pointer-events: none;
}

/* S04 (Copiloto Operacional) · overlay quase transparente pra revelar o
   background back_office. As outras seções (.pf-section-bg-laptop /
   .pf-section-bg-armchair) seguem com o overlay escuro padrão acima. */
.pf-section-bg-office .pf-section-bg-overlay {
  background: linear-gradient(100deg,
      rgba(6, 13, 28, 0.12) 0%,
      rgba(10, 20, 41, 0.08) 45%,
      rgba(10, 20, 41, 0.04) 100%);
}

/* S04 · título menor que o padrão global das seções */
#s04-copiloto-operacional .pf-section-title {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.25;
}

/* S07 (Badges) · seção compacta, ~62% da altura padrão */
#s07-badges {
  min-height: 62.5vh;
  padding: 3.4rem 0;
}

/* S11 (Testimonial) · 30% mais baixa que o padrão */
#s11-testimonial {
  min-height: 70vh;
  padding: 3.85rem 0;
}

.pf-section-bg-office .container,
.pf-section-bg-laptop .container,
.pf-section-bg-armchair .container {
  z-index: 1;
}

/* ── BULLETS em fundo dark ────────────────────────────────────────────── */
.pf-bullets-on-dark li {
  color: rgba(255, 255, 255, 0.88);
}

.pf-bullets-on-dark li i {
  color: var(--pf-accent-2);
}

/* ── DASHBOARD SKETCH (LineART_desktop.webp) ───────────────────────────── */
.pf-dashboard-sketch {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--pf-radius);
  padding: 1rem;
  box-shadow: var(--pf-shadow-dark);
}

.pf-dashboard-sketch img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.pf-dashboard-sketch-light {
  background: #fff;
  border-color: var(--pf-border);
  box-shadow: var(--pf-shadow);
}

/* Carrossel da S12 · cantos arredondados + indicadores temáticos */
.pf-s12-carousel {
  border-radius: var(--pf-radius);
  overflow: hidden;
  box-shadow: var(--pf-shadow);
  background: #fff;
}

.pf-s12-carousel .carousel-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--pf-radius);
}

.pf-s12-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(10, 20, 41, 0.35);
  border: 0;
  margin: 0 5px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.pf-s12-carousel .carousel-indicators .active {
  background-color: var(--pf-accent);
  transform: scale(1.2);
}

.pf-s12-carousel .carousel-control-prev,
.pf-s12-carousel .carousel-control-next {
  width: 8%;
  opacity: 0.5;
  transition: opacity 0.25s ease;
}

.pf-s12-carousel:hover .carousel-control-prev,
.pf-s12-carousel:hover .carousel-control-next {
  opacity: 0.95;
}

.pf-s12-carousel .carousel-control-prev-icon,
.pf-s12-carousel .carousel-control-next-icon {
  background-color: rgba(10, 20, 41, 0.55);
  border-radius: 50%;
  background-size: 50% 50%;
  width: 38px;
  height: 38px;
}

/* ── BOARD CARDS (board01.png / board02.png reproduzidos em HTML) ────── */
.pf-board {
  background: #fff;
  color: var(--pf-text);
  border-radius: var(--pf-radius);
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--pf-border);
  box-shadow: var(--pf-shadow);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform-origin: center center;
  cursor: pointer;
  will-change: transform;
}

.pf-board:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 70px rgba(10, 20, 41, 0.28);
  z-index: 2;
  position: relative;
}

.pf-board-head {
  background: linear-gradient(135deg, #3a4373 0%, #2d3560 100%);
  color: #fff;
  padding: 1.1rem 1.5rem;
  text-align: center;
}

.pf-board-head h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.pf-board-pill {
  background: var(--pf-accent-2);
  color: var(--pf-bg);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.85em;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: none;
  display: inline-block;
  vertical-align: middle;
}

.pf-board-accent .pf-board-head {
  background: linear-gradient(135deg, #4a3373 0%, #3a2560 100%);
}

.pf-board-list {
  list-style: none;
  padding: 1.6rem 1.5rem;
  margin: 0;
}

.pf-board-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: var(--pf-text);
  line-height: 1.5;
}

.pf-board-list li i {
  color: #2e7d32;
  font-size: 1.25rem;
  flex-shrink: 0;
  font-weight: 800;
  margin-top: 1px;
}

.pf-board-list li strong {
  color: var(--pf-text);
  font-weight: 700;
}

/* ── LOGOS DE INTEGRAÇÃO ──────────────────────────────────────────────── */
.pf-logos-wrap {
  background: transparent;
  border-radius: var(--pf-radius);
  padding: 1.5rem 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.pf-logos-img {
  max-width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  display: inline-block;
  /* Logos originais são escuros sobre fundo branco — inverte pra ficarem claros
     sobre o background dark do s09 (sem precisar de plano de fundo branco). */
  filter: invert(1);
}

@media (max-width: 576px) {
  .pf-logos-wrap {
    padding: 1rem;
  }

  .pf-logos-img {
    max-height: none;
  }
}

/* ── TESTIMONIAL PERSONA ──────────────────────────────────────────────── */
.pf-testimonial-persona {
  max-width: 320px;
  width: 100%;
  height: auto;
}

/* ── BADGE ICON variante accent ───────────────────────────────────────── */
.pf-badge-icon-accent {
  background: linear-gradient(135deg, var(--pf-accent-2) 0%, #a8893f 100%) !important;
  box-shadow: 0 10px 24px rgba(201, 169, 110, 0.35) !important;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .pf-hero {
    padding: 5rem 0 3rem;
  }

  .pf-hero-persona {
    /* height: 100%; */
    max-height: none;
    /* width: auto; */
    max-width: 100%;
    /* object-fit: contain; */
    /* object-position: center top; */
    /* opacity: 0.55; */
    position: relative;
    top: -71px;
  }

  .pf-mobile-frame {
    max-width: 280px;
    top: -100px;
  }

  /* s10 — vídeo "Conectado com IA" não deve subir como o hero (estava cortando) */
  #s10-conectado-ia .pf-mobile-frame {
    top: -58px;
  }

  /* s11 — vídeo do depoimento sobe (-100px) mas o texto ficava no fluxo normal,
     gerando gap. Puxa o testimonial pra cima pra encostar no vídeo. */
  #s11-testimonial .pf-testimonial {
    margin-top: -95px;
  }

  /* s11 — vídeo do depoimento +30% no mobile */
  #s11-testimonial .pf-mobile-frame {
    max-width: 364px;
  }

  .btn-pf-outline {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .pf-section {
    padding: 3.5rem 0;
  }

  /* Mantém min-height: 100vh no mobile pra persona aparecer de corpo inteiro como bg */
  .pf-hero {
    padding: 6rem 0 4rem;
  }

  .pf-hero-cta .btn {
    width: 100%;
    margin-left: 0 !important;
  }

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

  .pf-testimonial {
    padding: 2rem 1.5rem;
  }

  .pf-testimonial-text {
    font-size: 1.05rem;
  }

  .pf-mobile-frame {
    max-width: 240px;
    padding: 8px;
    border-radius: 30px;
  }

  /* s11 — vídeo do depoimento +30% no mobile */
  #s11-testimonial .pf-mobile-frame {
    max-width: 312px;
  }

  .pf-mobile-img {
    border-radius: 22px;
  }

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

  .pf-board-head h3 {
    font-size: 0.92rem;
  }

  .pf-board-list {
    padding: 1.2rem;
  }

  .pf-board-list li {
    font-size: 0.9rem;
  }

  .pf-testimonial-persona {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .pf-section-title {
    font-size: 1.6rem;
  }

  .pf-mobile-frame {
    max-width: 220px;
  }

  /* s11 — vídeo do depoimento +30% no mobile */
  #s11-testimonial .pf-mobile-frame {
    max-width: 286px;
  }
}