/* /public/assets/css-pages/eleicao/votar-steps-layout-novo.css */

/* ===== GLOBAL ===== */
html{
  scrollbar-gutter: stable !important;
  overflow-y: scroll !important;
  height: 100%;
}
body{ min-height: 100%; }

/* ===== TOKENS ===== */
:root{
  --svl-bg: url("/public/assets/images/bg-main-white-preserve-lines.png");
  --svl-red: #d43f46;
  --svl-ink: rgb(81, 76, 76);
  --svl-gray: #5a6368;

  --svl-border: rgba(0,0,0,.08);
  --svl-border-strong: rgba(0,0,0,.10);
  --svl-shadow: 0 12px 28px rgba(0,0,0,.045);

  --svl-font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Noto Sans";
}

/* ===== PAGE BASE (GRID: header / main / footer) ===== */
body.asb-body{
  background-image: var(--svl-bg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;

  font-family: var(--svl-font-sans);
  color: #0f172a;

  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
@media (max-width: 575.98px){
  body.asb-body{ background-attachment: scroll; }
}

/* MAIN ocupa a linha do meio */
main.svl-main{
  min-height: 0;
  padding-bottom: 0;
}
.svl-main-inner{
  height: 100%;
  min-height: 0;
}

/* ===== HEADER (SVH) ===== */
.svh-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  margin-bottom: 0;
}
.svh-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  transition: padding .18s ease;
}
.svh-inner{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.svh-brand{
  display: flex;
  align-items: center;
  gap: 14px;
}
.svh-logo{
  height: 58px;
  transition: height .18s ease;
}
.svh-text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.svh-entidade{
  margin: 0;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 25px;
  color: var(--svl-ink);
}
.svh-subtitle{
  padding-top: 2px;
  color: #6b7280;
  font-size: 14px;
}
.svh-redbar{
  height: 10px;
  background: var(--svl-red);
  transition: height .18s ease;
}

/* shrink */
@media (min-width: 769px){
  .svh-container{ transition: none !important; }
  .svh-inner{
    transition: transform .18s ease !important;
    transform-origin: left center;
    will-change: transform;
  }
  .svh-header.svh-shrink .svh-container{ padding: 16px 20px !important; }
  .svh-header.svh-shrink .svh-logo{ height: 58px !important; }
  .svh-header.svh-shrink .svh-entidade{ font-size: 30px !important; }
  .svh-header.svh-shrink .svh-subtitle{ font-size: 13px !important; }
  .svh-header.svh-shrink .svh-inner{ transform: scale(0.88) !important; }
}
@media (max-width: 768px){
  /* sem animação no mobile */
  .svh-container,
  .svh-logo,
  .svh-entidade,
  .svh-subtitle,
  .svh-inner,
  .svh-redbar{
    transition: none !important;
  }

  /* MOBILE: já nasce “shrink” */
  .svh-container{ padding: 10px 16px !important; }
  .svh-logo{ height: 42px !important; }
  .svh-entidade{ font-size: 24px !important; }
  .svh-subtitle{ font-size: 12px !important; }

  .svh-inner{
    transform-origin: left center;
    will-change: transform;
    transform: scale(0.84) !important;
  }

  /* opcional: redbar menor no mobile (se você quiser) */
  /* .svh-redbar{ height: 8px !important; } */
}

/* ===== MOBILE TITLE (acima do form) ===== */
.svl-title-mobile{
  display: none;
  margin: 8px 0 0px 0;
  padding-bottom: 0px;
  border-bottom: 1px solid var(--svl-border-strong);
}
.svl-mobile-kicker{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(90,99,104,.85);
  margin-bottom: 6px;
}
.svl-mobile-sub{
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: rgba(81,76,76,.92);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.svl-mobile-range{
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

/* ===== LAYOUT (duas colunas) ===== */
.svl-layout{
  display: grid;
  grid-template-columns: 520px 520px;
  gap: 18px;

  height: 100%;
  min-height: 0;
  align-items: stretch;
}
.svl-formpanel{ justify-self: end; }

.svl-left,
.svl-formpanel{
  height: 100%;
  min-height: 0;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
}
.svl-left-inner{
  height: 100%;
  min-height: 0;
  overflow: auto;

  padding-top: 15%;
  padding-left: 18px;
  padding-right: 18px;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Card do form: agora preparado para steps (form grande) */
.svl-formcard{
  max-height: 100%;
  overflow: auto;

  background: #fff;
  border: 1px solid var(--svl-border);
  border-radius: 8px;
  padding: 18px;
  margin-top: 50px;
  box-shadow: var(--svl-shadow);
}

/* ===== ESQUERDA ===== */
.svl-left-head{
  padding: 10px 0 14px 0;
  border-bottom: 3px solid var(--svl-red);
}
.svl-kicker{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(90,99,104,.85);
  margin-bottom: 10px;
}
.svl-left-subtitle{
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: rgba(81,76,76,.92);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.svl-period{
  margin-top: 4px;
  padding: 12px 0 14px 0;
  border-bottom: 0 solid var(--svl-border-strong);
}
.svl-period-label{
  font-size: 12.5px;
  font-weight: 800;
  color: rgba(15,23,42,.70);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.svl-period-range{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
}
.svl-date{
  background: #f3f4f6;
  border: 1px solid var(--svl-border);
  padding: 6px 10px;
  border-radius: 2px;
}
.svl-sep{
  color: rgba(90,99,104,.95);
  font-weight: 800;
}
.svl-partners{
  margin-top: auto;
  padding-top: 14px;
  border-top: 0 solid var(--svl-border);
}

/* ===== “TÍTULO” DO CARD (usado na esquerda e no mobile) ===== */
.asb-card-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.asb-card-title-wrap{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.asb-card-accent{
  width: 3px;
  height: 26px;
  background: var(--svl-gray);
  flex: 0 0 auto;
  transition: height .18s ease;
}
.asb-card-title{
  margin: 0;
  cursor: default;

  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 800;

  font-size: 20px;
  line-height: 25px;
  color: var(--svl-red);

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.asb-card-title-wrap:hover .asb-card-accent{ height: 34px; }

/* ===== RESPONSIVO ===== */
@media (max-width: 992px){
  .svl-layout{
    display: block;
    height: auto;
  }
  .svl-left{ display: none; }
  .svl-formpanel{
    max-width: 100%;
    justify-self: unset;
  }
  .svl-formcard{
    max-height: none;
    overflow: visible;
    margin-top: 12px;
  }
  .svl-title-mobile{ display: block; }
}

/* ===== FOOTER ===== */
.asb-site-footer{
  margin-top: 0;
  background: #5a6368;
  color: #fff;
  padding: 26px 0 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.asb-footer-grid{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.asb-footer-brand{ max-width: 520px; }
.asb-footer-desc{
  font-size: 0.92rem;
  opacity: 0.85;
}
.asb-footer-right{
  display: flex;
  justify-content: flex-end;
}
.asb-footer-badges{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.asb-footer-badge{
  background: rgba(241,245,249,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 2px;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 10px;
  white-space: nowrap;
}
.asb-footer-copy{
  grid-column: 1 / -1;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 0 solid rgba(255,255,255,0.12);
  font-size: 0.82rem;
  opacity: 0.9;
}
.asb-footer-dot{
  margin: 0 6px;
  opacity: 0.75;
}
@media (max-width: 768px){
  .asb-footer-grid{ grid-template-columns: 1fr; }
  .asb-footer-right{ justify-content: flex-start; }
  .asb-footer-badges{ justify-content: flex-start; }
}

/* ===== BANNER (ESQUERDA) — reutiliza o seu padrão atual ===== */
.banner-votacao--footer{
  position: relative;
  padding: 10px 14px;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  height: 50px;

  background-color: #fff6f7;

  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3Crect stroke='%23ffffff' stroke-width='0.2' width='1' height='1' id='s'/%3E%3Cpattern id='a' width='3' height='3' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cuse fill='%23fcfcfc' href='%23s' y='2'/%3E%3Cuse fill='%23fcfcfc' href='%23s' x='1' y='2'/%3E%3Cuse fill='%23fafafa' href='%23s' x='2' y='2'/%3E%3Cuse fill='%23fafafa' href='%23s'/%3E%3Cuse fill='%23f7f7f7' href='%23s' x='2'/%3E%3Cuse fill='%23f7f7f7' href='%23s' x='1' y='1'/%3E%3C/pattern%3E%3Cpattern id='b' width='7' height='11' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cg fill='%23f5f5f5'%3E%3Cuse href='%23s'/%3E%3Cuse href='%23s' y='5' /%3E%3Cuse href='%23s' x='1' y='10'/%3E%3Cuse href='%23s' x='2' y='1'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='8'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='5' y='2'/%3E%3Cuse href='%23s' x='5' y='6'/%3E%3Cuse href='%23s' x='6' y='9'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='h' width='5' height='13' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cg fill='%23f5f5f5'%3E%3Cuse href='%23s' y='5'/%3E%3Cuse href='%23s' y='8'/%3E%3Cuse href='%23s' x='1' y='1'/%3E%3Cuse href='%23s' x='1' y='9'/%3E%3Cuse href='%23s' x='1' y='12'/%3E%3Cuse href='%23s' x='2'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='2'/%3E%3Cuse href='%23s' x='3' y='6'/%3E%3Cuse href='%23s' x='3' y='11'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='4' y='10'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='c' width='17' height='13' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cg fill='%23f2f2f2'%3E%3Cuse href='%23s' y='11'/%3E%3Cuse href='%23s' x='2' y='9'/%3E%3Cuse href='%23s' x='5' y='12'/%3E%3Cuse href='%23s' x='9' y='4'/%3E%3Cuse href='%23s' x='12' y='1'/%3E%3Cuse href='%23s' x='16' y='6'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='d' width='19' height='17' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cg fill='%23ffffff'%3E%3Cuse href='%23s' y='9'/%3E%3Cuse href='%23s' x='16' y='5'/%3E%3Cuse href='%23s' x='14' y='2'/%3E%3Cuse href='%23s' x='11' y='11'/%3E%3Cuse href='%23s' x='6' y='14'/%3E%3C/g%3E%3Cg fill='%23efefef'%3E%3Cuse href='%23s' x='3' y='13'/%3E%3Cuse href='%23s' x='9' y='7'/%3E%3Cuse href='%23s' x='13' y='10'/%3E%3Cuse href='%23s' x='15' y='4'/%3E%3Cuse href='%23s' x='18' y='1'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='e' width='47' height='53' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cg fill='%23d43f46'%3E%3Cuse href='%23s' x='2' y='5'/%3E%3Cuse href='%23s' x='16' y='38'/%3E%3Cuse href='%23s' x='46' y='42'/%3E%3Cuse href='%23s' x='29' y='20'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='f' width='59' height='71' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cg fill='%23d43f46'%3E%3Cuse href='%23s' x='33' y='13'/%3E%3Cuse href='%23s' x='27' y='54'/%3E%3Cuse href='%23s' x='55' y='55'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='g' width='139' height='97' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cg fill='%23d43f46'%3E%3Cuse href='%23s' x='11' y='8'/%3E%3Cuse href='%23s' x='51' y='13'/%3E%3Cuse href='%23s' x='17' y='73'/%3E%3Cuse href='%23s' x='99' y='57'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23b)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23h)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23c)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23d)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23e)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23f)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23g)' width='100%25' height='100%25'/%3E%3C/svg%3E"),
    linear-gradient(
      135deg,
      rgba(212,63,70,.65) 0%,
      rgba(212,63,70,.38) 40%,
      rgba(255,240,242,.92) 75%,
      rgba(255,248,249,1) 100%
    );

  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, scroll;

  transition: box-shadow .12s ease, transform .12s ease;
}
.banner-votacao--footer::after{
  content:'';
  position:absolute;
  inset:0;
  background: rgba(255,246,247,.55);
  pointer-events:none;
}
.banner-votacao--footer .banner-votacao-inner{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.banner-votacao--footer:hover{
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transform: translateY(-1px);
}

/* =========================================================
   JQUERY STEPS — ajustes para ficar “clean” no card
   ========================================================= */

/* garante que o steps não estoure o card */
.svl-steps-form{ width: 100%; }
.svl-steps-form .wizard,
.svl-steps-form .wizard > .content{
  width: 100%;
  background: transparent;
}

/* área do conteúdo (fieldset) */
.svl-steps-form .wizard > .content{
  margin: 12px 0 10px 0 !important;
  min-height: 180px !important; /* evita pulo; pode ajustar */
}

/* fieldset: remove padding estranho do plugin */
.svl-steps-form .wizard > .content > .body{
  position: relative;
  padding: 0 !important;
}

/* títulos/etapas (barra de steps) — deixa discreto */
.svl-steps-form .wizard > .steps{
  margin-bottom: 12px;
}
.svl-steps-form .wizard > .steps > ul{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svl-steps-form .wizard > .steps .number{
  border-radius: 2px;
  font-weight: 800;
}
.svl-steps-form.wizard > .steps a,
.svl-steps-form.wizard > .steps a:hover,
.svl-steps-form.wizard > .steps a:active,
.svl-steps-form .wizard > .steps a,
.svl-steps-form .wizard > .steps a:hover,
.svl-steps-form .wizard > .steps a:active{
  padding: 8px 10px;
  border-radius: 4px;
  background: #f3f4f6;
  color: #111827;
  border: 1px solid var(--svl-border);
}
.svl-steps-form.wizard > .steps .current a,
.svl-steps-form.wizard > .steps .current a:hover,
.svl-steps-form.wizard > .steps .current a:active,
.svl-steps-form .wizard > .steps .current a,
.svl-steps-form .wizard > .steps .current a:hover,
.svl-steps-form .wizard > .steps .current a:active{
  background: rgba(90,99,104,.10);
  border-color: rgba(90,99,104,.22);
}

/* ações (prev/next/finish) */
.svl-steps-form.wizard > .actions,
.svl-steps-form .wizard > .actions{
  margin-top: 14px;
}
.svl-steps-form.wizard > .actions > ul,
.svl-steps-form .wizard > .actions > ul{
  width: 100% !important;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 0;
}
.svl-steps-form.wizard > .actions > ul > li,
.svl-steps-form .wizard > .actions > ul > li{
  margin: 0 !important;
}

/* botões */
.svl-steps-form.wizard > .actions a,
.svl-steps-form.wizard > .actions a:hover,
.svl-steps-form.wizard > .actions a:active,
.svl-steps-form .wizard > .actions a,
.svl-steps-form .wizard > .actions a:hover,
.svl-steps-form .wizard > .actions a:active{
  background: var(--svl-gray) !important;
  border: 1px solid var(--svl-gray) !important;
  border-radius: 2px !important;
  padding: 10px 14px !important;
  font-weight: 800 !important;
  letter-spacing: .02em;
  color: #fff !important;
  text-decoration: none !important;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease, background-color .16s ease, border-color .16s ease;
}
.svl-steps-form.wizard > .actions a:hover,
.svl-steps-form.wizard > .actions a:focus,
.svl-steps-form .wizard > .actions a:hover,
.svl-steps-form .wizard > .actions a:focus{
  background: var(--svl-red) !important;
  border-color: var(--svl-red) !important;
  color: #fff !important;
  filter: brightness(.92);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .18);
  transform: translateY(-1px);
  outline: none;
}
.svl-steps-form.wizard > .actions a:active,
.svl-steps-form .wizard > .actions a:active{
  color: #fff !important;
  filter: brightness(.86);
  box-shadow: 0 4px 10px rgba(15, 23, 42, .16);
  transform: translateY(0);
}
.svl-steps-form.wizard > .actions .disabled a,
.svl-steps-form .wizard > .actions .disabled a{
  opacity: .55;
  box-shadow: none;
  filter: none;
  transform: none;
}

.wizard > .actions a[href="#next"],
.wizard > .actions a[href="#finish"]{
  background: var(--svl-red) !important;
  border-color: var(--svl-red) !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease, background-color .16s ease, border-color .16s ease !important;
}

.wizard > .actions a[href="#next"]:hover,
.wizard > .actions a[href="#next"]:focus,
.wizard > .actions a[href="#finish"]:hover,
.wizard > .actions a[href="#finish"]:focus{
  background: var(--svl-gray) !important;
  border-color: var(--svl-gray) !important;
  color: #fff !important;
  filter: none !important;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .18) !important;
  transform: translateY(-1px) !important;
  outline: none !important;
}

.wizard > .actions a[href="#next"]:active,
.wizard > .actions a[href="#finish"]:active{
  background: var(--svl-gray) !important;
  border-color: var(--svl-gray) !important;
  color: #fff !important;
  filter: brightness(.92) !important;
  box-shadow: 0 4px 10px rgba(15, 23, 42, .16) !important;
  transform: translateY(0) !important;
}

/* =========================================================
   Inputs (se quiser manter o “hover vermelho / focus cinza”)
   ========================================================= */
input.form-control:hover,
select.form-control:hover,
textarea.form-control:hover{
  border-color: #d43f46;
}
input.form-control:focus,
select.form-control:focus,
textarea.form-control:focus{
  border-color: #5a6368;
  box-shadow: 0 0 0 .2rem rgba(90,99,104,.18);
}
/* ===== PROTOCOLO / COMPROVANTE ===== */
.prt-card{
  border: 1px solid rgba(0,0,0,.10);
  border-left: 4px solid var(--svl-red);
  border-radius: 10px;
  background: #fff;
  padding: 16px 16px 14px 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.055);
}

.prt-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.prt-icon{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(90,99,104,.12);
  color: #111827;
  font-size: 16px;
}

.prt-kicker{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(90,99,104,.85);
  margin-bottom: 2px;
}

.prt-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #111827;
}

.prt-msg{
  font-size: 14px;
  line-height: 20px;
  color: rgba(15,23,42,.85);
  margin: 6px 0 12px 0;
}

.prt-sep{
  margin: 0 6px;
  opacity: .7;
}

.prt-proto{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px dashed rgba(0,0,0,.16);
  background: rgba(212,63,70,.05);
  border-radius: 10px;
}

.prt-proto-label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(90,99,104,.95);
}

.prt-proto-chip{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 800;
  font-size: 16px;
  color: var(--svl-red);
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
}

.prt-meta{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.08);
  font-size: 12.5px;
  color: rgba(90,99,104,.95);
}

.prt-meta-item i{
  opacity: .9;
}

.prt-actions{
  margin-top: 12px;
}

.prt-actions .btn{
  border-radius: 8px;
  font-weight: 700;
}

@media print{
  body.prt-printing *{
    visibility: hidden !important;
  }

  body.prt-printing .prt-card,
  body.prt-printing .prt-card *{
    visibility: visible !important;
  }

  body.prt-printing .prt-card{
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    box-shadow: none;
  }

  body.prt-printing .noprint{
    display: none !important;
  }
}

@media (max-width: 575.98px){
  .prt-proto{
    flex-direction: column;
    align-items: flex-start;
  }
  .prt-proto-chip{
    width: 100%;
    text-align: center;
  }
}
/* container */
.mdl-dash-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, .12);
  overflow: hidden;
  background: #fff;
}

/* header clean */
.mdl-dash-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 22px;
}

.mdl-dash-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0f172a;
  letter-spacing: .3px;
}

/* fechar */
.mdl-dash-close {
  color: #64748b;
  font-size: 22px;
  transition: .18s ease;
}

.mdl-dash-close:hover {
  color: #0f172a;
  transform: scale(1.05);
}

/* body */
.mdl-dash-body {
  background: #f8fafc;
  padding: 24px 26px;
}

/* texto principal (igual card do dashboard) */
.mdl-dash-text {
  background: #fff;
  border-radius: 10px;
  padding: 20px 22px;
  border: 1px solid #e5e7eb;

  border-left: 4px solid #cbd5e1; /* destaque sutil */
  
  max-height: 56vh;
  overflow-y: auto;

  font-size: 14px;
  line-height: 1.65;
  color: #111827;
}

/* scrollbar */
.mdl-dash-text::-webkit-scrollbar {
  width: 8px;
}
.mdl-dash-text::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 10px;
}

/* hr */
.mdl-dash-hr {
  margin: 18px 0;
  border-top: 1px solid #e5e7eb;
}

/* ações */
.mdl-dash-actions {
  display: flex;
  justify-content: flex-end;
}

/* botão mais consistente com sistema */
.mdl-dash-btn {
  background: #1f2937;
  border-color: #1f2937;
  color: #fff;
  padding: 9px 22px;
  font-weight: 600;
  border-radius: 8px;
  transition: .18s ease;
}

.mdl-dash-btn:hover {
  background: #111827;
  border-color: #111827;
  transform: translateY(-1px);
}
