/* Screen reader only - oculta visualmente mas mantém acessível */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.adsi-bo-header {
    padding: 40px;
    background: #f1f1f1;
}
/*INLINE CATEGORIES*/
.adsi-bo-inline-cats {
    padding: 40px;
    background: #fafafa;
    margin-bottom: 5px;
}
.adsi-bo-inline-cats .bo-linha {
    margin-bottom: 15px;
}
.adsi-bo-container {
    padding: 40px;
    background: #fff;
}
.adsi-bo-container .callout .row {
    margin: 0 !important
}


.margin-bottom-0 {
    margin-bottom: 0 !important;
}
.bo-input-full-width {
    width: 100% !important;
    display: flex
}

.bo-descricao {
    padding: 20px;
    background: #f7f7f7;
    margin-bottom: 20px;
}
.adsi-bo-barra-de-pesquisa .bo-input {
  color: #232323; /* Contraste com #fff: 15.6:1 ✓ WCAG AAA */
padding-left: 12px !important;
padding-right: 12px !important;
margin-bottom: 10px !important;
}

/* Alinha pelo fundo os campos da barra de pesquisa — a coluna do botão não
   tem etiqueta por cima (é só ação, não um campo com nome), por isso sem
   isto ficava mais alto que os inputs/selects das outras colunas. */
.adsi-bo-barra-de-pesquisa .bo-linha {
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-end !important;
}

/* Acessibilidade — tamanho mínimo de texto legível (WCAG 1.4.4). Sem isto,
   input/select/botão caem no tamanho por omissão do browser para controlos
   de formulário (~13px), abaixo do mínimo recomendado. */
.bo-input {
    font-size: 1rem !important;
}

/* Etiquetas visíveis dos campos da barra de pesquisa do Balcão (antes eram
   sr-only, só para leitores de ecrã). */
.adsi-bo-barra-de-pesquisa .adsi-bo-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 6px;
    color: #333;
}

/* Foco bem visível nos <select> ao clicar na etiqueta (ou por teclado). Usa
   :focus em vez de :focus-visible — para <select> queremos sempre o
   indicador, independentemente de o foco ter chegado por rato ou teclado,
   já que clicar na label move o foco sem "abrir" visivelmente o dropdown em
   Chrome/Edge/Safari (só o Firefox abre); o contorno reforçado é o único
   sinal de que algo aconteceu nesses browsers. */
.adsi-bo-barra-de-pesquisa select.bo-input:focus {
    outline: 3px solid #1a73e8 !important;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.25);
    border-color: #1a73e8 !important;
}

.bo-input-pesquisa {
    background-color: #fff;
    color: #232323 !important; /* Contraste com #fff: 15.6:1 ✓ WCAG AAA */
    font-size: 1rem !important;
}
.bo-input-pesquisa::placeholder,
.bo-input-pesquisa::-webkit-input-placeholder,
.bo-input-pesquisa::-moz-placeholder,
.bo-input-pesquisa:-ms-input-placeholder {
    color: #232323 !important; /* Contraste com #fff: 15.6:1 ✓ WCAG AAA */
    opacity: 1 !important;
    font-size: 1rem !important;
}

.bo-input-btn, .bo-inline-cat-button {
  color: #fff !important;  
}

.bo-btn-documento, .bo-inline-cat-button, .bo-input {
    padding: 10px 15px !important;
    display: flex;
    justify-content: center;
    align-items: center; 
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.bo-btn-documento:hover, .bo-inline-cat-button:hover, .bo-input:hover {
    text-decoration: none;
}
.callout {
    background-image: url("img/stripes.png");
    background-repeat: repeat;
    background-color: #fff;
    
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: 1px 1px 3px 0 rgba(180, 180, 180, 0.2);
    display: block;
    margin: 0 0 10px 0;
    padding: 10px;
}
.callout .border {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #e3e3e3;
    box-shadow: 1px 1px 2px 0 rgba(180, 180, 180, 0.1) inset;
    padding: 15px;
}
.callout .border .row {
    display: flex;
    justify-content: center;
}
.callout .border .col-sm-9, .callout .border .col-sm-3  {
   align-self: center;
}

/* Acessibilidade — o título e o botão "Download" apontavam para o mesmo
   destino em dois links separados (dois tab-stops para o mesmo recurso).
   Consolidados num único <a> que envolve o cartão inteiro; o botão passa a
   ser um elemento visual (aria-hidden) em vez de um segundo link. */
.callout-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.callout-link:hover .callout-content h3 {
    text-decoration: underline;
}
.callout-link:focus-visible {
    outline: 3px solid #1a73e8;
    outline-offset: 2px;
}

/*SIDENAV*/
.sidenav, .widget_wp_nav_menu_desc {
    margin: 0;
    list-style: none;
    padding: 0;
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.08);
    -moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.08);
    box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.08);
}

.sidenav{
	margin-bottom:30px;
}

.sidenav li ul, .widget_wp_nav_menu_desc li ul{
	margin: 0;
	list-style: none;
}

.sidenav li ul li a, .widget_wp_nav_menu_desc li ul li a{
	background: #f9f9f9;
	color: #999999;
	padding: 10px 15px 10px 30px;
}

.sidenav li a, .widget_wp_nav_menu_desc li a {
	display: block;
	margin: 0 0 -1px !important;
	padding: 10px 19px;
	border: 1px solid #dddddd;
	border-bottom-color: #efefef;
	border-top-color: #efefef;
	color: #777777;
	background: url(img/arrow5.png) no-repeat 96% center;
}

.sidenav li:first-child a, .widget_wp_nav_menu_desc li:first-child a {
    -webkit-border-radius: 3px 3px 0 0;
       -moz-border-radius: 3px 3px 0 0;
            border-radius: 3px 3px 0 0;
	border-top-color: #dddddd;
}
.sidenav li:last-child a, .widget_wp_nav_menu_desc li:last-child a {
    -webkit-border-radius: 0 0 3px 3px;
       -moz-border-radius: 0 0 3px 3px;
            border-radius: 0 0 3px 3px;
    border-bottom-color: #dddddd;
}
.sidenav > li.current_page_item > a, .sidenav > li.current_page_item > a:hover,
.widget_wp_nav_menu_desc > li.current_page_item > a, .widget_wp_nav_menu_desc > li.current_page_item > a:hover {
    position: relative;
    z-index: 2;
    padding: 10px 19px;
    border: 0;
    background-image: url(img/arrow5_white.png);
    background-repeat: no-repeat;
    background-position: 96% center;
    color: #ffffff !important;
}

.sidenav li.current_page_item ul li:first-child a,
.sidenav li.current_page_item ul li:last-child a,
.widget_wp_nav_menu_desc li.current_page_item ul li:first-child a,
.widget_wp_nav_menu_desc li.current_page_item ul li:last-child a{
	-webkit-border-radius: none;
       -moz-border-radius: none;
            border-radius: none;
}

.sidenav li a:hover, .widget_wp_nav_menu_desc li a:hover {
    background-color: #F9F9F9;
}

.sidenav ul.children > li.current_page_item > a{
    color: #289dcc;
}
/*SIDENAV*/
.bo-special-heading {
    text-transform: none !important; 
}

.bo-title {
    overflow: hidden;
    margin-bottom: 25px;
}

.bo-title:after {
    content:"";
    display: inline-block;
    height: 0.45em;
    vertical-align: bottom;
    width: 100%;
    margin-right: -100%;
    margin-left: 10px;
    border-top: 2px solid #444444;
}
.bo-title strong {
    background-color: #3aad60;
    color: #fff !important;
    padding: 2px 5px;
}

/*SHORTCODE DOCS RECENTES*/
.borec-item-doc a {
    padding: 10px 15px;
    background: #f1f1f1;
    display: flex;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 100%;
    align-items: center;
    border-radius: 5px;
}
.borec-item-doc a:hover {
    background: #337ab7;
    color: #fff;
    text-decoration: none;
}
.borec-item-doc a:after {
        content: "\f054";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
/*--adjust as necessary--*/
    font-size: 1.3em;
    right: 15px;
    position: absolute
}

.pagination .screen-reader-text {
    text-indent: -99999px
    
}
.bo-no-results {
    text-align: center;
    padding: 20px;
    background: #f1f1f1;
    margin-bottom: 10px;
}
.term-result-link {
    margin-bottom: 1px !important;
}
/*SHORTCODE DOCS RECENTES - FIM*/