:root {
  --ffl-bg: #eef2f8;
  --ffl-surface: rgba(255, 255, 255, 0.88);
  --ffl-ink: #0b2d5c;
  --ffl-muted: #465a73;
  --ffl-blue: #2d5be3;
  --ffl-teal: #1aa892;
  --ffl-green: #1ea66f;
  --ffl-line: rgba(15, 88, 150, 0.1);
  --ffl-card-shadow: 0 18px 50px rgba(15, 40, 80, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body.ffl-body {
  font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", sans-serif;
  color: var(--ffl-ink);
  background:
    radial-gradient(1300px 560px at 94% 0%, rgba(35, 183, 148, 0.16), transparent 58%),
    radial-gradient(900px 420px at -8% 32%, rgba(56, 108, 208, 0.14), transparent 60%),
    var(--ffl-bg);
}

.ffl-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(96deg, #20356b 0%, #142b56 50%, #1a8d78 100%);
  box-shadow: 0 12px 28px rgba(8, 23, 51, 0.35);
  padding: 12px 18px;
}

.ffl-topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.ffl-brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ffl-brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #ffc273 0%, #ff7c1e 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.8rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
}

.ffl-brand-text {
  color: #ff952f;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.ffl-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ffl-nav button,
.ffl-actions button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(232, 242, 255, 0.14);
  color: #f2f8ff;
  border-radius: 12px;
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.ffl-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ffl-logout {
  min-width: 98px;
}

.ffl-menu {
  width: 54px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.ffl-menu span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f2f8ff;
  margin: 0 auto;
}

.ffl-main {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px;
  padding-bottom: 44px;
}

.ffl-section {
  border: 1px solid var(--ffl-line);
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 250, 255, 0.92) 100%);
  box-shadow: var(--ffl-card-shadow);
  backdrop-filter: blur(12px);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.ffl-section + .ffl-section {
  margin-top: 18px;
}

.ffl-section::after {
  content: "";
  position: absolute;
  inset: auto -80px -70px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 120, 219, 0.16) 0%, rgba(53, 120, 219, 0) 70%);
  pointer-events: none;
}

.ffl-kicker {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  color: #226ec8;
  padding-bottom: 12px;
  position: relative;
}

.ffl-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 66px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2d5be3 0%, #1aa892 100%);
}

.ffl-title {
  margin: 14px 0 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0d2f60;
}

.ffl-subtext {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: #465a73;
  max-width: 620px;
}

.ffl-index {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(145deg, #184998 0%, #2f67dd 100%);
  color: #fff;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
}

.ffl-hero {
  padding: 34px;
}

.ffl-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 26px;
  align-items: start;
}

.ffl-hero-title {
  margin: 16px 0 0;
  font-size: clamp(44px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #0f2f60;
}

.ffl-hero-ctas {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ffl-btn-primary,
.ffl-btn-secondary,
.ffl-inline-btn {
  appearance: none;
  border-radius: 12px;
  border: 1px solid transparent;
  min-height: 48px;
  padding: 0 20px;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
}

.ffl-btn-primary {
  color: #fff;
  background: linear-gradient(96deg, #2a58dd 0%, #1ca986 100%);
  box-shadow: 0 12px 22px rgba(37, 91, 188, 0.3);
}

.ffl-btn-secondary {
  color: #143560;
  background: #f8fcff;
  border-color: rgba(46, 103, 186, 0.35);
}

.ffl-inline-btn {
  color: #f0f8ff;
  background: linear-gradient(96deg, #2e62de 0%, #2487d2 100%);
}

.ffl-hero-visual {
  display: grid;
  gap: 12px;
}

.ffl-glass-card,
.ffl-card {
  background: var(--ffl-surface);
  border: 1px solid var(--ffl-line);
  border-radius: 24px;
  box-shadow: var(--ffl-card-shadow);
  backdrop-filter: blur(12px);
  padding: 16px;
}

.ffl-glass-card h3,
.ffl-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0b2d5c;
  line-height: 1.25;
}

.ffl-card p {
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #52677f;
}

.ffl-metric-grid {
  display: grid;
  gap: 10px;
}

.ffl-metric-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ffl-metric-grid article {
  border: 1px solid rgba(30, 99, 183, 0.14);
  border-radius: 14px;
  padding: 10px;
  background: rgba(248, 252, 255, 0.9);
}

.ffl-metric-grid article span {
  display: block;
  font-size: 12px;
  color: #5a6f89;
}

.ffl-metric-grid article strong {
  display: block;
  margin-top: 4px;
  font-size: 29px;
  line-height: 1.1;
  color: #123769;
}

.ffl-metric-grid.compact article strong {
  font-size: 24px;
}

.ffl-mini-chart {
  margin-top: 12px;
  height: 94px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: end;
  gap: 6px;
}

.ffl-mini-chart span {
  display: block;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, rgba(44, 112, 221, 0.9) 0%, rgba(30, 176, 142, 0.82) 100%);
}

.ffl-chip-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ffl-chip-row.center {
  justify-content: center;
}

.ffl-chip {
  border-radius: 999px;
  border: 1px solid rgba(35, 111, 195, 0.26);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #21507f;
  background: rgba(244, 250, 255, 0.92);
}

.ffl-section-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
}

.ffl-intro {
  align-self: start;
}

.ffl-intro .ffl-title {
  font-size: clamp(36px, 4.4vw, 52px);
}

.ffl-content-stack {
  display: grid;
  gap: 12px;
}

.ffl-value-grid,
.ffl-benefit-grid,
.ffl-resource-grid,
.ffl-innovation-grid {
  display: grid;
  gap: 10px;
}

.ffl-value-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ffl-value-grid.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ffl-benefit-grid.four,
.ffl-resource-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.ffl-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ffl-three-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ffl-seven-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.ffl-seven-grid .ffl-card,
.ffl-value-grid .ffl-card,
.ffl-resource-grid .ffl-card,
.ffl-benefit-grid .ffl-card,
.ffl-innovation-grid .ffl-card {
  padding: 14px;
}

.ffl-line-chart {
  margin-top: 10px;
  height: 120px;
  border-radius: 14px;
  border: 1px solid rgba(41, 110, 192, 0.18);
  background: linear-gradient(180deg, rgba(241, 248, 255, 0.9) 0%, rgba(249, 252, 255, 0.92) 100%);
  position: relative;
  overflow: hidden;
}

.ffl-line-chart span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f61de;
  transform: translate(-50%, -50%);
}

.ffl-line-chart .line {
  position: absolute;
  left: 4%;
  right: 4%;
  height: 2px;
  border-radius: 999px;
  opacity: 0.85;
}

.ffl-line-chart .line.gain {
  top: 34%;
  background: linear-gradient(90deg, #2ab281 0%, #5cd5af 100%);
}

.ffl-line-chart .line.progress {
  top: 54%;
  background: linear-gradient(90deg, #3f6fe8 0%, #6fa2ff 100%);
}

.ffl-legend {
  margin-top: 10px;
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #48617d;
}

.ffl-legend .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.dot.green {
  background: #2ab281;
}

.dot.blue {
  background: #3f6fe8;
}

.ffl-org-flow {
  display: grid;
  gap: 8px;
}

.ffl-org-flow .center {
  text-align: center;
}

.ffl-arrow {
  text-align: center;
  color: #2d62df;
  font-size: 20px;
  font-weight: 800;
}

.ffl-bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #4d657f;
  font-size: 14px;
  line-height: 1.5;
}

.ffl-impact {
  margin-top: 14px;
  border-left: 4px solid var(--ffl-blue);
  font-weight: 700;
}

.ffl-progress-row {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  font-size: 12px;
  color: #4f6680;
  text-align: center;
}

.ffl-progress-line {
  margin-top: 8px;
  height: 6px;
  border-radius: 999px;
  background: #d9e6f7;
  overflow: hidden;
}

.ffl-progress-line i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f67df 0%, #1daa87 100%);
}

.ffl-people-media {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.ffl-people-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.ffl-overlay-card {
  position: absolute;
  border-radius: 12px;
  border: 1px solid rgba(32, 104, 191, 0.2);
  background: rgba(255, 255, 255, 0.96);
  padding: 8px 10px;
  max-width: 180px;
  box-shadow: 0 10px 24px rgba(16, 45, 84, 0.14);
}

.ffl-overlay-card h4 {
  margin: 0;
  font-size: 14px;
  color: #143560;
}

.ffl-overlay-card p {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: #4c6684;
}

.ffl-overlay-card.left {
  left: 10px;
  top: 14px;
}

.ffl-overlay-card.right {
  right: 10px;
  top: 12px;
}

.ffl-overlay-card.bottom {
  right: 10px;
  bottom: 12px;
}

.ffl-flow-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.ffl-flow-steps div {
  text-align: center;
}

.ffl-flow-steps div strong {
  display: block;
  color: #12386a;
  font-size: 16px;
}

.ffl-flow-steps div span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #526a84;
}

.ffl-flow-steps i {
  text-align: center;
  color: #3668d8;
  font-style: normal;
  font-weight: 800;
}

.ffl-toggle-list,
.ffl-user-list,
.ffl-checklist,
.ffl-score-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.ffl-toggle-list li,
.ffl-user-list li,
.ffl-score-list li {
  border: 1px solid rgba(31, 100, 183, 0.14);
  border-radius: 12px;
  background: rgba(247, 251, 255, 0.9);
  padding: 9px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.ffl-toggle-list li span,
.ffl-user-list li span,
.ffl-score-list li span {
  font-size: 13px;
  color: #2b486b;
}

.ffl-toggle-list b {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: #cfdced;
  position: relative;
}

.ffl-toggle-list b::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
}

.ffl-toggle-list b.on {
  background: linear-gradient(90deg, #2f67df 0%, #26a98b 100%);
}

.ffl-toggle-list b.on::after {
  left: 18px;
}

.ffl-user-list small {
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  color: #1a8d67;
  background: #e7f8f1;
}

.ffl-note {
  margin: 0;
  color: #1d4e83;
  font-size: 15px;
  font-weight: 700;
}

.ffl-kanban {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ffl-kanban section {
  border: 1px solid rgba(34, 106, 190, 0.14);
  border-radius: 12px;
  padding: 8px;
  background: rgba(247, 251, 255, 0.92);
}

.ffl-kanban h4 {
  margin: 0 0 8px;
  font-size: 13px;
  color: #153a68;
}

.ffl-kanban p {
  margin: 0 0 6px;
  padding: 6px;
  border-radius: 9px;
  background: #ffffff;
  border: 1px solid rgba(31, 101, 184, 0.1);
  font-size: 12px;
}

.ffl-donut-row {
  margin-top: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.ffl-donut {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(#2f67df 0 60%, #20ad89 60% 72%, #e2ebf8 72% 100%);
  display: grid;
  place-items: center;
}

.ffl-donut span {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #143a69;
}

.ffl-donut-row ul {
  margin: 0;
  padding-left: 16px;
  font-size: 13px;
  color: #49627e;
  line-height: 1.7;
}

.ffl-checklist li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: #4b6680;
}

.ffl-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid rgba(39, 103, 186, 0.35);
  background: #fff;
}

.ffl-checklist li.done::before {
  background: linear-gradient(130deg, #2f67df 0%, #1ca987 100%);
  border-color: transparent;
}

.ffl-filter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 8px;
}

.ffl-filter-row span {
  border: 1px solid rgba(38, 103, 187, 0.14);
  border-radius: 10px;
  min-height: 40px;
  display: grid;
  place-items: center;
  background: rgba(248, 252, 255, 0.94);
  font-size: 13px;
  color: #4a637f;
}

.ffl-bar-chart {
  margin-top: 10px;
  height: 110px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
}

.ffl-bar-chart span {
  border-radius: 10px 10px 2px 2px;
  background: linear-gradient(180deg, #2f67df 0%, #29b18d 100%);
}

.ffl-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.ffl-table th,
.ffl-table td {
  text-align: left;
  font-size: 13px;
  color: #4b6480;
  border-bottom: 1px solid rgba(38, 105, 188, 0.12);
  padding: 9px 6px;
}

.ffl-table th {
  color: #1e4778;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ffl-pipeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.ffl-pipeline span {
  border-radius: 999px;
  text-align: center;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(35, 105, 191, 0.2);
  background: #f4f9ff;
  color: #2a507c;
}

.ffl-radar {
  margin-top: 10px;
  height: 220px;
  border-radius: 16px;
  background:
    radial-gradient(circle at center, rgba(48, 102, 202, 0.2) 0, rgba(48, 102, 202, 0.2) 10%, transparent 11%),
    radial-gradient(circle at center, rgba(48, 102, 202, 0.16) 0, rgba(48, 102, 202, 0.16) 22%, transparent 23%),
    radial-gradient(circle at center, rgba(48, 102, 202, 0.12) 0, rgba(48, 102, 202, 0.12) 34%, transparent 35%),
    radial-gradient(circle at center, rgba(48, 102, 202, 0.08) 0, rgba(48, 102, 202, 0.08) 46%, transparent 47%),
    linear-gradient(180deg, rgba(241, 247, 255, 0.9) 0%, rgba(250, 253, 255, 0.94) 100%);
  border: 1px solid rgba(36, 102, 189, 0.16);
}

.ffl-score-list strong {
  color: #15406f;
  font-size: 22px;
}

.ffl-score-list small {
  font-size: 11px;
  color: #4e6985;
}

.ffl-chat {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.ffl-chat p {
  margin: 0;
  border: 1px solid rgba(39, 105, 187, 0.14);
  border-radius: 12px;
  background: rgba(248, 252, 255, 0.92);
  padding: 10px;
  font-size: 14px;
}

.ffl-status {
  margin-top: 8px;
  font-size: 32px;
  font-weight: 800;
  color: #123b6d;
}

.ffl-action-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ffl-final {
  background: linear-gradient(106deg, #122b58 0%, #194073 48%, #1f8f79 100%);
  border: 0;
}

.ffl-final::after {
  display: none;
}

.ffl-final-wrap {
  text-align: center;
}

.ffl-final .ffl-kicker,
.ffl-final .ffl-title,
.ffl-final .ffl-subtext,
.ffl-final-line {
  color: #eef6ff;
  margin-left: auto;
  margin-right: auto;
}

.ffl-final .ffl-kicker::after {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #7db4ff 0%, #5ce3bf 100%);
}

.ffl-final .ffl-title {
  max-width: 15ch;
}

.ffl-final .ffl-subtext {
  max-width: 760px;
  color: #d6e4f7;
}

.ffl-final .ffl-chip {
  color: #f0f8ff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.ffl-final-line {
  margin-top: 14px;
  font-size: 15px;
  color: #d8e9fb;
}

/* Refinamento visual bloco a bloco (2 ao 17) */
.ffl-section {
  scroll-margin-top: 84px;
}

.ffl-section-layout {
  align-items: start;
}

.ffl-intro {
  position: sticky;
  top: 94px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(248, 252, 255, 0.8) 0%, rgba(238, 247, 255, 0.72) 100%);
  border: 1px solid rgba(35, 108, 190, 0.1);
}

.ffl-intro .ffl-subtext {
  font-size: 15px;
  line-height: 1.65;
}

.ffl-card,
.ffl-glass-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ffl-card:hover,
.ffl-glass-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 108, 192, 0.2);
  box-shadow: 0 24px 52px rgba(16, 44, 86, 0.12);
}

#bloco-2 .ffl-value-grid .ffl-card {
  position: relative;
  min-height: 164px;
  padding-top: 56px;
}

#bloco-2 .ffl-value-grid .ffl-card::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(140deg, rgba(48, 106, 215, 0.22) 0%, rgba(32, 173, 136, 0.2) 100%);
  border: 1px solid rgba(43, 105, 191, 0.2);
}

#bloco-2 .ffl-value-grid .ffl-card::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(130deg, #2d62de 0%, #1da98a 100%);
  box-shadow:
    0 0 0 6px rgba(49, 109, 212, 0.1),
    0 0 0 12px rgba(49, 109, 212, 0.04);
}

#bloco-2 .ffl-metric-grid article {
  position: relative;
}

#bloco-2 .ffl-metric-grid article::after {
  content: "↑";
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 11px;
  font-weight: 800;
  color: #1a9c7b;
}

#bloco-2 .ffl-chart-card {
  background: linear-gradient(168deg, rgba(246, 251, 255, 0.96) 0%, rgba(240, 248, 255, 0.92) 100%);
}

#bloco-2 .ffl-line-chart {
  background-image:
    linear-gradient(to top, rgba(40, 96, 184, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(247, 251, 255, 0.95) 0%, rgba(240, 248, 255, 0.92) 100%);
  background-size: 100% 24px, 100% 100%;
}

#bloco-3 .ffl-org-flow > article.ffl-card:nth-of-type(1) {
  background: linear-gradient(94deg, #1f4b9d 0%, #2459bf 100%);
  border-color: rgba(16, 65, 140, 0.4);
}

#bloco-3 .ffl-org-flow > article.ffl-card:nth-of-type(1) h3,
#bloco-3 .ffl-org-flow > article.ffl-card:nth-of-type(1) p {
  color: #edf5ff;
}

#bloco-3 .ffl-org-flow > article.ffl-card:nth-of-type(2) {
  background: linear-gradient(94deg, #138c84 0%, #1fa06f 100%);
  border-color: rgba(17, 132, 117, 0.45);
}

#bloco-3 .ffl-org-flow > article.ffl-card:nth-of-type(2) h3,
#bloco-3 .ffl-org-flow > article.ffl-card:nth-of-type(2) p {
  color: #f1fffb;
}

#bloco-3 .ffl-org-flow .ffl-three-cols .ffl-card {
  border-style: dashed;
  border-color: rgba(34, 114, 187, 0.38);
  background: rgba(251, 254, 255, 0.95);
}

#bloco-3 .ffl-arrow {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(43, 104, 192, 0.25);
  background: rgba(247, 251, 255, 0.95);
  display: grid;
  place-items: center;
}

#bloco-3 .ffl-content-stack > .ffl-card {
  background: linear-gradient(165deg, rgba(247, 252, 255, 0.95) 0%, rgba(241, 250, 246, 0.92) 100%);
}

#bloco-4 .ffl-impact {
  border-left-width: 5px;
  background: linear-gradient(145deg, rgba(244, 249, 255, 0.95) 0%, rgba(237, 247, 255, 0.92) 100%);
}

#bloco-4 .ffl-resource-grid .ffl-card {
  min-height: 176px;
  position: relative;
  padding-top: 54px;
}

#bloco-4 .ffl-resource-grid .ffl-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(46, 103, 215, 0.18) 0%, rgba(63, 181, 154, 0.2) 100%);
  border: 1px solid rgba(39, 108, 194, 0.2);
}

#bloco-4 .ffl-people-media {
  background: linear-gradient(168deg, rgba(250, 253, 255, 0.98) 0%, rgba(244, 250, 255, 0.95) 100%);
}

#bloco-4 .ffl-overlay-card.bottom {
  border-color: rgba(30, 156, 125, 0.28);
  background: rgba(243, 252, 248, 0.96);
}

#bloco-5 .ffl-flow-steps div {
  padding: 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(35, 104, 186, 0.16);
  background: rgba(248, 252, 255, 0.94);
}

#bloco-5 .ffl-flow-steps i {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(44, 106, 194, 0.24);
  background: rgba(248, 252, 255, 0.95);
  display: grid;
  place-items: center;
}

#bloco-5 .ffl-toggle-list li,
#bloco-5 .ffl-user-list li {
  min-height: 44px;
}

#bloco-6 .ffl-kanban section:nth-child(1) {
  border-top: 3px solid #f0a23d;
}

#bloco-6 .ffl-kanban section:nth-child(2) {
  border-top: 3px solid #2e63df;
}

#bloco-6 .ffl-kanban section:nth-child(3) {
  border-top: 3px solid #1ea873;
}

#bloco-6 .ffl-checklist li.done {
  color: #2b5b4f;
  font-weight: 700;
}

#bloco-7 .ffl-filter-row span {
  justify-content: space-between;
  padding: 0 12px;
  position: relative;
}

#bloco-7 .ffl-filter-row span::after {
  content: "▾";
  font-size: 11px;
  color: #5f7692;
}

#bloco-7 .ffl-metric-grid article {
  position: relative;
  padding-top: 14px;
}

#bloco-7 .ffl-metric-grid article::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 10px;
  color: #1b9e7d;
  font-weight: 800;
}

#bloco-7 .ffl-table tbody tr:nth-child(even) {
  background: rgba(245, 250, 255, 0.72);
}

#bloco-8 .ffl-pipeline span:nth-child(1) {
  background: rgba(60, 114, 217, 0.14);
}

#bloco-8 .ffl-pipeline span:nth-child(2) {
  background: rgba(42, 146, 189, 0.14);
}

#bloco-8 .ffl-pipeline span:nth-child(3) {
  background: rgba(33, 162, 148, 0.14);
}

#bloco-8 .ffl-pipeline span:nth-child(4) {
  background: rgba(242, 179, 54, 0.14);
}

#bloco-8 .ffl-pipeline span:nth-child(5) {
  background: rgba(236, 132, 64, 0.14);
}

#bloco-8 .ffl-pipeline span:nth-child(6) {
  background: rgba(149, 110, 220, 0.14);
}

#bloco-8 .ffl-pipeline span:nth-child(7) {
  background: rgba(108, 119, 226, 0.14);
}

#bloco-8 .ffl-seven-grid .ffl-card {
  min-height: 122px;
}

#bloco-8 .ffl-seven-grid .ffl-card p {
  margin-top: 8px;
  font-size: 13px;
}

#bloco-9 .ffl-value-grid.six .ffl-card {
  padding-top: 44px;
  min-height: 144px;
  position: relative;
}

#bloco-9 .ffl-value-grid.six .ffl-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 1px solid rgba(45, 107, 193, 0.25);
  background: linear-gradient(140deg, rgba(50, 109, 216, 0.16) 0%, rgba(27, 169, 144, 0.17) 100%);
}

#bloco-9 .ffl-radar {
  position: relative;
}

#bloco-9 .ffl-radar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 112px;
  height: 112px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 2px solid rgba(67, 111, 201, 0.36);
  border-radius: 14px;
}

#bloco-10 .ffl-chip-row .ffl-chip:nth-child(1) {
  border-color: rgba(29, 170, 132, 0.34);
  color: #1b8d6e;
}

#bloco-10 .ffl-chip-row .ffl-chip:nth-child(2) {
  border-color: rgba(230, 94, 74, 0.3);
  color: #c85a4f;
}

#bloco-10 .ffl-chip-row .ffl-chip:nth-child(3) {
  border-color: rgba(62, 114, 213, 0.34);
  color: #295fc3;
}

#bloco-10 .ffl-chip-row .ffl-chip:nth-child(4) {
  border-color: rgba(122, 139, 162, 0.34);
  color: #5a7088;
}

#bloco-10 .ffl-three-cols .ffl-card:nth-child(3) .ffl-bullets li {
  color: #c26148;
}

#bloco-11 .ffl-chat p:first-child {
  background: rgba(241, 248, 255, 0.96);
  border-color: rgba(45, 108, 193, 0.2);
}

#bloco-11 .ffl-chat p:last-child {
  background: rgba(239, 251, 246, 0.96);
  border-color: rgba(31, 168, 131, 0.24);
}

#bloco-12 .ffl-three-cols .ffl-card {
  border-left: 3px solid rgba(45, 105, 194, 0.34);
}

#bloco-12 .ffl-three-cols .ffl-card h3 {
  font-size: 17px;
}

#bloco-13 .ffl-status {
  background: linear-gradient(100deg, #204f9d 0%, #1a8a76 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#bloco-13 .ffl-action-grid .ffl-inline-btn {
  min-height: 42px;
  font-size: 0.84rem;
}

#bloco-14 .ffl-table tbody td:first-child {
  color: #1b416f;
  font-weight: 700;
}

#bloco-15 .ffl-split-grid .ffl-card:first-child {
  position: relative;
}

#bloco-15 .ffl-split-grid .ffl-card:first-child::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 76px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2e62df 0%, #1ea98a 100%);
  box-shadow:
    0 20px 0 rgba(48, 99, 204, 0.25),
    0 40px 0 rgba(35, 167, 138, 0.25);
}

#bloco-15 .ffl-split-grid .ffl-card:last-child .ffl-chip-row {
  margin-top: 10px;
}

#bloco-16 .ffl-innovation-grid .ffl-card {
  min-height: 210px;
  position: relative;
  padding-top: 18px;
}

#bloco-16 .ffl-innovation-grid .ffl-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f63de 0%, #1dac8a 100%);
}

#bloco-17 .ffl-final-wrap {
  max-width: 980px;
  margin: 0 auto;
}

#bloco-17 .ffl-index {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

@media (max-width: 1180px) {
  .ffl-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ffl-topbar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .ffl-nav {
    width: 100%;
  }

  .ffl-actions {
    justify-content: center;
  }

  .ffl-hero,
  .ffl-section {
    padding: 18px;
  }

  .ffl-hero-grid,
  .ffl-section-layout,
  .ffl-split-grid,
  .ffl-three-cols,
  .ffl-innovation-grid {
    grid-template-columns: 1fr;
  }

  .ffl-flow-steps {
    grid-template-columns: 1fr;
  }

  .ffl-flow-steps i {
    transform: rotate(90deg);
  }

  .ffl-value-grid.five,
  .ffl-value-grid.six,
  .ffl-resource-grid.four,
  .ffl-benefit-grid.four,
  .ffl-seven-grid,
  .ffl-metric-grid.four,
  .ffl-pipeline,
  .ffl-progress-row,
  .ffl-filter-row,
  .ffl-kanban {
    grid-template-columns: 1fr;
  }

  .ffl-intro .ffl-title,
  .ffl-title,
  .ffl-hero-title {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .ffl-subtext {
    font-size: 15px;
    line-height: 1.6;
  }

  .ffl-hero-ctas,
  .ffl-chip-row {
    width: 100%;
  }

  .ffl-btn-primary,
  .ffl-btn-secondary {
    width: 100%;
  }

  .ffl-overlay-card {
    position: static;
    max-width: none;
    margin-top: 8px;
  }

  .ffl-people-media {
    min-height: 0;
  }

  .ffl-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .ffl-intro {
    position: static;
    top: auto;
    padding: 10px 0;
    border: 0;
    background: transparent;
  }

  #bloco-2 .ffl-value-grid .ffl-card,
  #bloco-4 .ffl-resource-grid .ffl-card,
  #bloco-9 .ffl-value-grid.six .ffl-card,
  #bloco-16 .ffl-innovation-grid .ffl-card {
    min-height: 0;
    padding-top: 52px;
  }

  #bloco-16 .ffl-innovation-grid .ffl-card {
    padding-top: 18px;
  }

  #bloco-8 .ffl-seven-grid .ffl-card {
    min-height: 0;
  }

  .ffl-section::after {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 760px) {
  .ffl-main {
    padding-top: 16px;
    padding-bottom: 28px;
  }

  .ffl-section + .ffl-section {
    margin-top: 12px;
  }

  .ffl-card,
  .ffl-glass-card {
    border-radius: 18px;
  }

  .ffl-index {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 13px;
  }

  .ffl-nav button,
  .ffl-actions button {
    min-height: 38px;
    font-size: 0.84rem;
    padding: 0 12px;
  }

  .ffl-brand-text {
    font-size: 1.6rem;
  }
}
