body{
    background-color: #FFFFFF;
    margin: 0;
    font-family: "Calibre", "sans-serif";
    padding-top: 80px; /* espaço para não sobrepor o conteúdo */
    font-size: 18px;
    color: #333;
  transition: font-size 0.2s ease;
 }
  .top-bar {
    font-family: "Inter var";
    background-color: #5cb832;
    padding: 0 !important;
    height: 52px;
    display: flex;
    align-items: stretch;
}

.top-bar .container {
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: stretch;
}

.top-bar .d-flex {
    height: 100%;
    width: 100%;
}

a{
    text-decoration: none;
}
.top-bar,
.accessibility-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030; /* menor que o modal do Bootstrap (default 1050) */
}

.accessibility-bar {
    top: 40px; /* ajustado após a .top-bar */
}

/* Modal padrão do Bootstrap tem z-index: 1050 */
.modal-backdrop {
    z-index: 1040;
}
.modal {
    z-index: 1050;
}
.modal-body {
    max-height: 70vh; /* ou outro valor como 60vh, conforme necessário */
    overflow-y: auto;
}

/* Garante que o conteúdo do modal não comece encoberto */
.modal-dialog {
    margin-top: 100px !important; /* ajuste conforme altura das barras fixas */
}



.text-header{
    font-family: "Calibre Bold", "sans-serif";
}
.text-subheader{
    font-family: 'Calibre Bold', 'Roboto', 'Arial', sans-serif;
    font-size: 17px;
}

.menu-left {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 0 10px 0;
    margin: 0;
}

.menu-left a {
    color: white;
    font-weight: bold;
    margin-right: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 5px;
}

.menu-left a:last-child {
    margin-right: 0;
}

.search-container {
    display: flex;
    align-items: stretch;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.search-form {
    height: 100%;
    display: flex;
    align-items: stretch;
    margin: 0 !important;
    padding: 0 !important;
}

.search-input-group {
    display: flex;
    width: 300px;
    height: 52px !important;
    background: #4a9d2e;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    margin: 0 !important;
    padding: 0 !important;
    align-items: stretch;
}

.search-input {
    font-size: 14px;
    
    flex: 1;
    border: none !important;
    background: #2d6b1e !important;
    padding: 0 8px 10px 8px !important;
    font-size: 13px;
    color: #ffffff !important;
    outline: none;
    height: 52px !important;
    margin: 0 !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

.search-input::placeholder {
    color: #e0e0e0 !important;
    font-style: italic;
}

.search-btn {
    width: 50px !important;
    height: 52px !important;
    border: none !important;
    background: #2d6b1e !important;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    margin: 0 !important;
    padding: 0 0 10px 0 !important;
    box-shadow: none !important;
}

.search-btn:hover {
    background: #2d6b1e !important;
}

.search-btn i {
    font-size: 16px;
    margin: 0 !important;
    padding: 0 !important;
}

    .accessibility-bar {
      background-color: #f5f5f5; 
      padding: 8px 0;
      font-size: 14px;
      color: #2e7d32;
    }

    .accessibility-bar a {
      color: #2e7d32;
      text-decoration: none;
      margin-right: 10px;
    }

    .separator {
      color: #ccc;
      margin: 0 5px;
    }

.menu-link {
    color: #198754; /* verde bootstrap */
    font-weight: bold;
    text-decoration: none;
    display: block;
    padding: 6px 0;
  }

  .menu-link span {
    font-weight: normal;
    margin-left: 4px;
  }

.menu-side {
    position: relative;
    font-family: 'Calibre', sans-serif;
    font-weight: 400; /* Regular */
    text-transform: uppercase;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    display: block;
    padding: 6px 12px 6px 20px; /* espaço à esquerda para a seta */
    transition: all 0.2s ease;
}

.menu-side:hover {
    background-color: #e5e5e5;
    font-size: 14px;
    color: #28a745;
}

.menu-side:hover::before {
    content: "\f0da"; /* Unicode do fa-caret-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #999; /* cinza */
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}
  .bg-success {
    background-color: #01A62D !important; /* verde SESI */
  }

  /* Remove seta padrão do Bootstrap */
.accordion-button::after {
    display: none !important;
}

/* Botão estilizado */
.accordion-button.custom-button {
     font-family: 'Calibre Bold', 'Roboto', 'Arial', sans-serif;
    background-color: transparent;
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 12px 6px 20px;
    position: relative;
    box-shadow: none;
}

/* Ícone + (Font Awesome) */
.accordion-button.custom-button::before {
    content: "\2b"; /* Unicode de "+" */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* solid */
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #28a745;
    transition: content 0.2s ease;
}
.accordion-button.no-icon::before {
    display: none !important;
}

/* Quando expandido, mostra "-" */
.accordion-button.custom-button[aria-expanded="true"]::before {
    content: "\f068"; /* Unicode fa-minus */
}

.accordion-button.custom-button-other {
     font-family: 'Calibre Bold', 'Roboto', 'Arial', sans-serif;
    background-color: transparent;
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 12px 20px 20px;
    border-bottom: 1px solid rgba(0, 204, 64, 0.3);
    position: relative;
    box-shadow: none;
}

/* Ícone + (Font Awesome) */
.accordion-button.custom-button-other::before {
    content: "\f0dd"; /* Unicode de "+" */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* solid */
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #28a745;
    transition: content 0.2s ease;
}

/* Quando expandido, mostra "-" */
.accordion-button.custom-button-other[aria-expanded="true"]::before {
    content: "\f0d8"; /* Unicode fa-minus */
}

.accordion-button.custom-button-other-faq {
    font-family: 'Calibre Bold', 'Roboto', 'Arial', sans-serif;
    background-color: #fdf8f8;
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 48px 20px 20px;
    position: relative;
    border-radius: 0px !important;
    box-shadow: none;
}
/* Ícone lateral como botão */
.accordion-button.custom-button-other-faq::after {
    content: "";
}

/* Ícone "+" */
.accordion-button.custom-button-other-faq::before {
    content: "\2b"; /* FA: plus */
    background-color: #218838; /* fundo verde escuro */
    height: calc(100% - 0px); /* altura igual à do botão, ajustada */
    width: 60px;
    position: absolute !important;
    right: 0px !important;
    top: 34px !important;

    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 20px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Ícone "-" quando expandido */
.accordion-button.custom-button-other-faq[aria-expanded="true"]::before {
    content: "\f068"; /* Font Awesome minus */
}

.submenu-list {
    font-weight: 400;
    list-style: none; /* remove bullets padrão */
    padding-left: 0;
    margin-top: 0.5rem;
}

.submenu-list li {
    display: flex;
    align-items: flex-start; /* alinha o topo da bolinha com o topo do texto */
    gap: 8px;
    line-height: 1.5;
}

.submenu-list li::before {
    content: "•";
    color: #333;
    font-size: 1.125rem; /* igual ao tamanho do texto */
    line-height: 1;
    margin-top: 4px; /* pequeno ajuste para alinhar verticalmente */
    flex-shrink: 0;
}

.submenu-list a {
    font-family: "Calibre", sans-serif;
    font-size: 1.125rem; /* 18px */
    color: #333333;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    white-space: normal; /* PERMITE a quebra de linha */
    word-break: break-word; /* quebra palavras grandes, se necessário */
}

.submenu-list a:hover {
    color: #28a745;
}


.menu-container {
    position: relative;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
}

.menu-trigger {
    font-family: 'Calibre', sans-serif;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px; /* espaço entre ícone e texto */
    color: #000;
}

.menu-trigger::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900; /* 900 = solid */
    content: "\f0c9"; /* ícone de "fa-bars" */
    display: inline-block;
}
.menu-trigger::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: "\f0dd"; /* fa-sort-down */
    display: inline-block;
    font-size: 12px;
    line-height: 1;
}

.menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f1f1f1;
    padding: 10px 0;
    min-width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1000;
}

.menu-dropdown a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
}

.menu-dropdown a:hover {
    background-color: #e0e0e0;
    color: #28a745;
}

.menu-container:hover .menu-dropdown {
    display: block;
}

.breadcrumb {
    text-transform: none !important;
    background-color: #eee;
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    text-transform: none !important;
    color: #28a745;
    padding: 0 0.5rem;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #28a745;
    text-decoration: none;
}
nav[aria-label="breadcrumb"] .breadcrumb-item a,
nav[aria-label="breadcrumb"] .breadcrumb-item.active {
    text-transform: none !important;
}
.breadcrumb-item.active {
    text-transform: none !important;
    color: #28a745;
    font-weight: bold;
}
.page-title{
    font-family: 'Calibre Medium', 'Roboto', 'Arial', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #008000;
}
.header-title{
    font-family: 'Calibre Medium', 'Roboto', 'Arial', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 28px;

}

/* Container das abas */
.nav-tabs.custom-tabs {
    display: flex;
    justify-content: center;
    width: 100%;
    border-bottom: none; /* removemos a borda padrão do Bootstrap */
}

/* Cada item da aba ocupa o mesmo espaço */
.nav-tabs.custom-tabs .nav-item {
    flex: 1;
    text-align: center;
}

/* Estilo do botão de aba */
.nav-tabs.custom-tabs .nav-link,
.nav-tabs.custom-tabs .nav-link:focus {
    border: none;
    border-bottom: 4px solid #F8F8F8; /* borda cinza claro por padrão */
    padding: 1rem 0.5rem;
    font-weight: 500;
    color: #333;
    background-color: transparent;
    border-radius: 0;
    width: 100%;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    line-height: 1.2;
    flex-direction: column;
    transition: border-color 0.3s ease, color 0.3s ease;
}

/* Aba ativa com borda verde */
.nav-tabs.custom-tabs .nav-link.active {
    border-bottom-color: #1E984F; /* verde institucional */
    color: #1E984F;
}


.acessibilidade-toolbar {
    background: #f2f2f2;
    padding: 6px 10px;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #2d7f2d;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
}

.acessibilidade-toolbar button {
    background: transparent;
    border: none;
    color: #2d7f2d;
    font-weight: bold;
    cursor: pointer;
}

.acessibilidade-toolbar .separator {
    color: #999;
}

/* Contraste alto */
 body.contraste {
    background-color: #000 !important;
    color: #fff !important;
}

body.contraste a,
body.contraste button,
body.contraste span,
body.contraste p,
body.contraste h1, h2, h3, h4, h5, h6 {
    color: #fff ;
    background: transparent !important;
}
body.contraste {
    background-color: #000;
    color: #fff !important;
}

body.contraste .bg-light,
body.contraste .bg-white,
body.contraste .bg-success,
body.contraste .accordion-button,
body.contraste .menu-dropdown,
body.contraste .accessibility-bar,
body.contraste .acessibilidade-toolbar,
body.contraste .breadcrumb,
body.contraste .custom-tabs .nav-link,
body.contraste .submenu-list a,
body.contraste .menu-side,
body.contraste .menu-container {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #555 !important;
}

body.contraste a,
body.contraste a:hover,
body.contraste button {
    color: #00ff00 !important;
    background-color: transparent !important;
}
html {
    font-size: 100%;
    color: #000 !important;
}

body.aumentar-fontes {
    font-size: 110%;
}
body.aumentar-fontes-mais {
    font-size: 120%;
}
body.contraste .page-title,
body.contraste .header-title {
    color: #ffffff !important;
}
body.contraste .styled-table thead {
    background-color: #000 !important;
    color: #fff !important;
}

body.contraste .styled-table th,
body.contraste .styled-table td {
    color: #fff !important;
    background-color: #000 !important;
    border-color: #fff !important;
}

body.contraste .styled-table tbody tr:nth-child(even) {
    background-color: #000 !important;
}

body.contraste .styled-table tbody tr:hover {
    background-color: #333 !important;
}

body.contraste .bg-success,
body.contraste .top-bar,
body.contraste .accessibility-bar,
body.contraste .form-group input,
body.contraste .form-group select,
body.contraste .btn-pesquisar,
body.contraste .btn-limpar,
body.contraste .footer-cni,
body.contraste .footer-institutional,
body.contraste .footer-menu,
body.contraste .card-custom,
body.contraste .card-custom .btn,
body.contraste .accordion-button,
body.contraste .header-title,
body.contraste .page-title,
body.contraste .menu-side,
body.contraste .acessibilidade-toolbar,
body.contraste .submenu-list a,
body.contraste .footer-link,
body.contraste .document-card,
body.contraste .badge-custom,
body.contraste .sesi_fonte,
body.contraste .form-label,
body.contraste .menu-dropdown,
body.contraste .busca-avancada-container,
body.contraste .nav-tabs .nav-link,
body.contraste .list-unstyled-footer li a {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #555 !important;
}


.styled-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #009C31;
    border-radius: 6px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-bottom:15px
}

.styled-table thead {
    background-color: #009C31; /* verde */
    color: #fff;
    font-weight: bold;
}

.styled-table th,
.styled-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #dee2e6;
}

.styled-table tbody tr:last-child td {
    border-bottom: none;
}

.styled-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.styled-table tbody tr:hover {
    background-color: #e9ecef;
}


    .styled-table-other {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        border: 1px solid #009C31;
        border-radius: 6px;
        font-family: Arial, sans-serif;
        font-size: 14px;
        margin-bottom: 15px;
        overflow: hidden;
    }

    /* Cantos arredondados para o cabeçalho */
    .styled-table-other thead tr:first-child th:first-child {
        border-top-left-radius: 4px;
    }
    .styled-table-other thead tr:first-child th:last-child {
        border-top-right-radius: 4px;
    }

    /* Cantos arredondados para o rodapé */
    .styled-table-other tbody tr:last-child td:first-child {
        border-bottom-left-radius: 4px;
    }
    .styled-table-other tbody tr:last-child td:last-child {
        border-bottom-right-radius: 4px;
    }

    .styled-table-other thead { 
        background-color: #009C31;
        color: #fff;
        font-weight: bold;
    }
.styled-table-other thead th
{

        text-align: center;
}
    .styled-table-other th,
    .styled-table-other td {
        padding: 10px 15px;
        border-right: 1px solid #dee2e6;
        border-bottom: 1px solid #dee2e6;
    }

    /* Remove borda direita da última coluna */
    .styled-table-other th:last-child,
    .styled-table-other td:last-child {
        border-right: none;
    }

    /* Remove borda inferior da última linha */
    .styled-table-other tbody tr:last-child td {
        border-bottom: none;
    }

    .styled-table-other tbody tr:nth-child(even) {
        background-color: #f8f9fa;
    }

    .styled-table-other tbody tr:hover {
        background-color: #e9ecef;
    }




.styled-table-other-2 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #009C31;
    border-radius: 6px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-bottom:15px
}

.styled-table-other-2 thead {
    background-color: #009C31; /* verde */
    color: #fff;
    font-weight: bold;
}

.styled-table-other-2 th,
.styled-table-other-2 td {
    padding: 10px 15px;
    border-bottom: 1px solid #dee2e6;
}

.styled-table-other-2 tbody tr:last-child td {
    border-bottom: none;
}

.styled-table-other-2 tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.styled-table-other-2 tbody tr:hover {
    background-color: #e9ecef;
}
.styled-table-other-2 td {
    position: relative; /* necessário para posicionar o ::before */
}

.styled-table-other-2 td::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 10px solid #009C31;  /* cor do triângulo */
    border-left: 10px solid transparent;
}


.link-verde {
    color: #28a745;
    text-decoration: none;
}

.link-verde:hover {
    color: #218838;
    text-decoration: none;
}


#btn-topo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #D2D2D2; /* fundo verde */
  color: #fff; /* ícone branco */
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}

#btn-topo:hover {
  background-color: #218838; /* verde mais escuro no hover */
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.card-custom {
    flex: 1 1 calc(50% - 0.5rem); /* dois por linha */
    display: flex;
    flex-direction: column;
    border: 1px solid #28a745;
    border-radius: 4px;
    min-height: 240px; /* força altura igual mínima */
}

.card-custom .card-header {
    background-color: #28a745;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #218838;
}

.card-custom .card-body {
    padding: 1rem;
    flex: 1; /* faz o conteúdo ocupar todo o espaço disponível */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-custom .btn {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
    font-weight: bold;
    padding: 0.4rem 1.2rem;
    border-radius: 6px;
    align-self: flex-start;
}

.card-custom .btn:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.footer-cni {
  background-color: #5cb832;
  color: white;
  font-family: 'Inter', sans-serif;
}

.footer-cni .footer-link {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-cni .footer-link:hover {
  text-decoration: underline;
}

.footer-cni .footer-icon {
  color: white;
  font-size: 1rem;
  margin-right: 10px;
  transition: transform 0.2s;
}

.footer-cni .footer-icon:hover {
  transform: scale(1.2);
}
.footer-institutional{
    background-color: #419128 !important;
    padding-top: 48px;
    padding-bottom: 53px;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #fff;
}

.footer-menu h6 {
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: #fff;
}

.footer-menu ul {
  padding-left: 0;
  list-style: none;
}

.footer-menu ul li {
  margin-bottom: 6px;
}

.footer-link,
.footer-menu-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-menu-links a:hover {
  color: #d4f8d4;
}

.footer-menu-links li {
  display: flex;
  align-items: center;
}

.footer-menu-links i {
  font-size: 1rem;
  margin-right: 8px;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-menu {
    flex-direction: column;
  }
  .footer-menu > div {
    margin-bottom: 20px;
  }
}


.text-right {
  text-align: right;
}
  .logo-footer {
    max-width: 200px;
    height: auto;
  }
[vw] {
  right: 5px !important;
  left: auto !important;
}

.document-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid #28a745;
  background-color: #fff;
  border-radius: 6px;
  padding: 12px 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
  transition: box-shadow 0.2s;
  cursor: pointer;
}

.document-card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.15);
}

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

.icon-pdf {
  width: 24px;
  height: auto;
}

.document-title {
  font-weight: bold;
  color: #333;
}

.document-size {
  font-size: 0.85rem;
  color: #888;
}

.download-btn {
  color: #28a745;
  font-size: 1.2rem;
  text-decoration: none;
}

   .border-dashed {
        border-width: 2px;
        border-color: #ccc;
        border-style: dashed !important;
    }

    #dropzone.dragover {
        border-color: #28a745;
        background-color: #f6fffa;
    }


      .border-green {
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 1rem;
  }

  .form-label {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 14px;
    line-height: 20px !important;
    font-weight: bold;
    color: #646464; /* Verde para os títulos */
  }

  select.form-select {
    background-color: #f8f9fa;
  }

  .card-unidade {
    border: 1px solid #28a745;
    border-radius: 8px;
    padding: 16px;
    background-color: #fff;
    height: 100%;
    margin-bottom: 20px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
    font-family: Arial, sans-serif;
}

.card-unidade .titulo {
    color: #218838;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 12px;
}

.card-unidade .rotulo {
    font-size: 13px;
    font-weight: bold;
    color: #6c757d;
    margin-bottom: 0;
}

.card-unidade .valor {
    font-size: 14px;
    margin-bottom: 8px;
}

.card-unidade .lista {
    padding-left: 18px;
    margin: 0;
}

.card-unidade .lista li {
    font-size: 14px;
    margin-bottom: 4px;
}
.sesi_fonte {
    font-size: 14px;
}

.sesi_fonte small {
    font-weight: bold;
}
.badge-custom {
    display: inline-block;
    background-color: #c6dfba; /* verde claro */
    color: #fff;               /* texto branco */
    font-weight: bold;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    font-family: sans-serif;
}

.busca-avancada-container {
    background: #fff;
    border-radius: 10px;
    padding: 20px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    font-family: 'Calibre', sans-serif;
}

.busca-avancada-top {
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #28a745;
    cursor: pointer;
    font-weight: bold;
}

.busca-avancada-top .icon {
    color: #28a745;
    transition: transform 0.3s ease;
}

.form-avancado {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
}

.form-avancado.open {
    max-height: 1000px; /* valor alto o suficiente */
}

.form-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-width: 200px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.btn-pesquisar {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
}

.btn-limpar {
    background: white;
    color: #28a745;
    border: 2px solid #28a745;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
}
   .footer-title{
                font-size: 1.6rem;
            }
.footer-title a{
                font-size: 1.6rem;
    color: #fff;
    text-decoration: none; 
}
.list-unstyled-footer {
    margin-bottom: 10px;
    list-style: none;
    padding-left: 0px;
}
.list-unstyled-footer li {
    margin-bottom: 10px;
}
 .list-unstyled-footer li:first-child {
    margin-top: 10px;
 }
.list-unstyled-footer li a{
color: rgba(255, 255, 255, 0.64) !important;
}
.border-menu{
border-left: 1px solid rgba(255, 255, 255, 0.384) !important;
}
.footer-menu-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.384) !important;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.acessibilidade-bloco {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 20px 0;
}

.acess-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}

.acess-item:last-child {
  border-bottom: none;
}

.acess-item .icon {
  font-size: 32px;
  color: #5cb832;
  min-width: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.acess-item .info h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 5px 0;
  color: #000;
} 
.acess-item .info p {
  margin: 0;
  font-size: 14px;
  color: #333;
}
