:root {
  --bg: #f3f4f1;
  --surface: #ffffff;
  --surface-2: #f7f8f5;
  --ink: #111311;
  --muted: #727770;
  --line: #e2e5df;
  --line-2: #d7dbd3;
  --green: #5bc500;
  --green-soft: #eaf8de;
  --green-dark: #347900;
  --dark: #101310;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(18, 26, 17, .08);
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 2%, rgba(91, 197, 0, .09), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0) 25rem),
    var(--bg);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.hidden { display: none !important; }

.ui-icon,
.brand-symbol,
.brand-card-icon,
.network-icon,
.legend-brand-icon,
.legend-network-icon,
.exec-brand-icon,
.exec-network-icon,
.button-icon,
.mini-icon,
.summary-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  flex: 0 0 auto;
}
.solid-dot { fill: currentColor; stroke: none; }

/* AUTH */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
}
.auth-visual {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 16%, rgba(91,197,0,.25), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
    #101410;
  color: #fff;
  padding: clamp(36px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .18;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.75), transparent 85%);
}
.auth-kicker {
  position: relative;
  z-index: 1;
  color: #a9ff64;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.auth-title {
  position: relative;
  z-index: 1;
  max-width: 650px;
  font-size: clamp(44px, 6vw, 84px);
  line-height: .93;
  letter-spacing: -.065em;
  margin: 24px 0;
  font-weight: 700;
}
.auth-note {
  position: relative;
  z-index: 1;
  color: #a4aba2;
  max-width: 430px;
  line-height: 1.6;
}
.auth-form-wrap {
  display: grid;
  place-items: center;
  padding: 32px;
}
.auth-card {
  width: min(430px, 100%);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(18,26,17,.08);
  backdrop-filter: blur(18px);
}
.auth-mini-kicker {
  color: var(--green-dark);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 12px;
}
.auth-card h1 { margin: 0 0 8px; font-size: 29px; letter-spacing: -.04em; }
.auth-card > p { color: var(--muted); margin: 0 0 28px; line-height: 1.55; }

/* APP SHELL */
.app-shell { min-height: 100vh; }
.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(243,244,241,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226,229,223,.9);
}
.topbar-inner {
  width: min(1540px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand-lockup { display: flex; align-items: center; gap: 12px; }
.brand-duo {
  display: flex;
  align-items: center;
  padding: 3px;
  gap: 3px;
  border-radius: 14px;
  background: #e6e9e2;
}
.brand-duo-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
}
.brand-duo-control { background: var(--green); color: #102008; }
.brand-duo-carlos { background: #111410; color: #fff; }
.brand-symbol { width: 19px; height: 19px; }
.brand-lockup strong { font-size: 15px; }
.brand-lockup small { display: block; color: var(--muted); margin-top: 2px; font-size: 11px; }
.top-actions { display: flex; align-items: center; gap: 10px; }

.page {
  width: min(1540px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 70px;
}
.page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--green-dark);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  margin-bottom: 10px;
}
.eyebrow::before {
  content:""; width: 22px; height: 2px; background: var(--green);
}
.page-head h1 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.055em;
  margin: 0;
}
.page-head p { color: var(--muted); margin: 10px 0 0; }
.week-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.summary-card {
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 92px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(18,26,17,.04);
}
.summary-card strong {
  font-size: 26px;
  letter-spacing: -.045em;
  line-height: 1;
}
.summary-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #626861;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.summary-card.control {
  background: linear-gradient(180deg, #f5fbef, #eef8e7);
  border-color: #dcefd0;
}
.summary-card.carlos {
  background: linear-gradient(180deg, #1a1d1a, #111411);
  border-color: #1a1d1a;
  color: #fff;
}
.summary-card.carlos .summary-label { color: #b1ff76; }
.summary-card.social strong { font-size: 16px; line-height: 1.25; }
.summary-icon { width: 14px; height: 14px; }
.summary-card.social .summary-label .summary-icon + .summary-icon { margin-left: 2px; }

/* BUTTONS */
.btn {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  min-height: 42px;
  padding: 0 16px;
  border-radius: 13px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .18s ease;
  box-shadow: 0 3px 10px rgba(18,26,17,.03);
}
.btn:hover { transform: translateY(-1px); border-color: #cad0c7; }
.btn-primary { background: var(--ink); border-color: var(--ink); color: white; }
.btn-green { background: var(--green); border-color: var(--green); color: #102008; }
.btn-ghost { background: transparent; box-shadow: none; }
.btn-danger { color: #a7332f; }
.icon-btn { width: 42px; padding: 0; font-size: 20px; }
.button-icon { width: 16px; height: 16px; }

/* WEEK GRID */
.week-board {
  display: grid;
  grid-template-columns: repeat(7, minmax(170px, 1fr));
  gap: 12px;
  align-items: start;
}
.day-column {
  min-height: 490px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  padding: 14px;
  box-shadow: 0 8px 26px rgba(18,26,17,.035);
}
.day-head {
  padding: 8px 5px 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.day-side { display: flex; align-items: center; gap: 8px; }
.day-name { font-size: 12px; letter-spacing: .13em; font-weight: 800; color: var(--muted); }
.day-date { font-size: 29px; letter-spacing: -.05em; font-weight: 700; line-height: 1; }
.day-total {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #edf0ea;
  color: #555b53;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}
.day-add {
  width: 100%;
  border: 1px dashed #cfd5cb;
  color: #737a70;
  background: transparent;
  border-radius: 14px;
  min-height: 38px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.day-add:hover { background: var(--surface); color: var(--ink); }
.mini-icon { width: 13px; height: 13px; }

.post-list { display: grid; gap: 10px; }
.post-card {
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 15px;
  box-shadow: 0 8px 24px rgba(18,26,17,.035);
  cursor: pointer;
  transition: .16s ease;
}
.post-card:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(18,26,17,.07); }
.post-card.control-up { box-shadow: inset 0 0 0 1px rgba(91,197,0,.08), 0 8px 24px rgba(18,26,17,.035); }
.post-card.carlos-gomes { box-shadow: inset 0 0 0 1px rgba(17,20,16,.05), 0 8px 24px rgba(18,26,17,.035); }
.post-card.control-up:hover { border-color: rgba(91,197,0,.42); }
.post-card.carlos-gomes:hover { border-color: #bdc2ba; }

.post-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.post-brand-identity {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 800;
}
.post-brand-icon {
  width: 27px;
  height: 27px;
  border-radius: 9px;
  display: grid;
  place-items: center;
}
.post-brand-identity.control-up { color: #376f0c; }
.post-brand-identity.control-up .post-brand-icon { background: var(--green-soft); color: #438e0c; }
.post-brand-identity.carlos-gomes { color: #191c19; }
.post-brand-identity.carlos-gomes .post-brand-icon { background: #171a17; color: #fff; }
.brand-card-icon { width: 15px; height: 15px; }
.post-time {
  color: #747a72;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.post-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-bottom: 9px; }
.post-meta-v2 { gap: 7px; margin-bottom: 10px; }
.network-label,
.format-label {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  color: #70766e;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.network-icon { width: 12px; height: 12px; }
.format-label::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: #bdc2b9;
  margin-right: 1px;
}
.post-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.32;
  letter-spacing: -.025em;
}
.post-card p {
  color: #7a8078;
  margin: 7px 0 0;
  font-size: 11px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.empty {
  color: #a0a59d;
  text-align: center;
  padding: 18px 4px;
  font-size: 11px;
}

/* FORM */
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 7px;
  color: #545a52;
}
.input {
  width: 100%;
  min-height: 46px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: #fbfcfa;
  padding: 10px 12px;
  color: var(--ink);
  outline: none;
  transition: .15s ease;
}
.input:focus { border-color: #94bd75; box-shadow: 0 0 0 3px rgba(91,197,0,.10); }
textarea.input { min-height: 120px; resize: vertical; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-actions { display:flex; justify-content:space-between; gap:10px; margin-top: 24px; }
.form-actions-right { display:flex; gap:10px; margin-left:auto; }
.auth-error, .form-error {
  min-height: 18px;
  color: #a7332f;
  font-size: 12px;
  margin: -4px 0 14px;
}

/* MODAL */
.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(11,14,11,.55);
  backdrop-filter: blur(7px);
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal {
  width: min(570px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  background: var(--surface);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
  padding: 24px;
}
.modal-head {
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
  margin-bottom:22px;
}
.modal h2 { margin:0; font-size:25px; letter-spacing:-.04em; }
.modal-head p { margin:5px 0 0; color:var(--muted); font-size:12px; }

/* TOAST */
.toast {
  position: fixed;
  z-index: 140;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: #121512;
  color: #fff;
  padding: 12px 17px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 700;
}

/* EXECUTIVE / CARLOS MODE */
.executive-page {
  min-height: 100vh;
  padding: 24px 16px 60px;
  background:
    radial-gradient(circle at 100% 0%, rgba(91,197,0,.13), transparent 26rem),
    #e9ece6;
}
.executive-toolbar {
  width: min(820px, 100%);
  margin: 0 auto 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.executive-sheet {
  width: min(820px, 100%);
  min-height: 1200px;
  margin: 0 auto;
  background: #fbfcf9;
  box-shadow: 0 28px 80px rgba(18,26,17,.14);
  overflow: hidden;
  border-radius: 2px;
}
.exec-header {
  background:
    radial-gradient(circle at 92% 10%, rgba(91,197,0,.18), transparent 17rem),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    #10130f;
  color: #fff;
  padding: 42px 52px 34px;
  position: relative;
}
.exec-header::after {
  content:"";
  position:absolute; left:52px; bottom:0;
  width:72px; height:4px; background:var(--green);
}
.exec-kicker {
  display:flex;
  align-items:center;
  gap:7px;
  color:#a9ff64;
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.18em;
}
.exec-kicker span { color:#fff; opacity:.45; }
.exec-title {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
  margin-top:18px;
}
.exec-title h1 {
  margin:0;
  font-size:42px;
  line-height:.98;
  letter-spacing:-.055em;
}
.exec-period {
  text-align:right;
  color:#b7bdb4;
  font-size:12px;
  line-height:1.6;
}
.exec-stats {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.exec-stat {
  min-width: 120px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.exec-stat span {
  display: block;
  color: #a5aba3;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.exec-stat strong {
  display: block;
  margin-top: 5px;
  font-size: 22px;
  letter-spacing: -.04em;
}

.exec-legend {
  padding: 18px 52px;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  font-size:10px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
  background: #fff;
}
.exec-legend-brand {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 10px;
}
.exec-legend-control { background: #eef8e7; color: #3c7e0e; }
.exec-legend-carlos { background: #181b18; color: #fff; }
.legend-brand-icon { width: 15px; height: 15px; }
.exec-channels {
  margin-left: auto;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}
.legend-network-icon { width: 13px; height: 13px; }

.exec-days { padding: 20px 52px 44px; }
.exec-day {
  display:grid;
  grid-template-columns: 108px 1fr;
  gap:22px;
  padding: 24px 0;
  border-bottom:1px solid var(--line);
}
.exec-day:last-child { border-bottom:0; }
.exec-day-label strong {
  display:block;
  font-size:13px;
  letter-spacing:.045em;
}
.exec-day-label span {
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.exec-posts { display:grid; gap:10px; }
.exec-post {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 16px;
}
.exec-post.control-up {
  background: #f1f8eb;
  border-color: #dcefd0;
}
.exec-post.carlos-gomes {
  background: #181b18;
  border-color: #181b18;
  color: #fff;
}
.exec-post-icon-wrap {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}
.exec-post.control-up .exec-post-icon-wrap {
  background: var(--green);
  color: #102008;
}
.exec-post.carlos-gomes .exec-post-icon-wrap {
  background: #2a2e2a;
  color: #b2ff75;
}
.exec-brand-icon { width: 21px; height: 21px; stroke-width: 1.6; }
.exec-post-content { min-width: 0; }
.exec-post-top {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:9px;
  margin: 1px 0 6px;
}
.exec-post-brand {
  font-size: 8.5px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-weight:800;
}
.exec-post-meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  line-height: 1.3;
}
.exec-network-icon { width: 11px; height: 11px; }
.exec-post.control-up .exec-post-brand { color: #417e14; }
.exec-post.control-up .exec-post-meta { color: #6f8163; }
.exec-post.carlos-gomes .exec-post-brand { color: #b3ff79; }
.exec-post.carlos-gomes .exec-post-meta { color: #a7ada5; }
.exec-post h3 {
  margin:0;
  font-size: 14px;
  line-height:1.3;
  letter-spacing: -.022em;
}
.exec-post.carlos-gomes h3 { color: #fff; }
.exec-post.control-up p { color: #6d7767; }
.exec-post.carlos-gomes p { color: #adb3aa; }
.exec-post p {
  margin:5px 0 0;
  font-size:10px;
  line-height:1.45;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
}

.exec-empty {
  color:#a0a59d;
  font-size:11px;
  padding:8px 0;
}
.exec-footer {
  border-top:1px solid var(--line);
  margin:0 52px;
  padding:22px 0 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:#8b9088;
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:700;
}
.exec-footer-mark { color: #458f0e; }

/* SETUP NOTICE */
.setup-box {
  width:min(720px, calc(100% - 40px));
  margin:80px auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}
.setup-box code { background:#f2f4f0; padding:2px 6px; border-radius:6px; }

@media (max-width: 1280px) {
  .summary-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1050px) {
  .week-board { overflow-x:auto; grid-template-columns: repeat(7, 190px); padding-bottom:10px; }
}
@media (max-width: 760px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { min-height:auto; padding:34px 24px; }
  .auth-title { font-size:48px; }
  .auth-note { display:none; }
  .auth-form-wrap { min-height:55vh; }
  .topbar-inner, .page { width:min(100% - 28px, 1540px); }
  .topbar-inner { min-height:68px; }
  .brand-lockup small { display:none; }
  .top-actions .btn-label { display:none; }
  .page { padding-top:28px; }
  .page-head { align-items:flex-start; flex-direction:column; }
  .week-controls { width:100%; }
  .week-controls .btn { flex:1; }
  .summary-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns:1fr; }

  .executive-page { padding:0; background:#fdfefb; }
  .executive-toolbar {
    position:sticky;
    z-index:20;
    top:0;
    padding:10px;
    background:rgba(243,244,241,.94);
    margin:0;
    width:100%;
  }
  .executive-sheet { min-height:100vh; width:100%; box-shadow:none; }
  .exec-header { padding:38px 26px 31px; }
  .exec-header::after { left:26px; }
  .exec-title { align-items:flex-start; flex-direction:column; gap:14px; }
  .exec-title h1 { font-size:35px; }
  .exec-period { text-align:left; }
  .exec-stats { gap: 8px; }
  .exec-stat { min-width: 0; flex: 1 1 calc(33.333% - 8px); }
  .exec-legend { padding:16px 26px; }
  .exec-channels { width:100%; margin-left:0; padding-top:3px; }
  .exec-days { padding:10px 26px 36px; }
  .exec-day { grid-template-columns:78px 1fr; gap:10px; }
  .exec-post { grid-template-columns:36px minmax(0, 1fr); gap:9px; padding:11px; }
  .exec-post-icon-wrap { width:34px; height:34px; border-radius:10px; }
  .exec-brand-icon { width:18px; height:18px; }
  .exec-post-top { align-items:flex-start; flex-direction:column; gap:3px; }
  .exec-footer { margin:0 26px; }
}
@media print {
  body { background:#fff; }
  .executive-page { padding:0; background:#fff; }
  .executive-toolbar { display:none !important; }
  .executive-sheet {
    width:100%;
    min-height:100vh;
    box-shadow:none;
  }
  .exec-post.carlos-gomes {
    background: #181b18 !important;
    color: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .exec-post.control-up,
  .exec-post.control-up .exec-post-icon-wrap,
  .exec-legend-control,
  .exec-legend-carlos,
  .exec-header,
  .summary-card.carlos {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
