﻿@import url(../../css/index.css);

/* RESET STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF;
    padding: 2rem 2rem; /* Ou 2rem 0 para nenhum padding lateral */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); /* sombra mais suave e visível */
    transition: padding 0.3s;
    width: 100%;
    box-sizing: border-box;
    
  
}
.manual-titulo {
  color: #3e5055;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Branding da esquerda */
.branding {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.branding .logo {
  height: 30px;
}

.main-content {
  padding-left: 2rem;  /* ou 2.5rem para mais espaço */
  padding-right: 2rem;
}

.tblpara {
  margin-left: 1rem;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: #fff;
  border-bottom: 1px solid #fff;
}


  
  .tblpara {
    margin-left: 1rem;
  }
  
  .buttons {
    margin-right: 1.5rem;
    margin-bottom: 1rem;
  }
  
  h1, h2, h3 {
    margin-bottom: 1rem;
    margin-left: 1rem;
  }
  
  h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--heading-color);
  }
  
  h2 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--heading-color);
  }
  
  h3 {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-color);
  }
  
  ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  li {
    margin-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem auto;
    border: 1px solid var(--border-color);
  }
  
  th {
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
    background-color: var(--light-color);
    padding: 0.75rem;
    border: 1px solid var(--border-color);
  }
  
  td {
    background-color: var(--bg-color);
    padding: 0.75rem;
    border: 1px solid var(--border-color);
  }
  
  p {
    margin-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  .tech-doc {
    max-width: 780px;
    margin: 0;
    padding: 25px;
    color: #333;
    line-height: 1.6;
    
    /* Organização visual */
    text-align: left; /* Alinhamento base */
  }
  p.tip, p.important, p.note {
    margin: 1rem 1rem 1rem 2rem;
    padding: 1rem;
    border: 2px double var(--border-color);
    background-position: 1rem center;
    background-repeat: no-repeat;
  }

  .subP1 {
    margin-left: 2.5rem;
    margin: 0.75rem 0;
  }
  
  .subP2 {
    margin-left: 3.75rem;
    margin: 0.75rem 0;
  }
  .section {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  .clsLink {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  a {
    color: var(--secondary-color);
  }
  
  a:hover {
    text-decoration: underline;
    color: var(--primary-color);
  }
  
  pre, code {
    font-family: monospace;
    color: var(--primary-color);
  }
  
  pre.syntax {
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .Glossary {
    text-decoration: none;
  }
  
  .Glossary:hover {
    text-decoration: underline;
  }
  
  .GlossaryDef {
    color: #008C00;
  }
  
  .GlossaryLimit {
    color: #8C0000;
  }
  
  .order {
    margin-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  