@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --primary--color:#ffffff; 
    /* #333 */
    /* --secondary--color: #555; */
    --submenu-color: #ccc;
    /* #ccc */
    --background--color: #ffffff;
    /* e9e9e9 */
    --grey: #464646;
    /* #333 */
    /* e4e1e1 */
    --white: #f5f5f5;
    --blue: rgb(72, 72, 235);  
}

body, html {
    height: 100%;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 1.04rem;
    font-style: normal;
    overflow: hidden;
}

a{
    color: var(--blue);
}

header {
    width: 100%;
    height: 10%;
    background-color: #212A2F;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 1000;
}

header .logo a img{
    /* background-size: contain;
    background-repeat: no-repeat;
    background-position: .75rem; */
    height: 2.5rem;
    width: 11rem;
    /* width: 0.9rem; */
}

.main{
    margin: 10vh auto 0;
    flex: 0 0 95rem;
    width: 86vw;
    height: 90%;
    display: flex;
    flex-direction: row;
    /* position: fixed; */
    padding-top: 3px;
    gap: 30px;

}

.sidebar {
    height: calc(100vh - 60px);
    width: 240px;
    /* flex: 0 0 20rem; */
    /* position: fixed;
    top: 0;
    left: 0; */
    background-color: var(--primary--color);
    overflow-x: hidden;
    
    border-right: 1px solid #ddd;

}

.logo img {
    width: 80%;
    display: block;
    margin: 0 auto;
}

.menu{
    scroll-behavior: smooth;
  
  overflow-y: auto; /* permite scroll vertical */
  padding-bottom: 20px; /* para não cortar o último item */
}

.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu ul li {
    padding: 10px;
    text-align: left;
}

.menu ul li a {
    color: var(--grey);
    text-decoration: none;
    display: block;
    padding: 10px;
    position: relative;
    font-size: 0.7rem;
}

.menu ul li a:hover {
    background-color: var(--secondary--color);
}

.nav-link:hover {
    color: #16A0D7;
}

/* Cor depois de clicar */
.nav-link.active {
    color: #16A0D7;
    text-decoration: underline;
}

.arrow {
    float: right;
    transition: transform 0.3s;
}

.submenu {
    display: none;
    background-color: var(--secondary--color);
    padding: 10px;
    /* border: 1px solid var(--submenu-color);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    /* margin-top: 5px; */
}

.submenu li a {
    color: var(--submenu-color);
    text-decoration: none;
    display: block;
    padding: 5px 10px;
}

/* .submenu:hover a:hover {
    background-color: #5c5c5c;
} */

.submenu.show {
    display: block;
}

.arrow.down {
    transform: rotate(90deg);
}


.content{
    padding: 20px;
    background-color: var(--background--color);
    /* min-height: 100vh; */
    /* box-shadow: 7px 0px 10px rgba(0, 0, 0, 0.1); */
    overflow-y: auto;
    height: calc(100% - 40px);
    width: 80%;
}

.content h1{
    text-align: left;
    margin-bottom: 2rem;
    color: var(--grey);
        position: sticky;
        top: -21px;
        background-color: white; /* Mantém o fundo visível ao rolar */
        padding: 20px;
        z-index: 1000; /* Garante que fique acima de outros elementos */
        border-bottom: 2px solid #ddd; /* Opcional: adiciona uma linha para separação */
    
}

.content li{
    margin-bottom: .5rem;
}

.highlight {
    font-size: 1.125rem;
    font-weight: bold;
}

ul li span.highlight {
    text-decoration:underline;
    font-size: 1.125rem;
}

span.highlight{
    font-size: 1.025rem;
    font-weight: bold;
}
span.bold{
    font-weight: bold;
}

span.red{
    color: red;
}

span.link{
    cursor: pointer;
}

span.blue{
    color:royalblue
}

a:visited{
    text-decoration: none;
}
span.green{
    color:rgba(2, 199, 2, 0.637)
}

.mini-tabela {
    width: 30%;
    border-collapse: collapse;
    margin-bottom: 20px;
    margin-top: 1rem;
}
.mini-tabela th, .mini-tabela td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.mini-tabela th {
    background-color: var(--secondary--color);
}

.mini-tabela td{
    background-color: var(--grey);
}

ol li{
    margin-bottom: .5rem;
}

img{
    margin: .8rem auto 1.2rem auto;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px; */
}

.img-100{
    width:100%;
}

.chat-img{
    height: 450px;
}

.img-medium-size{
    width: 70%;
    height: 70%;
}

ol.menu-explain li{
    font-weight: bolder;
}

.img-400w-400h{
    width: 400px;
    height: 400px;
}

.img-800w-800h{
    width: 800px;
    height: 800px;
}

.img-400w-250h{
    width: 400px;
    height: 250px;
}

.img-800w-400h{
    width: 800px;
    height: 400px;
}

.img-400w-800h{
    width: 400px;
    height:800px;
}

.img-100w-400h{
    width: 10px;
    height: 40px;
}

.text-image-container {
    display: flex;
    align-items: center;
}

.text-image-container img {
    flex: 0 0 30%;
    max-width: 100%;
    height: auto;
    margin-right: 20px;
}

.text-content {
    flex: 1;
}

.undefined-img-n{
    display: grid;
    gap: 10px;
    width: 80%;
    max-width: 1200px;
}

.undefined-img-n.grid{
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.undefined-img-n img{
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.2s;
}

.highlight-list > li{
    font-weight: bold;
    font-size: 1.25rem;
}

.highlight-list ul li{
    font-weight: normal;
}

/* --------------------------- */
.search-container {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 10;
  }
  
  #search {
    width: 85%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
  }
  
  #clear-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    display: none;
  }
  
  .search-results {
    position: absolute;
    width: 30%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    list-style: none;
    padding: 0;
    margin-top: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    z-index: 10;
  }
  
  .search-results li {
    padding: 10px;
    cursor: pointer;
  }
  
  .search-results li:hover {
    background: #eee;
  }
  
  video {
   display: flex;
   margin: auto;
  }

  .imagemFull {
    width: 100%;
  }

  .imagemMedia {
    width: 70%;
  }

  .status-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
}

.status-card {
    text-align: center;
    width: 150px;
}

.status-icon {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.status-card p {
    font-size: 14px;
    margin: 0;
}

/* styles inline transferidos */

.search-results-s{
    z-index: 2000
}

.top-margin-adjust{
    margin-top:5px
}

.highlight-container{
    display:flex; align-items: center;
}

.highlight-div{
    margin-right: 30px; display:flex; align-items: center;
}

.highlight-img{
    width: 30px; height: 30px;
}

.highlight-p{
    margin-left: 10px;
}

.highlight-title {
    font-weight: bold;
    background-color: #fff8dc;
    padding: 4px 8px;
    border-radius: 6px;
  }

.action-buttons {
    display: flex;
    gap: 30px;
    margin-top: 10px;
  }

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

.ul-adjust {
    padding-left: 20px;
  }

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

.img-30-30{
    width: 30px; height: 30px; margin-left: 10px;
}

.hint-white{
    border: 2px solid #eee; background-color: #f9f9f9; padding: 1rem; border-radius: 1rem; margin-top: 2rem;
}

.margin-2rem-adjust{
    margin-top: 2rem;
}

.font-adjust{
    font-size: 1.175rem
}

.display-flex{
    display: flex;
}

.display-flex-a-center{
    display: flex;
    align-items: center;
}

.width-50{
    width:50%
}

.auto-height-width-100{
    margin-top: 16px; max-width: 100%; height: auto;
}

.status-icon-adjust{
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 16px 32px;
    align-items: center;
    justify-content: revert-layer; 
}

.img-adjust-30-30{
    width: 30px; height: 30px; margin-right: 10px;
}

.subsection-p{
    width: 25px; height: 35px; margin-bottom: -4px;
}

.hint-boas-praticas{
    background-color: #f1f5f9; border-radius: 1rem; padding: 1rem; width: 280px; box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.hint-erros-comuns{
    background-color: #fef9c3; border-radius: 1rem; padding: 1rem; width: 280px; box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.hint-dica-rapida{
    background-color: #e0f2fe; border-radius: 1rem; padding: 1rem; width: 280px; box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.empty-div{
    display:flex; justify-content: flex-start;
}

.hint-div{
    display: flex; gap: 1.5rem; flex-wrap: wrap;
}

.ul-channel-adjust {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.ul-channel-adjust li {
    margin-bottom: 8px;
}

.h2-channel-adjust {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 8px;
    color: #444;
}

  .img-channel-adjust{
    margin: 16px 0; max-width: 100%; height: auto;
}

.highlight-channel-title{
    background-color: #fff8dc;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: bold;
}

.excel-icon{
    width: 30px; height: 30px; margin-left: 0;
}

.excel-p{
    display: flex; align-items: center; gap: 5px
}

.flex-gap{
    display: flex; align-items: center; gap: 8px;
}

.img-28-28{
    width: 28px; height: 28px; margin-left: 1%;
}

.tutorial-container {
    text-align: center;
    max-width: 700px;
    margin: auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: auto;
}

.video-adjust {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-play {
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-play:hover {
    background: #0056b3;
}

.flex-gap-wrap{
    display: flex; flex-wrap: wrap; gap: 8px;
}

.btn-green{
    color: green; font-weight: bold;
}

.span-green{
    color: green;
}

.span-red{
    color:red;
}

.flex-1{
    flex: 1; margin-right: 30px;
}

.img-height-300{
    height: 300px
}

.cards-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}
  
.card-info {
    background-color: #f7f7f7;
    border-left: 5px solid #3b82f6;
    border-radius: 12px;
    padding: 16px;
    flex: 1 1 300px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
  
.card-info h2 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}
  
.cta-box {
    background-color: #e0f2fe;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}
  
.btn-destaque {
    background-color: #3b82f6;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
}

  .tutorial-container {
    text-align: center;
    max-width: 700px;
    margin: auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-wrapper-tutorial {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: auto;
}

.video-tutorial {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-play-tutorial {
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-play-tutorial:hover {
    background: #0056b3;
}

.watcher-font{
    font-family: Arial, sans-serif; line-height: 1.6;
}

.img-400-200{
    width: 400px; height: 200px;
}

.flex-gap10{
    display: flex; gap: 10px;
}

.width-45{
    width:45%;
}

.save-span{
    background-color: #f0f0f0; padding: 4px 8px; border-radius: 4px;
}

.img-600{
    margin-top: 10px; width: 100%; max-width: 600px;
}

.img-40-30{
    width: 40px; height: 30px
}

.imagem-com-descricao {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    
  }
  
.destaque {
    background-color: #fff9c4;
    padding: 0 0.3rem;
    border-radius: 4px;
    font-weight: bold;
}
  
.dica {
    background-color: #e6f7ff;
    padding: 0.8rem;
    margin-top: 1rem;
    border-left: 4px solid #1890ff;
    border-radius: 8px;
    font-style: italic;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
  
.card {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
  
.card h3 {
    margin-top: 0;
}

.img-600-m10{
    width: 100%; max-width: 600px; margin-bottom: 10px;
}

.img-600-100width{
    width: 100%; max-width: 600px;
}

.margin-top-20{
    margin-top: 20px;
}

.flex-ml10{
    flex:1; margin-left: 10px
}

.margin-l0-r100{
    margin-left: 0; margin-right: 100px;
}

.margin-l0{
    margin-left: 0;
}

.font-adjust-1-2{
    font-size:1.2rem;
}

.style-list-none{
    list-style: none;
}

.hidden {
    display: none !important;
}