/* ==========================================================================
   CSS TABLE OF CONTENTS
   ==========================================================================
   1. RESET & BASE STYLES
   2. LAYOUT & CONTAINERS
   3. HEADER & TOP NAVIGATION
   4. HOME PAGE (INDEX) COMPONENTS
   5. SIDEBAR (SCROLLSPY) NAVIGATION
   6. CONTENT ELEMENTS (Typography, Lists, Figures)
   7. TABLES & DROPDOWNS
   8. CODE & COMMANDS
   9. UI COMPONENTS (Buttons, Inputs, Tooltips, Alerts)
   10. SPECIFIC SECTIONS (Capa, Apresentacao, Fale com a Gente)
   11. MEDIA QUERIES (RESPONSIVE)
   12. PRINT STYLES
   ========================================================================== */

/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000000;
  position: relative;
  line-height: 2;
  font-family: 'Raleway', sans-serif;
}

/* Compensa o header fixo de 150px ao navegar por âncoras.
   Exclui <section> pois já usa padding-top/margin-top hack. */
[id]:not(section) {
  scroll-margin-top: 160px;
}

a {
  color: #516872;
  text-decoration: underline;
}

ul>li>a {
  text-decoration: none;
}

h1,
h2 {
  font-weight: 700;
}

h3 span {
  color: #286090;
}

img {
  max-width: 100%;
  height: auto;
}

.no-underline {
  text-decoration: none;
}


/* ==========================================================================
   2. LAYOUT & CONTAINERS
   ========================================================================== */

.container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.tcontainer {
  max-width: 100%;
  margin: 0 auto;
  margin-top: 15px;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 14px;
  color: #516872;
}

.col-md-9,
.manual-content {
  max-width: 1100px;
  border: 1px solid #d5dce2;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 40px;
  background-color: #ffffff;
  overflow-wrap: break-word;
}

.panel {
  width: 100%;
  margin-bottom: 20px;
  color: #516872;
  background-color: #FFF;
}

.panel-heading {
  font-family: "tahoma", "arial";
  min-height: 25px;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
  color: #FFF;
  background-color: #8F98A2;
  border-bottom: 2px solid #ADBCC4;
}

.panel-heading-left {
  /* float: left; removed because of flex */
}

.panel-heading-right {
  float: right;
}

.panel-body {
  padding: 15px;
}

.containernew {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.container-flex {
  display: flex;
  justify-content: center;
}

.container-flex img {
  max-width: 70%;
  height: auto;
}

/* Container principal que vai segurar as imagens */
.container-lado-a-lado {
    display: flex; /* Transforma o container em flexível, colocando os itens em linha */
    justify-content: center; /* Centraliza o conteúdo horizontalmente */
    align-items: flex-start; /* Alinha os itens pelo topo (ideal caso uma imagem seja maior que a outra) */
    gap: 30px; /* Cria um espaço de 30px entre as imagens de forma limpa */
    width: 100%; /* Garante que ocupe todo o espaço disponível */
    margin-top: 20px;
}

/* Estilo para não deixar as imagens vazarem do tamanho */
.item-imagem {
    flex: 1; /* Faz com que as duas divs dividam o espaço igualmente */
    max-width: 400px; /* Define um tamanho máximo para as imagens não ficarem gigantes no monitor */
}

/* Ajustes finais na imagem em si */
.item-imagem img {
    width: 100%; /* A imagem vai ocupar 100% da div que a envolve */
    height: auto; /* Mantém a proporção original, sem distorcer */
    border: 1px solid #e0e0e0; /* Opcional: uma bordinha sutil igual a do print */
    border-radius: 8px; /* Opcional: cantos arredondados */
}

/* ==========================================================================
   3. HEADER & TOP NAVIGATION
   ========================================================================== */

.header {
  background-color: #d5dce2;
  height: 150px;
  position: fixed;
  width: 100%;
  z-index: 1;
}

.nav-header {
  max-width: 100%;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.logo {
  display: inline-block;
  padding-left: 5px;
  padding-top: 10px;
}

.nav-img {
  width: 160px;
  height: 50px;
}

.nav-option {
  width: 33.33%;
  max-width: 320px;
  height: 50px;
  float: left;
}

.nav-12option {
  width: 8.3%;
  height: 50px;
  float: left;
}

.nav-4option {
  width: 25%;
  height: 50px;
  float: left;
}

/* Consolidated nav background classes */
.nav-option.bg1,
.nav-option.bg2,
.nav-option.bg3,
.nav-12option.bg1,
.nav-12option.bg2,
.nav-12option.bg3,
.nav-12option.bg4,
.nav-12option.bg5,
.nav-12option.bg6,
.nav-12option.bg7,
.nav-12option.bg8,
.nav-12option.bg9,
.nav-12option.bg10,
.nav-12option.bg11,
.nav-12option.bg12,
.nav-4option.bg1,
.nav-4option.bg2,
.nav-4option.bg3,
.nav-4option.bg4 {
  background-color: #EFF4F7;
}

/* Consolidated nav borders */
.nav-option.bg2,
.nav-12option.bg2,
.nav-12option.bg3,
.nav-12option.bg4,
.nav-12option.bg5,
.nav-12option.bg6,
.nav-12option.bg7,
.nav-12option.bg8,
.nav-12option.bg9,
.nav-12option.bg10,
.nav-12option.bg11,
.nav-4option.bg2,
.nav-4option.bg3 {
  border-left: 1px solid #d5dce2;
  border-right: 1px solid #d5dce2;
}

/* Consolidated hover/active states */
.nav-option:hover,
.nav-option.active,
.nav-12option:hover,
.nav-12option.active,
.nav-4option:hover,
.nav-4option.active {
  background-color: #00A94D !important;
}

.nav-option:hover svg *,
.nav-option.active svg *,
.nav-12option:hover svg *,
.nav-12option.active svg *,
.nav-4option:hover svg *,
.nav-4option.active svg * {
  fill: #FFF;
}

.nav-option:hover .title-option,
.nav-option.active .title-option,
.nav-12option:hover .title-option,
.nav-12option.active .title-option,
.nav-4option:hover .title-option,
.nav-4option.active .title-option {
  color: #FFF;
}

.ico-option {
  padding-top: 5px;
  padding-left: 20px;
}

.title-option {
  position: absolute;
  margin-top: -43px;
  margin-left: 80px;
  color: #00a94d;
  text-transform: uppercase;
}

.title-option.m {
  display: none;
}

.title-version {
  position: absolute;
  margin-top: -30px;
  margin-left: 80px;
  font-size: 12px;
  color: #516872;
}

.iconMenu {
  float: right;
  top: 20px;
  position: relative;
  margin-left: 25px;
  display: none;
  cursor: pointer;
}

.overlay {
  background-color: #000;
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0.6;
  display: none;
}

.overlay.active {
  display: block;
}


/* ==========================================================================
   4. HOME PAGE (INDEX) COMPONENTS
   ========================================================================== */

body.home {
  background-color: #D4DCE1;
  line-height: 1.2;
  overflow-y: scroll;
}

body.home p {
  text-align: left;
}

.menuManual {
  overflow: hidden;
  margin: 50px auto;
  max-width: 900px;
}

.menuManual ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  float: left;
  width: 300px;
  min-height: 260px;
  padding: 20px;
}

.menuManual ul li:hover {
  background-color: #00A94D;
}

.menuManual ul a:hover p {
  color: #FFF;
}

.menuManual ul a:hover svg * {
  fill: #FFF;
}

.menuManual a {
  text-decoration: none;
}

.titleOptionMenuManual {
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 0 10px 0;
}

.descriptionOptionMenuManual {
  font-family: "tahoma", "arial";
  font-size: 14px;
}

.bg2 {
  background-color: #EFF4F7;
}

.bg3 {
  background-color: #E2E9EF;
}


/* ==========================================================================
   5. SIDEBAR (SCROLLSPY) NAVIGATION
   ========================================================================== */

.nav {
  background: #e2e9ef;
  height: calc(100% - 150px);
  overflow-y: auto;
  line-height: 1.5;
}

.nav a {
  color: #516872;
  padding: 5px 10px !important;
}

.nav li a:hover,
.nav li a:focus {
  background: #00A94D;
  color: #FFF;
}

.nav li.active>a {
  color: #FFF;
}

.nav .active {
  font-weight: bold;
  background-color: #00A94D;
  border-left: 5px solid #00A94D;
}

.nav .nav {
  display: none;
}

.nav .active .nav {
  display: block;
  padding-left: 15px;
}

.nav .nav a {
  font-weight: normal;
  font-size: .85em;
}

.nav .nav span {
  margin: 0 5px 0 2px;
}

.nav .nav .active span,
.nav .nav .active:hover span,
.nav .nav .active:focus span {
  display: none;
}

.sub-nav {
  padding-left: 20px;
  list-style-type: none;
  display: block;
}

.sub-nav li {
  display: block;
}

.sub-nav a {
  display: block;
  width: 100%;
  line-height: 1.5;
  font-size: 14px;
  text-decoration: none;
  padding: 4px 0;
}

#nav li {
  position: relative;
}

.btn-toggle {
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
  width: 35px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.btn-toggle::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  margin-top: -4px;
}

.btn-toggle:hover::after {
  border-color: #008D4C;
}

.btn-toggle.open::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.menu {
  display: block !important;
  z-index: 2;
  left: 0;
  width: 300px;
}

.affix-top {
  position: fixed;
  top: 150px;
  width: 300px;
}

.affix {
  top: 150px;
  width: 300px;
}

.affix-bottom {
  position: absolute;
  width: 300px;
}


/* ==========================================================================
   6. CONTENT ELEMENTS (Typography, Lists, Figures)
   ========================================================================== */

section {
  padding: 10px 0;
  padding-top: 150px;
  margin-top: -150px;
}

section::after {
  content: "";
  display: table;
  clear: both;
}

section>section>section {
  padding-left: 20px;
}

div>section {
  border-bottom: 1px solid #516872;
}

section:has(+ .fale-com-a-gente) {
  border-bottom: none;
}

/* Heading Typography Highlights */
.col-md-9 h2 {
  font-size: 26px;
  font-weight: 700;
  color: #00a94d; /* Intelbras Green */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e1e8ed;
  padding-bottom: 8px;
}

.col-md-9 .capa h2,
.col-md-9 .apresentacao h2 {
  font-size: 20px;
  font-weight: 500;
  color: #516872;
  border-bottom: none;
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.col-md-9 h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1d2d3d;
  margin-top: 30px;
  margin-bottom: 15px;
}

.col-md-9 h4 {
  font-size: 16px;
  font-weight: 700;
  color: #2d5f8b;
  margin-top: 25px;
  margin-bottom: 12px;
}

.col-md-9 h5 {
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  margin-top: 20px;
  margin-bottom: 10px;
}

p {
  text-align: justify;
}

p.imgBody {
  text-align: center;
}

img.imgBody {
  width: 50%;
}

.lista-estilo {
  list-style-type: "» ";
  padding-left: 20px;
  text-align: justify;
}

.lista-estilo-numero {
  padding-left: 20px;
}

.tab-list {
  list-style: none;
  padding-left: 2rem;
}

.tab-list li {
  text-indent: 2rem;
}

figure {
  margin-bottom: 20px;
}

figure.inline {
  display: inline-block;
  width: 49%;
  padding: 10px;
}

figure.limited {
  max-width: 400px;
  margin: 0 auto 20px auto;
}

figcaption {
  line-height: 1.5;
  text-align: center;
}

figure img {
  width: 100%;
  margin-bottom: 10px;
}

/* Espaçamento entre imagens no conteúdo do manual */
section img,
.col-md-9 img,
ol img,
ul img {
  display: block;
  margin-top: 16px;
  margin-bottom: 16px;
}

/* Exceção: imagens de navegação não devem ter espaçamento extra */
.nav-header img,
.header img,
.logo img,
.nav-img {
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
}

.sumario {
  list-style: none;
  padding-left: 0;
}

.sumario li ul {
  margin-top: 5px;
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: none;
}

.sumario li ul li {
  padding-bottom: 5px;
}


/* ==========================================================================
   7. TABLES & DROPDOWNS
   ========================================================================== */

table {
  width: 100%;
  margin: 25px 0px;
}

table>thead {
  border-bottom: 3px solid;
}

table>tbody>tr {
  border-bottom: 1px solid;
}

table td {
  padding-right: 20px;
}

/* Tabela estilizada intelbras */
table.intelbras-table {
  font-family: "SF Pro", "Roboto", "Arial", "Helvetica", sans-serif;
  background-color: #FFFFFF;
  width: 900px;
  text-align: center;
  border-collapse: collapse;
}

table.intelbras-table td,
table.intelbras-table th {
  border: 1px solid #D6DFE1;
  padding: 5px 10px;
}

table.intelbras-table tbody td {
  font-size: 15px;
  color: #8B979F;
}

table.intelbras-table tr:nth-child(even) {
  background: #EBEEEE;
}

table.intelbras-table thead {
  background: #FFFFFF;
}

table.intelbras-table thead th {
  font-size: 15px;
  font-weight: bold;
  color: #3E5055;
  border: 1px solid #3E5055;
  text-align: center;
}

table.intelbras-table .disabled {
  color: #BBCAD2;
}

table.intelbras-table .title {
  color: #3E5055;
  font-weight: 500;
  text-align: left;
}

/* Dropdowns inside tables */
.intelbras-table .intelbras-dropdown {
  font-family: "SF Pro", "Roboto", "Arial", "Helvetica", sans-serif;
  position: relative;
  display: inline-block;
  text-align: left;
}

.intelbras-table button.intelbras-dropdown-btn {
  font-family: "SF Pro", "Roboto", "Arial", "Helvetica", sans-serif;
  background-color: #fff;
  padding: 5px 10px;
  font-size: 15px;
  border: #8B979F solid 1px;
  cursor: pointer;
  color: #8B979F;
  width: 120px;
  text-align: left;
  outline: none;
}

.intelbras-table .intelbras-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  z-index: 1;
  border: #8B979F solid 1px;
  width: 118px;
}

.intelbras-table .intelbras-dropdown:hover .intelbras-dropdown-content {
  display: block;
  top: 29px;
}

/* Datasheet specific table */
table.datasheet-table {
  font-family: "SF Pro", "Roboto", "Arial", "Helvetica", sans-serif;
  background-color: #FFFFFF;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}

table.datasheet-table td,
table.datasheet-table th {
  border: 1px solid #D6DFE1;
  padding: 5px 10px;
}

/* Simple Table Class */
.tabela-simples {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
}

.tabela-simples th,
.tabela-simples td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.tabela-simples th {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* Datasheet2 Table style */
.datasheet2 {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.datasheet2 th,
.datasheet2 td {
  padding: 10px;
  text-align: left;
  border: 1px solid #eaeaea;
}


/* ==========================================================================
   8. CODE & COMMANDS
   ========================================================================== */

.CLI_Box {
  margin: 0;
  padding: 2px 6px;
  display: flex;
  align-items: left;
  background-color: rgb(227, 225, 225);
  font-style: italic;
}

.pre-style {
  font-family: monospace;
  white-space: pre;
  background: #f5f5f5;
  border: 1px solid #ccc;
  padding: 2px 4px;
  border-radius: 4px;
  display: inline;
}

.code-block {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  background-color: #f4f6f8;
  border: 1px solid #d0d7de;
  border-left: 4px solid #00A94D;
  padding: 14px 16px;
  overflow-x: auto;
  border-radius: 6px;
  display: block;
  white-space: pre;
  line-height: 1.6;
  color: #24292f;
  margin: 16px 0;
}


/* ==========================================================================
   9. UI COMPONENTS (Buttons, Inputs, Tooltips, Alerts)
   ========================================================================== */

button,
input {
  background-color: #516872;
  border: 1px solid #516872;
  color: #FFF;
  padding: 2px 10px;
  font-size: 10px;
  margin: 1px;
  height: 25px;
}

.input {
  border: none;
  border-bottom: solid 2px #516872;
  border-radius: 0 0 5px 5px;
  background: transparent;
  padding-left: 5px;
  font-size: 14px;
  color: #516872;
}

.key {
  background-color: #516872;
  border-radius: 5px;
  border: 1px solid #516872;
  border-bottom: 2px solid #000;
  font-weight: bold;
}

/* Alerts / Highlighted Paragraphs */
p.high {
  display: block;
  clear: both;
  background-repeat: no-repeat;
  background-position: 15px 18px;
  background-size: 24px;
  padding: 15px 20px 15px 55px;
  min-height: 60px;
  line-height: 1.6;
  border-radius: 8px;
  margin: 25px 0;
}

p.high.crit {
  background-image: url(../img/icons/ico-alerta.svg);
  background-color: #ff8a8a;
  border: 1px solid #ff0000;
}

p.high.warn {
  background-image: url(../img/icons/ico-alerta.svg);
  background-color: #ff7c00;
  border: 1px solid #fffb00;
}

p.high.ale {
  background-image: url(../img/icons/ico-alerta.svg);
  background-color: #fffb00;
  border: 1px solid #efedd1;
}

p.high.inf {
  background-image: url(../img/icons/info.svg);
  background-color: #c1ffc1;
}

/* Tooltips */
[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
}

[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
.tooltip:hover:before,
.tooltip:hover:after {
  visibility: visible;
  opacity: 1;
}

[data-tooltip]:after,
.tooltip:after {
  background-color: #8b979f;
  color: #fff;
  content: attr(data-tooltip);
  padding: 8px;
  width: 160px;
  font-size: 14px;
}

.tooltip-left:after {
  right: 100%;
  bottom: 50%;
}

/* Back to Top Button */
button.back-to-top.show {
  display: block;
  background: #fff;
  color: #00ab6c;
  font-size: 25px;
  right: 25px;
  bottom: 50px;
  height: 50px;
  width: 50px;
  visibility: visible;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  position: fixed;
  border-radius: 50px;
  z-index: 99;
}


/* ==========================================================================
   10. SPECIFIC SECTIONS (Capa, Apresentacao, Fale com a Gente)
   ========================================================================== */

/* CAPA */
.capa {
  border-bottom: none;
  display: none;
}

.div-logo-capa {
  height: 500px;
  position: relative;
}

.logo-capa {
  width: 350px;
  float: right;
  position: absolute;
  bottom: 15px;
  right: 40px;
}

.divider {
  border-top: 2px solid #516872;
}

.div-titulo-capa {
  padding-right: 40px;
  text-align: right;
}

/* APRESENTACAO */
.apresentacao {
  border-bottom: none;
  padding-top: 265px;
}

.logo-apresentacao {
  width: 200px;
  display: none;
}

/* FALE COM A GENTE */
.fale-com-a-gente {
  border-bottom: none;
}

.div-logo-fale-com-a-gente {
  height: 80px;
  position: relative;
}

.logo-itb-fale-com-a-gente {
  width: 250px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.logo-fale-com-a-gente {
  width: 150px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.div-info-fale-com-a-gente p {
  margin: 0px;
}


/* ==========================================================================
   11. MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */

@media (max-width: 1200px) {
  .container {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .title-option {
    display: none;
  }

  .title-option.m {
    display: block;
  }
}

@media (max-width: 992px) {
  .iconMenu {
    display: inline-block;
  }

  .menu {
    display: block !important;
  }
}

@media (max-width: 900px) {
  .menuManual ul li {
    float: none;
    width: 100%;
  }
}

@media (max-width: 800px) {

  .title-option,
  .title-option.m {
    display: none;
  }

  .ico-option {
    text-align: center;
    padding-left: 0px;
  }
}

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
    width: 100vw;
    position: relative;
  }

  .col-md-9,
  .manual-content {
    padding: 15px;
    margin-top: 10px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  table,
  .intelbras-table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  pre {
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
  }

  .div-logo-fale-com-a-gente {
    height: auto;
    margin-bottom: 20px;
  }

  .logo-itb-fale-com-a-gente {
    position: static;
    width: 180px;
    max-width: 100%;
    margin: 20px auto;
    display: block;
  }

  .logo-fale-com-a-gente {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 700px) {
  span {
    font-size: 12px !important;
  }
}


/* ==========================================================================
   12. PRINT STYLES
   ========================================================================== */

@media print {
  @page {
    size: A4 portrait;
    margin: 1.5cm;
  }

  /* Reset layout for printing */
  .container, .row, .col-md-9, .manual-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
  }

  section {
    padding-top: 0 !important;
    margin-top: 0 !important;
    page-break-before: auto;
    page-break-after: auto;
  }

  .capa {
    display: block !important;
    height: 90vh !important;
    page-break-after: always !important;
    border: none !important;
    position: relative !important;
  }

  .div-logo-capa {
    height: 400px !important;
    position: relative !important;
    display: block !important;
  }

  .logo-capa {
    width: 300px !important;
    position: absolute !important;
    bottom: 20px !important;
    right: 0 !important;
    display: block !important;
  }

  .div-titulo-capa {
    padding-right: 0 !important;
    text-align: right !important;
  }

  #indice {
    display: block !important;
    page-break-before: always !important;
    page-break-after: always !important;
    padding-top: 50px !important;
  }

  #apresentacao {
    display: none !important;
  }

  .no-print,
  .no-print * {
    display: none !important;
  }

  #logoIntelbras {
    display: block !important;
  }

  .indice-pdf a {
    color: #000 !important;
  }
}

/* ==========================================================================
   MELHORIAS SOLICITADAS
   ========================================================================== */

#back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  border: none;
  background-color: #00A94D;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
}

#back-to-top:hover {
  background-color: #008D4C;
  transform: translateY(-5px);
}





#indice h1 {
  text-align: center;
  color: #00A94D;
  font-size: 32px;
  margin-bottom: 40px;
  border-bottom: 2px solid #00A94D;
  padding-bottom: 10px;
}

.indice-pdf {
  list-style: none !important;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.indice-pdf li {
  margin-bottom: 12px;
}

.indice-pdf li::before {
  content: none !important;
}

.indice-pdf a {
  display: flex !important;
  align-items: baseline;
  text-decoration: none !important;
  width: 100%;
}

.indice-pdf>li>a {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
}

.indice-pdf ul {
  list-style: none !important;
  padding-left: 30px;
  margin-top: 8px;
}

.indice-pdf ul li a {
  font-weight: 400;
  font-size: 14px;
  color: #555;
}

.indice-pdf a::after {
  content: " .................................................................................................................................................................................";
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  color: #aaa;
  margin-left: 10px;
}



.nav-header .tooltip-left img {
  width: 42px !important;
  height: auto !important;
  display: block !important;
}



.nav-header .tooltip-left:before {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #8b979f;
  z-index: 99999;
  pointer-events: none;
}

.nav-header .tooltip-left:hover:after,
.nav-header .tooltip-left:hover:before {
  display: block !important;
}

/* Garante que o container não corte o tooltip */
.header, .nav-header {
  overflow: visible !important;
}



.nav-header .tooltip-left:focus {
  outline: none !important;
}

.nav-header select:focus {
  outline: none !important;
}

/* ==========================================================================
   SISTEMA DE TOOLTIP INTELBRAS (itb-tooltip) - FIX DEFINITIVO
   ========================================================================== */

.header, .nav-header {
    overflow: visible !important;
}

.itb-tooltip {
    display: inline-block !important;
    position: relative !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.itb-tooltip:after {
    content: attr(data-tooltip);
    position: absolute;
    display: none;
    top: 50%;
    right: 55px;
    transform: translateY(-50%);
    width: 220px;
    height: auto !important;
    background-color: #516872 !important; /* Cor sólida para evitar transparências estranhas */
    color: #ffffff !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    border-radius: 6px !important;
    z-index: 999999 !important;
    white-space: normal !important;
    text-align: left !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    pointer-events: none !important;
}

.itb-tooltip:before {
    content: "" !important;
    position: absolute !important;
    display: none;
    top: 50%;
    right: 45px;
    transform: translateY(-50%);
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important;
    border-left: 10px solid #516872 !important;
    z-index: 999999 !important;
    pointer-events: none !important;
}

.itb-tooltip:hover:after,
.itb-tooltip:hover:before {
    display: block !important;
}

.itb-tooltip:focus, select:focus {
    outline: none !important;
}
