@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(.6); 
  }
  to {
    opacity: 1;
    transform: scale(1); 
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

body {
    overscroll-behavior: none;
    background-color: var(--background-color);
    transition: 0.3s; 
}

html, body {
  touch-action: pan-x pan-y; 
  margin: 0;
  padding: 0;
  height: 100dvh;
}
*{
    -webkit-tap-highlight-color: transparent; 
    outline: none; 
}

.skeleton {
  background-color: #e2e5e7;
  background-image: linear-gradient(90deg, var(--skel-base) 0%, var(--skel-shine) 50%, var(--skel-base) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  display: inline-block; /* Garante que respeite largura/altura */
}

.skeleton-accordion{
    width: 100%;
    height: 51px;
    border-radius: 20px;
    margin: 5px 0;
}
.skeleton-icon{
    width: 29px;
    height: 29px;
    border-radius: 40px;
}
.skeleton-field{
    width: 400px;
    max-width: 100dvw;
    height: 29px;
    border-radius: 10px;
}
.skeleton-text{
    width: 100%;
    height: 150px;
    border-radius: 20px;
    margin: 5px 0;
}
.skeleton-service{
    margin: .5%;
    flex: 0 1 239px;
    height: 115px;
    overflow: hidden;
    border-radius: 10px;
}

.app-container {
  height: 100dvh;
  overflow-y: auto; /* O scroll acontece aqui dentro agora */
  -webkit-overflow-scrolling: touch; /* Suavidade no iOS */
}

.tab-content p,.tab-content span{
    color: var(--main-txt-color);
}
.tab-content p.txt-esquerda{
    text-align: left !important;
}
.tab-content a{
    color: var(--main-cargo-color);
}
.tab-content p{
    line-height: 26px;
    text-align: justify;
    margin-bottom: 0;
    font-family: roboto;
}

h1,h2,h3,h4{
    color: var(--main-title-color);
}
h3{
    margin-bottom: 45px;
}
.tab-content h3{
    padding: 11px 18px;
    margin: 11px 0;
    grid-column: 1 / -1;
    width: 100%;
    font-weight: 500;
}
ul {
    list-style: none;
    padding: 0;
    list-style-position: inside;
}
* {
    text-decoration: none;
    font-family: roboto;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 15px
}
.mobile-only{
    display: none;
}
body {
    margin: 0px;
}

#wp-header{
    min-height: 204px;
}

.banner{
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
}
.page-index-wrapper{
    padding-top: 8px;
    position: relative;
    background-color: var(--background-color-variation);
    width: 100%;
    &::after{
        content: '';
        width: 100%;
        position: absolute;
        height: 110px;
        background-color: inherit;
        top: 100%;
        z-index: -1;
        box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
    }
}
.page-index{
    transform: translateX(-20px);
    width: 1069px;
    margin: 33px auto 60px;
    display: flex;
    align-items: left;
    gap: 32px
}
.page-index span{
    font-size: 15px;
    font-family: arial;
    i{
        font-size: 15px;
        color: #1858B9;
    }
}
.page-index span:not(:last-child) {
    position: relative;
    color: #0047b1;
    &::after{
        position: absolute;
        content: '\F285';
        font-size: 10px;
        font-family: "bootstrap-icons";
        color: #bbbbbb;
        right: -22px;
    }
}
.page-index span:last-child{
    color: #666;
    text-transform: uppercase;
}

.container-main {
    flex-wrap: wrap;
    width: 1069px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: .5s all;
}
.container-wifi{
    margin: 0 auto;
    overflow: hidden;
    /*width: fit-content;*/
}

.carta-servicos h3{
    font-size: 30px;
    color: var(--nav-background-variation);
    
}
.carta-servicos strong{
    color: var(--nav-background-variation);
}
.container-principais{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0px;
    place-items: center;
    gap: 7px;
    img{
        width: 100%;
    }
}
.banner-eouve{
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
    align-items: center;
    padding: 15px 25px !important;
    p{
        line-height: 1.4;
    }
}
.banner-eouve > i{
    font-size: 2.15em!important;
    color: #f9c10e;
}
.principais-servicos{
    width: 100%;
    padding: 25px;
    background-color: var(--background-color-variation);
    border-radius: 15px;
    display: flex;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center; /* Alinha horizontalmente (eixo principal) */
    align-items: center;  
    transition: transform 0.1s ease, filter .5s ease; 
    animation: fadeIn 1.2s ease-out forwards;
}
@media(hover: hover){
    .principais-servicos:hover{
            filter: brightness(85%);
            box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
        }
}
.principais-servicos:active {
    transform: scale(0.95); /* Encolhe 5% ao tocar */
}

.main-sidebar{
    transform: translateX(-100%);
    height: 100%;
    width: 80%;
    padding: 10px;
    position: fixed;
    left: 0;
    top: 0px;
    background-color: var(--nav-background);
    border-right: 2px solid var(--nav-background-variation);
    z-index: 500;

    transition: all .3s;
    ul{
        height: 100%;
        display:flex;
        flex-direction: column;
    }
}
.main-sidebar > button{
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    z-index: 1500;
    font-size: 25px;
    color: var(--nav-title-color);
    }
.main-sidebar.open{
    transform: translateX(0) !important;
}

.main-sidebar li{
    width: 100%;
    margin-bottom: 5px;
    padding: 12px;
    position: relative;
    line-height: normal;
    margin-left: 0;
    
}
.main-sidebar li:first-child{
    margin-bottom: 40px;
    &::after{
        position: absolute;
        content: '';
        width: 60%;
        height: 1px;
        background-color: var(--nav-background-variation);
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
    }
    }
.main-sidebar li:last-child{
    margin-top: auto;
    &::after{
        position: absolute;
        content: '';
        width: 60%;
        height: 1px;
        background-color: var(--nav-background-variation);
        top: -20px;
        left: 50%;
        transform: translateX(-50%);;
    }
}
.main-sidebar span,  .main-sidebar a{
    color: #f3f3f3;
    font-size: 16px;
    font-family: sora;
}
.main-sidebar li > .fa{
    font-size: 18px;
    color: #f3f3f3;
    text-align: center;
    padding: 9px;
    margin: 0 2px;
    width: 45px;
    border: 1px solid var(--nav-background-variation);
    border-radius: 3px;
    background-color: rgba(0,0,0,.02);
}
.redes-sociais a{
    text-align: center;
    padding: 4px;
    width: 44px;
    background-color: rgba(0,0,0,.1);
    font-size: 27px;
    border: 1px solid var(--nav-background-variation);
}
#btn-install{
    background-color: var(--nav-title-color);
    width: 100%;
    border: none;
    padding: 12px;
    font-weight: 500;
    text-align: left;
    border-radius: 12px;
    span{
        color: var(--nav-background);
    }
    &:hover{
        cursor: pointer;
    }
}
.container-tema{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-around;
    margin: 0 auto;
    width: 90%;
    height: 40px;
    border-radius:20px;
    overflow: hidden;
    background-color: var(--nav-background-variation);
    &::after{
        content: '';
        width: 55%;
        background-color: rgba(0,0,0,.2);
        height: 100%;
        z-index: 0;
        position: absolute;
        left: 0%;
        transition: all .5s;
        border-radius: 20px;
    }
}

.btn-theme{
    position: absolute;
    width: 45%;
    height: 100%;
    padding: 0px 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    background-color: transparent;
    gap: 8px;
    border: none;
    border-radius: 20px;
    &:hover{
        cursor: pointer;
    }
    .fa{
        font-size: 20px;
        color: #f3f3f3;
        transition: all .5s;
    }
    span{
        font-size: 14px;
        transition: all .5s;
    }
}
#btn-light-theme{
    justify-content: start;
    left: 0;
}
#btn-dark-theme{
    justify-content: end;
    right: 0;
    .fa, span{
        color: #a0a3d3; 
    }
}

.main-nav {
    width: 245px;
    height: stretch;
}

nav{
    position: sticky;
    top: 0;
}

nav ul li {
    overflow: hidden;
     margin: 0 ;
    margin-left: 0px ;
    line-height: 0 ;
    .nav-btn{
        text-transform: uppercase;
        display: flex;
        gap: 10px;
        align-items: center;
        text-decoration: none;
        color: var(--nav-txt-color);
        padding: 18px 20px;
        background-color: var(--nav-background);
        border: none;
        border-top: 1px solid  var(--nav-background-variation);
        font-size: 14px;
        transition: all .3s ease;
        &&:hover {
            background-color: #0b46c5;
        }
    }
    i {
        font-size: 16px !important;
    }
    span {
        font-size: 14px;
        font-family: Sora;
    }
}


nav ul li:last-child{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.nav-btn.selected {
    i, span{
        font-weight: 500;
        color: var(--nav-background);
    }
  background-image: none;
  background-color:  var(--nav-title-color);

  &&:hover{
    background-color: #eee;
  }
}

.extra-btn {
    display: none !important;
}

.tabs-wrapper {
    width: 823px;
    position: relative;
    transition: all var(--tab-transition-speed) ;
}
.main-tab{
    background-color: var(--background-color);
    width: 100%;
    transition: all var(--tab-transition-speed) ;
    opacity: 0;
    position: absolute;
    transform: translateY(var(--tab-transition-in));
}

.main-tab.active, 
.main-tab.exiting {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.main-tab.active{
    position: static;
    opacity: 1;
    transform: translateY(0px);
}
.main-tab.exiting{
    position: absolute;
    transform: translateY(var(--tab-transition-out));
    opacity: 0;
}


.main-header {
    box-shadow: 0px -6px 9px rgba(0, 0, 0, 0.08);
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 56px;
    background-color:  var(--background-color);
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 12px 30px;
    h2 {
        margin: 0;
        font-size: 21px;
        font-weight: 500;
        color:  var(--nav-title-color);
        font-family: sora;
    }
    button{
        background: none;
        border: none;
    }
    i{
        font-size: 21px;
        font-weight: 500;
        color:  var(--nav-title-color);
    }
    &::before{
        content: '';
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        position: absolute;
        left: 0;
        width: 245px;
        height: 100%;
        top: 0;
        background-color: var(--nav-background);
        z-index: 10;
    }
    .sidebar-btn{
        padding: 0 10px;
    }

}
#filter-container{
    width: 100%;
    padding: 15px;
    height: auto;
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    background-color: var(--background-color);
}
#btn-search, #btn-filter{
    margin-left: auto;
    i{
        color:  var(--nav-background);
    }
}

#search-bar{
    width: 45%;
    height: 100%;
    background: white;
    border-radius: 5px;
    font-family: sora;
    font-weight: 500;
    font-size: 15px;
    padding: 20px 10px;
    margin: 0 40px;
    margin-left: auto;
    &:focus{
        outline: none;
        -webkit-tap-highlight-color: transparent; /* Removes highlight on mobile */
        box-shadow: none; /* Removes any browser default shadow */
    }
    
}
.tab-content {
    padding: 20px;
    padding-top: 0;
}

/*---- TEMPLATE ACCORDION ---*/
.accordion {
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
    position: relative;
    flex: 1 1 300px;
}

.accordion-btn {
    box-sizing: border-box;
    width: 100%;
    background-color: var(--background-color);
    text-align: left;
    font-weight: bold;
    border: none;
    cursor: pointer;
    position: relative;

    &::after {
        content: '▾';
        position: absolute;
        font-size: 25px;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        transition: all .25s ease;
    }
}

.accordion-content {
    max-height: 0;
    padding: 0px 20px;
    transition: .66s ease;
    overflow: hidden;
}

.accordion.open>.accordion-btn::after {
    transform: rotate(180deg) translateY(50%);
}

.accordion.open>.accordion-content {
    padding: 22px 20px;
}

/* aparencia dos accordeons de SECRETARIA*/
.accordion-secretaria-btn {
    color: var(--main-title-color);
    padding: 18px 22px;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 1px solid var(--background-color-variation);

    &::before {
        color: var(--secretaria-icon-color);
        content: "+";
        display: inline-block;
        text-align: center;
        width: 25px;
        font-weight: bold;
        /*border: 2px solid  var(--secretaria-icon-color);*/
        border-radius: 20px;
        margin-right: 19px;
    }

    &::after {
        display: none;
    }
}
.txtCargo{
    color: var(--main-cargo-color) !important;

    font-weight: bold;
    font-size: 12px;
}

.accordion.open>.accordion-secretaria-btn::before {
    content: "-";
}

.accordion-secretaria-content {
    transition: .35s linear;
}

/* aparencia dos accordeons de INFO*/

.accordion-info, 
.accordion-subsecretarias,
.accordion-servicos,
.accordion-equipamentos{
    margin: 14px 0;
}
.accordion-info-btn, 
.accordion-subsecretarias-btn,
.accordion-servicos-btn,
.accordion-equipamentos-btn{
    font-family: roboto;
    padding: 15px 20px;
    background: linear-gradient(90deg, rgb(10 70 197) 0%, rgb(19 66 166) 100%);
    font-size: 15px;
    color:  var(--nav-title-color);
    border-radius: 5px;
    border-bottom: 0px solid #1eaac7;
    cursor: pointer;
    transition: all .25s ease;
    span{
        margin-left: 15px;
        color:  var(--main-txt-color);
    }
}
.accordion-info-content, 
.accordion-subsecretarias-content,
.accordion-servicos > .accordion-servicos-content,
.accordion-equipamentos-content{
    background-color:  var(--background-color-variation);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* SUBSECRETARIA */
.accordion-subsecretaria{
    background-color: var(--background-color);
    margin-bottom: 5px;
    border-bottom: 1px solid  var(--background-color-variation);
}
.accordion-subsecretaria-btn{
    background: var(--background-color);
    font-size: 16px;
    color:  var(--main-title-color);
    text-align: center;
    padding: 15px;
    &::after{
        content: "+";
        left: 15px;
        right: auto;
    }
}
.accordion-subsecretaria-content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.subsecretaria-col{
    width: calc(50% - 1rem);
}
.subsecretaria-info {
    font-weight: 500;
    text-align: center;
    color: #075aff !important;
    display: block;
    margin-bottom: 20px;
}
.txtDepto{
    width: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    background-color: var(--background-color);
    font-size: 14px;
    color:  var(--main-txt-color); !important;
    font-weight: 500;
    padding: 12px 20px;
}


/* Categorias de serviços */


.container-servicos-publico {
    display: grid;
    gap: .5rem;
    grid-auto-flow: dense; /* [2] */
    grid-template-columns: repeat(auto-fit, calc(50% - .25rem)); /* [1] */
    justify-content: center;
}

categoria-servico{
    grid-column: 1 / -1;
    color: var(--main-title-color);
    font-size: 17px;
    overflow: hidden;
    font-weight: 600;
    position: relative;
    background-color: var(--background-color-variation);
    border-radius: 10px;
    transition: all .5s;
    display: flex;
    align-items: center;
    jutify-content: space-between;
    
    &::before{
        height: 100%;
        width: 40px;
        color: white;
        content:"+";
        border-radius: 10px;
        margin: 0 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
categoria-servico button{
    background-color: transparent;
    padding: 11px 22px;
    border: none;
    width: 100%;
    height: 100%;
    text-align: left;
}

categoria-servico:hover{
    cursor:pointer;
}

categoria-servico.is-open, categoria-servico:hover{
    
    filter: brightness(.9);
    &::before{
        content: '\25BE';
        filter: brightness(1.2);
    }
}

categoria-servico.on-search{
    background-color: var(--background-color-variation) !important;
    &:hover{
        cursor: default !important;
        background-color: var(--background-color-variation) !important;
    }
}

categoria-servico.is-open{
    grid-column: 1 / -1;
}
.categoria-cidadao:before{
    background-color:var(--color-cidadao);
}
.categoria-empresa:before{
    background-color: var(--color-empresa);  
}
.categoria-servidor:before{
    background-color: var(--color-servidor);  
}
/* [3] Make fullwidth card span all grid columns. */
.lista-servico {
    grid-column: 1 / -1;
    opacity: 0;
    padding: 10px 5px;
    transition: all .9s;
}
.lista-servico.is-open {
    opacity: 1;
}

.lista-servico.is-hidden {
    display: none !important;
}

.lista-servico,
.is-selected {
    background: var(--background-color);
}

/* card */
.card-container {
    width: 100%;
    height: auto;
    margin: 12px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.accordion-card{
    color: var(--main-txt-color);
    width: calc(50% - 1rem);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    background-color: var(--background-color)
}

.equipamento-unico{
    padding: 15px;
    padding-bottom: 10px;
    color: var(--main-txt-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    background-color: var(--background-color);
}
.equipamento-unico .col-info{
    margin-bottom: 5px;
}

.accordion-card-btn{
    padding: 12px 20px;
}

table {
    border-collapse: collapse;
}

td, th {
    padding: 12px 20px;
    color: var(--main-txt-color);
}

th {
    color: white;
    background-color: var(--nav-background);
}

td: last-child, th:last-child {
    text-align: center;
    padding: 12px 0;
}
tr{
    border-bottom: 1px solid var(--backgrund-color-variation2);
}
tr: nth-child(even) {
    background-color:#f1f1f5;
}

.politica {
    padding: 10px 0;
    p{
        margin-bottom: 30px;
    }
    li:last-child{
        margin-bottom: 30px;
    }
    
    &::after{
        display: block;
        content: '';
        height: 1px;
        margin: 0 auto;
        width: 50%;
        background-color: gray;
    }
}

.main-tab > .accordion-servicos-content > .details-box{
    background-color: var(--background-color-variation);    
}
.lista-servico > .details-box{
    background-color: var(--background-color-variation);        
}

/*SERVICE BOX */ 
.details-box{
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
    margin: 0 1%;
    padding: 0px 12px;
    max-height: 0px;
    background-color: var(--background-color);
    border-radius: 8px;
    transition: all .5s ease;
}
.details-box.open{
    padding:  24px 12px 0px;
}
.accordion-servicos-content, .accordion-equipamentos-content{
    width: 100%;
    height: auto;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.categoria-container{
    
}
.categoria_servico{
    width: 100%;
}

service-box, equipamento-box, .info-box{
    margin: .5%;
    flex: 0 1 220px;
    height: 115px;
    overflow: hidden;
    background-color: #063798;
    border-radius: 10px;
    position: relative;
        &::before {
        content: '';
        position: absolute;
        height: 194px;
        width: 200px;
        top: 0px;
        right: -118px;
        background-image: url(../imgs/ENGRENAGEM_AZUL.png);
        background-size: 100%;
        background-position: center;
        }
        &::after {
        content: '';
        width: 100%;
        height: 3px;
        position: absolute;
        bottom: 0px;
        background: linear-gradient(90deg, rgba(39, 204, 255, 1) 0%, rgba(39, 204, 255, 1) 25%, rgba(11, 70, 197, 1) 25%, rgba(11, 70, 197, 1) 50%, rgba(7, 90, 255, 1) 50%, rgba(7, 90, 255, 1) 75%, rgba(0, 181, 255, 1) 75%, rgba(0, 181, 255, 1) 100%);
        transition: all .3s ease;
        }
}
.service-box-btn{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 100;
    background: none;
    border: none;
    display: flex;
    padding: 15px 15% 15px 15px;
    text-align: start;
    color:  var(--nav-title-color);
    font-weight: bold;
    cursor: pointer;
}
.service-box-overlay{
    position: absolute;
    box-sizing: border-box;
    display: flex;
    bottom: 0px;
    background-color: var(--background-color);
    width: 100%;
    height: 0%;
    transition: .3s ease;
    span{
        height: auto;
        font-size: 16px;
        color: var(--secretaria-icon-color);
        margin: auto;
        text-align: center;
        transition: .3s ease;
    }
}
.container-publico{
    content: '';
    width: 30px;
    height: 100%;
    padding: 7px 0;
    position: absolute;
    z-index: 100;
    right: 0px;
    top: 0px;
    display: flex;
    gap: 3px;
    align-items: end;
    flex-direction: column;
    padding-right: 5px;
}

.icon-publico{
    width: 22px;
    height: 22px;
    border-radius: 12px;
    transition: all .5s;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    &:hover{
        cursor: pointer;
        filter: brightness(118%);
        width: 80px;
        span{
            opacity: 1;
        }
    }
    i{
        color: white;
        font-size: 12px;
    }
    span{
        opacity: 0;
        color: white;
        font-size: 11px;
        padding-right:5px;
        transition: all .5s
    }
}
.icon-publico-wrapper{
    padding-left: 5px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.publico-cidadao{
    background-color: var(--color-cidadao);
}
.publico-empresa{
    background-color: var(--color-empresa);
}
.publico-servidor{
    background-color: var(--color-servidor);
}
@media(hover: hover){
     service-box:hover::after, equipamento-box:hover::after {
        bottom: 27.5%;
    }

service-box:hover .service-box-overlay, equipamento-box:hover .service-box-overlay{
    height: 27.5%;
    font-weight: 500;
}
}
service-box.open, equipamento-box.open  {
    &::after {
        bottom: 27.5%;
    }
}
service-box.open .service-box-overlay, equipamento-box.open .service-box-overlay{
    height: 27.5%;
    font-weight: 900;
}
.service-content{
    display: none;
}

.sidebar-btn{
    position: relative;
    z-index: 2000;
}

.informativo-titulo{
    font-weight: 500;
    border-radius: 10px;
    margin: 20px 0 0;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    background-color: #121212;
    padding: 8px 12px;
    transform: translateY(18px);
    /*
    &::after{
        content:'';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 500px;
        height: 3px;
        background-color: inherit;
    }
    */
}
.informativo-conteudo{
    position: relative;
    z-index: 1;
    padding-top: 32px !important;
    border-radius: 10px;
    padding-left: 20px;
    max-height: 200px;
    overflow-y: auto;
    p{
        font-size: 13px;
        line-height: 21px;
    }
}
.informativo-conteudo .btn{
    margin: 8px;
}
.informativo-titulo span{
    color:white;
    font-family: sora;
    /*text-transform: uppercase;*/
    font-size: 13px;
}

.clickable {
    transition: transform 0.12s ease;
    user-select: none;
}

.clickable:active {
    transform: scale(0.95) !important;
}

.footer { flex-shrink: 0; text-align: center; margin-top: 70px; }
.footer-links { margin-bottom: 15px; font-size: 13px; color: #555; }
.footer-links a { text-decoration: none; color: #0056b3; font-weight: 500; }
.footer-links span { margin: 0 10px; color: #ccc; }
.dev-info { background-color: #f0f0f0; padding: 15px; font-size: 12px; font-weight: bold; width: 100%; border-top: 1px solid #ddd; box-sizing: border-box; }

.depto-grid-container {
            margin-top: 20px;
            margin-bottom: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
        }

.depto-info-box {
    background-color: var(--background-color);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.depto-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.depto-info-header h2 {
    font-size: 15px;
    color: var(--main-title-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.depto-info-body p {
    font-size: 0.95rem;
    color: var(--main-txt-color);
    line-height: 1.5;
    margin-bottom: 15px;
}

.depto-info-footer {
    border-top: 1px solid var(--backgrund-color-variation2);
    padding-top: 12px;
    font-size: 0.9rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    color: var(--main-txt-color);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: var(--main-txt-color);
    margin-right: 5px;
}

.info-item a {
    color: #2563eb;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .skeleton-service{
        flex: 0 1 calc(50% - 5%);
    }
    
    .banner-eouve{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        padding: 15px 10px !important;
        p{
            line-height: 1.4;
        }
    }
    .banner-eouve > i{
    display: none;
    }
    .banner-eouve > a{
        width: 100%;
    }

    service-box, equipamento-box, .info-box{
        flex: 0 1 calc(50% - 9px);
    }
    .mobile-only{
        display: block;
    }
    .container-wifi{
        width: 100%;
    }
    .mobile-footer-hide {
        display: none !important;
    }

    ::-webkit-scrollbar {
        display: none;
    }

    .desktop-only {
        display: none !important;
    }

    body {
        overflow-x: hidden;
        overflow-y: auto;
        min-width: 100dvw;
        min-height: 100dvh;
    }

    .container-main {
        margin: 0;
        min-height: 100dvh;
        width: 100%;
        flex-direction: column;
    }

    .container-principais{
        grid-template-columns: repeat(3, 1fr);
    }

    categoria-servico button{
        padding: 10px 5px;
        font-size: 15px;
    }


    .main-header {
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        background-color:  var(--nav-background);
        display: flex;
        gap: 30px;
        align-items: center;
        padding: 12px 30px;
        position: fixed;
        z-index: 5;
        top: -1;
        order: 1;
        &::before{
            display: none;
        }
    }
    
    #btn-search i, #btn-filter i{
        margin-left: auto;
        color:  var(--nav-title-color);
    }
    
    #search-bar{
        width: 100%;
        border: none;
        direction: ltr;
        unicode-bidi: embed;
    }
    .main-header i:last-child{
        margin-left: auto;
    }
    .tabs-wrapper {
        width: 100%;
        margin-top: 56px;
        margin-bottom: 72px;
        order: 2;
        flex-grow: 1;
    }
    
    .main-tab{
        transform: translateX(var(--tab-transition-in));
    }

    .main-tab.active{
        transform: translateX(0px);
    }

    .main-tab.exiting{
        transform: translateX(var(--tab-transition-out));
    }
    
    .tab-content{
        padding: 8px;
        padding-top: 8px;
    }
    .accordion-secretaria-btn {
        padding: 18px 5px;
    }
    .main-nav {
        position: fixed;
        height: 73px;
        z-index: 5;
        bottom: 0;
        margin-top: auto;
        order: 3;
        width: 100%;
        z-index: 100;
    }

    nav ul {
        display: flex;
    }

    nav ul li {
        min-width: 0;
        overflow: hidden;
        margin: 0;
        padding: 0;
        line-height: normal !important ;
        flex: 1 1 0;
        .nav-btn {
            text-transform: none;
            flex-direction: column;
            gap: 5px;
        }
        .nav-btn.selected{
            
            background-color: var(--background-color-variation) !important;
        }
        .extra-btn {
            display: flex !important;
            border: none;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        span {
            font-size: 12px;
            font-weight: 500;
        }
    }
    nav ul li:last-child{
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
    .extras-btns {
        position: absolute;
        display: none;
        bottom: 73px;
        right: 0;
    }

    .extras-btns.open {
        display: block !important;
    }

    .accordion >.accordion-content{
        padding: 0px 4px;
    }
    .accordion.open>.accordion-content{
        padding: 32px 4px;
    }

    .subsecretaria-col{
    width: 100%;
}
}

.col-info{
    display: flex;
    gap: 14px;
    margin: 0 0 20px 0;
    padding: 0 20px;
    align-items: center;
    .fa, .fas{
        padding: 7px;
        border-radius: 20px;
        background-color: #eee;
    }
}

.bg{
    width: 100%;
    height: auto;
    padding: 15px;
}
.bg-gray{
    background-color: var(--info-background-color);
}
.col{
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
}

/* BOTÕES */

.btn {
  font-family: "roboto";    
  font-size:16px;
  font-weight: 500;
  background-color:#4b5e74;
  padding:15px 15px 15px 32px;
  display:flex;
  align-items:center;
  border-radius:5px;
  position:relative;
  transition: all .5s cubic-bezier(.77,0,.175,1);
  margin: 20px;
  
  .text, i{
    color: var(--nav-title-color);
    line-height:1;
    position:relative;
    z-index:5;
    margin-right:32px;
  }
  i:last-child{
      margin-left: auto;
  }
  svg{
    display:inline-block;
    position:relative;
    z-index:5;
    transform: rotate(0deg) translateX(0);
    transform-origin: left;
    transition: all .5s cubic-bezier(.77,0,.175,1);
  }
  
  &::before{
    content:'';
    background-color:#33ae9e;
    width:3px;
    height:20px;
    display:block;
    position:absolute;
    z-index:1;
    border-radius:4px;
    top:50%;
    right:15px;
    transform:translateY(-50%);
    transition: all .6s cubic-bezier(.77,0,.175,1);
  }
  
  &.light{
    background-color: #95C11F;
    
    &::before{
      background-color: #154633;
    }
    
  }
}

.btn:hover{
  
  svg{
    transform: rotate(45deg) translateX(-8px);
  }
  
  &::before{
    content:'';
    width:100%;
    height:100%;
    right:0;
  }
}

