/* ============================================================
   Shared inner-page chrome: page-hero + content blocks
   ============================================================ */

/* PAGE HERO ---------------------------------------------- */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 80% 0%, color-mix(in oklab, var(--brand-orange) 10%, transparent), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, color-mix(in oklab, var(--ink) 8%, transparent), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.page-hero .crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.page-hero .crumb .sep { color: var(--ink-4); }
.page-hero .crumb .here { color: var(--brand-orange); }
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(46px, 8vw, 120px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-variation-settings: 'wdth' 88, 'opsz' 96;
  max-width: 14ch;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--brand-orange);
  font-variation-settings: 'wdth' 75;
  font-weight: 400;
}
.page-hero h1 .stroke {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
  font-variation-settings: 'wdth' 75;
  font-weight: 300;
}
.page-hero .lead {
  max-width: 56ch;
  margin-top: 30px;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-2);
  line-height: 1.5;
}
.page-hero .hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-hero .hero-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  color: var(--ink-3);
}
.page-hero .hero-meta .meta-row { display: flex; flex-direction: column; gap: 6px; }
.page-hero .hero-meta .meta-row strong { color: var(--ink); font-family: var(--f-display); font-weight: 500; font-size: 22px; letter-spacing: -0.015em; text-transform: none; font-variation-settings: 'wdth' 90; }
@media (max-width: 820px) {
  .page-hero { padding: 140px 0 60px; }
  .page-hero .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* SECTION HEADS (reused) --------------------------------- */
.s-head { margin-bottom: 50px; }
.s-head .mono {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--brand-orange);
  margin-bottom: 14px;
}
.s-head .mono::before {
  content: ''; width: 22px; height: 1px;
  background: var(--brand-orange);
}
.s-head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-variation-settings: 'wdth' 90;
}
.s-head h2 em { font-style: normal; color: var(--brand-orange); font-variation-settings: 'wdth' 75; }
.s-head .sub { color: var(--ink-3); margin-top: 16px; font-size: clamp(16px, 1.3vw, 18px); max-width: 56ch; }

/* ============================================================
   SOLUÇÕES page
   ============================================================ */
.tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tab {
  padding: 12px 22px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  color: var(--ink-3);
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tab:hover { color: var(--ink); }
.tab.active { background: var(--ink); color: var(--bg); }
.tab .tab-icon { width: 14px; height: 14px; opacity: 0.5; }
.tab.active .tab-icon { opacity: 1; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.vert-intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: end;
  padding: 60px 0 80px;
  border-bottom: 1px solid var(--line);
}
.vert-intro h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-variation-settings: 'wdth' 85;
}
.vert-intro h2 em { font-style: normal; color: var(--brand-orange); font-variation-settings: 'wdth' 75; }
.vert-intro .who {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.vert-intro .who::before { content: ''; width: 22px; height: 1px; background: var(--brand-orange); }
.vert-intro .right p { color: var(--ink-2); font-size: 17px; line-height: 1.55; }
@media (max-width: 820px) {
  .vert-intro { grid-template-columns: 1fr; gap: 24px; padding: 40px 0 50px; }
}

/* JOURNEY (Conheça-se / Evolua) -------------------------- */
.journey { padding: 80px 0; }
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.journey-col {
  background: var(--bg-elev);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.journey-col .phase-num {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 500;
  color: var(--brand-orange);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: 'wdth' 75;
}
.journey-col .phase-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: 'wdth' 88;
}
.journey-col .phase-desc { color: var(--ink-3); font-size: 14px; line-height: 1.5; }
.journey-products {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-chip {
  display: flex;
  gap: 16px;
  padding: 18px 18px 18px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  align-items: start;
}
.product-chip:hover {
  border-color: var(--brand-orange);
  transform: translateX(2px);
}
.product-chip .p-idx {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding-top: 3px;
  flex-shrink: 0;
}
.product-chip .p-body { flex: 1; min-width: 0; }
.product-chip .p-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  font-variation-settings: 'wdth' 90;
}
.product-chip .p-meta {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.45;
}
.product-chip .p-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-family: var(--f-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink-3);
  white-space: nowrap;
}
.tag.in-person { border-color: var(--brand-orange); color: var(--brand-orange); }
.tag.shipped { border-color: var(--ink-3); }
.tag.transit {
  background: linear-gradient(120deg, var(--brand-orange), var(--ink) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border: 1px solid var(--line-strong);
}

@media (max-width: 820px) {
  .journey-grid { grid-template-columns: 1fr; }
  .journey { padding: 50px 0; }
  .journey-col { padding: 30px 24px; }
  .journey-col .phase-num { font-size: 44px; }
  .journey-col .phase-title { font-size: 26px; }
}

/* PLANS ------------------------------------------------- */
.plans { padding: 80px 0; background: var(--bg-sunk); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.plan-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: all 0.3s var(--ease-out);
  min-height: 540px;
}
.plan-card:hover { transform: translateY(-4px); border-color: var(--ink-3); }
.plan-card.featured {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}
.plan-card.featured:hover { transform: translateY(-4px); border-color: var(--brand-orange); }
.plan-card .p-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-orange);
  color: #fff;
}
.plan-card .p-tier {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.plan-card.featured .p-tier { color: rgba(255,255,255,0.7); }
.plan-card .p-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.025em;
  font-variation-settings: 'wdth' 85;
}
.plan-card .p-tag {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.45;
}
.plan-card.featured .p-tag { color: rgba(255,255,255,0.75); }
.plan-card .p-includes {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan-card.featured .p-includes { border-top-color: rgba(255,255,255,0.15); }
.plan-card .p-includes .label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-4);
}
.plan-card.featured .p-includes .label { color: rgba(255,255,255,0.5); }
.plan-card .p-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-card .p-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 4px;
  font-size: 14px;
  line-height: 1.35;
}
.plan-card .p-list li .num {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--brand-orange);
  padding-top: 4px;
}
.plan-card.featured .p-list li .num { color: rgba(255,255,255,0.7); }
.plan-card .p-cta {
  margin-top: 6px;
  padding: 14px;
  text-align: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.plan-card .p-cta:hover { background: var(--brand-orange); color: #fff; }
.plan-card.featured .p-cta { background: var(--bg); color: var(--ink); }
.plan-card.featured .p-cta:hover { background: var(--brand-orange); color: #fff; }

@media (max-width: 920px) {
  .plan-grid { grid-template-columns: 1fr; gap: 16px; }
  .plan-card { min-height: 0; padding: 30px 26px; }
}

/* B2B SECTION ------------------------------------------- */
.b2b { padding: 100px 0; }
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.b2b-card {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  padding: 28px 24px 28px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  transition: all 0.3s var(--ease-out);
}
.b2b-card:hover { border-color: var(--brand-orange); transform: translateY(-2px); }
.b2b-card .b-num {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
}
.b2b-card .b-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-variation-settings: 'wdth' 88;
}
.b2b-card .b-desc { color: var(--ink-3); font-size: 13.5px; line-height: 1.5; margin-top: auto; }

@media (max-width: 820px) {
  .b2b-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .b2b-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SOBRE page
   ============================================================ */
.about-history {
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-history h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-variation-settings: 'wdth' 88;
  position: sticky;
  top: 110px;
}
.about-history h2 em { font-style: normal; color: var(--brand-orange); font-variation-settings: 'wdth' 75; }
.about-history .body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.about-history .body p:first-letter {
  font-family: var(--f-display);
  float: left;
  font-size: 72px;
  line-height: 0.85;
  padding-right: 14px;
  font-weight: 500;
  color: var(--brand-orange);
  font-variation-settings: 'wdth' 85;
}

/* BASE — pilares do método (substituiu the old narrative history) ---- */
.about-base {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  padding: 100px 0;
  align-items: start;
}
.about-base h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-variation-settings: 'wdth' 88;
  position: sticky;
  top: 100px;
}
.about-base h2 em { font-style: normal; color: var(--brand-orange); font-variation-settings: 'wdth' 75; }

.base-pillars {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.pillar {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--hairline);
}
.pillar:last-child { border-bottom: 0; padding-bottom: 0; }

.pillar-letter {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 92px;
  line-height: 0.82;
  color: var(--brand-orange);
  font-variation-settings: 'wdth' 80;
  letter-spacing: -0.03em;
}
.pillar-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  font-variation-settings: 'wdth' 92;
  margin-bottom: 12px;
  color: var(--ink);
}
.pillar-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* NAME ORIGIN — Condicio + Aptus -------------------------- */
.name-origin {
  padding: 100px 0;
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  overflow: hidden;
}
[data-theme="dark"] .name-origin { background: #020815; }
.name-origin .eq {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.4fr;
  align-items: baseline;
  justify-items: center;
  gap: clamp(10px, 2vw, 32px);
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin: 40px 0 50px;
  line-height: 0.9;
}
.name-origin .eq .part {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.name-origin .eq .word {
  font-size: clamp(28px, 5.5vw, 92px);
  font-variation-settings: 'wdth' 78;
  white-space: nowrap;
  line-height: 1;
}
.name-origin .eq .word.brand { font-variation-settings: 'wdth' 72; }
.name-origin .eq .op {
  font-family: var(--f-display);
  font-size: clamp(22px, 3.5vw, 48px);
  color: var(--brand-orange);
  font-variation-settings: 'wdth' 75;
  line-height: 1;
  align-self: center;
}
@media (max-width: 720px) {
  .name-origin .eq {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    gap: 16px;
  }
  .name-origin .eq .word { font-size: clamp(42px, 11vw, 70px); }
  .name-origin .eq .op { font-size: 32px; }
}
.name-origin .eq .word.faded { color: rgba(255,255,255,0.4); }
.name-origin .eq .word.brand em { font-style: normal; color: var(--brand-orange); font-variation-settings: 'wdth' 72; }
.name-origin .eq .meaning {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-align: center;
  max-width: 16ch;
}
.name-origin .lead {
  max-width: 56ch;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}

/* FOUNDER ------------------------------------------------ */
.founder { padding: 120px 0; }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.founder-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-sunk);
  border: 1px solid var(--line);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-photo .badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--brand-orange);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 12px;
  border-radius: 999px;
}
.founder .role {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-orange);
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.founder .role::before { content: ''; width: 22px; height: 1px; background: var(--brand-orange); }
.founder h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-variation-settings: 'wdth' 88;
}
.founder h2 em { font-style: normal; color: var(--ink-3); font-variation-settings: 'wdth' 75; }
.founder .quote {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 28px 0 36px;
  color: var(--ink-2);
  border-left: 2px solid var(--brand-orange);
  padding-left: 22px;
  font-variation-settings: 'wdth' 92;
}
.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.creds .cred {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.creds .cred:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
.creds .cred:nth-child(even) { padding-left: 24px; }
.creds .cred:nth-last-child(-n+2) { border-bottom: 0; }
.creds .cred .num { font-family: var(--f-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-4); }
.creds .cred .what { font-family: var(--f-display); font-weight: 500; font-size: 18px; letter-spacing: -0.01em; font-variation-settings: 'wdth' 90; line-height: 1.15; }
.creds .cred .when { font-size: 13px; color: var(--ink-3); }
@media (max-width: 820px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-history { grid-template-columns: 1fr; gap: 30px; padding: 60px 0; }
  .about-history h2 { position: static; }
  .about-base { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .about-base h2 { position: static; }
  .base-pillars { gap: 32px; }
  .pillar { grid-template-columns: 62px 1fr; gap: 16px; padding-bottom: 28px; }
  .pillar-letter { font-size: 66px; }
  .pillar-title { font-size: 20px; }
  .pillar-desc { font-size: 15px; }
  /* mantém 2 colunas no mobile + compacto p/ não esticar a página */
  .creds .cred { padding: 12px 0; gap: 4px; }
  .creds .cred:nth-child(odd) { padding-right: 12px; }
  .creds .cred:nth-child(even) { padding-left: 12px; }
  .creds .cred .what { font-size: 15px; }
  .creds .cred .when { font-size: 12px; }
}

/* MISSION + TECH PARTNERS -------------------------------- */
.mission { padding: 100px 0; }
.mission-statement {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-variation-settings: 'wdth' 88;
  max-width: 22ch;
}
.mission-statement em { font-style: normal; color: var(--brand-orange); font-variation-settings: 'wdth' 75; }
.mission-statement .faded { color: var(--ink-3); }

.tech-partners {
  padding: 100px 0;
  background: var(--bg-sunk);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.tp-cell {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  background: var(--bg-elev);
  transition: background 0.3s;
}
.tp-cell:hover { background: var(--bg-sunk); }
.tp-cell:last-child { border-right: 0; }
.tp-cell .tp-num { font-family: var(--f-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-orange); }
.tp-cell .tp-area { font-family: var(--f-display); font-weight: 500; font-size: 26px; letter-spacing: -0.02em; line-height: 1.05; font-variation-settings: 'wdth' 88; color: var(--ink); }
.tp-cell .tp-partner { font-family: var(--f-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); margin-bottom: auto; }
.tp-cell .tp-desc { font-size: 13.5px; line-height: 1.5; color: var(--ink-2); }
@media (max-width: 820px) {
  .tp-grid { grid-template-columns: 1fr 1fr; }
  .tp-cell { border-right: 0; border-bottom: 1px solid var(--line); min-height: 200px; }
  .tp-cell:nth-child(odd) { border-right: 1px solid var(--line); }
  .tp-cell:last-child, .tp-cell:nth-last-child(2) { border-bottom: 0; }
}
@media (max-width: 540px) {
  .tp-grid { grid-template-columns: 1fr; }
  .tp-cell, .tp-cell:nth-child(odd) { border-right: 0; }
  .tp-cell { border-bottom: 1px solid var(--line); }
  .tp-cell:last-child { border-bottom: 0; }
}

/* ============================================================
   BASE CIENTÍFICA page
   ============================================================ */
.bc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.bc-stats .stat .n {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-variation-settings: 'wdth' 82;
}
.bc-stats .stat .n.orange { color: var(--brand-orange); }
.bc-stats .stat .l {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-top: 8px;
  max-width: 18ch;
}
@media (max-width: 740px) { .bc-stats { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* HIGHLIGHTED ARTICLES ----------------------------------- */
.bc-highlights {
  padding: 100px 0 60px;
}
.bc-hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.bc-hl-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.bc-hl-card:hover { border-color: var(--brand-orange); transform: translateY(-4px); }
.bc-hl-card .pin {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--brand-orange);
}
.bc-hl-card .pin::before { content: ''; width: 5px; height: 5px; background: var(--brand-orange); border-radius: 50%; }
.bc-hl-card .ttl {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-variation-settings: 'wdth' 88;
}
.bc-hl-card .by {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.4;
}
.bc-hl-card .by strong { color: var(--ink); font-weight: 500; }
.bc-hl-card .lesson {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  flex: 1;
}
.bc-hl-card .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.bc-hl-card .foot .year {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.bc-hl-card .foot .read {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
}
.bc-hl-card .foot .read .arr { transition: transform 0.3s; }
.bc-hl-card:hover .foot .read .arr { transform: translateX(4px); color: var(--brand-orange); }

@media (max-width: 920px) {
  .bc-hl-grid { grid-template-columns: 1fr; }
}

/* ALL ARTICLES LIST -------------------------------------- */
.bc-all { padding: 60px 0 100px; }
.bc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 40px;
}
.bc-filter {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink-2);
  background: var(--bg-elev);
  cursor: pointer;
  transition: all 0.2s;
}
.bc-filter:hover { border-color: var(--ink-3); }
.bc-filter.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.bc-list {
  border-top: 1px solid var(--line);
}
.bc-row {
  display: grid;
  grid-template-columns: 80px 1fr 200px 100px 60px;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  position: relative;
}
.bc-row::before {
  content: '';
  position: absolute;
  inset: 0 calc(var(--pad-x) * -0.5);
  background: var(--bg-elev);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: -1;
  border-radius: 8px;
}
.bc-row:hover::before { opacity: 1; }
.bc-row .r-num { font-family: var(--f-mono); font-size: 11px; color: var(--ink-4); letter-spacing: 0.08em; }
.bc-row .r-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-variation-settings: 'wdth' 92;
}
.bc-row .r-title .r-lesson { display: block; font-family: var(--f-body); font-size: 13px; color: var(--ink-3); font-weight: 400; margin-top: 4px; letter-spacing: 0; line-height: 1.4; font-variation-settings: normal; }
.bc-row .r-source { font-family: var(--f-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); }
.bc-row .r-year { font-family: var(--f-mono); font-size: 13px; color: var(--ink-2); }
.bc-row .r-icon {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: all 0.2s;
}
.bc-row:hover .r-icon { background: var(--brand-orange); border-color: var(--brand-orange); color: #fff; }
.bc-row:hover .r-icon { transform: translate(2px, -2px); }

@media (max-width: 920px) {
  .bc-row {
    grid-template-columns: 1fr 60px;
    grid-template-rows: auto auto;
    gap: 8px 16px;
    padding: 22px 0;
  }
  .bc-row .r-num { display: none; }
  .bc-row .r-title { grid-column: 1; grid-row: 1; }
  .bc-row .r-source { grid-column: 1; grid-row: 2; }
  .bc-row .r-year { grid-column: 1; grid-row: 2; justify-self: end; }
  .bc-row .r-icon { grid-column: 2; grid-row: 1 / 3; align-self: center; }
}

/* ============================================================
   BASE CIENTÍFICA — acervo em faixa escura, cards interativos
   ============================================================ */
.bc-acervo {
  background: #08111E;
  color: #F0EAE3;
  border-radius: var(--r-xl);
  margin: 40px calc(var(--pad-x) * 0.4) 90px;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .bc-acervo { background: #020815; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .bc-acervo { background: #020815; }
}
.bc-acervo .bc-head { margin-bottom: 76px; }
.bc-acervo .bc-head .mono { color: var(--brand-orange); }
.bc-acervo .bc-head h2 { color: #F5F0EA; }
.bc-acervo .bc-head h2 em { font-style: normal; color: var(--brand-orange); }
.bc-acervo .bc-head .sub { color: rgba(240,234,227,0.62); }

/* bloco (eixo) */
.bc-block { position: relative; }
.bc-block + .bc-block {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.bc-block-head {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
}
.bc-block-id {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  padding-top: 8px;
}
.bc-block-kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-orange);
}
.bc-block-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-variation-settings: 'wdth' 82;
  color: #F5F0EA;
  margin: 10px 0 0;
}
.bc-block-name em { font-style: normal; color: var(--brand-orange); font-variation-settings: 'wdth' 70; }
.bc-block-desc {
  color: rgba(240,234,227,0.6);
  margin-top: 16px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  max-width: 56ch;
}
.bc-block-glyph {
  position: absolute;
  right: 0; top: -10px;
  width: clamp(90px, 11vw, 150px);
  color: rgba(232,97,26,0.14);
  pointer-events: none;
}
.bc-block-glyph svg { width: 100%; height: auto; display: block; }

/* grid de cards */
.bc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bc-card {
  position: relative;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 30px 26px 14px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease-out), background 0.45s var(--ease-out);
}
.bc-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 100% 0%, rgba(232,97,26,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
  pointer-events: none;
}
.bc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,97,26,0.4);
  background: rgba(255,255,255,0.05);
}
.bc-card:hover::before { opacity: 1; }
.bc-card-glyph {
  position: absolute;
  right: -18px; top: -28px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 150px;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  font-variation-settings: 'wdth' 70;
  pointer-events: none;
  transition: color 0.45s var(--ease-out);
}
.bc-card:hover .bc-card-glyph { color: rgba(232,97,26,0.07); }
.bc-card-tag {
  position: relative;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-orange);
}
.bc-card-title {
  position: relative;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-variation-settings: 'wdth' 88;
  color: #F5F0EA;
  margin: 14px 0 0;
}
.bc-card-desc {
  position: relative;
  color: rgba(240,234,227,0.58);
  font-size: 14px;
  line-height: 1.5;
  margin: 12px 0 20px;
}
.bc-arts {
  position: relative;
  display: flex;
  flex-direction: column;
}
.bc-art {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: padding-left 0.25s var(--ease-out);
}
.bc-art:hover { padding-left: 5px; }
.bc-art-main { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.bc-art-tema {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,234,227,0.4);
}
.bc-art-title {
  font-size: 14px;
  line-height: 1.35;
  color: rgba(240,234,227,0.9);
  transition: color 0.2s;
}
.bc-art:hover .bc-art-title { color: var(--brand-orange); }
.bc-art-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: rgba(240,234,227,0.7);
  transition: all 0.25s var(--ease-out);
}
.bc-art-cta svg { width: 14px; height: 14px; }
.bc-art:hover .bc-art-cta {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
  transform: translate(2px, -2px);
}

@media (max-width: 1000px) {
  .bc-cards { grid-template-columns: 1fr; }
  .bc-block-glyph { opacity: 0.5; }
}
@media (max-width: 720px) {
  .bc-acervo { margin: 0; border-radius: 0; padding: 70px 0; }
  .bc-block-head { grid-template-columns: 1fr; gap: 6px; }
  .bc-block-id { padding-top: 0; }
}

/* ============================================================
   CONTATO page
   ============================================================ */
.contact { padding: 80px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.field input, .field textarea, .field select {
  font: inherit;
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  color: var(--ink);
  outline: none;
  transition: all 0.2s;
  font-size: 15px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brand-orange);
  background: var(--bg);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.chip-radio {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--bg-elev);
  transition: all 0.2s;
}
.chip-radio input { display: none; }
.chip-radio:has(input:checked) { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.chip-radio:hover { border-color: var(--ink-3); }
.submit-btn {
  margin-top: 8px;
  padding: 18px 22px;
  background: var(--brand-orange);
  color: #fff;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  align-self: flex-start;
}
.submit-btn:hover { background: var(--brand-orange-deep); transform: translateY(-1px); box-shadow: 0 12px 28px -10px var(--brand-orange); }

.contact-info { display: flex; flex-direction: column; gap: 30px; }
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 30px 28px;
  background: var(--bg-elev);
}
.info-card .label { font-family: var(--f-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-orange); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.info-card .label::before { content: ''; width: 18px; height: 1px; background: var(--brand-orange); }
.info-card .value {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-variation-settings: 'wdth' 88;
  word-break: break-word;
}
.info-card .value a { color: inherit; }
.info-card .value a:hover { color: var(--brand-orange); }
.info-card .desc { color: var(--ink-3); font-size: 14px; margin-top: 10px; line-height: 1.45; }

.social-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.social-row a {
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  transition: all 0.2s;
}
.social-row a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURED PRODUCTS (Solucoes page)
   ============================================================ */
.featured-products {
  padding: 100px 0 80px;
  position: relative;
}
.featured-products .s-head { margin-bottom: 64px; }

.fp-block {
  padding: 64px 0;
  border-top: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  position: relative;
}
.fp-block:first-of-type { border-top: 0; padding-top: 0; }

.fp-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.fp-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  font-variation-settings: 'wdth' 90;
}
.fp-title em {
  font-style: normal;
  color: var(--brand-orange);
  font-variation-settings: 'wdth' 75;
}
.fp-sub {
  margin-top: 12px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: color-mix(in oklab, var(--ink) 65%, transparent);
  line-height: 1.5;
}
.fp-sub strong { color: var(--ink); font-weight: 600; }

.fp-stage {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  margin: 0 auto;
  max-width: 1120px;
}
.fp-feats {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.fp-feats.fp-left  { text-align: right; }
.fp-feats.fp-right { text-align: left; }
.fp-feat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fp-feat-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fp-left .fp-feat-head { flex-direction: row-reverse; }
.fp-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: color-mix(in oklab, var(--brand-orange) 14%, transparent);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fp-feat-icon svg { width: 20px; height: 20px; }
.fp-feat h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.fp-feat p {
  font-size: 14px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--ink) 62%, transparent);
  margin: 0;
}
.fp-feat p strong { color: var(--ink); font-weight: 600; }

/* Central visual - using real images */
.fp-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
}
.fp-img {
  position: relative;
  z-index: 2;
  width: 88%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 40px rgba(232, 97, 26, 0.28));
  animation: fp-float 7s ease-in-out infinite;
  will-change: transform;
}
.fp-img-dna { animation: fp-spin-soft 14s ease-in-out infinite; }
.fp-img-lift { animation: fp-rotate-tilt 22s ease-in-out infinite; }

/* SVG icon visuals (fingerprint + DNA) — menores que as fotos */
.fp-icon {
  position: relative;
  z-index: 2;
  width: 58%;
  height: auto;
  color: var(--brand-orange);
  filter: drop-shadow(0 10px 26px rgba(232, 97, 26, 0.30));
  transition: transform 0.6s var(--ease-out), color 0.4s, filter 0.4s;
  will-change: transform;
}
.fp-icon-fp { animation: fp-float 7s ease-in-out infinite; }
.fp-icon-dna { animation: fp-spin-soft 14s ease-in-out infinite; transform-style: preserve-3d; }
/* desenho progressivo dos traços ao entrar na tela / hover */
.fp-icon path {
  stroke-dasharray: 240;
  stroke-dashoffset: 0;
}
.fp-block:hover .fp-icon {
  transform: scale(1.06);
  filter: drop-shadow(0 14px 34px rgba(232, 97, 26, 0.5));
}
.fp-block:hover .fp-icon-dna path { animation: fp-dna-draw 1.1s var(--ease-out) both; }
.fp-block:hover .fp-icon-fp path { animation: fp-fp-draw 1.2s var(--ease-out) both; }
@keyframes fp-dna-draw {
  from { stroke-dashoffset: 240; }
  to   { stroke-dashoffset: 0; }
}
@keyframes fp-fp-draw {
  from { stroke-dashoffset: 240; opacity: 0.4; }
  to   { stroke-dashoffset: 0; opacity: 1; }
}
[data-theme="dark"] .fp-icon {
  filter: drop-shadow(0 12px 30px rgba(232, 97, 26, 0.5)) drop-shadow(0 0 22px rgba(232, 97, 26, 0.22));
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .fp-icon {
    filter: drop-shadow(0 12px 30px rgba(232, 97, 26, 0.5)) drop-shadow(0 0 22px rgba(232, 97, 26, 0.22));
  }
}
@media (prefers-reduced-motion: reduce) {
  .fp-icon, .fp-icon-fp, .fp-icon-dna { animation: none; }
}

@keyframes fp-float {
  0%,100% { transform: translateY(0)    rotate(0deg); }
  50%     { transform: translateY(-12px) rotate(0.3deg); }
}
@keyframes fp-spin-soft {
  0%   { transform: translateY(0)    rotateY(0deg); }
  50%  { transform: translateY(-8px)  rotateY(18deg); }
  100% { transform: translateY(0)    rotateY(0deg); }
}
@keyframes fp-rotate-tilt {
  0%,100% { transform: translateY(0) rotate(0deg); }
  25%     { transform: translateY(-6px) rotate(-3deg); }
  75%     { transform: translateY(-6px) rotate(3deg); }
}

/* Soft pulsing glow under the image */
.fp-img-glow {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%,
    color-mix(in oklab, var(--brand-orange) 38%, transparent) 0%,
    color-mix(in oklab, var(--brand-orange) 12%, transparent) 35%,
    transparent 70%);
  filter: blur(22px);
  z-index: 1;
  animation: fp-glow-pulse 4.5s ease-in-out infinite;
  will-change: opacity, transform;
}
@keyframes fp-glow-pulse {
  0%,100% { opacity: 0.7; transform: scale(0.95); }
  50%     { opacity: 1;   transform: scale(1.08); }
}

/* Subtle rotating ring around the image */
.fp-img-ring {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1px dashed color-mix(in oklab, var(--brand-orange) 30%, transparent);
  z-index: 0;
  animation: fp-ring-spin 40s linear infinite;
  will-change: transform;
}
.fp-img-ring::after {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid color-mix(in oklab, var(--brand-orange) 14%, transparent);
}
@keyframes fp-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Dark mode: lighter shadow on image to keep it crisp */
[data-theme="dark"] .fp-img {
  filter: drop-shadow(0 14px 40px rgba(232, 97, 26, 0.45)) drop-shadow(0 0 30px rgba(232, 97, 26, 0.18));
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .fp-img {
    filter: drop-shadow(0 14px 40px rgba(232, 97, 26, 0.45)) drop-shadow(0 0 30px rgba(232, 97, 26, 0.18));
  }
}

/* CTA row */
.fp-cta-row {
  text-align: center;
  margin-top: 48px;
}
.fp-cta-kicker {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--ink) 50%, transparent);
  margin-bottom: 16px;
}
.fp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--brand-orange);
  color: #fff;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), background 0.22s var(--ease-out);
  box-shadow: 0 6px 22px rgba(232, 97, 26, 0.28);
}
.fp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 97, 26, 0.42);
  background: color-mix(in oklab, var(--brand-orange) 92%, #fff);
}
.fp-cta-btn svg { width: 16px; height: 16px; }

/* Mobile reflow */
@media (max-width: 880px) {
  .featured-products { padding: 70px 0 60px; }
  .fp-block { padding: 48px 0; }
  .fp-head { margin-bottom: 40px; }
  .fp-stage {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fp-feats.fp-left,
  .fp-feats.fp-right { text-align: left; gap: 28px; }
  .fp-left .fp-feat-head { flex-direction: row; }
  .fp-visual {
    order: -1;
    max-width: 280px;
  }
  .fp-cta-row { margin-top: 36px; }
}
@media (max-width: 480px) {
  .fp-visual { max-width: 240px; }
  .fp-feat h4 { font-size: 16px; }
  .fp-feat p  { font-size: 13.5px; }
}

/* ===== páginas "Saiba mais" dos serviços ===== */
.svc-top { padding: 124px 0 0; position: relative; }
.svc-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; margin-top: 22px; }
.svc-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-orange); font-weight: 600; }
.svc-intro h1 { font-family: var(--f-display); font-weight: 500; font-size: clamp(38px, 5.5vw, 72px); line-height: 1.0; letter-spacing: -0.03em; margin: 14px 0 0; }
.svc-intro h1 em { font-style: normal; color: var(--brand-orange); }
.svc-sub { font-size: clamp(17px, 1.8vw, 22px); color: var(--ink); margin: 16px 0 14px; max-width: 36ch; line-height: 1.3; }
.svc-desc { color: var(--ink-2); line-height: 1.6; max-width: 52ch; margin-bottom: 22px; }

.ph { border: 1px dashed var(--line-strong); border-radius: var(--r-lg);
  background: color-mix(in oklab, var(--brand-orange) 4%, var(--bg-sunk));
  display: grid; place-items: center; text-align: center; padding: 22px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-4); }
.svc-media.ph { min-height: 400px; }

.svc-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 8px; }
.svc-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 28px; background: var(--bg-elev); }
.svc-card-wide { grid-column: 1 / -1; }
.sc-k { display: block; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-orange); font-weight: 700; margin-bottom: 14px; }
.svc-card p { color: var(--ink-2); line-height: 1.6; }
.svc-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px; margin: 0; padding: 0; }
.svc-list li { position: relative; padding-left: 18px; font-size: 14.5px; color: var(--ink-2); line-height: 1.4; }
.svc-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-orange); }
.svc-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.svc-chip { border: 1px solid var(--line-strong); border-radius: 999px; padding: 7px 14px; font-size: 13.5px; color: var(--ink-2); }

.svc-visuals { margin-top: 34px; }
.svc-visuals .sc-k { margin-bottom: 16px; }
.ph-wide { min-height: 320px; }
.svc-ph-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 16px; }
.svc-ph-grid .ph-sm { min-height: 170px; }

@media (max-width: 860px) {
  .svc-hero { grid-template-columns: 1fr; gap: 28px; }
  .svc-media.ph { min-height: 240px; order: -1; }
  .svc-cards { grid-template-columns: 1fr; }
  .svc-list { grid-template-columns: 1fr; }
}

/* flipbooks heyzine nas páginas Saiba mais */
.svc-media.svc-flip { padding: 0; border: 1px solid var(--line); background: var(--bg-elev); overflow: hidden; display: block; min-height: 0; }
.svc-flip iframe { display: block; width: 100%; height: 60vh; min-height: 360px; max-height: 560px; border: 0; }
.svc-flip-tabbed { display: flex; flex-direction: column; }
.flip-tabs { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px; border-bottom: 1px solid var(--line); background: var(--bg-sunk); }
.flip-tabs .ft { padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line); font-size: 13px; color: var(--ink-3); background: var(--bg-elev); cursor: pointer; }
.flip-tabs .ft.active { background: var(--brand-orange); color: #fff; border-color: var(--brand-orange); }
.svc-flip-tabbed iframe { height: 56vh; }

/* LIFT — produto (render + features) */
.lift-media { background: radial-gradient(120% 100% at 50% 35%, color-mix(in oklab, var(--brand-orange) 9%, var(--bg-elev)), var(--bg-sunk)); border: 1px solid var(--line); display: grid; place-items: center; padding: 24px; min-height: 400px; }
.lift-media img { max-width: 92%; max-height: 420px; width: auto; object-fit: contain; filter: drop-shadow(0 24px 40px rgba(10,22,40,0.28)); }
.lift-feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 8px; }
.lift-feat { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 26px; background: var(--bg-elev); }
.lift-feat .lf-ic { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: color-mix(in oklab, var(--brand-orange) 14%, var(--bg)); color: var(--brand-orange-deep); margin-bottom: 14px; }
.lift-feat .lf-ic svg { width: 22px; height: 22px; }
.lift-feat strong { display: block; font-family: var(--f-display); font-weight: 500; font-size: 18px; margin-bottom: 6px; }
.lift-feat p { color: var(--ink-2); font-size: 14px; line-height: 1.5; }
@media (max-width: 740px) { .lift-feats { grid-template-columns: 1fr; } }
